@font-face {
  font-family: "Inter var";
  src: url("/assets/Inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #050d11;
  --bg-2: #07151a;
  --surface: #0b1b22;
  --surface-2: #0f2630;
  --card: rgba(13, 30, 38, 0.72);
  --card-2: rgba(15, 38, 48, 0.5);
  --text: #f5fbfe;
  --muted: #9fb6c0;
  --soft: #d7ebf2;
  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.07);
  --hair: rgba(255, 255, 255, 0.06);
  --cyan: #5edcff;
  --cyan-strong: rgba(94, 220, 255, 0.5);
  --blue: #3f8cff;
  --green: #55d88d;
  --amber: #ffc857;
  --rose: #ff7f9a;
  --ink: #02070a;
  --max: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --pad-x: clamp(16px, 4vw, 28px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  background-color: #050d11;
  background-image:
    radial-gradient(1100px 620px at 78% -6%, rgba(63, 140, 255, 0.16), transparent 60%),
    radial-gradient(900px 520px at 8% 2%, rgba(94, 220, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #050d11 0%, #07151a 46%, #050d11 100%);
  background-repeat: no-repeat;
  background-size: 100% 1400px, 100% 1200px, 100% 100%;
  color: var(--text);
  font-family: "Inter var", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "cv11", "ss01";
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(94, 220, 255, 0.28);
  color: #fff;
}

.lead,
.section-sub,
.plan-desc,
.faq details p,
.bento p,
.step p,
.credits-board p {
  text-wrap: pretty;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(94, 220, 255, 0.8);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 60;
  top: -60px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--cyan);
  color: var(--ink);
  font-weight: 800;
  transition: top 140ms ease;
}
.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(100% - (var(--pad-x) * 2), var(--max));
  margin-inline: auto;
}

.mono {
  font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 0.94em;
  color: var(--cyan);
  letter-spacing: -0.01em;
}
.nowrap {
  white-space: nowrap;
}

.grad {
  background: linear-gradient(120deg, #9df0ff 0%, var(--cyan) 45%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  vertical-align: baseline;
}
.dot-green {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(85, 216, 141, 0.18);
}
.dot-cyan {
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(94, 220, 255, 0.18);
}

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
html.reveal-on [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
html.reveal-on [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100% - 24px, var(--max));
  margin: 14px auto 0;
  padding: 8px 8px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 13, 17, 0.66);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand img {
  width: 34px;
  height: 34px;
  border: 1px solid var(--cyan-strong);
  border-radius: 9px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: auto;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 550;
}
.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}
.menu-toggle:hover {
  border-color: var(--cyan-strong);
  background: rgba(94, 220, 255, 0.08);
}
.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}
.menu-toggle-icon {
  position: relative;
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle-icon::before {
  top: -6px;
}
.menu-toggle-icon::after {
  top: 6px;
}
.site-header.nav-open .menu-toggle-icon {
  background: transparent;
}
.site-header.nav-open .menu-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header.nav-open .menu-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 650;
  letter-spacing: -0.01em;
  text-align: center;
  white-space: nowrap;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease,
    box-shadow 150ms ease;
}
.button.sm {
  min-height: 40px;
  padding: 0 15px;
  font-size: 0.92rem;
}
.button:hover {
  transform: translateY(-1px);
}
.button.primary {
  border-color: transparent;
  background: linear-gradient(180deg, #7ce6ff, var(--cyan));
  color: var(--ink);
  box-shadow: 0 8px 26px rgba(94, 220, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.button.primary:hover {
  box-shadow: 0 12px 34px rgba(94, 220, 255, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.button.ghost {
  background: rgba(255, 255, 255, 0.05);
}
.button.ghost:hover {
  border-color: var(--cyan-strong);
  background: rgba(94, 220, 255, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--cyan);
  font-weight: 650;
}
.text-link:hover {
  text-decoration: underline;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.35rem, 1.4rem + 3.9vw, 3.65rem);
  line-height: 1.03;
  font-weight: 800;
}
h2 {
  font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.35rem);
  line-height: 1.12;
  font-weight: 750;
}
h3 {
  font-size: 1.16rem;
  line-height: 1.25;
  font-weight: 700;
}
p {
  margin: 0;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kicker-line {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-emblem {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -6%;
  width: min(62%, 780px);
  transform: translateY(-42%);
  object-fit: contain;
  opacity: 0.14;
  filter: saturate(1.1);
  pointer-events: none;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 72% 30%, rgba(94, 220, 255, 0.1), transparent 55%),
    linear-gradient(90deg, rgba(5, 13, 17, 0.7) 0%, rgba(5, 13, 17, 0.2) 55%, rgba(5, 13, 17, 0.7) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(118px, 12vh, 168px) 0 clamp(56px, 8vh, 96px);
}
.hero-copy-block {
  max-width: 640px;
}
.lead {
  margin-top: 18px;
  max-width: 600px;
  color: var(--soft);
  font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.2rem);
}
.hero-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 38, 48, 0.9), rgba(7, 20, 25, 0.94));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}
.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(94, 220, 255, 0.05);
  font-size: 0.9rem;
  font-weight: 650;
}
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-weight: 750;
}
.hero-card-list {
  margin: 0;
  padding: 6px 20px;
}
.hero-card-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line-2);
}
.hero-card-list div:first-child {
  border-top: 0;
}
.hero-card-list dt {
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-card-list dd {
  margin: 0;
  font-weight: 650;
  text-align: right;
}
.hero-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-top: 1px solid var(--line);
  color: var(--cyan);
  font-weight: 650;
}
.hero-card-link:hover {
  background: rgba(94, 220, 255, 0.07);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(-28px, -3vw, -20px);
  position: relative;
  z-index: 2;
}
.trust-strip div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.trust-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trust-strip strong {
  display: block;
  margin-top: 7px;
  font-size: 1.02rem;
  font-weight: 650;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(58px, 8vw, 104px) 0;
}
.section-head {
  max-width: 780px;
  margin-bottom: clamp(28px, 4vw, 42px);
}
.section-head.compact {
  max-width: 640px;
}
.section-sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
}
.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  max-width: none;
}
.section-head.split h2 {
  margin-bottom: 0;
}

/* ---------- Cards (shared) ---------- */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card-2), rgba(7, 20, 25, 0.86));
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

/* ---------- Bento (platform) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}
.bento .card {
  padding: 24px;
}
.bento .card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.bento-hero {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.bento-wide {
  grid-column: span 2;
}
.bento p {
  color: var(--muted);
}
.ico {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cyan);
}
.ico svg {
  width: 23px;
  height: 23px;
}
.f1 .ico { color: var(--cyan);  border-color: rgba(94, 220, 255, 0.4);  background: rgba(94, 220, 255, 0.1); }
.f2 .ico { color: var(--green); border-color: rgba(85, 216, 141, 0.4);  background: rgba(85, 216, 141, 0.1); }
.f3 .ico { color: var(--amber); border-color: rgba(255, 200, 87, 0.4);  background: rgba(255, 200, 87, 0.1); }
.f4 .ico { color: var(--rose);  border-color: rgba(255, 127, 154, 0.4); background: rgba(255, 127, 154, 0.1); }
.f1 { border-top: 2px solid rgba(94, 220, 255, 0.5); }
.f2 { border-top: 2px solid rgba(85, 216, 141, 0.5); }
.f3 { border-top: 2px solid rgba(255, 200, 87, 0.5); }
.f4 { border-top: 2px solid rgba(255, 127, 154, 0.5); }

.addr-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  align-self: flex-start;
  padding: 11px 15px;
  border: 1px solid var(--cyan-strong);
  border-radius: 999px;
  background: rgba(94, 220, 255, 0.07);
  font-size: 1.02rem;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.pill {
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 600;
}

/* ---------- Plans ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.free-plan-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-bottom: 16px;
  padding: clamp(24px, 4vw, 38px);
  border-color: var(--cyan-strong);
  background:
    linear-gradient(135deg, rgba(94, 220, 255, 0.11), rgba(8, 24, 30, 0.96) 58%),
    var(--surface-2);
}
.free-plan-copy {
  max-width: 480px;
}
.free-plan-copy .plan-cta {
  width: max-content;
  max-width: 100%;
}
.free-plan-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
}
.free-plan-specs div {
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.free-plan-specs div:nth-child(even) {
  border-right: 0;
}
.free-plan-specs dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}
.free-plan-specs dd {
  margin: 5px 0 0;
  font-weight: 750;
  overflow-wrap: anywhere;
}
.future-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.plan {
  --plan-accent: var(--cyan);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 0 26px 26px;
  border-top-color: var(--plan-accent);
}
.plan-starter {
  --plan-accent: #5edcff;
}
.plan-community {
  --plan-accent: #55d88d;
}
.plan-performance {
  --plan-accent: #ffc857;
}
.plan-power {
  --plan-accent: #ff715b;
}
.plan-mascot {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  height: 154px;
  margin: 0 -26px 20px;
  overflow: hidden;
  border-bottom: 1px solid color-mix(in srgb, var(--plan-accent) 34%, transparent);
  background: #08171d;
}
.plan-mascot::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--plan-accent);
  content: "";
  opacity: 0.82;
}
.plan-mascot img {
  display: block;
  width: auto;
  height: 178px;
  max-width: 92%;
  object-fit: contain;
  transform: translateY(25px);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
}
.plan-performance .plan-mascot img {
  animation: performance-aura 3.8s ease-in-out infinite;
}
.plan-power .plan-mascot img {
  animation: power-aura 3.2s ease-in-out infinite;
}
@keyframes performance-aura {
  0%,
  100% {
    filter:
      drop-shadow(0 0 5px rgba(255, 200, 87, 0.62))
      drop-shadow(0 0 13px rgba(94, 220, 255, 0.24))
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
  }
  50% {
    filter:
      drop-shadow(0 0 9px rgba(255, 200, 87, 0.86))
      drop-shadow(0 0 20px rgba(94, 220, 255, 0.34))
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
  }
}
@keyframes power-aura {
  0%,
  100% {
    filter:
      drop-shadow(0 0 7px rgba(255, 113, 91, 0.74))
      drop-shadow(0 0 17px rgba(235, 248, 255, 0.3))
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
  }
  50% {
    filter:
      drop-shadow(0 0 12px rgba(255, 113, 91, 0.96))
      drop-shadow(0 0 27px rgba(94, 220, 255, 0.44))
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
  }
}
.plan.featured {
  border-color: var(--cyan-strong);
  background:
    linear-gradient(180deg, rgba(94, 220, 255, 0.12), rgba(8, 24, 30, 0.96)),
    var(--surface-2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.plan-label {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.plan-label.available {
  border-color: rgba(94, 220, 255, 0.5);
  background: rgba(94, 220, 255, 0.12);
  color: var(--cyan);
}
.plan-label.research {
  border-color: rgba(255, 200, 87, 0.34);
  background: rgba(255, 200, 87, 0.07);
  color: var(--amber);
}
.plan-desc {
  color: var(--muted);
  font-size: 0.96rem;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 8px 0 10px;
}
.plan-price strong {
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  line-height: 1;
}
.plan-price span {
  color: var(--muted);
  font-size: 0.86rem;
}
.plan dl {
  display: grid;
  margin: 20px 0 0;
}
.plan dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line-2);
}
.plan dt {
  color: var(--muted);
  font-size: 0.95rem;
}
.plan dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
}
.plan-cta {
  margin-top: 22px;
}
.plan .plan-cta {
  width: 100%;
}
.plan-highlight {
  border-color: rgba(94, 220, 255, 0.34);
  background: rgba(15, 38, 48, 0.78);
}
.plans-foot {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
.plans-foot strong {
  color: var(--soft);
}

/* ---------- Interest validation ---------- */
.interest-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}
.interest-copy {
  position: sticky;
  top: 116px;
}
.interest-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--soft);
}
.interest-points li {
  position: relative;
  padding-left: 25px;
}
.interest-points li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(85, 216, 141, 0.12);
}
.interest-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 700;
}
.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(2, 7, 10, 0.72);
  color: var(--text);
  font: inherit;
}
.field select {
  color-scheme: dark;
}
.field input::placeholder {
  color: #6f8994;
}
.field input:hover,
.field select:hover {
  border-color: rgba(94, 220, 255, 0.34);
}
.field input:focus,
.field select:focus {
  border-color: var(--cyan);
  outline: 2px solid rgba(94, 220, 255, 0.15);
  outline-offset: 1px;
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.consent-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: var(--muted);
  font-size: 0.86rem;
  cursor: pointer;
}
.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--cyan);
}
.consent-row a,
.form-privacy a,
.confirmation-foot a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.interest-submit {
  width: 100%;
}
.interest-submit:disabled,
.confirmation-card .button:disabled {
  cursor: wait;
  opacity: 0.68;
}
.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.form-status[data-state="success"] {
  color: var(--green);
}
.form-status[data-state="error"] {
  color: var(--rose);
}
.form-privacy {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* ---------- Credits ---------- */
.credits-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
}
.credits-copy {
  max-width: 560px;
}
.credits-board {
  display: grid;
  gap: 12px;
}
.credits-board article {
  padding: 20px 22px;
  border-left-width: 4px;
}
.credits-board span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.credits-board strong {
  display: block;
  margin: 6px 0 7px;
  font-size: 1.1rem;
  font-weight: 700;
}
.credits-board p {
  color: var(--muted);
}
.b1 { border-left-color: var(--cyan); }
.b2 { border-left-color: var(--green); }
.b3 { border-left-color: var(--amber); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.step {
  padding: 26px;
}
.step p {
  color: var(--muted);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 11px;
  background: linear-gradient(180deg, #7ce6ff, var(--cyan));
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(94, 220, 255, 0.28);
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq summary:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.faq details p {
  padding: 0 20px 18px;
  color: var(--muted);
}

/* ---------- Status ---------- */
.status-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.status-list {
  display: grid;
  gap: 10px;
}
.status-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
}
.status-list strong {
  color: var(--soft);
}
.status-list span {
  color: var(--muted);
  text-align: right;
  font-weight: 550;
}

/* ---------- Final CTA ---------- */
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(44px, 6vw, 72px) clamp(24px, 4vw, 48px);
  margin-bottom: 24px;
  border: 1px solid var(--cyan-strong);
  border-radius: clamp(16px, 3vw, 24px);
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(94, 220, 255, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(15, 38, 48, 0.6), rgba(7, 20, 25, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.final-cta h2 {
  margin-bottom: 0;
}
.final-cta .actions {
  margin-top: 0;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.foot-brand {
  display: grid;
  gap: 2px;
}
.foot-brand strong {
  color: var(--text);
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 550;
}
.site-footer nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* ---------- Gradient hairline border ---------- */
.grad-border {
  position: relative;
}
.grad-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(94, 220, 255, 0.7),
    rgba(63, 140, 255, 0.25) 38%,
    rgba(255, 255, 255, 0.04) 72%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-card.grad-border,
.plan.featured.grad-border,
.final-cta.grad-border {
  border-color: var(--line);
}

/* ---------- Active nav (scroll-spy) ---------- */
.site-nav a.active {
  color: var(--text);
  background: rgba(94, 220, 255, 0.1);
}

/* ---------- Header scrolled state ---------- */
.site-header.scrolled {
  background: rgba(5, 13, 17, 0.86);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ---------- Footer (restructured) ---------- */
.site-footer {
  display: block;
  padding: clamp(36px, 5vw, 56px) 0 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.foot-brand {
  display: grid;
  gap: 14px;
  max-width: 440px;
}
.foot-brand p {
  color: var(--muted);
  font-size: 0.95rem;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--soft);
  transition: border-color 150ms ease;
}
.status-pill:hover {
  border-color: var(--cyan-strong);
}
#foot-status-dot {
  background: var(--muted);
}
.status-pill.ok #foot-status-dot {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(85, 216, 141, 0.18);
}
.status-pill.degraded #foot-status-dot {
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(255, 200, 87, 0.18);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- Contact ---------- */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  padding-top: clamp(34px, 6vw, 64px);
  padding-bottom: clamp(34px, 6vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-section > div:first-child {
  max-width: 690px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

/* ---------- Interest confirmation ---------- */
.confirmation-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}
.confirmation-shell {
  display: grid;
  width: min(100%, 620px);
  gap: 22px;
}
.confirmation-shell > .brand {
  justify-self: center;
}
.confirmation-card {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 6vw, 48px);
}
.confirmation-card h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.3rem);
  line-height: 1.03;
}
.confirmation-card p {
  color: var(--muted);
}
.confirmation-card .button {
  width: max-content;
  max-width: 100%;
}
.confirmation-foot {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .plan-grid,
  .future-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .bento-hero {
    grid-column: span 2;
    grid-row: auto;
  }
  .bento-wide {
    grid-column: span 2;
  }
  .hero-grid,
  .section-head.split,
  .credits-section,
  .status-section,
  .interest-section {
    grid-template-columns: 1fr;
  }
  .interest-copy {
    position: static;
  }
  .hero-emblem {
    opacity: 0.08;
    right: -18%;
  }
  .hero-card {
    max-width: 520px;
  }
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 10px 12px;
  }
  .site-nav {
    order: 3;
    width: 100%;
    margin-right: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar {
    display: none;
  }
  .site-nav a {
    white-space: nowrap;
  }
  .header-actions {
    margin-left: auto;
  }
  html {
    scroll-padding-top: 140px;
  }
  .hero-grid {
    padding-top: 156px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .free-plan-band,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    overflow: visible;
  }
  .site-nav a {
    justify-content: center;
    min-width: 0;
    min-height: 34px;
    padding: 0 4px;
    font-size: 0.82rem;
  }
  html {
    scroll-padding-top: 178px;
  }
  .hero-grid {
    padding-top: 220px;
  }
  .hero-emblem {
    display: none;
  }
  .trust-strip,
  .plan-grid,
  .future-plan-grid,
  .bento {
    grid-template-columns: 1fr;
  }
  .bento-hero,
  .bento-wide {
    grid-column: auto;
  }
  .trust-strip {
    margin-top: 12px;
  }
  .actions,
  .actions .button {
    width: 100%;
  }
  .hero-card-list div,
  .status-list div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .hero-card-list dd,
  .status-list span {
    text-align: left;
  }
  .plan {
    padding: 0 22px 22px;
  }
  .plan-mascot {
    height: 132px;
    margin: 0 -22px 18px;
  }
  .plan-mascot img {
    height: 158px;
    transform: translateY(23px);
  }
  .free-plan-specs {
    grid-template-columns: 1fr;
  }
  .free-plan-specs div,
  .free-plan-specs div:nth-child(even) {
    border-right: 0;
  }
  .free-plan-copy .plan-cta,
  .contact-actions,
  .contact-actions .button,
  .confirmation-card .button {
    width: 100%;
  }
  .confirmation-page {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .plan-performance .plan-mascot img,
  .plan-power .plan-mascot img {
    animation: none;
  }
  .plan-performance .plan-mascot img {
    filter:
      drop-shadow(0 0 7px rgba(255, 200, 87, 0.72))
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
  }
  .plan-power .plan-mascot img {
    filter:
      drop-shadow(0 0 10px rgba(255, 113, 91, 0.84))
      drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
  }
  html.reveal-on [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Compact mobile navigation ---------- */
@media (max-width: 860px) {
  html.site-nav-ready {
    scroll-padding-top: 88px;
  }
  .site-header.nav-enhanced {
    flex-wrap: nowrap;
    gap: 8px;
    min-height: 62px;
    padding: 8px 9px 8px 12px;
  }
  .site-header.nav-enhanced .brand {
    flex: 0 0 auto;
  }
  .site-header.nav-enhanced .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    margin: 0;
    padding: 10px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: #050d11;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }
  .site-header.nav-enhanced .site-nav a {
    justify-content: flex-start;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    white-space: normal;
  }
  .site-header.nav-enhanced.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .site-header.nav-enhanced .header-actions {
    margin-left: auto;
  }
  .site-header.nav-enhanced .header-actions .button.ghost {
    display: none;
  }
  .site-header.nav-enhanced .menu-toggle {
    display: grid;
    flex: 0 0 42px;
  }
  .site-header.nav-enhanced + main .hero-grid {
    padding-top: 112px;
  }
}

@media (max-width: 420px) {
  .site-header.nav-enhanced .brand {
    gap: 8px;
    font-size: 0.96rem;
  }
  .site-header.nav-enhanced .brand img {
    width: 32px;
    height: 32px;
  }
  .site-header.nav-enhanced .header-actions .button.primary {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.78rem;
  }
}
