@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@500;600;700;800;900&display=swap');

:root {
  --navy: #073f59;
  --navy-dark: #062f42;
  --cyan: #50c9df;
  --cyan-light: #a8edf5;
  --yellow: #ffd24a;
  --cream: #fffdf5;
  --ink: #073247;
  --white: #ffffff;
  --shadow: #31afc5;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; }
::selection { background: var(--yellow); color: var(--navy-dark); }

.ticker {
  background: var(--yellow);
  color: var(--navy-dark);
  overflow: hidden;
  border-bottom: 3px solid var(--navy);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .08em;
  white-space: nowrap;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
  padding: .55rem 0;
}
.ticker__track span { padding-right: 2rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem max(5vw, 1.25rem);
  background: rgba(255,253,245,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7,63,89,.14);
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  font-family: "Archivo Black", Impact, sans-serif;
  line-height: .8;
  transform: skew(-3deg);
}
.brand__chat {
  padding: .35rem .25rem .35rem .45rem;
  color: var(--white);
  background: var(--navy);
}
.brand__jkt {
  padding: .35rem .45rem;
  color: var(--navy);
  background: var(--cyan);
  box-shadow: 4px 4px 0 var(--navy);
}
.brand small {
  position: absolute;
  top: 115%;
  left: 0;
  width: max-content;
  font-family: Inter, sans-serif;
  font-size: .45rem;
  font-weight: 900;
  letter-spacing: .12em;
  transform: skew(3deg);
}
nav { display: flex; gap: 1.25rem; }
nav a {
  text-decoration: none;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}
nav a:hover { text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 4px; }

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 7rem 5vw 6rem;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(80,201,223,.22), transparent 24rem),
    radial-gradient(circle at 90% 75%, rgba(255,210,74,.14), transparent 22rem),
    var(--navy-dark);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 28vw;
  height: 110%;
  top: -5%;
  background: var(--cyan);
  opacity: .07;
  transform: rotate(15deg);
}
.hero::before { left: -18vw; }
.hero::after { right: -18vw; }
.hero__burst {
  position: absolute;
  right: 8vw;
  top: 10vh;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--navy-dark);
  clip-path: polygon(50% 0%,60% 31%,85% 15%,69% 40%,100% 50%,69% 60%,85% 85%,60% 69%,50% 100%,40% 69%,15% 85%,31% 60%,0% 50%,31% 40%,15% 15%,40% 31%);
  font-size: 2rem;
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.eyebrow,
.section__kicker {
  margin: 0 0 1.25rem;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--yellow); }
.hero h1 {
  margin: 0;
  max-width: 1100px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: .82;
  letter-spacing: -.06em;
  transform: skew(-2deg);
}
.hero h1 span {
  display: inline-block;
  color: var(--cyan);
  text-shadow: .06em .055em 0 rgba(255,255,255,.13);
}
.hero__lede {
  max-width: 850px;
  margin: 2.2rem auto .6rem;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.45;
}
.money {
  display: inline-block;
  padding: .03em .18em;
  color: var(--navy-dark);
  background: var(--yellow);
  transform: rotate(-1deg);
}
.hero__sub { margin: .5rem 0 2rem; color: var(--cyan-light); font-weight: 700; }
.hero__fineprint { margin-top: 1.2rem; font-size: .72rem; opacity: .62; }

.button {
  display: inline-block;
  border: 3px solid var(--white);
  padding: .95rem 1.25rem;
  color: var(--white);
  background: transparent;
  text-decoration: none;
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--cyan);
  transition: transform .15s ease, box-shadow .15s ease;
}
.button:hover { transform: translate(3px,3px); box-shadow: 3px 3px 0 var(--cyan); }
.button--yellow { border-color: var(--navy); color: var(--navy); background: var(--yellow); box-shadow: 6px 6px 0 var(--cyan); }

.marquee {
  overflow: hidden;
  background: var(--cyan);
  color: var(--navy-dark);
  border-block: 4px solid var(--navy-dark);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.1rem, 3vw, 2.1rem);
  white-space: nowrap;
  transform: rotate(-1deg) scale(1.02);
}
.marquee div { width: max-content; padding: .75rem 0; animation: marquee 38s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem max(5vw, 1.25rem);
}
.section h2 {
  margin: 0 0 1.5rem;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: .95;
  letter-spacing: -.045em;
}
.big-copy {
  max-width: 870px;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  line-height: 1.25;
  font-weight: 800;
}
.big-copy em { text-decoration: underline; text-decoration-color: var(--cyan); text-decoration-thickness: .2em; }

.award {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 2.4rem;
  padding: 2.2rem;
  background: var(--white);
  border: 4px solid var(--navy);
  box-shadow: 12px 12px 0 var(--cyan);
}
.award__seal {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  border: 7px double var(--navy);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 2.2rem;
  line-height: .8;
  transform: rotate(-8deg);
}
.award__seal span { font-size: 1.4rem; margin-top: .6rem; }
.award__overline { margin: 0 0 .4rem; font-size: .7rem; font-weight: 900; letter-spacing: .15em; }
.award h3 { margin: 0 0 .55rem; font-size: clamp(1.4rem, 3vw, 2.3rem); }
.award p:last-child { margin: 0; line-height: 1.55; }

.stats {
  max-width: none;
  background: var(--navy);
  color: var(--white);
}
.stats > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.stats .section__kicker { color: var(--yellow); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.stat {
  min-height: 260px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: var(--navy-dark);
  border: 2px solid rgba(255,255,255,.18);
}
.stat--primary { background: var(--cyan); color: var(--navy-dark); }
.stat__number {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: .86;
  letter-spacing: -.07em;
}
.stat__label { max-width: 380px; margin-top: 1rem; font-weight: 800; font-size: 1.05rem; line-height: 1.3; }
.stat-note {
  margin-top: 1.6rem;
  padding-left: 1rem;
  border-left: 4px solid var(--yellow);
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  line-height: 1.6;
}

.model-card { padding-block: 6rem; }
.terminal {
  overflow: hidden;
  max-width: 870px;
  margin: auto;
  border-radius: 8px;
  background: #061f2a;
  color: #c8f7ff;
  box-shadow: 14px 14px 0 var(--yellow);
  border: 3px solid var(--navy);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.terminal__bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1rem;
  background: #e9eef0;
  color: #5c6870;
  font-family: Inter, sans-serif;
  font-size: .7rem;
}
.terminal__bar i { width: 11px; height: 11px; border-radius: 50%; background: #88959b; }
.terminal__bar span { margin-left: .5rem; }
.terminal__body { padding: 2rem; font-size: clamp(.8rem, 2vw, 1.05rem); line-height: 1.7; }
.terminal__body p { margin: .4rem 0; }
.terminal__body b { color: var(--yellow); }

.thank-you { text-align: center; }
.thank-you > p:not(.section__kicker) { max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.thank-you__giant {
  margin-top: 3rem !important;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: .95 !important;
  color: var(--navy);
}
.thank-you__aside { font-style: italic; opacity: .72; }

.crescendo {
  position: relative;
  max-width: none;
  overflow: hidden;
  text-align: center;
  background: var(--cyan);
  border-block: 5px solid var(--navy);
}
.crescendo > *:not(.confetti-zone) { position: relative; z-index: 2; max-width: var(--max); margin-left: auto; margin-right: auto; }
.crescendo h2 { color: var(--navy); font-size: clamp(4rem, 10vw, 9rem); }
.final-brand {
  width: max-content;
  margin-top: 3rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  color: var(--white);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: .85;
  transform: skew(-3deg);
  box-shadow: 12px 12px 0 var(--yellow);
}
.final-brand span { padding: .25em .15em .25em .3em; background: var(--navy); }
.final-brand strong { padding: .25em .3em .25em .15em; color: var(--navy); background: var(--white); }
.final-brand small {
  position: absolute;
  right: .4rem;
  bottom: .25rem;
  color: var(--navy);
  font-family: Inter, sans-serif;
  font-size: .12em;
  letter-spacing: .15em;
  transform: skew(3deg);
}
.final-copy { font-size: clamp(1.2rem, 3vw, 2rem); line-height: 1.5; }
.confetti-zone { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.confetti {
  position: absolute;
  top: -20px;
  width: 9px;
  height: 16px;
  background: var(--navy);
  animation: fall linear forwards;
}
@keyframes fall {
  to { transform: translate3d(var(--drift), 115vh, 0) rotate(900deg); opacity: .9; }
}

.receipts h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.receipts > p { max-width: 820px; line-height: 1.65; }
.receipt-list { display: grid; gap: .75rem; margin: 2rem 0; }
.receipt-list a {
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 2px solid var(--navy);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 5px 5px 0 var(--cyan);
}
.receipt-list a:hover { background: var(--yellow); }
.method-note { font-size: .85rem; opacity: .75; }

footer {
  padding: 3rem max(5vw, 1.25rem);
  color: rgba(255,255,255,.82);
  background: var(--navy-dark);
  border-top: 8px solid var(--yellow);
}
footer p { max-width: 900px; font-size: .75rem; line-height: 1.6; }
.footer__brand { color: var(--cyan); font-family: "Archivo Black", Impact, sans-serif; font-size: 1.5rem; }
.footer__tiny { color: var(--yellow); }

@media (max-width: 740px) {
  nav { display: none; }
  .site-header { padding-bottom: 1.2rem; }
  .hero { min-height: 78vh; padding-top: 5rem; }
  .hero__burst { width: 70px; height: 70px; right: -10px; top: 60px; }
  .award { grid-template-columns: 1fr; }
  .award__seal { width: 110px; height: 110px; font-size: 1.7rem; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { min-height: 210px; }
  .terminal__body { padding: 1.25rem; overflow-x: auto; }
  .final-brand { box-shadow: 7px 7px 0 var(--yellow); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ===== V2 POLISH + MOBILE ===== */
.hero > *, .achievement > *, .stats > *, .receipts > * { margin-left:auto; margin-right:auto; }
.hero__lede { max-width:760px; text-align:center; text-wrap:balance; }
.hero h1, .eyebrow { text-align:center; width:100%; }
.section { width:min(100% - 2.5rem, 1180px); }
.stats, .crescendo { width:100%; max-width:none; }
.stats > * { width:min(100% - 2.5rem,1180px); }
.thank-you { width:min(100% - 2.5rem,900px); }
.big-copy strong { text-decoration:underline; text-decoration-color:var(--cyan); text-decoration-thickness:.18em; text-underline-offset:.08em; }
.mini-badge { display:inline-block; margin:.15rem 0 .85rem; padding:.42rem .62rem; background:var(--yellow); color:var(--navy-dark); font-size:.66rem; font-weight:900; letter-spacing:.08em; line-height:1.3; }
.stats__grid { margin-top:2.25rem; }
.thank-you h2 { max-width:860px; margin-left:auto; margin-right:auto; }
.receipts { width:min(100% - 2.5rem,1180px); }
.receipt-list { grid-template-columns:repeat(3,minmax(0,1fr)); }
.receipt-list a { min-height:135px; display:flex; align-items:flex-end; }
footer { padding:3.5rem max(5vw,1.25rem) 1.5rem; }
.footer-grid { max-width:1180px; margin:auto; display:grid; grid-template-columns:1.15fr .85fr; gap:4rem; }
.footer-bottom { max-width:1180px; margin:2rem auto 0; padding-top:1rem; border-top:1px solid rgba(255,255,255,.16); display:flex; justify-content:space-between; gap:1rem; color:var(--yellow); font-size:.68rem; font-weight:800; letter-spacing:.05em; }
.diagnostics-link { padding:0; border:0; background:transparent; color:var(--yellow); font-size:.76rem; font-weight:900; letter-spacing:.05em; text-decoration:underline; text-underline-offset:.25rem; cursor:pointer; }
body.modal-open { overflow:hidden; }
.modal { position:fixed; z-index:100; inset:0; display:none; place-items:center; padding:1.25rem; }
.modal.is-open { display:grid; }
.modal__backdrop { position:absolute; inset:0; background:rgba(2,23,32,.82); backdrop-filter:blur(6px); }
.modal__dialog { position:relative; z-index:2; width:min(100%,900px); max-height:calc(100vh - 2.5rem); overflow:auto; padding:2rem; background:var(--cream); border:4px solid var(--navy); box-shadow:14px 14px 0 var(--yellow); }
.modal__close { position:absolute; right:1rem; top:.7rem; border:0; background:transparent; color:var(--navy); font-size:2rem; line-height:1; cursor:pointer; }
.modal__eyebrow { margin:0 0 .5rem; font-size:.7rem; font-weight:900; letter-spacing:.14em; }
.modal h2 { margin:0 3rem 1.5rem 0; font-family:"Archivo Black",Impact,sans-serif; font-size:clamp(2rem,5vw,3.7rem); line-height:.95; }
.modal .terminal { max-width:none; margin:0; }
.modal .terminal__body p { white-space:nowrap; }
@media (max-width:900px){
  .receipt-list{grid-template-columns:1fr;}
  .receipt-list a{min-height:100px;}
  .footer-grid{grid-template-columns:1fr; gap:1.8rem;}
}
@media (max-width:740px){
  .section{width:min(100% - 1.5rem,1180px); padding:4.7rem 0;}
  .stats > *{width:min(100% - 1.5rem,1180px);}
  .thank-you{width:min(100% - 1.5rem,900px);}
  .hero{min-height:74vh; padding:4.5rem .75rem 4rem;}
  .hero h1{font-size:clamp(3.2rem,17vw,5.4rem); line-height:.84;}
  .hero__lede{font-size:1.05rem; max-width:34rem;}
  .hero__burst{width:64px;height:64px;right:-6px;top:58px;font-size:1.35rem;}
  .button{width:100%; max-width:330px; text-align:center;}
  .award{grid-template-columns:1fr; padding:1.4rem; box-shadow:8px 8px 0 var(--cyan);}
  .award__seal{width:100px;height:100px;font-size:1.55rem;}
  .stats__grid{grid-template-columns:1fr;}
  .stat{min-height:185px;padding:1.5rem;}
  .stat__number{font-size:clamp(3rem,20vw,5.2rem);}
  .thank-you__giant{font-size:clamp(2.3rem,12vw,4.1rem);}
  .final-brand{font-size:clamp(2.2rem,13vw,4.2rem);box-shadow:7px 7px 0 var(--yellow);max-width:95vw;}
  .final-brand small{display:none;}
  .footer-bottom{flex-direction:column;}
  .modal__dialog{padding:1.25rem;box-shadow:8px 8px 0 var(--yellow);}
  .modal .terminal__body{padding:1rem;overflow-x:auto;}
}
@media (max-width:430px){
  .ticker{font-size:.67rem;}
  .hero h1{font-size:clamp(3rem,16.5vw,4.7rem);}
  .eyebrow,.section__kicker{font-size:.67rem;letter-spacing:.13em;}
  .crescendo h2{font-size:clamp(3.6rem,17vw,5.6rem);}
}


/* ===== V2.1 HERO TRUE-CENTER HOTFIX ===== */
.hero h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: none;
}

.hero h1 .hero__congrats,
.hero h1 .hero__jkt {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  transform: skew(-2deg);
  transform-origin: center center;
}

.hero h1 .hero__congrats {
  color: var(--white);
  /* Optical centering: compensates slightly for the trailing comma. */
  position: relative;
  left: .018em;
}

.hero h1 .hero__jkt {
  color: var(--cyan);
  text-shadow: .06em .055em 0 rgba(255,255,255,.13);
}

@media (max-width: 740px) {
  .hero h1 .hero__congrats,
  .hero h1 .hero__jkt {
    max-width: calc(100vw - 1.5rem);
  }
}


/* ===== V2.2 MOBILE HERO FIT FIX ===== */
.hero h1 {
  font-size: inherit;
  line-height: .82;
  overflow: visible;
}

.hero h1 .hero__congrats {
  font-size: clamp(3.4rem, 8.3vw, 7.4rem);
  line-height: .9;
  letter-spacing: -.065em;
  white-space: nowrap;
  width: auto;
  max-width: calc(100vw - 3rem);
}

.hero h1 .hero__jkt {
  margin-top: .06em;
  font-size: clamp(4.8rem, 12vw, 9.5rem);
  line-height: .82;
  letter-spacing: -.065em;
  white-space: nowrap;
  width: auto;
}

@media (max-width: 740px) {
  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 .hero__congrats {
    font-size: 10.2vw;
    max-width: calc(100vw - 2rem);
    letter-spacing: -.07em;
    left: 0;
  }

  .hero h1 .hero__jkt {
    font-size: 19vw;
    max-width: calc(100vw - 2rem);
  }

  .hero__burst {
    width: 52px;
    height: 52px;
    right: .35rem;
    top: 8.2rem;
    font-size: 1.05rem;
  }
}

@media (max-width: 430px) {
  .hero h1 .hero__congrats {
    font-size: 9.9vw;
    max-width: calc(100vw - 1.5rem);
  }

  .hero h1 .hero__jkt {
    font-size: 20vw;
  }

  .hero__lede {
    width: 100%;
    max-width: 22rem;
    padding-inline: .15rem;
  }
}


/* ===== V2.3 MOBILE HERO FINAL FIT ===== */
@media (max-width: 740px) {
  .hero {
    padding-top: 4.25rem;
  }

  .hero h1 .hero__congrats {
    font-size: 8.25vw;
    line-height: .95;
    letter-spacing: -.055em;
    transform: none;
    left: 0;
    width: auto;
    max-width: calc(100vw - 2.25rem);
    white-space: nowrap;
  }

  .hero h1 .hero__jkt {
    margin-top: .12em;
    font-size: 18.5vw;
    line-height: .82;
    max-width: calc(100vw - 2rem);
  }

  .hero__burst {
    width: 46px;
    height: 46px;
    right: .6rem;
    top: 13.2rem;
    font-size: .95rem;
  }
}

@media (max-width: 430px) {
  .hero h1 .hero__congrats {
    font-size: 8.1vw;
    max-width: calc(100vw - 1.5rem);
    letter-spacing: -.05em;
  }

  .hero h1 .hero__jkt {
    font-size: 19vw;
  }

  .hero__burst {
    width: 42px;
    height: 42px;
    right: .45rem;
    top: 13.6rem;
  }
}
