/* ============================================================
   ORBIS — landing page
   Dark-first, editorial, midnight-green. Mobile-first.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --base: #0F0F0F;
  --surface: #1A1A1A;
  --elevated: #262626;
  --hairline: #2A2A2A;

  /* Accent — Midnight Green */
  --accent: #1D9E75;
  --accent-light: #5DCAA5;
  --accent-dark: #0F6E56;

  /* Text */
  --text: #E0E0E0;
  --text-2: #9A9A9A;
  --text-3: #7A7A7A;

  /* Paper */
  --paper: #F2EFE7;
  --ink: #1A1A1C;

  /* Category touches */
  --amber: #EF9F27;
  --blue: #378ADD;
  --red: #E24B4A;
  --purple: #7F77DD;

  /* Radii */
  --r-card: 14px;
  --r-pill: 20px;
  --r-sm: 8px;

  /* Shadow (used sparingly — image/hero cards only) */
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.2);

  /* Motion */
  --spring: cubic-bezier(0.34, 1.4, 0.5, 1.0);
  --ease: cubic-bezier(0.4, 0.0, 0.2, 1);

  /* Layout */
  --wrap: 1120px;
  --nav-h: 60px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
body {
  margin: 0;
  background: var(--base);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; max-width: 100%; }
button { font: inherit; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  background: var(--accent);
  color: #04140e;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: 20px;
}
.wrap-narrow { max-width: 760px; }

/* ---------- Type primitives ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 18px;
}
.eyebrow .dash {
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
  flex: none;
}
.eyebrow-center { justify-content: center; }

.section-title {
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.section-sub {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 48ch;
}
.section-head { margin-bottom: 40px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--elevated);
  --btn-fg: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.1px;
  border: 0.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--spring), background-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent {
  --btn-bg: var(--accent);
  --btn-fg: #04140e;
}
.btn-accent:hover { background: var(--accent-light); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--hairline);
}
.btn-ghost:hover { background: var(--surface); border-color: #3a3a3a; }

.btn-sm { min-height: 40px; padding: 0 16px; font-size: 14px; }
.btn-lg { min-height: 54px; padding: 0 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Check list ---------- */
.check-list { display: grid; gap: 14px; margin-top: 26px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
}
.check {
  flex: none;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(29, 158, 117, 0.14);
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 7px; top: 5px;
  width: 5px; height: 9px;
  border: solid var(--accent-light);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

/* ---------- Category dots ---------- */
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex: none; }
.dot-amber { background: var(--amber); }
.dot-blue { background: var(--blue); }
.dot-red { background: var(--red); }
.dot-purple { background: var(--purple); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 0.5px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(15, 15, 15, 0.88);
  border-bottom-color: var(--hairline);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
}
.wordmark-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: block;
  flex: none;
}
.wordmark-text {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 3px;
  padding-left: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links > a:not(.btn) {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s var(--ease);
}
.nav-links > a:not(.btn):hover { color: var(--text); }
.nav-links .btn { margin-left: 4px; }

/* Hide text anchor links on small screens; keep CTA */
@media (max-width: 720px) {
  .nav-links > a:not(.btn) { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + 20px);
  padding-bottom: 48px;
  position: relative;
  /* no overflow:hidden here — the globe is clipped by its own wrapper so the
     phone is never cut off */
}
.hero-grid { display: grid; gap: 36px; }

.hero-title {
  font-size: clamp(34px, 9vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-sub {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.6;
  max-width: 44ch;
}

/* Mobile: center the hero as one cohesive column so the CTA, badges and
   phone all share a centre axis (overridden to left at the desktop breakpoint) */
.hero-copy { text-align: center; }
.hero-br { display: none; }
.hero-sub { margin-inline: auto; }
.badges { justify-content: center; }
.hero-cta { margin-top: 30px; }
.hero-cta .btn { width: 100%; }
.hero-cta-micro {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.2px;
}

/* Store badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.badges-center { justify-content: center; }
.badge {
  border-radius: 8px;
  transition: transform 0.35s var(--spring), opacity 0.2s var(--ease);
  opacity: 0.95;
}
.badge:hover { transform: translateY(-2px); opacity: 1; }
.badge svg { border-radius: 8px; }

/* Hero visual — phone sits in flow (never clipped); globe lives in a clip wrapper behind it */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.globe-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;        /* clips the oversized globe, not the phone */
  z-index: 0;
  pointer-events: none;
}
.globe {
  width: min(116%, 540px);
  height: auto;
  aspect-ratio: 1 / 1;
  opacity: 0.9;
}

/* ---------- Phone mockup ---------- */
.phone {
  position: relative;
  z-index: 1;
  width: 240px;
  background: #050505;
  border: 1px solid #303030;
  border-radius: 34px;
  padding: 9px;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(0,0,0,0.6) inset;
}
.phone::before { /* notch / pill */
  content: "";
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 5px;
  border-radius: 3px;
  background: #2a2a2a;
  z-index: 3;
}
.phone-screen {
  /* height is driven by the screenshot's natural aspect ratio, so nothing is
     ever cropped — the bezel wraps the full image */
  width: 100%;
  border-radius: 26px;
  background:
    radial-gradient(120% 80% at 50% 0%, #1d1d1d 0%, #131313 55%, #0e0e0e 100%);
  border: 0.5px solid #242424;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
/* faint grid texture so empty placeholder still reads as "a screen" */
.phone-screen::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--hairline) 0.5px, transparent 0.5px),
    linear-gradient(90deg, var(--hairline) 0.5px, transparent 0.5px);
  background-size: 28px 28px;
  opacity: 0.12;
}
.ph-label {
  position: relative;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  line-height: 1.7;
  padding: 6px 12px;
  border: 0.5px dashed #3a3a3a;
  border-radius: var(--r-sm);
}
.phone-hero { width: 230px; }

/* Real screenshots display at their natural aspect ratio (no crop); they carry
   their own status bar, so drop the fake notch */
.phone-screen img {
  width: 100%;
  height: auto;
  display: block;
}
.phone.has-shot::before { display: none; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  border-top: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
  background: var(--base);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.stat {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  border-top: 0.5px solid var(--hairline);
}
/* mobile 2×2: no top border on first row, hairline between the two columns */
.stat:nth-child(-n + 2) { border-top: 0; }
.stat:nth-child(odd) { border-right: 0.5px solid var(--hairline); }
.stat-num {
  font-size: clamp(30px, 8vw, 38px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--text);
}
.stat-num::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 12px auto 0;
  background: var(--accent);
  opacity: 0.85;
}
.stat-label {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
  max-width: 18ch;
}

/* ============================================================
   NEWS
   ============================================================ */
.news { padding: 72px 0; }
.news-grid { display: grid; gap: 44px; }

/* Newspaper clipping */
.clipping {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-sm);
  padding: 0;
  max-width: 420px;
  box-shadow: var(--shadow-soft);
  transform: rotate(-1.2deg);
  overflow: hidden;
  position: relative;
}
.clipping::after { /* torn-edge fade at the very bottom */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 64px;
  background: linear-gradient(to bottom, rgba(242,239,231,0), var(--paper));
  pointer-events: none;
}
.clipping-photo {
  position: relative;
  height: 172px;
  overflow: hidden;
  border-bottom: 1px solid rgba(26,26,28,0.12);
}
.clipping-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* press-clipping look: desaturated with a touch of paper warmth */
  filter: grayscale(0.72) contrast(1.06) brightness(1.02) sepia(0.06);
}
.clipping-credit {
  position: absolute;
  right: 7px; bottom: 5px;
  font-size: 8.5px;
  letter-spacing: 0.4px;
  color: #f2efe7;
  background: rgba(26,26,28,0.5);
  padding: 1px 5px;
  border-radius: 3px;
}
.clipping-body { padding: 18px 20px 26px; }
.clipping-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.clipping-head {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  font-family: "Inter", Georgia, serif;
}
.clipping-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: #33332f;
  /* fade the cutout text */
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
}

.news-visual {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0;
}
/* On mobile, hide the second (redundant) phone to keep it tight */
.phone-news { display: none; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 64px 0 16px; }
.feature-row {
  display: grid;
  gap: 30px;
  padding-block: 40px;
  align-items: center;
}
.feature-title {
  font-size: clamp(24px, 6.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.16;
  margin-bottom: 16px;
}
.feature-sub {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 46ch;
}
/* Compact value points under each feature */
.feature-points { margin-top: 22px; gap: 12px; }
.feature-points li { font-size: 14.5px; color: var(--text); }
.feature-points .check { width: 20px; height: 20px; }
.feature-points .check::after { left: 6px; top: 5px; width: 4px; height: 8px; }
.feature-visual { display: grid; place-items: center; }

/* Breadth */
.breadth {
  padding: 44px 20px 20px;
  text-align: center;
}
.breadth-title {
  font-size: clamp(22px, 5.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  max-width: 20ch;
  margin: 0 auto 10px;
}
.breadth-sub {
  color: var(--text-3);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 24px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 0.5px solid var(--hairline);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s var(--ease), transform 0.35s var(--spring);
}
.pill:hover { border-color: #3a3a3a; transform: translateY(-2px); }

/* ============================================================
   SHOWCASE / DEPTH
   ============================================================ */
.showcase { padding: 56px 0 8px; }
.showcase-grid {
  display: grid;
  gap: 48px;
  margin-top: 8px;
}
.showcase-item {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 20px;
}
.showcase-item .phone {
  width: 230px;
  transition: transform 0.45s var(--spring);
}
.showcase-item:hover .phone { transform: translateY(-6px); }
.showcase-cap { max-width: 30ch; }
.showcase-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.showcase-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.showcase-cap p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 8px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: 72px 0; }
.steps { display: grid; gap: 14px; max-width: 720px; }
.step {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 0.5px solid var(--hairline);
}
.step:last-child { border-bottom: 0; }
.step-check {
  flex: none;
  width: 28px; height: 28px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(29, 158, 117, 0.14);
  position: relative;
}
.step-check::after {
  content: "";
  position: absolute;
  left: 9px; top: 7px;
  width: 6px; height: 11px;
  border: solid var(--accent-light);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}
.step-num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.step-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.step-sub { color: var(--text-2); font-size: 15px; line-height: 1.55; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof { padding: 64px 0; border-top: 0.5px solid var(--hairline); }
.proof-note { color: var(--text-3); font-size: 14px; }
.reviews { display: grid; gap: 16px; }
.review {
  background: var(--surface);
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 24px;
  transition: transform 0.4s var(--spring), border-color 0.25s var(--ease);
}
.review:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 158, 117, 0.35);
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star {
  width: 16px; height: 16px;
  display: inline-block;
  background: currentColor;
  color: var(--amber);
  -webkit-mask: var(--star-mask) center / contain no-repeat;
  mask: var(--star-mask) center / contain no-repeat;
}
.star.is-empty { color: #333; }
:root { --star-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l7.1-1.01z'/%3E%3C/svg%3E"); }
.review-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
}
.review-meta { font-size: 13px; color: var(--text-3); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 64px 0; border-top: 0.5px solid var(--hairline); }
.accordion { display: grid; gap: 0; }
.faq-item {
  border-bottom: 0.5px solid var(--hairline);
}
.faq-item:first-child { border-top: 0.5px solid var(--hairline); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text);
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none;
  position: relative;
  width: 18px; height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent-light);
  border-radius: 2px;
  transition: transform 0.35s var(--spring), opacity 0.2s var(--ease);
}
.faq-icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  padding: 0 4px 24px;
  max-width: 60ch;
}
.faq-answer p { color: var(--text-2); font-size: 15px; line-height: 1.6; }
/* gentle reveal when an item opens (native <details> otherwise snaps) */
.faq-item[open] .faq-answer {
  animation: faq-open 0.4s var(--ease) both;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  padding: 88px 0 96px;
  border-top: 0.5px solid var(--hairline);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-inner { position: relative; z-index: 1; }
.globe-wrap-final {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -54%);
  width: min(96vw, 460px);
  height: min(96vw, 460px);
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.globe-final {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  opacity: 0.28;
}
.final-title {
  font-size: clamp(30px, 8vw, 46px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.12;
  margin-bottom: 16px;
}
.final-sub {
  color: var(--text-2);
  font-size: 17px;
  max-width: 38ch;
  margin: 0 auto 30px;
}
.final .btn { min-width: 260px; }
.final-micro {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 48px 0 40px; border-top: 0.5px solid var(--hairline); }
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-tag { color: var(--text-2); font-size: 14px; margin-top: 12px; max-width: 30ch; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--text); }
.footer-legal {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 0.5px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.footer-legal p { font-size: 13px; color: var(--text-3); }

/* ============================================================
   LEGAL PAGES (privacy / terms)
   ============================================================ */
.legal-top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 15, 15, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 0.5px solid var(--hairline);
}
.legal-top-inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-top-back { font-size: 14px; color: var(--text-2); transition: color 0.2s var(--ease); }
.legal-top-back:hover { color: var(--text); }

.legal { padding: 48px 0 72px; }
.wrap-legal { max-width: 740px; }

.legal-title {
  font-size: clamp(30px, 7vw, 42px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.1;
}
.legal-updated {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--accent-light);
}
.legal-body { margin-top: 8px; }
.legal-body p {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0 0 18px;
}
.legal-body p strong, .legal-list li strong { color: var(--text); font-weight: 600; }
.legal-h2 {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text);
  margin: 36px 0 16px;
  padding-top: 26px;
  border-top: 0.5px solid var(--hairline);
}
.legal-h2-num {
  flex: none;
  color: var(--accent-light);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 700;
  min-width: 1.4em;
}
.legal-list { margin: 0 0 18px; display: grid; gap: 12px; }
.legal-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.7;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
}
.legal-body a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.legal-body a:hover { color: var(--accent); }
.legal-foot-note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 0.5px solid var(--hairline);
  font-size: 14px;
  color: var(--text-3);
}
.legal-foot-note a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.legal-foot-note a:hover { color: var(--accent); }

/* Support page contact callout */
.support-intro {
  margin-top: 16px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
}
.support-cta {
  margin-top: 28px;
  padding: 28px;
  background: var(--surface);
  border: 0.5px solid var(--hairline);
  border-radius: var(--r-card);
}
.support-cta-label {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text-2);
}
.support-cta-label strong {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
.support-cta .btn {
  margin-top: 18px;
  text-decoration: none;
}
.support-cta-note {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-3);
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-top: 0.5px solid var(--hairline);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  transform: translateY(120%);
  transition: transform 0.4s var(--spring);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.sticky-cta-copy { display: flex; flex-direction: column; line-height: 1.25; }
.sticky-cta-price { font-size: 15px; font-weight: 700; color: var(--text); }
.sticky-cta-sub { font-size: 12px; color: var(--text-3); }
.sticky-cta .btn { flex: none; min-height: 46px; }
/* Sticky CTA is a mobile-only device */
@media (min-width: 861px) { .sticky-cta { display: none; } }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--spring);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* Wordmark load animation (letter-spacing wide → tight) */
.wordmark-text { --ws: 3px; }
.nav .wordmark-text.animate-in {
  animation: wordmark-tighten 0.9s var(--spring) both;
}
@keyframes wordmark-tighten {
  from { letter-spacing: 12px; opacity: 0; }
  to   { letter-spacing: 3px; opacity: 1; }
}

/* ============================================================
   RESPONSIVE — scale up from mobile
   ============================================================ */
@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  /* single row: drop the 2×2 borders, use vertical hairlines between cells */
  .stat { border-top: 0; }
  .stat:nth-child(odd) { border-right: 0; }
  .stat + .stat { border-left: 0.5px solid var(--hairline); }
  .hero-cta .btn { width: auto; }
  .reviews { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 861px) {
  :root { --nav-h: 68px; }
  .wrap { padding-inline: 32px; }

  /* Hero two-column */
  .hero {
    padding-top: calc(var(--nav-h) + 36px);
    padding-bottom: 88px;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
  }
  /* back to left-aligned editorial column on desktop */
  .hero-copy { text-align: left; }
  .hero-br { display: inline; }
  .hero-sub { margin-inline: 0; }
  .hero .badges { justify-content: flex-start; }
  .hero-visual { min-height: 560px; }
  .phone { width: 270px; }
  .phone-hero { width: 262px; }
  .globe { width: min(108%, 500px); }

  /* News two-column — clipping in front (left), phone peeking behind (right) */
  .news { padding: 110px 0; }
  .news-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
  .news-visual {
    display: block;
    position: relative;
    min-height: 560px;
  }
  /* clipping sits lower-left so the phone can rise clear above it */
  .clipping {
    position: absolute;
    left: 0; top: 96px;
    max-width: 336px;
    margin: 0;
    z-index: 2;
  }
  /* phone tilts right and lifts above the clipping so the screenshot reads */
  .phone-news {
    display: block;
    position: absolute;
    right: -10px; top: -8px;
    width: 226px;
    transform: rotate(5deg);
    transform-origin: center bottom;
    z-index: 1;
  }

  /* Features alternating */
  .features { padding: 96px 0 40px; }
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding-block: 56px;
  }
  .feature-row-rev .feature-text { order: 2; }
  .feature-row-rev .feature-visual { order: 1; }

  /* Showcase 3-up */
  .showcase { padding: 80px 0 24px; }
  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
    margin-top: 48px;
  }
  .showcase-item .phone { width: 240px; }

  /* How */
  .how { padding: 104px 0; }
  .steps { margin: 0 auto; }

  .proof { padding: 96px 0; }
  .faq { padding: 96px 0; }

  .footer { padding: 64px 0 48px; }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

@media (min-width: 1080px) {
  .phone { width: 290px; }
  .phone-hero { width: 280px; }
  .globe { width: min(108%, 560px); }
  .hero-visual { min-height: 610px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .badge:hover, .pill:hover,
  .review:hover, .showcase-item:hover .phone { transform: none; }
}
