/* ============ Gozy website · tokens ============ */
:root {
  --teal:       #1F7A82;
  --teal-deep:  #0F4A50;
  --teal-glow:  #2EA0A8;
  --teal-soft:  #7AC8CF;
  --mint:       #E2EEEC;
  --mint-50:    #F4FAFB;

  --ink:        #0E1F22;
  --ink-soft:   #1A2F33;
  --muted:      #5C6F72;
  --muted-soft: #A6B4B6;
  --line:       #D8E0E0;
  --surface:    #FBFAF7;
  --surface-2:  #F1EFE9;

  --sand:       #E8DCC4;
  --amber:      #C68A3B;

  --display: 'Cabinet Grotesk', 'General Sans', system-ui, sans-serif;
  --sans:    'General Sans', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 6px; --r-md: 12px; --r-lg: 18px; --r-xl: 24px;
  --pad: clamp(20px, 5vw, 96px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--surface);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-glow);
  box-shadow: 0 0 0 0 rgba(46,160,168,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,160,168,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(46,160,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,160,168,0); }
}

.display { font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; line-height: 0.95; color: var(--ink); margin: 0; }
h2.display { font-size: clamp(40px, 5.6vw, 88px); }
h3.display { font-size: clamp(26px, 3vw, 44px); }
.lede { font-size: clamp(17px, 1.4vw, 22px); line-height: 1.55; color: var(--ink-soft); max-width: 60ch; text-wrap: pretty; }
.section-eyebrow { display: flex; align-items: baseline; gap: 14px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); }
.section-eyebrow .num { color: var(--muted-soft); }

/* ============ buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-radius: 999px;
  font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: -0.005em;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 1px 0 rgba(15,74,80,0.3) inset, 0 8px 24px -12px rgba(31,122,130,0.6); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ============ nav ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 18px var(--pad);
  background: rgba(251,250,247,0.85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(216,224,224,0.6);
}
.nav .brand img { height: 72px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; margin-left: 32px; flex: 1; font-family: var(--sans); font-size: 15px; color: var(--ink-soft); }
.nav-links a:hover { color: var(--teal); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 112px) var(--pad) clamp(96px, 10vw, 140px);
  display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(32px, 5vw, 96px);
  align-items: center;
  min-height: 88vh;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(46,160,168,0.10), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(122,200,207,0.18), transparent 55%),
    var(--surface);
  overflow: hidden;
}
.hero-inner { max-width: 760px; }
.hero h1 { font-size: clamp(56px, 9vw, 148px); line-height: 0.92; letter-spacing: -0.045em; margin: 24px 0 0; color: var(--ink); }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero .lede { margin-top: 28px; }
.hero .lede-pop { display: block; font-family: var(--display); font-weight: 700; color: var(--teal-deep); font-size: 1.18em; letter-spacing: -0.01em; line-height: 1.4; margin-bottom: 14px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 40px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hero-trust-line { display: block; width: 32px; height: 1px; background: var(--teal); }
.hero-trust-text strong { color: var(--teal-deep); font-weight: 600; }
.hero-stats { list-style: none; padding: 0; margin: 56px 0 0; display: grid; grid-template-columns: repeat(3, auto); gap: 40px; }
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats .k { font-family: var(--display); font-weight: 800; font-size: 56px; letter-spacing: -0.04em; color: var(--teal); line-height: 1; }
.hero-stats .v { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* chat card */
.chat-card {
  background: #ECE5DD;
  border-radius: var(--r-lg);
  padding: 18px 18px 14px;
  box-shadow: 0 30px 80px -30px rgba(14,31,34,0.35), 0 8px 24px -10px rgba(14,31,34,0.18);
  width: 100%; max-width: 420px; justify-self: end;
  transform: rotate(0.5deg);
}
.chat-head { display: flex; align-items: center; gap: 12px; padding: 4px 6px 14px; border-bottom: 1px solid rgba(0,0,0,0.06); margin-bottom: 14px; }
.chat-head .g-mark { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; display: grid; place-items: center; background: transparent; }
.chat-head .g-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chat-head .t1 { font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--ink); }
.chat-head .t2 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); }
.chat-head .dot-online { width: 8px; height: 8px; border-radius: 50%; background: #2A8A5F; margin-left: auto; }
.chat-body { display: flex; flex-direction: column; gap: 8px; }
.bub { padding: 10px 14px; border-radius: 14px; font-size: 15px; line-height: 1.4; max-width: 82%; }
.bub.them { background: #fff; align-self: flex-start; border-bottom-left-radius: 4px; color: var(--ink); animation: bubIn 0.5s ease both; }
.bub.us { background: #DCF8C6; align-self: flex-end; border-bottom-right-radius: 4px; color: var(--ink); animation: bubIn 0.5s ease both; }
.bub.them strong { color: var(--teal-deep); font-weight: 600; }
.bub:nth-child(1) { animation-delay: 0.4s; }
.bub:nth-child(2) { animation-delay: 1.1s; }
.bub:nth-child(3) { animation-delay: 1.8s; }
.bub:nth-child(4) { animation-delay: 2.5s; }
.bub:nth-child(5) { animation-delay: 3.1s; }
@keyframes bubIn { from { opacity: 0; transform: translateY(8px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.bub.typing { display: inline-flex; gap: 4px; padding: 12px 14px; }
.bub.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted-soft); animation: typing 1.2s infinite; }
.bub.typing span:nth-child(2) { animation-delay: 0.15s; }
.bub.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }
.chat-foot { font-family: var(--sans); font-style: italic; font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }
.chat-tabs { display: flex; gap: 6px; padding: 6px; margin: -2px 0 12px; background: rgba(14,31,34,0.04); border-radius: 999px; }
.chat-tab { flex: 1; appearance: none; border: 0; background: transparent; padding: 8px 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border-radius: 999px; cursor: pointer; transition: background 0.2s ease, color 0.2s ease; }
.chat-tab:hover { color: var(--ink); }
.chat-tab.is-active { background: #fff; color: var(--teal-deep); box-shadow: 0 1px 3px rgba(14,31,34,0.06); }
.chat-body[hidden] { display: none; }

.hero-strip { position: absolute; left: 0; right: 0; bottom: 0; display: flex; height: 6px; }
.hero-strip span { flex: 1; }

/* ============ HOW IT WORKS ============ */
.how {
  padding: clamp(72px, 10vw, 140px) var(--pad);
  background: var(--ink);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.how-head { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; margin-bottom: clamp(48px, 6vw, 96px); }
.how .section-eyebrow { color: var(--teal-glow); }
.how .section-eyebrow .num { color: rgba(255,255,255,0.35); }
.how h2 { color: var(--surface); font-size: clamp(40px, 6vw, 92px); }
.how h2 em { font-style: normal; color: var(--teal-glow); }
.how .lede { color: rgba(255,255,255,0.7); }
@media (max-width: 800px) { .how-head { grid-template-columns: 1fr; } }

.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 56px); }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 36px 32px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  min-height: 480px;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.step.in { opacity: 1; transform: translateY(0); }
.step:nth-child(2).in { transition-delay: 0.2s; }
.step:nth-child(3).in { transition-delay: 0.4s; }
.step .num {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  color: var(--teal-glow); margin-bottom: 18px;
}
.step h3 { font-family: var(--display); font-weight: 700; font-size: 32px; line-height: 1.05; letter-spacing: -0.02em; color: var(--surface); margin: 0 0 10px; }
.step p { color: rgba(255,255,255,0.72); margin: 0 0 22px; font-size: 16px; }
.step .stage { flex: 1; display: grid; place-items: center; padding: 16px 0 4px; min-height: 220px; }

/* arrows between steps */
.arrow {
  position: absolute; top: 50%; right: -44px;
  width: 88px; height: 36px; pointer-events: none;
  display: grid; place-items: center;
  transform: translateY(-50%);
}
.arrow svg { width: 100%; height: 100%; overflow: visible; }
.arrow path { stroke: var(--teal-glow); stroke-width: 2; fill: none; stroke-dasharray: 6 6; animation: dash 4s linear infinite; }
.arrow .head { stroke: var(--teal-glow); fill: var(--teal-glow); stroke-dasharray: none; animation: none; }
@keyframes dash { to { stroke-dashoffset: -200; } }
@media (max-width: 980px) { .arrow { display: none; } }

/* step illustrations (CSS only) */
.illus-pkg { display: grid; gap: 10px; width: 100%; max-width: 260px; }
.illus-pkg .row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); font-family: var(--display); font-weight: 600; font-size: 15px; color: rgba(255,255,255,0.85); animation: pkgPulse 4.5s infinite; }
.illus-pkg .row .swatch { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.illus-pkg .row .meta { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.5); margin-left: auto; letter-spacing: 0.08em; }
.illus-pkg .row.r1 { animation-delay: 0s; }
.illus-pkg .row.r2 { animation-delay: 1.5s; background: rgba(46,160,168,0.18); border-color: rgba(46,160,168,0.5); color: #fff; transform: scale(1.04); }
.illus-pkg .row.r3 { animation-delay: 3s; }
@keyframes pkgPulse { 0%, 30% { transform: scale(1); border-color: rgba(255,255,255,0.10); } 35%, 60% { transform: scale(1.05); border-color: rgba(46,160,168,0.6); background: rgba(46,160,168,0.18); } 65%, 100% { transform: scale(1); border-color: rgba(255,255,255,0.10); } }

.illus-chat { width: 100%; max-width: 280px; display: flex; flex-direction: column; gap: 10px; }
.illus-chat .ch { display: flex; gap: 8px; align-items: center; }
.illus-chat .app { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 800; font-size: 14px; }
.illus-chat .app.wa { background: #25D366; }
.illus-chat .app.tg { background: #29B6F6; }
.illus-chat .app.wc { background: #07C160; }
.illus-chat .b { padding: 9px 12px; border-radius: 12px; font-size: 13px; line-height: 1.4; max-width: 88%; }
.illus-chat .b.us { background: #DCF8C6; color: var(--ink); align-self: flex-end; border-bottom-right-radius: 4px; }
.illus-chat .b.them { background: #fff; color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.illus-chat .b.us::after { content: ''; }
.illus-chat .row { display: flex; gap: 8px; align-items: center; }
.illus-chat .nope { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.45); text-decoration: line-through; letter-spacing: 0.06em; text-transform: uppercase; }

.illus-go { width: 100%; max-width: 280px; aspect-ratio: 1.3/1; position: relative; }
.illus-go .road { position: absolute; inset: auto 0 32px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.illus-go .road::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, var(--teal-glow) 0 18px, transparent 18px 32px); animation: roadMove 1.6s linear infinite; opacity: 0.7; }
@keyframes roadMove { from { transform: translateX(0); } to { transform: translateX(-32px); } }
.illus-go .car {
  position: absolute; bottom: 28px; left: 0;
  width: 84px; height: 38px;
  background: var(--teal-glow);
  border-radius: 14px 18px 6px 6px;
  animation: carDrive 3.6s ease-in-out infinite;
}
.illus-go .car::before { content: ''; position: absolute; inset: 6px 12px auto; height: 14px; background: var(--teal-deep); border-radius: 8px 10px 2px 2px; }
.illus-go .car::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: -6px; height: 12px; background: transparent;
  box-shadow: 8px 0 0 0 #0E1F22, calc(100% - 16px) 0 0 0 #0E1F22;
}
@keyframes carDrive { 0% { left: -10%; } 50% { left: 55%; } 60% { left: 55%; } 100% { left: 110%; } }
.illus-go .pin {
  position: absolute; right: 18%; top: 18%; width: 28px; height: 28px;
  border-radius: 50% 50% 50% 0; background: var(--teal-glow);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 0 rgba(46,160,168,0.5);
  animation: pinPulse 2s infinite;
}
.illus-go .pin::after { content: ''; position: absolute; inset: 8px; background: var(--ink); border-radius: 50%; }
@keyframes pinPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(46,160,168,0.5); } 50% { box-shadow: 0 0 0 14px rgba(46,160,168,0); } }
.illus-go .ding {
  position: absolute; top: 6%; left: 8%;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-glow); padding: 8px 14px; border-radius: 999px;
  background: rgba(46,160,168,0.12); border: 1px solid rgba(46,160,168,0.4);
  animation: dingIn 3.6s ease-in-out infinite;
}
@keyframes dingIn { 0%, 40%, 100% { opacity: 0; transform: translateY(-4px); } 50%, 90% { opacity: 1; transform: translateY(0); } }

/* ============ PACKAGES ============ */
.packages {
  padding: clamp(72px, 10vw, 140px) var(--pad);
  background: var(--surface);
}
.pkg-head { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; margin-bottom: clamp(48px, 6vw, 80px); }
.pkg-head h2 em { font-style: normal; color: var(--teal); }
@media (max-width: 800px) { .pkg-head { grid-template-columns: 1fr; } }

.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .tier-grid { grid-template-columns: 1fr; } }

.tier {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tier:hover { transform: translateY(-4px); box-shadow: 0 30px 80px -30px rgba(14,31,34,0.18); border-color: var(--teal-soft); }
.tier .accent { position: absolute; top: 0; left: 24px; right: 24px; height: 3px; border-radius: 0 0 3px 3px; }
.tier.star .accent    { background: var(--amber); }
.tier.commuter .accent{ background: var(--teal); }
.tier.exec .accent    { background: var(--ink); }

.tier .badge {
  position: absolute; top: -14px; right: 28px;
  background: var(--teal); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.tier.featured { border-color: var(--teal); box-shadow: 0 30px 80px -30px rgba(31,122,130,0.35); }

.tier .name { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 36px; letter-spacing: -0.025em; color: var(--ink); }
.tier .name .icon { width: 28px; height: 28px; border-radius: 6px; display: grid; place-items: center; color: #fff; font-size: 16px; }
.tier.star .icon { background: var(--amber); }
.tier.commuter .icon { background: var(--teal); }
.tier.exec .icon { background: var(--ink); }

.tier .for { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 14px 0 4px; }
.tier .scenario { font-family: var(--display); font-weight: 500; font-size: 18px; color: var(--ink-soft); line-height: 1.4; margin: 0 0 24px; min-height: 2.8em; text-wrap: pretty; }

.tier .price {
  display: flex; align-items: baseline; gap: 8px;
  flex-wrap: nowrap; white-space: nowrap;
  font-family: var(--display); font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink);
  padding: 18px 0 6px;
  border-top: 1px dashed var(--line);
}
.tier .price .ccy { font-size: 18px; color: var(--muted); font-weight: 500; }
.tier .price .num { font-size: 56px; line-height: 1; }
.tier .price .per { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-left: 4px; }
.tier .price .est { display: none; }
.tier .price-note {
  font-family: var(--mono); font-size: 11px; color: var(--muted-soft);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0 0 16px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 0;
}

.tier .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 22px 0 18px; }
.tier .stat { padding: 12px 0; }
.tier .stat + .stat { border-left: 1px solid var(--line); padding-left: 18px; }
.tier .stat .k { font-family: var(--display); font-weight: 800; font-size: 28px; letter-spacing: -0.02em; color: var(--ink); }
.tier .stat .v { font-family: var(--mono); font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.tier ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.tier ul li { display: flex; gap: 10px; font-size: 15px; color: var(--ink-soft); line-height: 1.4; }
.tier ul li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%;
  background: var(--mint); flex-shrink: 0; margin-top: 2px;
  background-image: linear-gradient(135deg, transparent 50%, transparent 50%);
  position: relative;
}
.tier ul li {
  position: relative; padding-left: 26px;
}
.tier ul li::before {
  position: absolute; left: 0; top: 4px;
  display: grid; place-items: center;
}
.tier ul li::after {
  content: ''; position: absolute; left: 4px; top: 8px;
  width: 8px; height: 4px; border: 2px solid var(--teal);
  border-top: 0; border-right: 0;
  transform: rotate(-45deg);
}

.tier .diff { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin: 18px 0 12px; }
.tier .not { font-family: var(--sans); font-size: 13px; color: var(--muted); line-height: 1.45; padding: 12px 14px; background: var(--surface); border-radius: 10px; margin: 0 0 18px; border-left: 2px solid var(--line); }
.tier .launch-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-align: center; margin-top: 14px; }
.tier .launch-tag.on { color: var(--teal); }

.pkg-fineprint {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.pkg-fineprint > div { padding: 18px 24px; display: flex; flex-direction: column; gap: 4px; }
.pkg-fineprint > div + div { border-left: 1px solid var(--line); }
.pkg-fineprint .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.pkg-fineprint .val { font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--ink); letter-spacing: -0.01em; }
@media (max-width: 800px) {
  .pkg-fineprint { grid-template-columns: 1fr 1fr; }
  .pkg-fineprint > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .pkg-fineprint > div:nth-child(2) { border-left: 1px solid var(--line); border-top: 0; }
}

.corp {
  margin-top: 24px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px;
  align-items: center;
  padding: 28px 32px;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--r-lg);
}
.corp .label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-glow); }
.corp h4 { font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2vw, 28px); margin: 6px 0 2px; letter-spacing: -0.02em; }
.corp .desc { color: rgba(255,255,255,0.7); font-size: 15px; }
.corp .meta { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; }
.corp .meta .big { font-family: var(--display); font-weight: 800; font-size: 28px; color: var(--surface); letter-spacing: -0.02em; text-transform: none; }
@media (max-width: 800px) { .corp { grid-template-columns: 1fr; text-align: left; } .corp .meta { align-items: flex-start; } }

.value-row {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.value-row .v { display: flex; flex-direction: column; gap: 6px; }
.value-row .v .k { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: var(--ink); }
.value-row .v .d { font-size: 13px; color: var(--muted); line-height: 1.4; }
.value-row .v .ic { width: 28px; height: 28px; margin-bottom: 8px; color: var(--teal); }
@media (max-width: 980px) { .value-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .value-row { grid-template-columns: 1fr; } }

/* ============ WAITLIST ============ */
.waitlist {
  padding: clamp(72px, 10vw, 140px) var(--pad);
  background: linear-gradient(180deg, var(--mint) 0%, var(--surface) 100%);
  position: relative; overflow: hidden;
}
.wait-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 5vw, 96px); align-items: start; max-width: 1280px; margin: 0 auto; }
@media (max-width: 900px) { .wait-grid { grid-template-columns: 1fr; } }

.wait-left h2 em { font-style: normal; color: var(--teal); }
.wait-left .lede { margin-top: 24px; }
.wait-left .checks { list-style: none; padding: 0; margin: 36px 0 0; display: flex; flex-direction: column; gap: 14px; }
.wait-left .checks li { font-family: var(--display); font-weight: 500; font-size: 18px; color: var(--ink); display: flex; gap: 12px; align-items: baseline; }
.wait-left .checks li::before {
  content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0;
  width: 24px; height: 24px; background: #fff; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px;
  border: 1px solid var(--teal-soft);
}

.form-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: 0 30px 80px -30px rgba(14,31,34,0.18), 0 1px 0 rgba(255,255,255,0.6) inset;
  border: 1px solid var(--line);
}
.form-card .form-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.form-card h3 { font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 24px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select {
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  padding: 14px 16px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(46,160,168,0.15); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.phone-wrap { display: grid; grid-template-columns: 96px 1fr; gap: 8px; }
.phone-wrap input { width: 100%; }
.form-card .submit-row { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.form-card .fineprint { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; line-height: 1.5; }

.wait-success { padding: 32px; text-align: center; display: none; }
.wait-success.on { display: block; }
.wait-success .check { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; margin: 0 auto 16px; font-size: 26px; }
.form-card.sent .form-real { display: none; }
.form-card.sent .wait-success { display: block; }

/* masked launch price */
.tier .price .num .mask {
  display: inline-block;
  letter-spacing: 0.06em;
  color: var(--muted-soft);
  transform: translateY(-0.06em);
}

/* package picker in waitlist */
.field label .opt { font-family: var(--sans); font-size: 11px; letter-spacing: 0.02em; text-transform: none; color: var(--muted-soft); margin-left: 6px; font-weight: 400; }
.pkg-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
@media (max-width: 480px) { .pkg-pick { grid-template-columns: 1fr; } }
.pkg-opt { position: relative; cursor: pointer; }
.pkg-opt input { position: absolute; opacity: 0; pointer-events: none; }
.pkg-opt-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 14px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  position: relative;
  height: 100%;
}
.pkg-opt:hover .pkg-opt-card { border-color: var(--teal); background: #fff; }
.pkg-opt input:checked + .pkg-opt-card {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46,160,168,0.12), 0 4px 12px -6px rgba(14,31,34,0.12);
}
.pkg-opt input:focus-visible + .pkg-opt-card { box-shadow: 0 0 0 4px rgba(46,160,168,0.25); }
.pkg-opt-name { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.pkg-opt-icon { color: var(--teal); font-size: 14px; }
.pkg-opt-meta { font-family: var(--sans); font-size: 12px; color: var(--muted); line-height: 1.35; }
.pkg-opt-tag { position: absolute; top: -8px; right: 10px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--teal); padding: 3px 7px; border-radius: 999px; }
.pkg-opt-card--alt { background: transparent; border-style: dashed; }
.pkg-opt-card--alt .pkg-opt-name { color: var(--ink-soft); }
/* ============ FOOTER ============ */
.foot { background: var(--ink); color: rgba(255,255,255,0.7); padding: 80px var(--pad) 28px; }
.foot-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand { display: flex; flex-direction: column; gap: 18px; }
.foot-logo { height: 28px; width: auto; display: block; margin: 0; }
.foot-tag { font-family: var(--display); font-weight: 500; font-size: 22px; color: rgba(255,255,255,0.92); margin: 0; max-width: 22ch; line-height: 1.3; letter-spacing: -0.01em; }
.foot-tag em { font-style: normal; color: var(--teal-glow); }
.foot-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.foot-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 7px 12px; border-radius: 999px;
}
.foot-badge-d { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-glow); box-shadow: 0 0 0 4px rgba(122,200,207,0.18); }
.foot-col { display: flex; flex-direction: column; gap: 14px; }
.foot-h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.foot-addr { font-style: normal; font-family: var(--sans); font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.78); }
.foot-mail { font-family: var(--display); font-weight: 600; font-size: 22px; color: #fff; letter-spacing: -0.01em; }
.foot-mail:hover { color: var(--teal-glow); }
.foot-c-sub { font-family: var(--sans); font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.5); max-width: 24ch; }
.foot-links { display: flex; flex-direction: column; gap: 10px; font-family: var(--sans); font-size: 15px; }
.foot-links a { color: rgba(255,255,255,0.78); }
.foot-links a:hover { color: var(--teal-glow); }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  max-width: 1400px; margin: 28px auto 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 900px) { .foot-inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .foot-inner { grid-template-columns: 1fr; gap: 36px; } .foot-bottom { flex-direction: column; } }
