/* File: assets/css/pages/thankyou.css — minimal redirect page */

.page-id-69 .site-main,
body.page-template-page-thank-you .site-main {
  background: var(--nt-silver-3, #F5F8FC);
}

.nt-thankyou { display: block; font-family: var(--dag-font); }

/* ===== HERO ===== */
.thankyou-hero {
  background: var(--nt-navy, #1D2951);
  color: var(--nt-snow, #FFFFFF);
  padding: clamp(48px, 6vw, 88px) 20px;
  border-bottom: 4px solid var(--nt-red, #B22234);
  text-align: center;
}
.thankyou-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.thankyou-hero__kicker {
  color: #F5A3AC;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.thankyou-hero__title {
  font-family: var(--dag-font-display);
  font-weight: 400;
  font-size: clamp(48px, 5vw + 20px, 88px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  line-height: .95;
}
.thankyou-hero__lead {
  color: rgba(255, 255, 255, .8);
  font-size: clamp(14px, 1vw + 8px, 16px);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 36px;
}

/* ===== REDIRECT TIMER ===== */
.thankyou-redirect {
  max-width: 440px;
  margin: 0 auto;
  padding: 28px 24px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  text-align: center;
}
.thankyou-redirect__label {
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.thankyou-redirect__count {
  font-family: var(--dag-font-display);
  font-size: 88px;
  color: var(--nt-red, #B22234);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
.thankyou-redirect__unit {
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.thankyou-redirect__bar {
  height: 4px;
  background: rgba(255, 255, 255, .12);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 18px;
}
.thankyou-redirect__bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--nt-red, #B22234);
  transition: width 1s linear;
}
.thankyou-redirect__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.thankyou-redirect__go,
.thankyou-redirect__cancel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  transition: all .16s;
}
.thankyou-redirect__go {
  background: var(--nt-red, #B22234);
  color: #fff;
}
.thankyou-redirect__go:hover {
  background: var(--nt-red-600, #951B2B);
}
.thankyou-redirect__cancel {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}
.thankyou-redirect__cancel:hover {
  background: #fff;
  color: var(--nt-navy, #1D2951);
}
.thankyou-redirect.is-cancelled .thankyou-redirect__bar-fill {
  background: rgba(255, 255, 255, .3);
}
.thankyou-redirect.is-cancelled .thankyou-redirect__count {
  color: rgba(255, 255, 255, .35);
}
.thankyou-redirect__cancel:disabled {
  opacity: .7;
  cursor: default;
}

/* ===== QUICK LINKS ===== */
.thankyou-links {
  padding: clamp(44px, 5vw, 72px) 20px;
  background: var(--nt-silver-3, #F5F8FC);
}
.thankyou-links__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.thankyou-links__title {
  font-family: var(--dag-font-display);
  font-size: 14px;
  color: var(--nt-muted, #5B6B82);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 22px;
}
.thankyou-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.thankyou-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas: "t arrow" "s arrow";
  gap: 2px 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--nt-silver-2, #E6ECF3);
  border-radius: 10px;
  padding: 20px 22px;
  text-decoration: none;
  transition: border-color .16s, transform .16s, box-shadow .16s;
}
.thankyou-link:hover {
  border-color: var(--nt-navy, #1D2951);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(29, 41, 81, .08);
}
.thankyou-link__t {
  grid-area: t;
  font-family: var(--dag-font-display);
  font-size: 18px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--nt-navy, #1D2951);
}
.thankyou-link__s {
  grid-area: s;
  font-size: 12px;
  color: var(--nt-muted, #5B6B82);
  line-height: 1.4;
}
.thankyou-link__arrow {
  grid-area: arrow;
  color: var(--nt-red, #B22234);
  font-size: 22px;
  transition: transform .16s;
}
.thankyou-link:hover .thankyou-link__arrow {
  transform: translateX(3px);
}

/* ===== MOBILE ===== */
@media (max-width: 760px) {
  .thankyou-hero { padding: 40px 16px; }
  .thankyou-redirect__count { font-size: 64px; }
  .thankyou-links { padding: 36px 16px; }
  .thankyou-links__grid { grid-template-columns: 1fr; }
}

/* ===== D5I: thankyou button contrast safety (20260424) ===== */
html body .thankyou-hero .dag-btn.dag-btn--primary,
html body .thankyou-hero a.dag-btn.dag-btn--primary {
  background: var(--nt-red, #B22234) !important;
  color: #FFFFFF !important;
  border: 0 !important;
}
html body .thankyou-hero .dag-btn.dag-btn--primary:hover,
html body .thankyou-hero a.dag-btn.dag-btn--primary:hover {
  background: var(--nt-red-600, #951B2B) !important;
  color: #FFFFFF !important;
}
html body .thankyou-hero .dag-btn.dag-btn--ghost,
html body .thankyou-hero a.dag-btn.dag-btn--ghost {
  background: transparent !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, .4) !important;
}
html body .thankyou-hero .dag-btn.dag-btn--ghost:hover,
html body .thankyou-hero a.dag-btn.dag-btn--ghost:hover {
  background: rgba(255, 255, 255, .12) !important;
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
}
