@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --canvas: #070d12;
  --canvas-mid: #0b141a;
  --canvas-sunken: #050a0e;
  --ink: #f2fffc;
  --ink-secondary: #c5d9d5;
  --ink-muted: #7a9a96;
  --primary: #2ee6d6;
  --primary-pressed: #1fcfc0;
  --primary-container: #0c3330;
  --primary-on-container: #9ff5ec;
  --accent: #e8a05a;
  --border: rgba(46, 230, 214, 0.25);
  --border-strong: rgba(46, 230, 214, 0.4);
  --white: #0e1a20;
  --on-primary: #041210;
  --forest: #2ee6d6;
  --forest-deep: #041210;
  --radius: 22px;
  --radius-lg: 28px;
  --shadow: 0 8px 32px rgba(46, 230, 214, 0.08), inset 0 1px 0 rgba(46, 230, 214, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.35);
  --header-h: 72px;
  --wrap: 1200px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  overflow-x: hidden;
  max-width: 100%;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--ink);
  background-color: var(--canvas);
  background-image: radial-gradient(rgba(46, 230, 214, 0.12) 1.1px, transparent 1.1px);
  background-size: 24px 24px;
  font-family: "Plus Jakarta Sans", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body:has(#nav-open:checked) {
  overflow: hidden;
}

img { max-width: 100%; height: auto; }
button, input, select { font: inherit; }
code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.92em;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  background: var(--primary);
  color: var(--on-primary);
  padding: 8px 12px;
  border-radius: 8px;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--wrap), calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 13, 18, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: var(--header-h);
  min-width: 0;
  max-width: 100%;
}

.lockup {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}
.lockup img { display: block; width: 28px; height: 28px; }
.lockup:hover { text-decoration: none; }

.nav-check {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

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

.header-privacy { display: none; }
.nav-main { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle svg { display: block; }
.nav-toggle .icon-close { display: none; }
.nav-check:checked ~ .site-header .nav-toggle .icon-open { display: none; }
.nav-check:checked ~ .site-header .nav-toggle .icon-close { display: block; }
.nav-check:checked ~ .nav-drawer { display: flex; }
.nav-check:checked ~ .nav-scrim { display: block; }

.header-cta {
  display: inline-flex;
  padding: 8px 14px;
  font-size: 13px;
}

.nav-scrim {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(5, 10, 14, 0.55);
  z-index: 30;
}

.nav-drawer {
  display: none;
  position: fixed;
  z-index: 35;
  top: var(--header-h);
  right: 0;
  left: 0;
  flex-direction: column;
  gap: 4px;
  padding: 16px 16px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.nav-drawer a {
  display: block;
  padding: 12px 8px;
  color: var(--ink);
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
}
.nav-drawer a:hover,
.nav-drawer a[aria-current="page"] {
  background: var(--canvas-mid);
  color: var(--primary);
}
.nav-drawer .btn { margin-top: 8px; width: 100%; }

.nav-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 6px;
  vertical-align: middle;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn svg { flex-shrink: 0; }
.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 8px 18px rgba(46, 230, 214, 0.22);
}
.btn-primary:hover { background: var(--primary-pressed); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.btn-ghost:hover { border-color: var(--border-strong); }
.btn-caps {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
}
.btn-link {
  background: none;
  color: var(--primary);
  padding: 12px 4px;
  font-weight: 600;
  box-shadow: none;
}
.btn-link:hover { text-decoration: underline; }
.btn-store {
  background: #0f1720;
  color: var(--ink);
  border-radius: 16px;
  padding: 10px 18px;
  gap: 10px;
  text-align: left;
  max-width: 100%;
  min-width: 0;
  justify-content: flex-start;
}
.btn-store:hover { background: #000; }
.btn-store span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-weight: 700;
  font-size: 14px;
}
.btn-store small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cbd5d1;
}

/* Hero */
.hero {
  padding: 28px 0 8px;
  overflow: hidden;
}
.hero-copy, .hero-grid { min-width: 0; }
.hero-grid {
  display: grid;
  gap: 8px;
  align-items: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(209, 250, 229, 0.7);
  border: 1px solid #6ee7b7;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-on-container);
  letter-spacing: 0.01em;
  max-width: 100%;
}
.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.display {
  margin: 16px 0 12px;
  font-size: clamp(1.55rem, 0.85rem + 3.6vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  overflow-wrap: break-word;
  word-break: normal;
  max-width: 100%;
}
.display span {
  color: var(--primary);
}

.lede {
  margin: 0 0 22px;
  color: var(--ink-secondary);
  font-size: 17px;
  max-width: 40rem;
  overflow-wrap: break-word;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 22px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(197, 214, 206, 0.8);
  list-style: none;
}
.trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 500;
}
.trust svg { color: var(--primary); flex-shrink: 0; }

/* Phone cluster is absolutely positioned so scale() cannot widen the page */
.hero-phones {
  position: relative;
  height: 340px;
  margin: 8px auto 0;
  overflow: hidden;
  pointer-events: none;
  min-width: 0;
  width: 100%;
}
.hero-cluster {
  position: absolute;
  left: 50%;
  top: 0;
  width: 560px;
  height: 580px;
  margin-left: -280px;
  transform: scale(0.58);
  transform-origin: top center;
}
.device {
  position: absolute;
  background: var(--canvas-sunken);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 50px -16px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(46, 230, 214, 0.22);
  margin: 0;
}
.device img {
  display: block;
  width: 100%;
  background: var(--canvas);
}
.device-center {
  width: 270px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
}
.device-left {
  width: 210px;
  left: 8px;
  top: 72px;
  transform: rotate(-7deg);
  z-index: 1;
  opacity: 0.9;
}
.device-right {
  width: 210px;
  right: 8px;
  top: 88px;
  transform: rotate(7deg);
  z-index: 1;
  opacity: 0.9;
}

/* Pillars */
.pillars-band {
  padding: 36px 0 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 90% at 50% 40%, rgba(46, 230, 214, 0.16) 0%, transparent 62%),
    linear-gradient(165deg, #070d12 0%, #0a2c32 42%, #0c3330 58%, #07141a 100%);
}
.pillars {
  display: grid;
  gap: 14px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
}
.card h2, .card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.card p {
  margin: 0;
  color: var(--ink-secondary);
  font-size: 15px;
}
.icon-well {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 18px;
}

.free-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
  margin: 20px 0 8px;
  display: grid;
  gap: 16px;
  align-items: center;
}
.free-bar h2 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.free-bar p {
  margin: 0;
  color: var(--ink-secondary);
  font-size: 15px;
}
.free-bar .btn { justify-self: start; }

/* Sections */
.section {
  padding: 56px 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-container);
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 5vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.section-head p {
  margin: 0;
  color: var(--ink-secondary);
}

/* Calculator demo */
.viz-grid {
  display: grid;
  gap: 16px;
  align-items: start;
  min-width: 0;
}
.calc-card, .side-card, .suite-card, .price-card, .free-bar, .card {
  min-width: 0;
  max-width: 100%;
}
.calc-card { padding: 18px; }
.calc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--canvas-mid);
}
.calc-top h3 {
  margin: 0;
  font-size: 22px;
  display: inline;
}
.calc-badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--canvas-mid);
  border-radius: 999px;
  padding: 3px 8px;
  vertical-align: middle;
}
.help-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.help-dot:hover { background: var(--canvas-mid); text-decoration: none; }

.seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--canvas-sunken);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0;
  margin-bottom: 16px;
  overflow: hidden;
  min-height: 48px;
}
.seg-3 { grid-template-columns: 1fr 1fr 1fr; }
.seg button {
  border: 0;
  border-right: 1px solid var(--border);
  background: transparent;
  border-radius: 0;
  padding: 9px 12px;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-muted);
  cursor: pointer;
}
.seg button:last-child { border-right: 0; }
.seg button.is-on {
  background: var(--primary);
  color: var(--on-primary);
}
.seg button:hover:not(.is-on) { color: var(--ink); }
.seg button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  z-index: 1;
}

.field { margin-bottom: 12px; }
.field label, .field .label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.field-row {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.field-row input,
.field-row select {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 12px 14px;
  color: var(--primary-pressed);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 18px;
  font-weight: 500;
}
.field-row input:focus,
.field-row select:focus { outline: none; }
.unit-toggle {
  display: flex;
  background: var(--canvas-sunken);
}
.unit-toggle button {
  border: 0;
  background: transparent;
  padding: 0 12px;
  min-width: 48px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-muted);
  cursor: pointer;
}
.unit-toggle button.is-on {
  background: var(--primary);
  color: var(--on-primary);
}
.unit-badge {
  display: grid;
  place-items: center;
  min-width: 48px;
  padding: 0 12px;
  background: var(--canvas-sunken);
  color: var(--ink-muted);
  font-weight: 700;
  font-size: 13px;
}

.range {
  width: 100%;
  accent-color: var(--primary);
  margin: 4px 0 8px;
}
.range-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-muted);
}

.syringe-wrap {
  margin-top: 8px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  min-width: 0;
}
.syringe-wrap .label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.syringe-wrap .seg { margin-bottom: 14px; }
.syringe {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}
.syringe-needle {
  flex: 0 0 22px;
  height: 2px;
  background: var(--border-strong);
  border-radius: 1px;
}
.syringe-hub {
  flex: 0 0 10px;
  height: 14px;
  background: var(--border-strong);
  border-radius: 2px;
}
.barrel {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 40px;
  border: 1.5px solid var(--border-strong);
  border-radius: 6px;
  background: var(--white);
  overflow: hidden;
}
.barrel-track {
  position: absolute;
  left: 3px;
  right: 3px;
  top: 0;
  bottom: 0;
}
.barrel-fill {
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 10%;
  background: color-mix(in srgb, var(--primary) 55%, transparent);
  border-radius: 3px 0 0 3px;
  transition: width 0.2s ease;
}
.barrel-fill.is-over { background: var(--accent); }
.barrel-plunger {
  position: absolute;
  top: 5px;
  bottom: 5px;
  width: 3px;
  background: var(--primary);
  border-radius: 1px;
  left: 10%;
  transform: translateX(-50%);
  transition: left 0.2s ease;
  z-index: 2;
}
.barrel-ticks {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.syringe-rod {
  flex: 0 0 28px;
  height: 3px;
  background: var(--border-strong);
  border-radius: 1px;
}
.calc-hero-readout {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 500;
}
.calc-hero-readout strong {
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 500;
  color: inherit;
}
.calc-hero-readout.is-over { color: var(--accent); }
.calc-conc {
  margin: 4px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}
.calc-result {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: var(--primary-pressed);
  font-size: 15px;
  font-weight: 500;
}
.calc-result strong { font-size: 18px; letter-spacing: -0.03em; }
.calc-warn {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(180, 35, 24, 0.16);
  border: 1px solid rgba(249, 112, 102, 0.35);
  color: #f97066;
  font-size: 13px;
}
.viz-side {
  display: grid;
  gap: 14px;
}
.side-card { padding: 24px; }
.side-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.side-card > p {
  color: var(--ink-secondary);
  margin: 0 0 16px;
}
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--ink-secondary);
  font-size: 14px;
}
.checklist strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
}
.check-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-container);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.native-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.native-bar .eyebrow { margin-bottom: 4px; }
.native-bar p {
  margin: 0;
  font-size: 12px;
  color: var(--ink-secondary);
}
.native-chip {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: var(--canvas-sunken);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
}

/* Suite */
.suite-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 90% at 50% 40%, rgba(46, 230, 214, 0.16) 0%, transparent 62%),
    linear-gradient(165deg, #070d12 0%, #0a2c32 42%, #0c3330 58%, #07141a 100%);
}
.suite-grid {
  display: grid;
  gap: 16px;
}
.suite-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.suite-copy { padding: 22px 22px 8px; }
.suite-copy h3 { font-size: 18px; margin: 0 0 8px; }
.suite-copy p { color: var(--ink-secondary); font-size: 14px; }
.suite-copy .icon-well { margin-bottom: 16px; }
.suite-shot {
  margin: 8px 18px 18px;
  background: var(--canvas-mid);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px 10px 8px;
  overflow: hidden;
}
.suite-shot img {
  display: block;
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: top;
  background: var(--white);
}
.suite-shot span {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  padding-top: 8px;
}

/* Privacy panel */
.privacy-panel {
  background: linear-gradient(160deg, #0c3330 0%, #041210 100%);
  color: var(--ink);
  border-radius: 32px;
  padding: 28px 22px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 24px;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.privacy-panel::before,
.privacy-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}
.privacy-panel::before {
  right: -80px;
  top: -80px;
  background: rgba(16, 185, 129, 0.12);
}
.privacy-panel::after {
  left: -80px;
  bottom: -80px;
  background: rgba(110, 231, 183, 0.1);
}
.privacy-panel > * { position: relative; z-index: 1; }
.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  background: rgba(46, 230, 214, 0.12);
  border: 1px solid rgba(46, 230, 214, 0.28);
  margin-bottom: 12px;
}
.privacy-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 5vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
}
.privacy-panel > div > p { color: var(--ink-secondary); margin: 0 0 18px; }
.privacy-cards {
  display: grid;
  gap: 12px;
}
.privacy-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
}
.privacy-card h3 {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--primary-on-container);
}
.privacy-card p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}
.audit {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(143, 232, 200, 0.16);
  border-radius: 18px;
  padding: 16px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.7;
  overflow-x: auto;
  min-width: 0;
  max-width: 100%;
}
.audit-kicker {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.audit-kicker span:last-child { color: var(--primary); }
.audit-line { color: var(--ink-secondary); white-space: normal; overflow-wrap: anywhere; }
.audit-line strong { color: var(--ink); font-weight: 600; }

/* Pricing */
.price-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}
.price-card {
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 12px 32px rgba(46, 230, 214, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.price-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.price-card h3 { margin: 0 0 4px; font-size: 22px; }
.price-kicker {
  margin: 0;
  font-size: 12px;
  color: var(--ink-muted);
}
.price-pill {
  flex-shrink: 0;
  background: var(--canvas-mid);
  color: var(--ink-secondary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 0;
  line-height: 1;
}
.price strong {
  font-size: 40px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-card.featured .price strong { color: var(--primary); }
.price span {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}
.price-note {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.45;
}
.price-list {
  list-style: none;
  margin: 20px 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.price-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-secondary);
}
.price-list svg { color: var(--primary); margin-top: 2px; }
.price-card .btn { width: 100%; margin-top: auto; }
.legal-fine {
  text-align: center;
  color: var(--ink-muted);
  font-size: 13px;
  margin: 16px auto 0;
  max-width: 46rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 0 18px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-muted);
  border-bottom: 2px solid var(--ink-muted);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: -4px;
}
.faq-list details[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq-list details p {
  margin: 0 0 16px;
  color: var(--ink-secondary);
  font-size: 15px;
}
.faq-list details:target {
  border-color: var(--border-strong);
}

/* Install */
.install {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 40px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.install-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: #070d12;
  border: 1px solid rgba(46, 230, 214, 0.28);
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(46, 230, 214, 0.22);
}
.install-mark img {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: cover;
}
.install h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 5vw, 36px);
  letter-spacing: -0.035em;
}
.install p {
  margin: 0 auto 20px;
  max-width: 34rem;
  color: var(--ink-secondary);
}
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Disclaimer + footer */
.disclaimer-bar {
  padding: 28px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.6;
}
.disclaimer-bar strong {
  display: block;
  color: var(--ink-secondary);
  margin-bottom: 6px;
  font-size: 12px;
}
.disclaimer-bar p { margin: 0; }

.foot {
  background: #041210;
  color: var(--ink-secondary);
  padding: 32px 0;
  font-size: 13px;
}
.foot .wrap { width: min(var(--wrap), calc(100% - 32px)); }
.foot-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.foot .lockup-light {
  color: var(--ink);
  margin-right: 0;
}
.foot .lockup-light img { filter: none; }
.foot-copy {
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
  margin-left: 8px;
  letter-spacing: 0;
}
.foot nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.foot a { color: var(--ink-secondary); }
.foot a:hover { color: var(--ink); }

/* Legal pages */
.legal {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}
.legal h1 { font-size: clamp(28px, 5vw, 36px); margin-top: 12px; }
.legal h2 {
  margin-top: 28px;
  font-size: 18px;
  color: var(--primary);
}
.legal p, .legal li { color: var(--ink-secondary); }
.legal ul { padding-left: 1.2em; }
.updated {
  color: var(--ink-muted);
  font-size: 13px;
}
.muted { color: var(--ink-muted); }
.small { font-size: 14px; }

.page-hero {
  padding: 28px 0 8px;
  max-width: 720px;
}

@media (min-width: 480px) {
  .hero-phones { height: 400px; }
  .hero-cluster { transform: scale(0.68); }
}

@media (min-width: 640px) {
  .wrap { width: min(var(--wrap), calc(100% - 48px)); }
  .hero { padding-top: 40px; }
  .hero-phones { height: 490px; }
  .hero-cluster { transform: scale(0.84); }
  .header-cta { padding: 10px 16px; font-size: 14px; }
  .free-bar { padding: 28px; }
  .privacy-cards { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .nav-toggle, .nav-drawer, .nav-scrim { display: none !important; }
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }
  .lockup { margin-right: 0; }
  .header-actions { justify-self: end; }
  .nav-main {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: center;
  }
  .nav-main a {
    color: var(--ink-secondary);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-main a:hover,
  .nav-main a[aria-current="page"] { color: var(--primary); }
  .header-privacy {
    display: inline-flex;
    color: var(--ink-secondary);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    text-decoration: none;
  }
  .header-privacy:hover { text-decoration: none; color: var(--primary); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .free-bar {
    grid-template-columns: 1fr auto;
    padding: 28px 32px;
  }
  .viz-grid { grid-template-columns: 1.15fr 0.85fr; }
  .suite-grid { grid-template-columns: repeat(3, 1fr); }
  .privacy-panel {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 48px 44px;
    align-items: center;
  }
  .audit-line { white-space: nowrap; }
  .price-grid { grid-template-columns: 1fr 1fr; max-width: 860px; margin: 0 auto; }
}

@media (min-width: 1024px) {
  .hero { overflow: visible; padding-bottom: 20px; }
  .hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 12px;
    min-height: 600px;
  }
  .hero-phones {
    height: 620px;
    margin: 0;
    overflow: visible;
  }
  .hero-cluster {
    transform: none;
    left: 50%;
    margin-left: -280px;
    width: 560px;
    height: 620px;
  }
}

@media (max-width: 639px) {
  .store-row {
    flex-direction: column;
    align-items: center;
  }
  .btn-store { width: min(100%, 16rem); }
  .device-left, .device-right { display: none; }
  .hero-phones {
    height: auto;
    overflow: visible;
    display: flex;
    justify-content: center;
    padding: 4px 0 12px;
  }
  .hero-cluster {
    position: relative;
    left: auto;
    top: auto;
    width: 230px;
    height: auto;
    margin: 0 auto;
    transform: none;
  }
  .device-center {
    position: relative;
    left: auto;
    top: auto;
    width: 230px;
    transform: none;
  }
}

@media (max-width: 419px) {
  .actions .btn:not(.btn-link) { flex: 1 1 calc(50% - 10px); }
  .actions .btn-link { flex: 1 1 100%; justify-content: flex-start; }
  .audit-line { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .barrel-fill, .barrel-plunger { transition: none; }
}
