/* ================= GLACIAL · design system ================= */
:root {
  --bg: #07090b;
  --panel: #0b0e11;
  --panel-2: #0e1216;
  --line: #1b2127;
  --line-soft: #141920;
  --text: #eef3f6;
  --dim: #97a3ab;
  --faint: #5d6a72;
  --ice: #a9e8ff;
  --ice-deep: #58c9f5;
  --ice-glow: rgba(88, 201, 245, 0.35);
  --radius: 18px;
  --font-sans: "Archivo", system-ui, sans-serif;
  --font-mono: "Fragment Mono", ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(rgba(169, 232, 255, 0.045) 1px, transparent 1.4px) 0 0 / 30px 30px,
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* faint icy grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

::selection { background: var(--ice-deep); color: #04161f; }

/* ================= loader ================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  clip-path: inset(0 0 0 0);
  transition: clip-path .8s cubic-bezier(.75, 0, .2, 1);
}
.loader.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.loader-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: .3em;
  font-size: 17px;
  font-stretch: 115%;
  animation: loader-in .8s cubic-bezier(.2,.65,.2,1) both;
}
.loader-brand .brand-mark { width: 30px; height: 30px; }
.brand-mark.spin { animation: mark-spin 2.4s linear infinite; transform-origin: center; }
@keyframes mark-spin { to { transform: rotate(360deg); } }
@keyframes loader-in {
  from { opacity: 0; transform: translateY(14px); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}
.loader-bar {
  width: 190px;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--ice-deep), var(--ice));
  box-shadow: 0 0 12px var(--ice-glow);
  transform: scaleX(0);
  transform-origin: left;
  animation: loadbar 1s cubic-bezier(.3, .1, .2, 1) .15s forwards;
}
@keyframes loadbar { to { transform: scaleX(1); } }
.loader-cap {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .34em;
  color: var(--faint);
  animation: loader-in .8s cubic-bezier(.2,.65,.2,1) .25s both;
}

/* ================= frost cursor canvas ================= */
/* sits UNDER the page frame; the glow bleeds through translucent
   section backgrounds and is occluded by opaque cards and elements */
#frost {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ================= scroll progress ================= */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--ice-deep), var(--ice));
  box-shadow: 0 0 12px var(--ice-glow);
  z-index: 100;
}

/* ================= nav ================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(7, 9, 11, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .22em;
  font-size: 13px;
  font-stretch: 115%;
}

.brand-mark {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--ice);
  stroke-width: 2;
}
.brand-mark .inner { stroke-width: 1.1; opacity: .55; }

.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--dim);
  text-decoration: none;
  font-size: 13.5px;
  letter-spacing: .02em;
  transition: color .25s;
}
.nav-links a:hover { color: var(--ice); }

.nav-actions { display: flex; gap: 10px; }

/* ================= buttons ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 10px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-1px); }
.btn.solid {
  background: var(--text);
  color: #0a0d0f;
  border-color: var(--text);
}
.btn.solid:hover {
  background: var(--ice);
  border-color: var(--ice);
  box-shadow: 0 6px 30px var(--ice-glow);
}
.btn.ghost:hover { border-color: var(--ice); color: var(--ice); }
.btn.lg { padding: 13px 26px; font-size: 14.5px; border-radius: 12px; }
.btn.wide { width: 100%; }

/* ================= frame ================= */
.frame {
  position: relative;
  z-index: 1;
  margin: 76px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  clip-path: inset(0 round 26px);
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(88,201,245,.06), transparent 60%),
    linear-gradient(rgba(11, 14, 17, .72), rgba(11, 14, 17, .72));
}

section { border-bottom: 1px solid var(--line); }

/* ================= type ================= */
.h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 640;
  font-stretch: 112%;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
}

.sub {
  color: var(--dim);
  font-size: 15.5px;
  max-width: 460px;
  text-wrap: pretty;
}
.sub.center { margin: 16px auto 0; text-align: center; }

.fine {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--faint);
  text-align: center;
}

/* ================= hero ================= */
.hero {
  position: relative;
  padding: 110px 24px 0;
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.headline {
  font-size: clamp(48px, 7.8vw, 102px);
  font-weight: 620;
  font-stretch: 110%;
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.headline em {
  font-style: normal;
  background: linear-gradient(100deg, #ffffff 10%, var(--ice) 55%, var(--ice-deep) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .sub { margin-top: 22px; text-align: center; }

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- dome stage ---------- */
.dome-stage {
  position: relative;
  width: 100%;
  max-width: 1500px;
  flex: 1 1 auto;
  min-height: 480px;
  margin-top: 10px;
}

#dome {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  will-change: transform;
}

/* ---------- agent card ---------- */
.agent-card {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 13%;
  z-index: 6;
  width: min(560px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10, 13, 16, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(169,232,255,.04);
  padding: 18px 18px 16px;
}
.agent-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.agent-top p { font-size: 14px; color: var(--text); }
.agent-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  transition: border-color .25s;
}
.agent-select:hover { border-color: var(--ice); }
.mini-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 8px var(--ice);
  display: inline-block;
}
.mini-dot.gray { background: var(--faint); box-shadow: none; }

.agent-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--dim);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: color .25s, border-color .25s, background .25s;
}
.chip:hover {
  color: var(--ice);
  border-color: var(--ice);
  background: rgba(88, 201, 245, .06);
}

.agent-wave {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  height: 18px;
}
.agent-wave i {
  width: 2.5px;
  border-radius: 2px;
  background: var(--ice);
  opacity: .8;
  animation: wave 1.1s ease-in-out infinite;
}
.agent-wave i:nth-child(1) { height: 6px;  animation-delay: 0s; }
.agent-wave i:nth-child(2) { height: 14px; animation-delay: .12s; }
.agent-wave i:nth-child(3) { height: 9px;  animation-delay: .24s; }
.agent-wave i:nth-child(4) { height: 16px; animation-delay: .36s; }
.agent-wave i:nth-child(5) { height: 7px;  animation-delay: .48s; }
@keyframes wave {
  0%, 100% { transform: scaleY(.5); }
  50% { transform: scaleY(1); }
}

.play {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--text);
  color: #0a0d0f;
  font-size: 12px;
  cursor: pointer;
  transition: background .25s, box-shadow .25s, transform .25s;
}
.play:hover {
  background: var(--ice);
  box-shadow: 0 0 24px var(--ice-glow);
  transform: scale(1.06);
}

/* ================= ticker tape ================= */
.tape-wrap {
  overflow: hidden;
  padding: 18px 0;
  background: rgba(14, 18, 22, .92);
  position: relative;
}
.tape-wrap::before,
.tape-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.tape-wrap::before { left: 0; background: linear-gradient(90deg, var(--panel-2), transparent); }
.tape-wrap::after { right: 0; background: linear-gradient(-90deg, var(--panel-2), transparent); }

.tape {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: tape 46s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  white-space: nowrap;
}
@keyframes tape {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tk { color: var(--dim); }
.tk b { color: var(--text); font-weight: 500; margin-right: 8px; }
.tk .up { color: var(--ice); }
.tk .down { color: #7c8891; }

/* ================= shared section padding ================= */
.split, .features, .icebox, .pricing { padding: 110px 24px; }

/* ================= compare ================= */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  margin: 70px auto 0;
}
.compare-col {
  min-width: 0;
  padding: 0 48px;
}
.compare-col + .compare-col { border-left: 1px solid var(--line); }
.compare-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.compare-head h3 {
  font-size: 19px;
  font-weight: 640;
  font-stretch: 108%;
  letter-spacing: -0.01em;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--text);
}
.tag.dim { color: var(--faint); }

.spark {
  width: 100%;
  height: 340px;
  display: block;
  margin: 28px 0 22px;
}
.card-note { font-size: 14.5px; color: var(--dim); max-width: 46ch; }
.card-note strong { color: var(--text); font-weight: 600; }

/* ================= feature grid ================= */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1060px;
  margin: 56px auto 0;
}
.cell {
  background: var(--panel);
  padding: 30px 26px 34px;
  position: relative;
  transition: background .35s;
}
.cell::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(320px 180px at 50% 0%, rgba(88,201,245,.09), transparent 70%);
  transition: opacity .35s;
  pointer-events: none;
}
.cell:hover::after { opacity: 1; }
.cell-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--ice);
  margin-bottom: 16px;
}
.cell h3 {
  font-size: 19px;
  font-weight: 620;
  font-stretch: 106%;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.cell p { font-size: 13.5px; color: var(--dim); }

/* ================= melt section ================= */
.melt { background: rgba(11, 14, 17, .5); }
.melt-track { height: 240vh; }
.melt-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 60px 24px 40px;
}

.amount-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.amt-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--faint);
}
.amt-box {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 14px;
  transition: border-color .25s;
}
.amt-box:focus-within { border-color: var(--ice); }
.amt-box input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 15px;
  width: 104px;
}
.amt-box input::-webkit-outer-spin-button,
.amt-box input::-webkit-inner-spin-button { -webkit-appearance: none; }
.amt-box input[type="number"] { -moz-appearance: textfield; appearance: textfield; }

.preset {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--dim);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: all .25s;
}
.preset:hover, .preset.is-on {
  color: #04161f;
  background: var(--ice);
  border-color: var(--ice);
}

.melt-stage {
  display: flex;
  gap: clamp(40px, 8vw, 110px);
  align-items: flex-end;
  justify-content: center;
}
.melt-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.melt-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .26em;
  color: var(--faint);
}
.melt-vis {
  position: relative;
  width: 250px;
  height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.melt-vis::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169,232,255,.28), transparent);
}
.melt-val {
  font-size: 30px;
  font-weight: 640;
  font-stretch: 112%;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.dim-val { color: var(--dim); }
.ice-val {
  color: var(--ice);
  text-shadow: 0 0 26px rgba(88, 201, 245, .45);
}
.melt-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--faint);
}

/* ---------- draining cash column + puddle ---------- */
.cash-column {
  position: relative;
  width: 132px;
  height: 110px;
  border-radius: 12px 12px 5px 5px;
  border: 1px solid rgba(151, 163, 171, .35);
  background:
    repeating-linear-gradient(180deg,
      rgba(182, 196, 206, .12) 0 30px,
      rgba(120, 140, 155, .04) 30px 34px),
    linear-gradient(180deg, rgba(192, 206, 216, .2), rgba(112, 132, 146, .07));
  box-shadow: inset 0 0 26px rgba(182, 202, 216, .1);
  will-change: height, opacity;
}
.cash-column::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .22), transparent);
}
.melt-puddle {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%) scaleX(.35);
  width: 210px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(165, 195, 213, .28),
    rgba(120, 150, 170, .08) 60%,
    transparent 80%);
  filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

/* ---------- growing ice column ---------- */
.ice-column {
  position: relative;
  width: 132px;
  height: 36px;
  border-radius: 12px 12px 5px 5px;
  border: 1px solid rgba(190, 235, 255, .5);
  background:
    repeating-linear-gradient(180deg,
      rgba(205, 240, 255, .17) 0 30px,
      rgba(120, 200, 240, .05) 30px 34px),
    linear-gradient(180deg, rgba(218, 245, 255, .32), rgba(88, 180, 225, .10));
  box-shadow:
    inset 0 0 26px rgba(190, 235, 255, .16),
    0 0 38px rgba(88, 201, 245, .14);
  will-change: height;
}
.ice-column::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,.4), transparent);
}
.ice-column::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.16) 50%, transparent 60%);
  background-size: 240% 240%;
  animation: sheen 6s ease-in-out infinite alternate;
}

/* ================= icebox ================= */
.icebox { background: rgba(14, 18, 22, .55); }

.terms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 780px;
  margin: 48px auto 0;
}
.term {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 650;
  font-stretch: 118%;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--dim);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all .25s;
}
.term:hover, .term.is-active {
  color: #04161f;
  background: var(--ice);
  border-color: var(--ice);
  box-shadow: 0 0 24px var(--ice-glow);
}

.def-panel {
  max-width: 620px;
  margin: 34px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 26px 30px;
  text-align: center;
  min-height: 128px;
}
.def-term {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 680;
  font-stretch: 120%;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ice);
  margin-bottom: 10px;
}
.def-text {
  font-size: 15.5px;
  color: var(--text);
  text-wrap: pretty;
  transition: opacity .25s;
}

.center-row { display: flex; justify-content: center; margin-top: 40px; }

/* ================= pricing ================= */
.p-scroll {
  overflow-x: auto;
  max-width: 960px;
  margin: 60px auto 0;
}
.p-table {
  min-width: 640px;
  border-top: 1px solid var(--line);
}
.p-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  border-bottom: 1px solid var(--line-soft);
}
.p-cell {
  padding: 16px 22px;
  font-size: 13.5px;
  color: var(--dim);
  min-width: 0;
}
.p-cell.p-feature {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  color: var(--faint);
  display: flex;
  align-items: center;
}
.p-cell.pro {
  background: linear-gradient(90deg, rgba(88, 201, 245, .06), rgba(88, 201, 245, .015));
  border-left: 1px solid rgba(169, 232, 255, .22);
  color: var(--text);
}
.p-head .p-cell { padding: 24px 22px 20px; }
.p-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .26em;
  color: var(--faint);
}
.p-cell.pro .p-name { color: var(--ice); }
.p-price {
  margin-top: 12px;
  font-size: 42px;
  font-weight: 640;
  font-stretch: 112%;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}
.p-price span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--faint);
  margin-left: 6px;
}
.p-early {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: .18em;
  color: var(--ice);
}
.p-foot { border-bottom: none; }
.p-foot .p-cell { padding: 22px; }
.p-foot .btn { width: 100%; }

/* ================= stats ================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.stat {
  background: var(--panel);
  padding: 54px 20px;
  text-align: center;
}
.stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 640;
  font-stretch: 112%;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--faint);
}

/* ================= cta ================= */
.cta {
  position: relative;
  padding: 150px 24px 140px;
  text-align: center;
  overflow: hidden;
  border-bottom: none;
}
.giant {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(150px, 26vw, 380px);
  font-weight: 700;
  font-stretch: 120%;
  letter-spacing: .02em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(169, 232, 255, .10);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  will-change: transform;
}
.cta .h2 { position: relative; z-index: 2; }
.cta .cta-row { position: relative; z-index: 2; margin-top: 34px; }
.cta .fine { position: relative; z-index: 2; margin-top: 26px; }

/* ================= footer ================= */
.footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 32px 30px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  font-size: 12px;
}
.foot-links { display: flex; gap: 22px; }
.foot-links a {
  color: var(--dim);
  text-decoration: none;
  font-size: 13px;
  transition: color .25s;
}
.foot-links a:hover { color: var(--ice); }
.foot-legal {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  color: var(--faint);
}

/* ================= scroll reveal ================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px) scale(.985);
  filter: blur(8px);
  transition:
    opacity 1s cubic-bezier(.2,.65,.2,1) var(--d, 0s),
    transform 1s cubic-bezier(.2,.65,.2,1) var(--d, 0s),
    filter 1s cubic-bezier(.2,.65,.2,1) var(--d, 0s);
  will-change: opacity, transform, filter;
}
[data-reveal].in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* ================= responsive ================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare-col { padding: 0; }
  .compare-col + .compare-col { border-left: none; border-top: 1px solid var(--line); margin-top: 44px; padding-top: 44px; }
  .dome-stage { min-height: 420px; }
  .agent-card { bottom: 8%; }
  .melt-stage { flex-direction: row; gap: 30px; }
  .melt-vis { width: 190px; height: 250px; }
  .ice-column, .cash-column { width: 104px; }
  .plans { flex-direction: column; max-width: 460px; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .frame { margin: 68px 10px 10px; border-radius: 20px; clip-path: inset(0 round 20px); }
  .split, .features, .icebox, .pricing { padding: 80px 18px; }
  .agent-wave { display: none; }
  .spark { height: 250px; }
  .melt-stage { gap: 18px; }
  .melt-vis { width: 150px; height: 210px; }
  .melt-val { font-size: 22px; }
}

/* ================= waitlist modal ================= */
.wl-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(4, 6, 8, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wl-modal {
  position: relative;
  width: min(440px, 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(400px 200px at 50% -10%, rgba(88, 201, 245, .12), transparent 70%),
    var(--panel);
  padding: 36px 34px 30px;
  text-align: center;
  animation: wl-in .45s cubic-bezier(.2, .65, .2, 1) both;
}
@keyframes wl-in {
  from { opacity: 0; transform: translateY(20px) scale(.97); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}
.wl-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--faint);
  font-size: 12px;
  cursor: pointer;
  transition: all .2s;
}
.wl-close:hover { color: var(--ice); border-color: var(--ice); }
.wl-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .28em;
  color: var(--ice);
  margin-bottom: 14px;
}
.wl-modal h3 {
  font-size: 27px;
  font-weight: 640;
  font-stretch: 112%;
  letter-spacing: -0.02em;
}
#wlForm {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.wl-input {
  flex: 1;
  min-width: 0;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 13.5px;
  padding: 12px 15px;
  outline: none;
  transition: border-color .2s;
}
.wl-input:focus { border-color: var(--ice); }
.wl-msg {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--faint);
  min-height: 16px;
}
.wl-msg.good { color: var(--ice); }
.wl-msg.bad { color: #f7a6b4; }
.wl-modal.joined #wlForm { display: none; }
.wl-modal.joined .wl-msg { font-size: 12px; }

/* ================= reduced motion ================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .loader { display: none; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
}
