:root {
  
  --navy:          #002147;  
  --navy-deep:     #000a1e;  
  --ivory:         #faf9f7;  
  --white:         #ffffff;  
  --ivory-border:  #ded8c5;
  --muted-gold:    #997e4d;
  --warm-gold:     #ffb81c;
  --festive:       #f58220;  
  --ink:           #1a1c1b;  
  --ink-soft:      #44474e;  
  --deep-ink:      #1c1c1c;

  --display: "Playfair Display", Georgia, serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --label:   "Montserrat", var(--body);

  --r-sm: .25rem; --r: .5rem; --r-md: .75rem; --r-lg: 1rem; --r-xl: 1.5rem;
  --max: 1280px;
  --gutter: 24px;

  --lift: 0 20px 40px rgba(0, 33, 71, .05);
  --lift-hi: 0 28px 56px rgba(0, 33, 71, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ivory); color: var(--ink);
  font-family: var(--body); font-size: 16px; line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

.shell { width: min(100% - 40px, var(--max)); margin-inline: auto; }
@media (min-width: 768px) { .shell { width: min(100% - 80px, var(--max)); } }
@media (min-width: 1100px) { .shell { width: min(100% - 160px, var(--max)); } }

[hidden] { display: none !important; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.skip { position: absolute; left: -9999px; background: var(--navy); color: #fff; padding: .75rem 1rem; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }
:where(a, button):focus-visible { outline: 3px solid var(--festive); outline-offset: 3px; border-radius: var(--r-sm); }
.center { text-align: center; }

.h-lg { font-family: var(--display); font-weight: 600; font-size: clamp(1.9rem, 4.2vw, 3rem); line-height: 1.2; margin: 0 0 1rem; text-wrap: balance; }
.h-md { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.3; margin: 0 0 .75rem; }
.body-lg { font-size: 1.125rem; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.eyebrow {
  font-family: var(--label); font-weight: 700; font-size: .875rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-gold); margin: 0 0 .9rem;
}
.eyebrow-gold { color: var(--warm-gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--label); font-weight: 700; font-size: .875rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: 9999px; text-decoration: none;
  border: 2px solid transparent; white-space: nowrap;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.btn-lg { padding: 1.05rem 2.5rem; }

@media (max-width: 420px) {
  .btn { white-space: normal; text-align: center; }
  .btn-lg { padding: .95rem 1.25rem; font-size: .8rem; }
  .btn-festive, .btn-outline-light { width: 100%; }
}
.btn-sm { padding: .7rem 1.5rem; font-size: .8rem; }
.btn-block { display: flex; width: 100%; }

.btn-festive { background: var(--festive); color: #fff; box-shadow: 0 0 20px rgba(245,130,32,.3); }
.btn-festive:hover { background: var(--warm-gold); color: var(--navy-deep); box-shadow: 0 0 30px rgba(255,184,28,.5); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-outline-light { border-color: rgba(255,255,255,.28); color: #fff; }
.btn-outline-light:hover { border-color: var(--warm-gold); background: rgba(255,255,255,.06); }
.arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,249,247,.82); backdrop-filter: blur(20px);
  box-shadow: 0 1px 8px rgba(0,33,71,.05);
}
.nav-in { display: flex; align-items: center; gap: 1.5rem; min-height: 80px; }
.brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.brand-logo { display: block; width: auto; height: 50px; }
.brand-txt { display: grid; line-height: 1.2; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 1.25rem; color: var(--navy); letter-spacing: -.01em; }
.brand-sub { font-family: var(--label); font-weight: 700; font-size: .625rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-gold); }
.links { display: none; gap: 2rem; }
.links a {
  font-family: var(--label); font-weight: 700; font-size: .875rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none; padding: .5rem 0;
  border-bottom: 2px solid transparent;
}
.links a:hover { color: var(--navy); border-bottom-color: var(--muted-gold); }
@media (min-width: 1200px) { .links { display: flex; } }

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--navy-deep);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center; color: #fff;
}
.hero-photo {
  position: absolute; inset: 0; z-index: -2;
  background: url("../assets/campus-hero-bg.jpg") left / cover no-repeat;
  opacity: .6;
}

.hero-fade {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, var(--navy-deep) 4%, rgba(0,33,71,.82) 45%, rgba(0,33,71,.25) 100%);
}
.hero-in { position: relative; }

.chip {
  display: inline-block; margin: 0 0 1.75rem;
  font-family: var(--label); font-weight: 700; font-size: .75rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--festive);
  border: 1px solid var(--festive); border-radius: 9999px;
  padding: .6rem 1.5rem; background: rgba(0,10,30,.25); backdrop-filter: blur(6px);
}

.lockup {
  margin: 0; font-family: var(--display); font-weight: 700;
  font-size: clamp(2.6rem, 9vw, 6rem); line-height: .95; letter-spacing: -.02em;
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center;
  gap: 0 clamp(.5rem, 1.6vw, 1.1rem);
}
.lockup-word > span { display: inline-block; }
.lockup-year {
  
  color: var(--warm-gold);
  background: var(--warm-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.25rem, 2.6vw, 1.875rem); line-height: 1.3;
  color: #c8d6ea; max-width: 40rem; margin: 1.5rem auto 0; text-wrap: balance;
}
.hero-quote { font-size: 1.125rem; font-style: italic; color: #e3e2e0; margin: 1rem auto 0; max-width: 36rem; }

.facts {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  max-width: 48rem; margin: 3rem auto 0; padding: 1.5rem;
  background: rgba(250,249,247,.05); backdrop-filter: blur(12px);
  border: 1px solid rgba(112,138,181,.2); border-radius: var(--r-xl);
}
@media (min-width: 768px) {
  .facts { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .facts .fact + .fact { border-left: 1px solid rgba(112,138,181,.2); }
}
.fact { display: grid; justify-items: center; gap: .5rem; padding: 1rem; }
.fact svg { width: 30px; height: 30px; fill: none; stroke: var(--muted-gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.fact span { font-family: var(--label); font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; }

.batches {
  margin: 2rem 0 0; font-family: var(--label); font-weight: 700;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: #e3e2e0;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }

.sec {
  position: relative; overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--white);
}
.sec-ivory { background: var(--ivory); }
.sec-navy { background: var(--navy); color: #fff; }
.sec-navy .body-lg { color: #c8d6ea; }

.ghost {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(6rem, 22vw, 18rem); line-height: 1;
  color: rgba(0,33,71,.035); white-space: nowrap; pointer-events: none; user-select: none;
}
.ghost-light { color: rgba(255,255,255,.04); }

.head-c { max-width: 46rem; margin: 0 auto 3rem; text-align: center; }
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.shot { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--lift); border: 1px solid var(--ivory-border); }
.shot img { width: 100%; }

.pillars { list-style: none; margin: 3.5rem 0 0; padding: 0; display: grid; gap: 2rem; }
@media (min-width: 820px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.pillar-ico {
  display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 1rem;
  border: 1px solid var(--ivory-border); border-radius: var(--r);
  background: var(--ivory);
}
.pillar-ico svg { width: 24px; height: 24px; fill: none; stroke: var(--muted-gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.pillars h3 { font-family: var(--label); font-weight: 700; font-size: .875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin: 0 0 .6rem; }
.pillars p { margin: 0; color: var(--ink-soft); }

.grid { display: grid; gap: var(--gutter); grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
  .card-wide { grid-column: span 2; }
  
  .card-full { grid-column: span 4; flex-direction: row; align-items: center; gap: 1.5rem; }
  .card-full .feature-ico { flex: none; }
  .card-full h3 { margin: 0 0 .35rem; }
}

.card {
  background: var(--white); border: 1px solid var(--ivory-border);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--lift);
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--lift-hi); border-color: var(--warm-gold); transform: translateY(-2px); }
.card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card-body { padding: 1.35rem; }
.card h3 { font-family: var(--display); font-weight: 600; font-size: 1.15rem; margin: 0 0 .5rem; color: var(--navy); }
.card p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.card em { display: block; margin-top: .4rem; font-size: .85rem; opacity: .8; }

.card-feature, .card-plain { padding: 1.75rem 1.5rem; }
.card-feature { background: var(--navy); border-color: var(--navy); }
.card-feature h3, .card-plain h3 { margin-top: .25rem; }
.card-feature h3 { color: #fff; }
.card-feature p { color: #c8d6ea; }
.feature-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r); background: rgba(255,184,28,.12); }
.feature-ico svg { width: 24px; height: 24px; fill: none; stroke: var(--warm-gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.card-plain .feature-ico { background: var(--ivory); border: 1px solid var(--ivory-border); }
.card-plain .feature-ico svg { stroke: var(--muted-gold); }
.card-feature p.feature-years {
  font-family: var(--label); font-weight: 700; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--warm-gold); margin: 0 0 .6rem;
}

.card-overlay { position: relative; min-height: 21rem; }
.card-overlay img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover;
}
.overlay-txt {
  position: absolute; inset: auto 0 0 0;
  
  padding: 5rem 1.35rem 1.35rem;
  background: linear-gradient(to top, rgba(0,10,30,.96) 18%, rgba(0,10,30,.72) 55%, transparent);
  color: #fff;
}
.overlay-txt p.over-kick {
  font-family: var(--label); font-weight: 700; font-size: .7rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--warm-gold); margin: 0 0 .2rem;
}
.card-overlay h3 { color: #fff; margin: 0; }

.grid-close { text-align: center; font-family: var(--display); font-size: 1.3rem; color: var(--ink-soft); margin: 3rem 0 1.75rem; }

.strip-cta {
  display: grid; gap: 1.75rem; align-items: center;
  background: var(--ivory); border: 1px solid var(--ivory-border);
  border-radius: var(--r-lg); padding: clamp(1.75rem, 4vw, 2.75rem); box-shadow: var(--lift);
}
@media (min-width: 860px) { .strip-cta { grid-template-columns: 1fr auto; } }

.duo { display: grid; gap: var(--gutter); }
@media (min-width: 860px) { .duo { grid-template-columns: 1fr 1fr; } }
.panel { background: var(--white); border: 1px solid var(--ivory-border); border-radius: var(--r); padding: 1.75rem; box-shadow: var(--lift); }
.panel h3 { font-family: var(--display); font-weight: 600; font-size: 1.25rem; margin: 0 0 .5rem; color: var(--navy); }
.panel p { margin: 0; color: var(--ink-soft); }
.panel em { display: block; margin-top: .4rem; font-size: .85rem; opacity: .8; }

.split-reg { align-items: center; }
.when { font-family: var(--label); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--warm-gold); margin: 1.75rem 0 0; }

.pass { background: var(--white); color: var(--ink); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0,0,0,.5); }
.pass-top { background: var(--ivory); border-bottom: 1px dashed var(--ivory-border); padding: 1.75rem; text-align: center; }
.pass-name { font-family: var(--label); font-weight: 700; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-gold); margin: 0 0 .6rem; }
.pass-price { font-family: var(--display); font-weight: 700; font-size: 3.25rem; line-height: 1; margin: 0; color: var(--navy); }
.pass-price span { font-size: 1.6rem; vertical-align: super; margin-right: .08em; }
.pass-per { font-family: var(--label); font-weight: 700; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin: .4rem 0 0; }
.pass-body { padding: 1.75rem; }
.pass-inc { font-family: var(--label); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-gold); margin: 0 0 1rem; }
.inc { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .7rem; }
.inc li { position: relative; padding-left: 1.9rem; font-size: .95rem; }
.inc li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 1.1rem; height: 1.1rem;
  border-radius: 50%; background: rgba(245,130,32,.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F58220' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: .7rem; background-repeat: no-repeat; background-position: center;
}
.pass-all { font-family: var(--label); font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); text-align: center; margin: 0 0 1rem; }
.pass-note { margin: .9rem 0 0; font-size: .78rem; color: var(--ink-soft); text-align: center; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.reg-dialog {
  width: min(30rem, calc(100vw - 2rem));
  max-height: min(42rem, calc(100vh - 2rem));
  padding: 0; border: 0; border-radius: var(--r-lg);
  background: var(--white); color: var(--ink);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.55);
}
.reg-dialog::backdrop { background: rgba(0, 10, 30, .62); backdrop-filter: blur(2px); }

.reg {
  display: grid; gap: 1rem;
  padding: 1.4rem 1.5rem 1.5rem;
  max-height: inherit; overflow-y: auto;
}

.reg-head { display: flex; align-items: center; gap: 1rem; }
.reg-count {
  margin: 0; flex: 1;
  font-family: var(--label); font-weight: 700; font-size: .68rem;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft);
}
.reg-count strong { color: var(--navy); }
.reg-x {
  flex: none; width: 2rem; height: 2rem; cursor: pointer;
  border: 0; border-radius: 50%; background: var(--ivory); color: var(--ink-soft);
  font-size: 1.3rem; line-height: 1; display: grid; place-items: center;
}
.reg-x:hover { background: var(--ivory-border); color: var(--ink); }
.reg-x:focus-visible { outline: 2px solid var(--festive); outline-offset: 2px; }

.reg-bar { list-style: none; display: flex; gap: .3rem; margin: 0; padding: 0; }
.reg-bar li {
  height: 3px; flex: 1; border-radius: 2px; background: var(--ivory-border);
  transition: background .25s ease;
}
.reg-bar li.is-done { background: var(--muted-gold); }
.reg-bar li.is-now  { background: var(--festive); }

.reg-step { border: 0; margin: 0; padding: 0; display: grid; gap: .85rem; }

.f { display: grid; gap: .3rem; }
.f > span {
  font-family: var(--label); font-weight: 700; font-size: .66rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
}
.f > span b { color: var(--festive); }
.f2 { display: grid; gap: .85rem; grid-template-columns: 1fr 1fr; }

.reg input[type=text], .reg input[type=email], .reg input[type=number],
.reg input:not([type]), .reg select, .reg textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--ivory-border);
  border-radius: 8px; padding: .6rem .7rem;
}
.reg textarea { resize: vertical; }
.reg input:focus-visible, .reg select:focus-visible, .reg textarea:focus-visible {
  outline: 2px solid var(--festive); outline-offset: 1px; border-color: transparent;
}

.chk { border: 0; margin: 0; padding: 0; display: grid; gap: .4rem; }
.chk legend {
  font-family: var(--label); font-weight: 700; font-size: .66rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
  padding: 0; margin-bottom: .2rem;
}
.chk legend .hint {
  font-weight: 500; letter-spacing: .04em; text-transform: none;
  color: var(--muted-gold); margin-left: .4rem;
}
.chk label { display: flex; align-items: center; gap: .5rem; font-size: .92rem; }
.chk-row { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; align-items: center; }
.chk-row legend { flex: 1 0 100%; }

.more {
  display: grid; gap: .85rem; padding: .85rem;
  border: 1px dashed var(--ivory-border); border-radius: 10px; background: var(--ivory);
}

.qty { display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; }
.qty-btn {
  width: 2.1rem; height: 2.1rem; flex: none; cursor: pointer;
  border: 1px solid var(--ivory-border); border-radius: 8px;
  background: var(--ivory); color: var(--navy);
  font-size: 1.1rem; line-height: 1; display: grid; place-items: center;
}
.qty-btn:hover { background: var(--white); border-color: var(--muted-gold); }
.qty-btn:focus-visible { outline: 2px solid var(--festive); outline-offset: 2px; }
.qty-in { width: 3.4rem !important; text-align: center; font-variant-numeric: tabular-nums; }
.qty-sum { font-size: .84rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.qty-sum strong { color: var(--navy); }

.reg-note { margin: 0; font-size: .79rem; color: var(--ink-soft); }
.reg-err {
  margin: 0; font-size: .85rem; color: #9a3412;
  background: #fff5ed; border: 1px solid #fed7aa; border-radius: 8px; padding: .5rem .7rem;
}
.reg-success {
  margin: 0; font-size: .85rem; color: #166534;
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: .5rem .7rem;
}
.reg-nav { display: flex; gap: .6rem; }
.reg-nav .btn { flex: 1; }

@media (max-width: 480px) {
  .f2 { grid-template-columns: 1fr; }
  .reg-dialog { width: 100vw; max-width: 100vw; max-height: 100vh; border-radius: 0; }
}

.foot { background: var(--navy-deep); color: #c8d6ea; padding: 4rem 0 1.5rem; font-size: .95rem; }
.foot-in { display: grid; gap: 2.5rem; }
@media (min-width: 820px) { .foot-in { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.foot-brand p { margin: 0; max-width: 26rem; }
.foot-h { font-family: var(--label); font-weight: 700; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--warm-gold); margin: 0 0 1rem; }
.foot-nav { display: grid; gap: .55rem; align-content: start; }
.foot-nav a, .foot-contact a { color: #c8d6ea; text-decoration: none; }
.foot-nav a:hover, .foot-contact a:hover { color: var(--warm-gold); }
.foot-contact p { margin: 0 0 .55rem; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding-top: 1.5rem; }
.foot-bottom p { margin: 0; font-size: .8rem; opacity: .6; }

.countdown { display: none; }
.js .countdown { display: block; margin: 2rem auto 0; }
.cd-units { display: flex; justify-content: center; gap: clamp(.5rem, 3vw, 1.5rem); }
.cd-unit { min-width: 4.25rem; padding: .65rem .45rem; border-radius: var(--r); background: rgba(250,249,247,.06); border: 1px solid rgba(112,138,181,.22); }
.cd-num { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(1.4rem, 4.5vw, 1.9rem); line-height: 1; color: var(--warm-gold); font-variant-numeric: tabular-nums; }
.cd-label { display: block; margin-top: .3rem; font-family: var(--label); font-weight: 700; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: #a9b8cf; }
.cd-done { margin: 0; font-family: var(--display); font-style: italic; font-size: 1.15rem; color: var(--warm-gold); }

@keyframes hh-letter { from { opacity: 0; transform: translateY(.18em) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes hh-rise   { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.js .lockup-word > span { opacity: 0; animation: hh-letter .62s cubic-bezier(.22,.7,.28,1) both; }
.js .lockup-word > span:nth-child(1) { animation-delay: .10s }
.js .lockup-word > span:nth-child(2) { animation-delay: .155s }
.js .lockup-word > span:nth-child(3) { animation-delay: .21s }
.js .lockup-word > span:nth-child(4) { animation-delay: .265s }
.js .lockup-word > span:nth-child(5) { animation-delay: .32s }
.js .lockup-word > span:nth-child(6) { animation-delay: .375s }
.js .lockup-word > span:nth-child(7) { animation-delay: .43s }

.js [data-in] { opacity: 0; animation: hh-rise .6s cubic-bezier(.22,.7,.28,1) both; }
.js [data-in="1"] { animation-delay: .56s } .js [data-in="2"] { animation-delay: .70s }
.js [data-in="3"] { animation-delay: .79s } .js [data-in="4"] { animation-delay: .87s }
.js [data-in="5"] { animation-delay: .95s } .js [data-in="6"] { animation-delay: 1.03s }
.js [data-in="7"] { animation-delay: 1.11s } .js [data-in="8"] { animation-delay: 1.19s }
.js .countdown[data-in] { display: block; }

.js [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .55s ease-out, transform .55s ease-out; transition-delay: var(--reveal-delay, 0ms); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .lockup-word > span, .js [data-in], .js [data-reveal] {
    opacity: 1; transform: none; animation: none; transition: none;
  }
}

.result, .pay-wait {
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem var(--gutter);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,184,28,.10), transparent 45%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.result-card, .pay-wait-in {
  width: 100%; max-width: 38rem;
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-top: 4px solid var(--navy);
  border-radius: var(--r-lg);
  box-shadow: var(--lift-hi);
  padding: clamp(1.75rem, 5vw, 3rem);
}
.pay-wait-in { text-align: center; }
.result-card .eyebrow-gold, .pay-wait-in .eyebrow-gold { color: var(--muted-gold); }
.result-card .h-lg, .pay-wait-in .h-md { color: var(--navy); }
.result-success { border-top-color: #1f7a48; }
.result-pending { border-top-color: var(--warm-gold); }
.result-failed, .result-error { border-top-color: var(--festive); }
.result-meta { list-style: none; margin: 1.75rem 0 0; padding: 0; border-top: 1px solid var(--ivory-border); }
.result-meta li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--ivory-border); }
.result-meta span { font-family: var(--label); font-weight: 700; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.result-meta strong { font-weight: 600; color: var(--navy); font-variant-numeric: tabular-nums; text-align: right; overflow-wrap: anywhere; }
.result-note { margin: 1.5rem 0 0; font-size: .95rem; line-height: 1.6; color: var(--ink-soft); }
.result-card .body-lg a, .result-note a { color: var(--navy); font-weight: 600; text-underline-offset: 3px; }
.result-card .btn, .pay-wait-in .btn { margin-top: 1.75rem; }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }
@media (max-width: 480px) {
  .result-card .btn, .pay-wait-in .btn { width: 100%; white-space: normal; }
  .result-meta li { flex-direction: column; align-items: flex-start; gap: .2rem; }
  .result-meta strong { text-align: left; }
}
