:root {
  --navy: #052655;
  --navy-deep: #02214f;
  --navy-ink: #122341;
  --red: #b91a1e;
  --red-bright: #d8474b;
  --gold: #b8904c;
  --gold-bright: #e3c583;
  --sky: #6e94b7;
  --sky-light: #afc6db;
  --paper: #fdfbf6;
  --paper-2: #f4efe4;
  --ink: #1c2a44;
  --dim: #5c6b84;
  --card: #ffffff;
  --grad-cta: linear-gradient(120deg, #b91a1e, #d8474b 45%, #b8904c);
  --grad-head: linear-gradient(105deg, #052655 15%, #2e5c8f 50%, #6e94b7 85%);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito Sans", system-ui, sans-serif;
  background: var(--navy-deep);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
[hidden] {
  display: none !important;
}
::selection {
  background: rgba(184, 144, 76, 0.28);
  color: var(--navy-ink);
}
img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--navy);
  color: #fff;
  font:
    700 14px "Public Sans",
    sans-serif;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s;
}
.skip-link:focus {
  transform: none;
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ─── ambient background ─── */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.bg .b1 {
  width: 52vmax;
  height: 52vmax;
  left: -14vmax;
  top: -16vmax;
  opacity: 0.28;
  background: radial-gradient(circle, #dce8f4, transparent 65%);
  animation: drift1 30s ease-in-out infinite alternate;
}
.bg .b2 {
  width: 44vmax;
  height: 44vmax;
  right: -14vmax;
  top: 22%;
  opacity: 0.22;
  background: radial-gradient(circle, #f6e3d2, transparent 65%);
  animation: drift2 36s ease-in-out infinite alternate;
}
.bg .b3 {
  width: 40vmax;
  height: 40vmax;
  left: 28%;
  bottom: -18vmax;
  opacity: 0.18;
  background: radial-gradient(circle, #f3d9da, transparent 65%);
  animation: drift3 42s ease-in-out infinite alternate;
}
@keyframes drift1 {
  to {
    transform: translate(9vmax, 7vmax) scale(1.12);
  }
}
@keyframes drift2 {
  to {
    transform: translate(-8vmax, 9vmax) scale(0.9);
  }
}
@keyframes drift3 {
  to {
    transform: translate(10vmax, -7vmax) scale(1.08);
  }
}

/* spotlight cones from top */
.spot {
  position: fixed;
  top: -12vh;
  width: 38vw;
  height: 80vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background: linear-gradient(
    180deg,
    rgba(227, 197, 131, 0.28),
    transparent 70%
  );
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  filter: blur(14px);
  animation: sway 11s ease-in-out infinite alternate;
  transform-origin: top center;
}
.spot.left {
  left: 2vw;
  rotate: -8deg;
}
.spot.right {
  right: 2vw;
  rotate: 8deg;
  animation-delay: -5s;
  background: linear-gradient(
    180deg,
    rgba(110, 148, 183, 0.24),
    transparent 70%
  );
}
@keyframes sway {
  from {
    transform: rotate(-3deg);
  }
  to {
    transform: rotate(3deg);
  }
}

/* floating sparkle particles */
.sparks {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.sparks i {
  position: absolute;
  font-style: normal;
  font-size: 13px;
  opacity: 0;
  animation: floatup 12s linear infinite;
}
@keyframes floatup {
  0% {
    opacity: 0;
    transform: translateY(20vh) rotate(0);
  }
  12% {
    opacity: 0.5;
  }
  88% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-95vh) rotate(50deg);
  }
}

/* ─── cursor glow ─── */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(184, 144, 76, 0.14),
    rgba(110, 148, 183, 0.06) 45%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  left: -500px;
  top: -500px;
}

/* ─── entrance + scroll reveal ─── */
.rise {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.d1 {
  animation-delay: 0.05s;
}
.d2 {
  animation-delay: 0.25s;
}
.d3 {
  animation-delay: 0.5s;
}
.d4 {
  animation-delay: 0.7s;
}
.d5 {
  animation-delay: 0.9s;
}
.rv {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.9, 0.3, 1),
    transform 0.8s cubic-bezier(0.22, 0.9, 0.3, 1);
}
.rv.on {
  opacity: 1;
  transform: translateY(0);
}

@keyframes blink {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(185, 26, 30, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(185, 26, 30, 0);
  }
}

/* TOP NAV — same content width as hero/sections */
.topnav {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--navy-deep);
  border-top: 3px solid #4a4a2a;
  border-bottom: 1px solid rgba(5, 38, 85, 0.08);
  font-family: "Public Sans", system-ui, sans-serif;
}
.topnav-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.topnav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--card);
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}
.topnav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 0;
  object-fit: contain;
}
.topnav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-left: auto;
}
.topnav-links a {
  color: #5a6578;
  text-decoration: none;
  font-family: "Public Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.topnav-links a:hover {
  color: var(--navy);
}
.topnav-cta {
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--card);
  font-family: "Public Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  /* padding: 12px 22px; */
  border-radius: 5px;
  box-shadow: none;
  transition:
    filter 0.2s,
    background 0.2s;
}
.topnav-cta:hover {
  filter: brightness(1.05);
  transform: none;
  box-shadow: none;
}
@media (max-width: 860px) {
  .topnav-inner {
    padding: 16px 24px;
    gap: 16px;
  }
  .topnav-links {
    gap: 16px;
  }
  .topnav-links a {
    display: none;
  }
}

/* ─── ABOVE THE FOLD (hero + marquee ≤ 100vh) ─── */
.above-fold {
  min-height: calc(100vh - 84px);
  min-height: calc(100dvh - 290px);
  display: flex;
  flex-direction: column;
}

/* ─── HERO (NSL-style split) ─── */
.hero {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(28px, 5vh, 56px) 28px clamp(20px, 3vh, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  flex: 1 1 auto;
  text-align: left;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.hero-kicker {
  margin: 0 0 10px;
  font-size: clamp(11px, 1.15vw, 12.5px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.5;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 clamp(14px, 2vh, 22px);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(33, 65, 109, 0.05);
  border: 1px solid rgba(5, 38, 85, 0.08);
  color: var(--card);
  font-size: 12.5px;
  font-weight: 600;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(184, 144, 76, 0.45);
  animation: blink 2s infinite;
}
h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, min(4.6vw, 6.2vh), 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 11.5em;
  margin: 0 0 clamp(14px, 2vh, 20px);
  color: var(--navy-ink);
}
h1 .g1,
h1 .g2 {
  color: var(--card);
  -webkit-text-fill-color: var(--card);
  background: none;
}
h1 .g3 {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  background: none;
}
h1 .g1,
h1 .g2,
h1 .g3 {
  display: block;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(0.25em);
  animation: phraseIn 0.65s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}
h1 .g1 {
  animation-delay: 0.15s;
}
h1 .g2 {
  animation-delay: 0.28s;
}
h1 .g3 {
  animation-delay: 0.42s;
}
@keyframes phraseIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
.lede {
  color: var(--card);
  font-size: clamp(15px, min(1.35vw, 2vh), 17.5px);
  line-height: 1.65;
  max-width: 42ch;
  margin: 0;
}
.lede b {
  color: var(--gold);
  font-weight: 700;
}
.flipbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: 0.12em;
  height: 1em;
  line-height: 1;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  position: relative;
}
.flipword {
  display: block;
  font-size: inherit;
  font-weight: 700;
  font-style: italic;
  color: var(--red);
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.5s cubic-bezier(0.3, 0.9, 0.3, 1),
    opacity 0.4s;
}
.flipword.out {
  transform: translateY(-110%);
  opacity: 0;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: clamp(22px, 3.2vh, 32px) 0 0;
  width: 100%;
}
.hero-waitlist {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 4px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid rgba(5, 38, 85, 0.12);
  box-shadow: 0 8px 24px rgba(5, 38, 85, 0.08);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  max-width: 100%;
}
.hero-waitlist:focus-within {
  border-color: rgba(184, 144, 76, 0.55);
  box-shadow:
    0 10px 28px rgba(184, 144, 76, 0.16),
    0 0 0 4px rgba(184, 144, 76, 0.12);
}
.hero-waitlist input {
  min-width: 0;
  width: min(220px, 36vw);
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
}
.hero-waitlist input::placeholder {
  color: rgba(92, 107, 132, 0.75);
}
.hero-waitlist .cta {
  padding: 12px 20px;
  box-shadow: none;
  flex: none;
  white-space: nowrap;
  font-size: 15px;
}
.hero-waitlist .cta {
  border-radius: 10px;
}
.hero-waitlist .cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(5, 38, 85, 0.28);
}
.cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font:
    700 15px "Nunito Sans",
    sans-serif;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 26px rgba(5, 38, 85, 0.22);
  transition:
    transform 0.18s,
    box-shadow 0.25s,
    background 0.2s;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(5, 38, 85, 0.3);
  background: var(--navy-deep);
}
.cta.ghost {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid rgba(5, 38, 85, 0.18);
  box-shadow: none;
  padding: 12px 22px;
  border-radius: 10px;
}
.cta.ghost:hover {
  border-color: rgba(5, 38, 85, 0.4);
  background: #fff;
  box-shadow: 0 10px 26px rgba(5, 38, 85, 0.1);
}
.cta:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ─── STAGE (logo card) ─── */
.stage-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 0 0 auto;
  perspective: 1000px;
  justify-self: end;
}
.stage {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow:
    0 22px 50px rgba(5, 38, 85, 0.14),
    0 4px 14px rgba(5, 38, 85, 0.06);
  border: 1px solid rgba(5, 38, 85, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
}
.stage video,
.stage #logoAnim {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(56vh, 500px);
  object-fit: contain;
  background: #fff;
}

/* marquee */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: clamp(8px, 1.2vh, 14px) 0;
  margin: 0;
  flex: none;
  border-top: 1px solid rgba(5, 38, 85, 0.08);
  border-bottom: 1px solid rgba(5, 38, 85, 0.08);
  background: linear-gradient(
    90deg,
    rgba(244, 239, 228, 0.55),
    rgba(255, 255, 255, 0.55),
    rgba(244, 239, 228, 0.55)
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}
.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.marquee span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(5, 38, 85, 0.45);
  padding-right: 10px;
}
.marquee span em {
  font-style: normal;
  color: var(--gold);
  opacity: 0.9;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ─── sections ─── */
section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 28px 0;
}
.sec-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--navy-ink);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.sec-head p {
  color: var(--dim);
  line-height: 1.65;
  font-size: 15.5px;
}

/* ─── 3 STEPS ─── */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  z-index: 1;
  background: var(--card);
  border-radius: 16px;
  padding: 28px 22px 26px;
  text-align: left;
  border: 1px solid rgba(5, 38, 85, 0.08);
  box-shadow: 0 8px 28px rgba(5, 38, 85, 0.04);
  transition:
    transform 0.25s,
    box-shadow 0.3s,
    border-color 0.25s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 38, 85, 0.09);
  border-color: rgba(184, 144, 76, 0.28);
}
.step-idx {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.step .num {
  width: 48px;
  height: 48px;
  margin: 0 0 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nbg, #f6eedd);
  box-shadow: 0 4px 14px rgba(5, 38, 85, 0.06);
}
.step .num svg {
  width: 24px;
  height: 24px;
}
.step h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step p {
  font-size: 14.5px;
  color: var(--dim);
  line-height: 1.6;
}

/* ─── WHY IT MATTERS ─── */
.why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  position: relative;
  background: var(--card);
  border-radius: 18px;
  padding: 26px 18px;
  text-align: center;
  border: 1px solid rgba(5, 38, 85, 0.07);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.3s,
    border-color 0.25s;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(5, 38, 85, 0.1);
  border-color: rgba(5, 38, 85, 0.12);
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
  background: linear-gradient(
    160deg,
    var(--tint, rgba(110, 148, 183, 0.12)),
    transparent 60%
  );
}
.why-card:hover::before {
  opacity: 1;
}
.why-card .ic {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icbg, #eaf1f8);
  transition: transform 0.3s;
  position: relative;
  z-index: 1;
}
.why-card:hover .ic {
  transform: scale(1.1) rotate(-5deg);
}
.why-card .ic svg {
  width: 24px;
  height: 24px;
}
.why-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.why-card p {
  font-size: 13.5px;
  color: var(--dim);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

@property --a {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes borderspin {
  to {
    --a: 360deg;
  }
}

/* ─── FORM ─── */
.form-shell {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--a, 0deg),
    rgba(185, 26, 30, 0.45),
    rgba(184, 144, 76, 0.5),
    rgba(110, 148, 183, 0.45),
    rgba(5, 38, 85, 0.45),
    rgba(185, 26, 30, 0.45)
  );
  animation: borderspin 14s linear infinite;
  box-shadow: 0 20px 50px rgba(5, 38, 85, 0.08);
}
.form-card {
  background: #fff;
  border-radius: 23px;
  padding: 36px 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.field label .opt {
  font-weight: 400;
  color: var(--dim);
}
.field input,
.field select {
  padding: 13px 15px;
  border-radius: 11px;
  border: 1.5px solid rgba(5, 38, 85, 0.14);
  background: var(--paper);
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.field input:focus,
.field select:focus {
  border-color: rgba(184, 144, 76, 0.65);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184, 144, 76, 0.18);
}
.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  text-align: left;
  font-size: 13.5px;
  color: var(--dim);
  line-height: 1.55;
  margin-top: 4px;
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex: none;
}
.minors-note {
  font-size: 12.5px;
  color: var(--dim);
  background: var(--paper-2);
  border-left: 3px solid var(--gold);
  padding: 11px 14px;
  border-radius: 0 12px 12px 0;
  text-align: left;
  line-height: 1.55;
  margin-top: 6px;
}
.hp {
  position: absolute;
  left: -5000px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.form-card .cta {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}
.joined {
  display: none;
  text-align: center;
  padding: 26px 10px 6px;
}
.joined.show {
  display: block;
  animation: pop 0.5s cubic-bezier(0.3, 1.6, 0.5, 1);
}
.joined-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 144, 76, 0.15);
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}
.joined .big {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 10px 0 8px;
}
.joined p {
  color: var(--dim);
  font-size: 15px;
  line-height: 1.6;
}
@keyframes pop {
  0% {
    transform: scale(0.75);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.shake {
  animation: shake 0.45s ease;
}
@keyframes shake {
  0%,
  100% {
    transform: none;
  }
  20% {
    transform: translateX(-9px);
  }
  40% {
    transform: translateX(8px);
  }
  60% {
    transform: translateX(-6px);
  }
  80% {
    transform: translateX(4px);
  }
}
.confetti {
  position: fixed;
  top: -14px;
  z-index: 60;
  pointer-events: none;
  border-radius: 2px;
  animation: confall linear forwards;
}
@keyframes confall {
  to {
    transform: translateY(105vh) rotate(var(--rot));
    opacity: 0.9;
  }
}

/* ─── SHARE ─── */
.socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(5, 38, 85, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(5, 38, 85, 0.05);
}
.socials-label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.share-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(5, 38, 85, 0.16);
  color: rgba(5, 38, 85, 0.75);
  background: #fff;
  cursor: pointer;
  transition:
    transform 0.2s,
    border-color 0.25s,
    color 0.25s,
    box-shadow 0.25s;
}
.share-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 144, 76, 0.65);
  color: var(--gold);
  box-shadow: 0 8px 20px rgba(184, 144, 76, 0.18);
}
.share-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.share-btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
a.share-btn {
  text-decoration: none;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 20px);
  z-index: 70;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.contact-line {
  text-align: center;
  color: var(--dim);
  font-size: 14.5px;
  margin-top: 30px;
}
.contact-trigger {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: var(--red);
  font: inherit;
  font-weight: 700;
  border-bottom: 2px solid rgba(185, 26, 30, 0.25);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.contact-trigger:hover {
  border-color: var(--red);
  color: #9a1518;
}
.contact-trigger:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── FOOTER (NSL-inspired) ─── */
footer {
  /* margin-top:96px; */
  background: transparent;
  color: #e8eef7;
  border-top: none;
  padding: 0;
}
.foot-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 15px 0px 15px;
}
.foot-statement {
  margin: 0 0 36px;
  text-align: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.35;
  color: #fff;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(110, 148, 183, 0.22);
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1.4fr) minmax(0, 0.7fr);
  gap: 40px 48px;
  /* padding:8px 0 36px; */
  border-bottom: 1px solid rgba(110, 148, 183, 0.22);
}
.foot-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}
.foot-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
}
.foot-blurb {
  margin: 0 0 14px;
  color: rgba(210, 220, 235, 0.78);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 38ch;
}
.foot-contact {
  margin: 0 0 22px;
  font-size: 13.5px;
  color: rgba(210, 220, 235, 0.55);
}
.foot-contact a {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.foot-contact a:hover {
  border-color: var(--gold-bright);
  color: #fff;
}
.foot-label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.foot-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.foot-icon,
.foot-eco {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(110, 148, 183, 0.35);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition:
    border-color 0.2s,
    transform 0.2s,
    background 0.2s;
}
.foot-icon:hover,
.foot-eco:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  background: rgba(184, 144, 76, 0.12);
}
.foot-icon svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}
.foot-eco img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
}
.foot-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.foot-col a,
.foot-linkish {
  color: rgba(232, 238, 247, 0.9);
  text-decoration: none;
  font-size: 14.5px;
  line-height: 1.4;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.foot-col a:hover,
.foot-linkish:hover {
  color: var(--gold-bright);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 22px;
}
.foot-bottom p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(210, 220, 235, 0.5);
  max-width: 62ch;
}
.foot-bottom p:last-child {
  flex: none;
  white-space: nowrap;
  color: rgba(210, 220, 235, 0.55);
}

/* ─── CONTACT MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 38, 85, 0.45);
  backdrop-filter: blur(6px);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal {
  position: relative;
  width: min(920px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--card);
  color: var(--ink);
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(5, 38, 85, 0.1);
  box-shadow: 0 30px 80px rgba(2, 33, 79, 0.28);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.3, 1.2, 0.4, 1);
}
.modal-overlay.open .modal {
  transform: none;
}
.modal-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  min-height: 420px;
}
.modal-info {
  padding: 36px 32px;
  background:
    linear-gradient(rgba(5, 38, 85, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 38, 85, 0.04) 1px, transparent 1px),
    linear-gradient(165deg, var(--paper-2), var(--paper) 55%, #fff);
  background-size:
    40px 40px,
    40px 40px,
    auto;
  border-right: 1px solid rgba(5, 38, 85, 0.1);
}
.modal-panel {
  padding: 28px;
  background: #fff;
}
.modal-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.modal h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--navy-ink);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.modal-lead {
  margin: 0 0 28px;
  color: var(--dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 34ch;
}
.modal-channels {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.modal-channels li {
  display: grid;
  gap: 3px;
}
.modal-channels span {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.modal-channels a {
  color: var(--dim);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
  word-break: break-all;
}
.modal-channels a:hover {
  color: var(--gold);
}
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.modal .field {
  margin-bottom: 14px;
  gap: 6px;
}
.modal .field label {
  display: block;
  margin-bottom: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.modal .field input,
.modal .field select,
.modal textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 11px;
  border: 1.5px solid rgba(5, 38, 85, 0.14);
  background: var(--paper);
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  box-sizing: border-box;
}
.modal .field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
  background-color: var(--paper);
}
.modal .field select option {
  background: #fff;
  color: var(--ink);
}
.modal textarea {
  resize: vertical;
  min-height: 104px;
}
.modal .field input:focus,
.modal .field select:focus,
.modal textarea:focus {
  border-color: rgba(184, 144, 76, 0.65);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184, 144, 76, 0.18);
}
.modal .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 2px 0 4px;
  color: var(--dim);
  font-size: 13.5px;
  line-height: 1.45;
}
.modal .consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex: none;
}
.modal-submit {
  width: 100%;
  margin-top: 14px;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  padding: 14px 22px;
  font:
    700 15px "Nunito Sans",
    sans-serif;
  color: #241a05;
  background: linear-gradient(
    120deg,
    var(--gold-bright),
    var(--gold) 55%,
    #96733a
  );
  box-shadow: 0 10px 28px rgba(184, 144, 76, 0.28);
  transition:
    transform 0.18s,
    box-shadow 0.25s,
    filter 0.2s;
}
.modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(184, 144, 76, 0.4);
  filter: brightness(1.03);
}
.modal-submit:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}
.modal-x {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  color: var(--dim);
  cursor: pointer;
  transition:
    color 0.2s,
    transform 0.2s;
}
.modal-x:hover {
  color: var(--gold);
  transform: rotate(90deg);
}
.fine-note {
  font-size: 12.5px;
  color: var(--dim);
  text-align: center;
  margin-top: 14px;
}
.modal-done {
  text-align: center;
  padding: 36px 12px;
}
.modal-done-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 144, 76, 0.15);
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}
.modal-done h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--navy-ink);
}
.modal-done p {
  color: var(--dim);
  margin: 0 0 18px;
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 760px) {
  .modal-layout {
    grid-template-columns: 1fr;
  }
  .modal-info {
    border-right: none;
    border-bottom: 1px solid rgba(5, 38, 85, 0.1);
    padding: 28px 22px 20px;
  }
  .modal-panel {
    padding: 20px;
  }
  .modal-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── BOT ─── */
.bot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--navy);
  color: #fff;
  font:
    700 14px "Nunito Sans",
    sans-serif;
  box-shadow: 0 12px 34px rgba(5, 38, 85, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.25s;
}
.bot:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(5, 38, 85, 0.45);
}
.bot .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  animation: blink 2s infinite;
}
.bot-pop {
  position: fixed;
  right: 22px;
  bottom: 82px;
  z-index: 50;
  width: min(330px, 86vw);
  background: #fff;
  border: 1px solid rgba(5, 38, 85, 0.12);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(5, 38, 85, 0.25);
  text-align: left;
}
.bot-pop.show {
  animation: pop 0.35s cubic-bezier(0.3, 1.5, 0.5, 1);
}
.bot-pop .hi {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.bot-pop .hi b {
  color: var(--navy);
}
.typing {
  display: inline-flex;
  gap: 5px;
  padding: 6px 0;
}
.typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  animation: tdot 1.2s infinite;
}
.typing i:nth-child(2) {
  animation-delay: 0.18s;
}
.typing i:nth-child(3) {
  animation-delay: 0.36s;
}
@keyframes tdot {
  0%,
  100% {
    opacity: 0.25;
    transform: none;
  }
  40% {
    opacity: 1;
    transform: translateY(-4px);
  }
}
.faq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.faq-chips button {
  font:
    600 12.5px "Nunito Sans",
    sans-serif;
  color: var(--navy);
  background: var(--paper-2);
  border: 1px solid rgba(5, 38, 85, 0.12);
  border-radius: 999px;
  padding: 8px 13px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.faq-chips button:hover {
  background: #ede4cf;
  transform: translateY(-2px);
}
.faq-ans {
  display: none;
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  border-left: 3px solid var(--red);
  padding: 11px 13px;
  border-radius: 0 12px 12px 0;
}
.faq-ans.show {
  display: block;
  animation: pop 0.3s ease;
}

@media (max-width: 860px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .why {
    grid-template-columns: 1fr 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }
  /* .foot-brand{grid-column:1 / -1} */
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    padding: 32px 24px 24px;
  }
  .hero-copy {
    align-items: center;
  }
  h1 {
    max-width: 12em;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(30px, 7vw, 44px);
  }
  .lede {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-row {
    justify-content: center;
  }
  .stage-wrap {
    margin: 0 auto;
    max-width: 360px;
    justify-self: center;
    order: -1;
  }
}
@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .why {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 28px 20px;
  }
  .bot {
    right: 14px;
    bottom: 14px;
  }
  .hero {
    padding: 24px 20px 18px;
    gap: 20px;
  }
  .hero-kicker {
    letter-spacing: 0.1em;
    font-size: 10.5px;
  }
  .cta-row {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    gap: 8px;
  }
  .hero-waitlist {
    width: 100%;
  }
  .hero-waitlist input {
    width: 100%;
    flex: 1;
  }
  .hero-waitlist .cta {
    padding: 11px 16px;
  }
  .cta.ghost {
    width: 100%;
    justify-content: center;
    padding: 11px 18px;
  }
  .socials {
    padding: 18px 20px;
    width: 100%;
  }
  section {
    padding: 64px 20px 0;
  }
  .stage-wrap {
    max-width: 280px;
  }
  .stage #logoAnim {
    max-height: 34vh;
  }
  h1 {
    font-size: clamp(26px, 8vw, 36px);
  }
  .lede {
    font-size: 14.5px;
    max-width: 36ch;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .foot-bottom {
    flex-direction: column;
  }
  .foot-bottom p:last-child {
    white-space: normal;
  }
}
@media (max-height: 700px) {
  .hero {
    padding-top: 20px;
    padding-bottom: 12px;
    gap: 20px;
  }
  .stage #logoAnim {
    max-height: 48vh;
  }
  h1 {
    font-size: clamp(26px, 5.2vh, 44px);
  }
  .lede {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-height: 600px) {
  .stage #logoAnim {
    max-height: 40vh;
  }
  .marquee {
    padding: 6px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .rise,
  .rv {
    opacity: 1 !important;
    transform: none !important;
  }
  h1 .g1,
  h1 .g2,
  h1 .g3 {
    opacity: 1;
    filter: none;
    transform: none;
  }
  .cursor-glow,
  .sparks {
    display: none;
  }
}

@media (max-width: 767px) {
  .inner-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
