:root {
  --bg: #030712;
  --bg-elevated: #08111f;
  --surface: rgba(17, 24, 39, 0.82);
  --surface-solid: #111827;
  --surface-soft: rgba(17, 24, 39, 0.62);
  --surface-strong: rgba(10, 18, 32, 0.95);
  --border: #374151;
  --border-strong: rgba(148, 163, 184, 0.24);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.88);
  --text-muted: #9ca3af;
  --text-faint: #6b7280;
  --accent: #2dd4bf;
  --accent-bright: #6ee7d8;
  --accent-text: #062a27;
  --shadow-xl: 0 28px 90px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 16px 44px rgba(0, 0, 0, 0.3);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --container-narrow: 820px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5rem;
  --space-9: 7rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(520px 320px at 12% 6%, rgba(45, 212, 191, 0.12), transparent 70%),
    radial-gradient(820px 420px at 86% 10%, rgba(45, 212, 191, 0.08), transparent 74%),
    radial-gradient(900px 500px at 50% 110%, rgba(8, 145, 178, 0.08), transparent 72%),
    linear-gradient(180deg, #02040a 0%, #030712 45%, #06101b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 24%, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.1), rgba(3, 7, 18, 0.72));
}

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

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

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-top: 1rem;
  padding-bottom: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--accent-bright);
  font-size: 0.85rem;
  font-weight: 800;
  background:
    radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.28), rgba(45, 212, 191, 0.08) 58%, rgba(45, 212, 191, 0.02));
  border: 1px solid rgba(45, 212, 191, 0.34);
  box-shadow: 0 0 26px rgba(45, 212, 191, 0.16);
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.topnav {
  position: relative;
}

.topnav > summary {
  list-style: none;
}

.topnav > summary::-webkit-details-marker {
  display: none;
}

.topnav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.6rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.28);
  background: rgba(45, 212, 191, 0.08);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.topnav-toggle::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 140ms ease;
}

.topnav[open] .topnav-toggle::after {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.topnav-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem 0.95rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.topnav-links a {
  padding: 0.3rem 0;
}

.nav-cta {
  padding: 0.6rem 0.95rem !important;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.28);
  background: rgba(45, 212, 191, 0.08);
  color: var(--text);
}

main {
  flex: 1;
}

.hero-section {
  padding-top: clamp(0.15rem, 0.8vw, 0.6rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 4vw, 4.25rem);
  align-items: center;
}

.hero-copy-column {
  max-width: 620px;
}

.hero-badge,
.eyebrow,
.section-kicker,
.summary-label,
.mini-label,
.feature-number,
.floating-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.2rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.26);
  background: rgba(45, 212, 191, 0.08);
  color: #bdfcf3;
}

.eyebrow,
.section-kicker,
.summary-label,
.mini-label,
.feature-number {
  color: var(--text-muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  margin-top: 0.95rem;
  font-size: clamp(3rem, 7vw, 5.2rem);
  max-width: 11ch;
}

.hero-lede {
  margin: 1.4rem 0 0;
  max-width: 34ch;
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  color: var(--text-soft);
}

.hero-copy {
  margin: 1rem 0 0;
  max-width: 34ch;
  color: var(--text-soft);
  font-size: 1rem;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-meta {
  margin: 0.9rem 0 0;
  color: var(--text-faint);
  font-size: 0.94rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.08rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 12px 28px rgba(45, 212, 191, 0.2);
}

.btn-primary:hover {
  background: #43ddca;
  color: #031614;
}

.btn-secondary {
  border-color: rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(45, 212, 191, 0.5);
  background: rgba(45, 212, 191, 0.06);
}

.btn-tertiary {
  color: var(--text-muted);
}

.hero-proof-strip,
.trust-strip,
.footer-links {
  list-style: none;
  padding: 0;
}

.hero-proof-strip {
  margin: 1.85rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-proof-strip li,
.summary-card,
.feature-card,
.audience-card,
.trust-chip,
.floating-note,
.before-after-card,
.proof-caption,
.comparison-table,
.faq-item,
.trust-panel,
.proof-frame,
.device-shell {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    var(--surface);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.hero-proof-strip li {
  padding: 1rem 1rem 0.95rem;
}

.hero-proof-strip strong,
.proof-caption strong {
  display: block;
  font-size: 0.95rem;
}

.hero-proof-strip span,
.proof-caption span,
.summary-card p,
.feature-card p,
.audience-card p,
.comparison-shell p,
.editorial-copy p,
.trust-panel p,
.faq-item p {
  color: var(--text-muted);
}

.hero-visual-column {
  position: relative;
}

.visual-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.visual-halo {
  position: absolute;
  width: min(620px, 98%);
  height: min(620px, 98vw);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(45, 212, 191, 0.4), rgba(45, 212, 191, 0.16) 38%, rgba(45, 212, 191, 0.04) 62%, transparent 76%);
  filter: blur(16px);
}

.device-stack {
  position: relative;
  width: min(100%, 640px);
  min-height: 735px;
}

.device-stack::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 6%;
  bottom: 2.5rem;
  height: 9rem;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(45, 212, 191, 0.14), rgba(45, 212, 191, 0.04) 48%, transparent 76%);
  filter: blur(22px);
  z-index: 0;
}

.device-shell {
  width: min(100%, 560px);
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.28);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    rgba(6, 12, 24, 0.9);
  box-shadow:
    0 34px 72px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(45, 212, 191, 0.1);
}

.device-shell-primary,
.device-shell-secondary,
.device-shell-tertiary {
  position: absolute;
}

.device-shell-primary {
  left: 1.5%;
  top: 0.35rem;
  width: min(70%, 448px);
  z-index: 2;
  transform: rotate(-2.6deg);
}

.device-shell-secondary {
  right: -2%;
  top: 11.3rem;
  width: min(61%, 388px);
  z-index: 1;
  transform: rotate(3.6deg);
  opacity: 0.96;
}

.device-shell img,
.proof-frame img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 0.65rem);
}

.summary-section {
  padding-top: 0;
  padding-bottom: clamp(2.75rem, 5vw, 3.75rem);
}

.positioning-section {
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.positioning-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 1.3rem;
  align-items: start;
}

.positioning-copy {
  padding: 0.4rem 0 0;
}

.positioning-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 11ch;
}

.positioning-copy p:last-child,
.positioning-copy p:nth-child(3) {
  max-width: 44ch;
  color: var(--text-soft);
}

.positioning-compare {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.switch-stack {
  display: grid;
  gap: 0.8rem;
}

.switch-stack-label,
.switch-result-label {
  margin: 0;
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.switch-card {
  padding: 1rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(10, 17, 29, 0.72);
  box-shadow: var(--shadow-lg);
}

.switch-card h3 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.switch-card p {
  margin: 0.6rem 0 0;
  color: var(--text-muted);
}

.switch-card-accent {
  border-color: rgba(45, 212, 191, 0.34);
  background:
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(45, 212, 191, 0.08), rgba(255, 255, 255, 0)),
    rgba(10, 17, 29, 0.82);
}

.switch-card-result {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.8rem;
  min-height: 100%;
  padding: 1.1rem 1.15rem;
  overflow: hidden;
}

.switch-card-result::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.18), transparent 70%);
  pointer-events: none;
}

.switch-result-head,
.switch-result-copy {
  position: relative;
  z-index: 1;
}

.switch-card-result h3 {
  margin-top: 0.35rem;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  max-width: 10ch;
}

.switch-result-copy {
  margin-top: 0.15rem;
  color: var(--text-soft);
  max-width: 22ch;
  font-size: 1.04rem;
}

.switch-result-copy-secondary {
  margin-top: 0.1rem;
  max-width: 24ch;
  color: #d7fffa;
  font-weight: 600;
}

.proof-section {
  display: grid;
  gap: 1.5rem;
}

.proof-intro {
  max-width: 42rem;
}

.proof-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 11ch;
}

.proof-intro p:last-child {
  color: var(--text-soft);
  max-width: 38ch;
}

.proof-compare-grid {
  display: grid;
  gap: 1rem;
}

.proof-compare-card,
.proof-spotlight {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(10, 17, 29, 0.72);
  box-shadow: var(--shadow-lg);
}

.proof-compare-card {
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
}

.proof-compare-copy h3,
.proof-spotlight-copy h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  max-width: 15ch;
}

.proof-compare-copy p:last-child,
.proof-spotlight-copy p:last-child {
  color: var(--text-soft);
  max-width: 31ch;
}

.proof-compare-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: start;
}

.proof-state {
  display: grid;
  gap: 0.5rem;
  justify-items: start;
}

.proof-state-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 1.85rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.2);
  background: rgba(45, 212, 191, 0.06);
  color: #bdfcf3;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.proof-state p {
  margin: 0;
  color: var(--text-muted);
  width: 100%;
  max-width: 248px;
}

.proof-frame-compact {
  max-width: 248px;
  padding: 0.45rem;
}

.proof-spotlight {
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: 1.35rem;
  align-items: center;
}

.proof-spotlight-visual {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-inline: 1.1rem;
}

.proof-testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-quote {
  margin: 0;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(10, 17, 29, 0.72);
  box-shadow: var(--shadow-lg);
}

.proof-quote p {
  margin: 0;
  color: var(--text-soft);
}

.proof-quote footer {
  margin-top: 0.7rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.proof-frame-balance {
  max-width: 252px;
  margin-inline: auto;
}

.proof-balance-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.proof-balance-point {
  padding: 0.9rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.proof-balance-point strong {
  display: block;
  margin-bottom: 0.28rem;
  color: #dffef9;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.proof-balance-point span {
  color: var(--text-muted);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.summary-card {
  min-height: 100%;
  padding: 1.2rem 1.15rem 1.3rem;
}

.summary-card h2 {
  margin-top: 0.7rem;
  font-size: 1.2rem;
}

.section-shell {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.definition-shell,
.comparison-shell,
.trust-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.editorial-grid,
.faq-grid,
.audience-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.editorial-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  align-items: center;
}

.editorial-copy,
.section-heading {
  max-width: var(--container-narrow);
}

.section-kicker {
  margin-bottom: 0.8rem;
}

.section-heading h2,
.editorial-copy h2,
.trust-panel h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  max-width: 14ch;
}

.section-heading p,
.editorial-copy p,
.trust-panel p {
  margin: 1rem 0 0;
  max-width: 62ch;
}

.section-heading {
  margin-bottom: 2rem;
}

.compact-heading h2 {
  max-width: 12ch;
}

.compact-grid .feature-card {
  padding: 1.15rem 1.1rem;
}

.comparison-note {
  margin: 1.2rem 0 0;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 1rem;
}

.section-heading-left {
  margin-bottom: 0;
}

.before-after-card {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.1rem;
}

.mini-label {
  margin-bottom: 0.45rem;
}

.proof-frame {
  padding: 0.7rem;
  border-radius: var(--radius-xl);
}

.proof-caption-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-caption {
  padding: 1rem;
}

.feature-grid,
.audience-list {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 1.25rem;
  min-height: 100%;
}

.feature-number {
  margin-bottom: 1rem;
}

.feature-card h3,
.audience-card h3 {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.feature-card p,
.audience-card p {
  margin: 0.85rem 0 0;
}

.audience-grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  align-items: start;
}

.audience-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-card {
  padding: 1.2rem;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  text-align: left;
}

.comparison-table thead th {
  color: var(--text);
  font-size: 0.95rem;
}

.comparison-table tbody th {
  color: var(--text-soft);
  font-weight: 600;
}

.comparison-table td:last-child,
.comparison-table th:last-child {
  color: #d4fff8;
}

.link-row {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  color: var(--text-muted);
}

.link-row a {
  color: #d2fdf7;
}

.faq-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.2rem;
  font-weight: 700;
  color: var(--text-soft);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.faq-item p {
  margin: 0;
  padding: 0.9rem 1.2rem 1.15rem;
}

.trust-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl);
}

.trust-panel-compact {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(300px, 1.12fr);
  gap: 1.2rem 2rem;
  align-items: center;
}

.trust-copy {
  max-width: 30rem;
}

.trust-note {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  font-weight: 600;
  max-width: 34ch;
}

.trust-side {
  display: grid;
  justify-items: start;
}

.trust-strip {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-chip {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  box-shadow: none;
  color: #d8faf5;
}

.trust-actions {
  margin-top: 1rem;
}

.trust-actions .btn-tertiary {
  border-color: rgba(148, 163, 184, 0.18);
}

.waitlist-form {
  width: min(100%, 32rem);
  margin-top: 1rem;
}

.waitlist-form-row {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

.waitlist-input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(6, 13, 24, 0.78);
  color: var(--text);
  font: inherit;
  transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.waitlist-input::placeholder {
  color: rgba(156, 163, 175, 0.9);
}

.waitlist-input:hover {
  border-color: rgba(148, 163, 184, 0.34);
}

.waitlist-input:focus-visible {
  border-color: rgba(45, 212, 191, 0.65);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.12);
  background: rgba(9, 18, 31, 0.92);
}

.waitlist-form .btn {
  min-width: 12rem;
  font-size: 1.02rem;
}

.waitlist-note,
.waitlist-status {
  margin: 0.7rem 0 0;
  font-size: 0.92rem;
}

.waitlist-note {
  color: var(--text-muted);
}

.waitlist-status {
  min-height: 1.5rem;
  color: var(--text-soft);
  font-weight: 600;
}

.waitlist-status[data-state="success"] {
  color: #bdfcf3;
}

.waitlist-status[data-state="error"] {
  color: #fca5a5;
}

.waitlist-status[data-state="pending"] {
  color: #dffef9;
}

.waitlist-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.trust-assurance {
  margin-top: 1rem;
}

.trust-assurance-panel {
  max-width: 34rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 212, 191, 0.18);
  background:
    linear-gradient(180deg, rgba(45, 212, 191, 0.04), rgba(255, 255, 255, 0)),
    rgba(10, 17, 29, 0.68);
  box-shadow: var(--shadow-lg);
}

.trust-assurance-panel h3 {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.trust-assurance-panel p:last-child {
  margin: 0.55rem 0 0;
  color: var(--text-soft);
}

.site-footer {
  padding-top: 1rem;
  padding-bottom: 2.4rem;
  color: var(--text-muted);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-title {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.footer-muted,
.footer-status {
  margin: 0.45rem 0 0;
}

.footer-muted a,
.footer-links a {
  color: #d6faf5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  font-weight: 500;
}

.copyright {
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.content-layout {
  padding-block: var(--space-4) var(--space-6);
}

.content-card {
  padding: clamp(1.1rem, 3.5vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--surface);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.page-kicker {
  margin: 0;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.page-title {
  margin: 0.45rem 0 0;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-body {
  margin-top: 1rem;
  color: var(--text-muted);
  max-width: 65ch;
}

.page-body p {
  margin: 0 0 1rem;
}

.page-body h2,
.page-body h3 {
  color: var(--text);
  letter-spacing: -0.02em;
}

.page-body h2 {
  margin: 2rem 0 0.7rem;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
}

.page-body h3 {
  margin: 1.35rem 0 0.55rem;
  font-size: 1rem;
}

.legal-doc .bullet-list {
  margin-bottom: 1rem;
}

.legal-doc .bullet-list li {
  line-height: 1.75;
}

.legal-date,
.legal-footnote {
  color: var(--text-faint);
}

.legal-date {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
}

.legal-footnote {
  font-size: 0.9rem;
}

.legal-table-wrap {
  margin: 1.1rem 0 1.2rem;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.legal-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: rgba(6, 13, 24, 0.48);
}

.legal-table th,
.legal-table td {
  padding: 0.8rem 0.85rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
}

.legal-table th {
  color: var(--text-soft);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
}

.legal-table td {
  color: var(--text-muted);
}

.callout {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.callout strong {
  display: block;
  margin-bottom: 0.35rem;
}

.list-title {
  margin: 1.6rem 0 0.55rem;
  font-size: 1rem;
}

.bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.bullet-list li + li {
  margin-top: 0.45rem;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 1.5rem;
}

.inline-links a,
.muted-link {
  color: #d6faf5;
}

@media (max-width: 1080px) {
  .hero-grid,
  .positioning-panel,
  .proof-compare-card,
  .proof-spotlight,
  .trust-panel-compact,
  .editorial-grid,
  .audience-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-column {
    max-width: none;
  }

  .visual-stage {
    min-height: 0;
    padding-top: 1rem;
  }

  .device-stack {
    min-height: 700px;
  }

  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .positioning-compare {
    grid-template-columns: 1fr;
  }

  .proof-testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .topnav-links {
    justify-content: flex-start;
    gap: 0.35rem 0.85rem;
    font-size: 0.9rem;
  }

  .topnav-links .nav-cta {
    display: none;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-proof-strip,
  .summary-grid,
  .positioning-compare,
  .feature-grid,
  .audience-list,
  .proof-caption-row,
  .before-after-card {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .waitlist-form {
    width: 100%;
  }

  .waitlist-form-row {
    flex-direction: column;
  }

  .waitlist-form .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-meta,
  .hero-copy,
  .proof-intro p:last-child,
  .proof-compare-copy p:last-child,
  .proof-spotlight-copy p:last-child,
  .trust-note {
    max-width: none;
  }

  .hero-proof-strip li {
    padding: 0.9rem 0.95rem;
  }

  .visual-stage {
    gap: 1rem;
  }

  .device-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .device-shell-primary,
  .device-shell-secondary,
  .device-shell-tertiary {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
  }

  .proof-testimonials {
    grid-template-columns: 1fr;
  }

  .proof-frame-compact {
    max-width: 188px;
    padding: 0.35rem;
  }

  .proof-compare-card {
    gap: 1rem;
    padding: 0.85rem;
  }

  .proof-compare-copy h3,
  .proof-spotlight-copy h3 {
    max-width: none;
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .proof-compare-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .proof-state {
    gap: 0.4rem;
  }

  .proof-state p {
    max-width: 188px;
    font-size: 0.92rem;
  }

  .proof-spotlight-visual {
    justify-content: center;
    padding-inline: 0;
  }

  .proof-frame-balance {
    max-width: 220px;
  }

  .proof-balance-points {
    gap: 0.7rem;
  }

  .footer-grid {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .topbar {
    align-items: center;
    flex-direction: row;
    gap: 0.75rem;
    padding-top: 0.9rem;
    padding-bottom: 0.45rem;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-mark {
    width: 2.15rem;
    height: 2.15rem;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text span {
    font-size: 0.72rem;
  }

  .topnav {
    margin-left: auto;
  }

  .topnav-toggle {
    display: inline-flex;
  }

  .topnav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    min-width: 13rem;
    padding: 0.55rem;
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
      var(--surface-strong);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    z-index: 20;
  }

  .topnav[open] .topnav-links {
    display: grid;
    gap: 0.15rem;
  }

  .topnav-links a {
    padding: 0.72rem 0.8rem;
    border-radius: 12px;
  }

  .topnav-links a:hover,
  .topnav-links a:focus-visible {
    color: var(--text);
    background: rgba(45, 212, 191, 0.08);
  }

  .hero-section {
    padding-top: 0;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-badge {
    min-height: 1.85rem;
    padding: 0.14rem 0.68rem;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  h1 {
    margin-top: 0.6rem;
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  .hero-lede {
    margin-top: 1rem;
    font-size: 1.02rem;
  }

  .hero-copy {
    margin-top: 0.75rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 1.35rem;
    gap: 0.7rem;
  }

  .hero-meta {
    margin-top: 0.75rem;
    font-size: 0.9rem;
  }

  .hero-proof-strip {
    margin-top: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
