/* ============================================================================
   Solini — landing page
   Aesthetic: editorial-investigative. Cream paper, deep indigo, hot coral.
   Magazine typography. Receipts on the table.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   Söhne (Klim Type Foundry) — Buch (400) + Halbfett (600)
   Drop the licensed files at /fonts/ to activate. Until then Switzer
   (loaded via Fontshare in index.html) is the visual bridge. Both font names
   appear in the .sans stack so the browser picks Söhne the moment files exist.
   ---------------------------------------------------------------------------- */
@font-face {
  font-family: "Söhne";
  src: url("/fonts/SoehneBuch.woff2") format("woff2"),
       url("/fonts/SoehneBuch.woff")  format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Söhne";
  src: url("/fonts/SoehneBuchItalic.woff2") format("woff2"),
       url("/fonts/SoehneBuchItalic.woff")  format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Söhne";
  src: url("/fonts/SoehneHalbfett.woff2") format("woff2"),
       url("/fonts/SoehneHalbfett.woff")  format("woff");
  font-weight: 500 700;          /* covers 500–700 with the Halbfett file */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Söhne";
  src: url("/fonts/SoehneHalbfettItalic.woff2") format("woff2"),
       url("/fonts/SoehneHalbfettItalic.woff")  format("woff");
  font-weight: 500 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #F4EFE6;
  --bg-deep: #ECE6D9;
  --bg-darker: #E5DECF;
  --bg-card: #FFFFFF;
  --bg-paper: #FBF8F2;
  --ink: #1B1B1F;
  --ink-soft: #2E2A2C;
  --ink-muted: #6E6964;
  --ink-fade: #A09A93;
  --ink-faint: #C9C2B6;
  --hairline: rgba(27, 27, 31, 0.08);
  --hairline-strong: rgba(27, 27, 31, 0.18);

  --indigo: #5570F1;
  --indigo-deep: #3B4FB8;
  --indigo-soft: rgba(85, 112, 241, 0.12);
  --indigo-hot: #4A5FE8;

  --coral: #E36A5A;
  --coral-deep: #B8453A;
  --coral-soft: rgba(227, 106, 90, 0.14);

  --mint: #6B9D5F;
  --mint-soft: rgba(107, 157, 95, 0.14);

  --amber: #C68C36;
  --amber-soft: rgba(198, 140, 54, 0.14);

  /* Brand — from the Solini visual identity board */
  --brand-orange:      #EB9C10;
  --brand-orange-hot:  #F4A93C;
  --brand-orange-soft: rgba(235, 156, 16, 0.14);
  --brand-ink:         #0F1419;

  --serif: "Fraunces", "Söhne", Georgia, serif;
  --sans:  "Söhne", "Switzer", -apple-system, system-ui, "Helvetica Neue", Arial, sans-serif;
  --mono:  "JetBrains Mono", "SF Mono", Menlo, monospace;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-2xl: 44px;

  --shadow-card: 0 22px 48px -28px rgba(27, 27, 31, 0.22);
  --shadow-card-hover: 0 40px 80px -28px rgba(27, 27, 31, 0.32);
  --shadow-phone:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 -1px 0 rgba(0, 0, 0, 0.6) inset,
    0 70px 110px -30px rgba(27, 27, 31, 0.5),
    0 30px 60px -30px rgba(85, 112, 241, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;        /* Söhne Buch */
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "kern" on, "liga" on, "tnum" off;
}
strong, b { font-weight: 600; }   /* Söhne Halbfett */
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input { font: inherit; }

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

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */

.display {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(56px, 9.5vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.028em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  color: var(--ink);
}
.display--accent {
  font-style: italic;
  color: var(--indigo);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.4vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--ink);
  font-variation-settings: "opsz" 96, "SOFT" 30;
}
.section-title--xl { font-size: clamp(44px, 7vw, 104px); line-height: 0.94; }
.section-title--accent {
  font-style: italic;
  color: var(--indigo);
  font-weight: 600;
  font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.eyebrow--centered { text-align: center; }
.eyebrow--on-dark { color: rgba(255,255,255,0.55); }
.eyebrow--with-dot {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  margin-bottom: 28px;
}

.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(107, 157, 95, 0.6);
  animation: pulse 2.4s ease-out infinite;
}
.status-dot--live { background: var(--coral); box-shadow: 0 0 0 0 rgba(227, 106, 90, 0.6); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 currentColor; }
  70%  { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.lede {
  font-size: clamp(17px, 1.45vw, 21px);
  color: var(--ink-soft);
  max-width: 44ch;
  margin-top: 32px;
  line-height: 1.5;
  font-weight: 400;
}
.lede em { font-style: normal; color: var(--ink); font-weight: 600; }
.section-sub {
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--ink-muted);
  max-width: 60ch;
  margin: 22px auto 0;
  line-height: 1.55;
}
.section-sub--left { margin-left: 0; margin-right: 0; }

.dropcap {
  float: left;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 4.6em;
  line-height: 0.84;
  margin: 0.05em 0.08em 0 0;
  color: var(--indigo);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-style: italic;
}

.kbd {
  font-family: var(--mono);
  font-size: 0.78em;
  letter-spacing: 0.03em;
  padding: 1px 6px;
  margin: 0 2px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

/* ============================================================================
   NAV
   ============================================================================ */

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 56px);
  background: rgba(244, 239, 230, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
}
.nav.is-scrolled {
  background: rgba(244, 239, 230, 0.92);
  border-bottom-color: var(--hairline);
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); }
.logo-mark {
  width: 28px; height: 28px;
  background-image: url("/assets/mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.logo:hover .logo-mark { transform: rotate(60deg); }
.logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 96, "SOFT" 30;
}

.nav-links { display: none; gap: 28px; }
.nav-links a {
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1.5px;
  background: var(--indigo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--indigo); }
.nav-links a:hover::after { transform: scaleX(1); }
@media (min-width: 880px) { .nav-links { display: flex; } }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #FFF !important;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(27,27,31,0.18);
}
.btn:hover {
  transform: translateY(-1px);
  background: var(--indigo);
  box-shadow: 0 8px 22px rgba(85, 112, 241, 0.35);
}
.btn--small { padding: 9px 16px; font-size: 13px; }

/* ============================================================================
   HERO
   ============================================================================ */

.hero {
  position: relative;
  padding: clamp(40px, 6vw, 100px) clamp(20px, 5vw, 56px) clamp(80px, 10vw, 160px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blob 24s ease-in-out infinite alternate;
}
.hero__blob--indigo {
  width: 620px; height: 620px;
  background: var(--indigo);
  top: -160px; right: -120px;
  opacity: 0.22;
}
.hero__blob--coral {
  width: 460px; height: 460px;
  background: var(--coral);
  bottom: -140px; left: -120px;
  opacity: 0.18;
  animation-delay: -8s;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.108 0 0 0 0 0.108 0 0 0 0 0.122 0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.09;
  mix-blend-mode: multiply;
}
@keyframes blob {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.12); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: 1.1fr 1fr; }
}

.hero__copy { position: relative; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero__cta--centered { justify-content: center; }

.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 14px;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 22px rgba(27, 27, 31, 0.22);
}
.store-badge:hover {
  transform: translateY(-2px);
  background: var(--indigo);
  box-shadow: 0 12px 28px rgba(85, 112, 241, 0.4);
}
.store-badge small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1;
  opacity: 0.75;
}
.store-badge strong { font-size: 16px; font-weight: 700; line-height: 1.1; }

.hero__fineprint { margin-top: 18px; font-size: 13px; color: var(--ink-fade); }

.hero__authority {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px;
  list-style: none; padding: 0;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.hero__authority li span {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  color: var(--ink-soft);
}

/* ---------- Phone mockup ---------- */
.hero__device {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 380px;
}
.device {
  position: relative;
  aspect-ratio: 9 / 19.5;
  background: #0E0E12;
  border-radius: 48px;
  padding: 16px 14px;
  box-shadow: var(--shadow-phone);
  z-index: 2;
  animation: phoneFloat 8s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.device__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #000;
  border-radius: 18px;
  z-index: 3;
}
.device__halo {
  position: absolute; inset: -18% -10% -10% -10%;
  background:
    radial-gradient(45% 40% at 50% 45%, rgba(85, 112, 241, 0.35), transparent 70%),
    radial-gradient(60% 50% at 50% 80%, rgba(227, 106, 90, 0.18), transparent 70%);
  z-index: 1;
  filter: blur(20px);
}
.device__screen {
  position: relative;
  overflow: hidden;
  height: 100%; width: 100%;
  background: linear-gradient(to bottom, #1B1B1F, #181820);
  border-radius: 34px;
  padding: 40px 16px 16px;
  color: #EDEDEE;
  font-family: var(--sans);
  display: flex; flex-direction: column; gap: 10px;
}
.phone-header {
  display: flex; justify-content: space-between;
  font-size: 9px; color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
  font-family: var(--mono);
  font-weight: 700;
}
.phone-eyebrow {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  font-family: var(--mono);
}
.phone-hazard {
  background: linear-gradient(135deg, rgba(227,106,90,0.22), rgba(227,106,90,0.08));
  border: 1px solid rgba(227, 106, 90, 0.4);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 0 0 1px rgba(227,106,90,0.06) inset;
}
.phone-hazard__label {
  color: #FFB1A4;
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 4px;
}
.phone-hazard__title {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--serif);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.phone-hazard__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  margin-top: 4px;
}
.phone-product {
  display: flex; gap: 10px; align-items: center;
  padding: 6px 0;
}
.phone-thumb {
  width: 36px; height: 36px;
  background: #2D2E32; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.phone-brand { color: rgba(255,255,255,0.5); font-size: 8px; letter-spacing: 0.1em; font-family: var(--mono); font-weight: 700; }
.phone-name { font-size: 13px; font-weight: 600; margin-top: 2px; font-family: var(--serif); }

.phone-score {
  background: #25262A;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
}
.phone-ring {
  position: relative;
  width: 88px; height: 88px;
  margin: 0 auto 8px;
}
.phone-ring svg { width: 100%; height: 100%; }
.phone-ring__progress {
  transition: stroke-dashoffset 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.phone-ring__num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--coral);
  margin-top: -8px;
  letter-spacing: -0.04em;
}
.phone-ring__sub {
  position: absolute; left: 0; right: 0; bottom: -14px;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  letter-spacing: 0.06em;
}
.phone-verdict {
  display: inline-block;
  background: rgba(227, 106, 90, 0.14);
  color: var(--coral);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-top: 4px;
}
.phone-cap {
  margin-top: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
  text-align: left;
}

.phone-breakdown { display: flex; flex-direction: column; gap: 7px; }
.phone-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 10px;
}
.phone-row em { font-style: normal; color: rgba(255,255,255,0.4); font-size: 8px; margin-left: 4px; font-family: var(--mono); }
.phone-row small { color: rgba(255,255,255,0.4); font-size: 8px; font-family: var(--mono); }
.phone-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.phone-bar__fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--c);
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}
.is-in .phone-bar__fill { width: var(--w); }

/* scan line over phone */
.phone-scanline {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(85, 112, 241, 0.35), transparent);
  animation: scanline 4.5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes scanline {
  0%   { transform: translateY(-60px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(110%); opacity: 0; }
}

/* floating badges around phone */
.device__floater {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
  box-shadow: var(--shadow-card);
  z-index: 4;
  animation: floaterBob 9s ease-in-out infinite;
}
.device__floater strong { font-weight: 700; color: var(--ink); }
.device__floater--top    { top: 12%; left: -6%; }
.device__floater--bottom { bottom: 18%; right: -8%; animation-delay: -3s; }
@keyframes floaterBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; }
.dot--mint  { background: var(--mint); }
.dot--coral { background: var(--coral); }

/* ============================================================================
   TICKER — live regulatory news marquee
   ============================================================================ */

.ticker {
  position: relative;
  display: flex; align-items: center; gap: 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ticker__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: var(--coral);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.ticker__badge::after {
  content: "";
  position: absolute; top: 0; bottom: 0; right: -14px;
  width: 14px;
  background: linear-gradient(to right, var(--coral), transparent);
  pointer-events: none;
}

.ticker__rail {
  position: relative;
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 60px, #000 calc(100% - 60px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60px, #000 calc(100% - 60px), transparent);
}
.ticker__track {
  display: flex; align-items: center; gap: 28px;
  white-space: nowrap;
  animation: tickerMarquee 60s linear infinite;
  padding: 14px 0;
}
.ticker__rail:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.ticker__item em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 11px;
  margin-left: 6px;
}
.ticker__sep { color: rgba(255, 255, 255, 0.25); font-size: 12px; }
@keyframes tickerMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================================
   TRUST
   ============================================================================ */

.trust {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 56px);
  background: var(--bg);
}
.trust__inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.authority-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
@media (min-width: 600px) { .authority-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 980px) { .authority-grid { grid-template-columns: repeat(7, 1fr); } }

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.auth-card:hover {
  transform: translateY(-3px);
  border-color: var(--indigo);
  box-shadow: 0 14px 28px -16px rgba(85, 112, 241, 0.3);
}
.auth-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  font-variation-settings: "opsz" 96;
}
.auth-card span {
  display: block;
  font-size: 10.5px;
  color: var(--ink-fade);
  font-weight: 500;
  line-height: 1.4;
}

.trust__line {
  margin: 36px auto 0;
  color: var(--ink-muted);
  font-size: clamp(15px, 1.2vw, 18px);
  max-width: 56ch;
  line-height: 1.55;
}

/* ============================================================================
   SECTION HEAD (shared)
   ============================================================================ */

.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head--left { text-align: left; max-width: 900px; margin-left: 0; margin-right: 0; }

/* ============================================================================
   THE GAP — Marketing vs Reality
   ============================================================================ */

.gap {
  padding: clamp(80px, 10vw, 160px) clamp(20px, 5vw, 56px);
  background: var(--bg-paper);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.108 0 0 0 0 0.108 0 0 0 0 0.122 0 0 0 0.25 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  position: relative;
}
.gap__inner { max-width: 1240px; margin: 0 auto; position: relative; }

.gap__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--hairline-strong);
  align-items: center;
}
.gap__row:last-child { border-bottom: 1px solid var(--hairline-strong); }
@media (min-width: 880px) {
  .gap__row {
    grid-template-columns: 1.1fr 1.3fr 1.4fr;
    gap: 48px;
    padding: 80px 0;
  }
  .gap__row--reverse .gap__product   { order: 3; }
  .gap__row--reverse .gap__claim     { order: 2; }
  .gap__row--reverse .gap__truth     { order: 1; }
}

.gap__product {
  position: relative;
  height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.gap__pkg {
  width: 200px;
  height: 240px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  padding: 24px;
  box-shadow:
    0 30px 50px -20px rgba(27, 27, 31, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.gap__product:hover .gap__pkg { transform: rotate(0deg) scale(1.04); }
.gap__pkg span {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gap__pkg--bottle { width: 140px; border-radius: 80px 80px 12px 12px / 40px 40px 12px 12px; transform: rotate(2deg); }
.gap__pkg--yellow { background: linear-gradient(160deg, #F5C842, #E5A920); color: #1B1B1F; }

.gap__product--cereal .gap__pkg   { background: linear-gradient(160deg, #2980B9, #1F5F8B); }
.gap__product--shampoo .gap__pkg  { background: linear-gradient(160deg, #FBC8C0, #E69887); color: #5C2820; }
.gap__product--poptart .gap__pkg  { background: linear-gradient(160deg, #C8508A, #883F62); }

.gap__claim {
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--coral);
}
.gap__claim-kicker {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--coral);
  margin-bottom: 14px;
}
.gap__claim p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.18;
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: "opsz" 96, "SOFT" 30, "WONK" 1;
  font-style: italic;
  letter-spacing: -0.015em;
}

.gap__truth {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.gap__truth-kicker {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--indigo);
  margin-bottom: 12px;
}
.gap__truth-score {
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.gap__truth-score small {
  font-size: 22px;
  color: var(--ink-fade);
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: 0;
}
.gap__truth-score--bad { color: var(--coral); }
.gap__truth-score--ok  { color: var(--amber); }
.gap__truth-score--good { color: var(--mint); }

.gap__truth ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-bottom: 18px;
}
.gap__truth-cap {
  font-size: 13px;
  color: var(--ink-muted);
  padding-top: 16px;
  border-top: 1px dashed var(--hairline);
  line-height: 1.55;
}

/* ============================================================================
   DUO — Two aisles
   ============================================================================ */

.duo { padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 56px); background: var(--bg-deep); }
.duo__inner { max-width: 1240px; margin: 0 auto; }
.duo__cards {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .duo__cards { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.card__head { display: grid; grid-template-columns: 60px 1fr auto; gap: 16px; align-items: center; }
.card__thumb {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.card__thumb--food { background: linear-gradient(135deg, #F3D5B5, #ECC07C); }
.card__thumb--cosmetic { background: linear-gradient(135deg, #DCE7F8, #B3C6F3); }
.card__brand { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-fade); font-weight: 700; }
.card__name {
  font-family: var(--serif); font-size: 24px;
  line-height: 1.1; margin-top: 4px;
  font-variation-settings: "opsz" 96;
}
.card__score {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.card__score--bad { color: var(--coral); }
.card__score--ok { color: var(--amber); }
.card__score--good { color: var(--mint); }

.card__flags {
  margin-top: 24px;
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.flag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 9px;
  border-radius: 999px;
  margin-right: 8px;
  white-space: nowrap;
}
.flag--rust  { background: var(--coral-soft); color: var(--coral-deep); }
.flag--amber { background: var(--amber-soft); color: var(--amber); }
.flag--mint  { background: var(--mint-soft); color: var(--mint); }

.card__foot {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px;
  color: var(--ink-fade);
  font-family: var(--mono);
  letter-spacing: 0.03em;
  flex-wrap: wrap;
  gap: 8px;
}
.card__cap { color: var(--coral-deep); }

/* ============================================================================
   HOW IT WORKS
   ============================================================================ */

.how { padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 56px); background: var(--bg); }
.how__inner { max-width: 1240px; margin: 0 auto; }
.how__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) { .how__grid { grid-template-columns: repeat(3, 1fr); } }

.how__cell {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--hairline);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.how__cell:hover {
  transform: translateY(-3px);
  border-color: var(--indigo);
  box-shadow: 0 16px 32px -20px rgba(85, 112, 241, 0.3);
}
.how__weight {
  font-family: var(--serif);
  font-size: clamp(80px, 10vw, 112px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--indigo);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.how__weight span { font-size: 0.36em; color: var(--ink-faint); margin-left: 4px; vertical-align: top; font-weight: 500; }
.how__title {
  font-family: var(--serif);
  font-size: 26px;
  margin-top: 16px;
  font-variation-settings: "opsz" 96;
}
.how__cell p {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.6;
}
.how__cell p strong { color: var(--ink); font-weight: 600; }
.how__cell p em { font-style: normal; font-weight: 700; padding: 1px 6px; border-radius: 4px; font-size: 0.92em; }
.how__cell .amber { background: var(--amber-soft); color: var(--amber); }
.how__cell .rust { background: var(--coral-soft); color: var(--coral-deep); }
.how__cell .rust-deep { background: rgba(184, 69, 58, 0.22); color: var(--coral-deep); }

.how__caps {
  margin-top: 64px;
  display: flex; flex-direction: column; gap: 12px;
  max-width: 760px;
}
.cap-row {
  display: flex; align-items: center; gap: 16px;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 18px 22px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  line-height: 1.5;
}
.cap-row strong { color: var(--ink); font-weight: 700; }
.cap-pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  flex-shrink: 0;
}
.cap-pill--rust { background: var(--coral-soft); color: var(--coral-deep); }
.cap-pill--amber { background: var(--amber-soft); color: var(--amber); }

/* ---------- Interactive explorer ---------- */
.explorer {
  margin-top: 80px;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.explorer::before {
  content: "";
  position: absolute; top: -40%; right: -10%;
  width: 50%; height: 180%;
  background: radial-gradient(ellipse, rgba(85, 112, 241, 0.35), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.explorer__head { position: relative; z-index: 1; margin-bottom: 32px; }
.explorer__head .eyebrow { color: rgba(255,255,255,0.55); }
.explorer__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 10px;
  font-variation-settings: "opsz" 96;
}
.explorer__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-items: center;
}
@media (min-width: 880px) { .explorer__grid { grid-template-columns: 1.4fr 1fr; gap: 64px; } }

.explorer__controls { display: flex; flex-direction: column; gap: 24px; }
.explorer__ctrl label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.explorer__pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.explorer__pill--rust  { background: rgba(227,106,90,0.22); color: #FFB1A4; }
.explorer__pill--amber { background: rgba(212,160,86,0.22); color: #F1C880; }

.explorer__ctrl input[type="range"] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}
.explorer__ctrl input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--indigo);
  box-shadow: 0 0 0 4px rgba(85, 112, 241, 0.25);
  cursor: pointer;
  transition: transform 0.2s;
}
.explorer__ctrl input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.explorer__ctrl input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--indigo);
  cursor: pointer;
}
.explorer__scale {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.explorer__output {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
}
.explorer__ring {
  position: relative;
  width: 200px; height: 200px;
  margin: 0 auto;
}
.explorer__ring svg { width: 100%; height: 100%; }
#exp-ring { transition: stroke-dashoffset 0.6s cubic-bezier(0.22, 1, 0.36, 1), stroke 0.4s; }
.explorer__num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  transition: color 0.4s;
}
.explorer__verdict {
  margin-top: 16px;
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.4s, color 0.4s;
}
.explorer__cap {
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  max-width: 28ch;
  margin-left: auto; margin-right: auto;
}

/* ============================================================================
   VS — comparison matrix
   ============================================================================ */

.vs { padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 56px); background: var(--bg-deep); }
.vs__inner { max-width: 1240px; margin: 0 auto; }

.vs__table {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: 13.5px;
}
@media (max-width: 760px) {
  .vs__table {
    display: block;
    overflow-x: auto;
    grid-template-columns: none;
    white-space: nowrap;
  }
  .vs__col { display: inline-block; vertical-align: top; min-width: 220px; }
  .vs__col--head { min-width: 200px; position: sticky; left: 0; background: var(--bg-card); z-index: 1; box-shadow: 1px 0 0 var(--hairline); }
  .vs__cell { white-space: normal; }
}

.vs__col { display: flex; flex-direction: column; }
.vs__col--solini { background: var(--bg-paper); }

.vs__cell {
  padding: 18px 20px;
  border-bottom: 1px solid var(--hairline);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  min-height: 56px;
  display: flex; align-items: center;
}
.vs__col:last-child .vs__cell { border-right: 0; }
.vs__col:not(:last-child) .vs__cell { border-right: 1px solid var(--hairline); }
.vs__col--head .vs__cell {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  background: var(--bg);
}
.vs__col--head .vs__cell:first-child { background: var(--bg-card); }

.vs__cell--feature { font-weight: 500; }
.vs__cell--brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-paper) !important;
  font-variation-settings: "opsz" 96;
}
.vs__col--solini .vs__cell--brand { background: var(--ink) !important; color: #fff; }
.vs__cell--brand-other { color: var(--ink-muted); }

.logo-other {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
}
.logo-other--green { background: #4D9851; }

.vs__cell--yes { color: var(--mint); font-weight: 600; }
.vs__cell--no  { color: var(--coral-deep); font-weight: 600; }
.vs__cell--partial { color: var(--amber); font-weight: 600; }

/* ============================================================================
   STATS
   ============================================================================ */

.stats { padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 56px); background: var(--bg); }
.stats__inner { max-width: 1240px; margin: 0 auto; }

.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 760px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 48px; } }
@media (min-width: 1080px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stat {
  padding: 32px 0;
  border-top: 2px solid var(--ink);
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(56px, 6.4vw, 92px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-feature-settings: "tnum" on;
}
.stat__label {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--indigo);
}
.stat p {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ============================================================================
   COMMUNITY
   ============================================================================ */

.community { padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 56px); background: var(--bg-deep); }
.community__inner { max-width: 1240px; margin: 0 auto; }
.community__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) { .community__grid { grid-template-columns: repeat(3, 1fr); } }

.alert-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 28px;
  border-left: 4px solid var(--ink);
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.alert-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.alert-card--rust   { border-left-color: var(--coral); }
.alert-card--amber  { border-left-color: var(--amber); }
.alert-card--indigo { border-left-color: var(--indigo); }

.alert-card header { display: flex; justify-content: space-between; align-items: center; }
.alert-card header span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.alert-card--rust   header span { color: var(--coral); }
.alert-card--amber  header span { color: var(--amber); }
.alert-card--indigo header span { color: var(--indigo); }
.alert-card header time { color: var(--ink-fade); font-size: 12px; font-family: var(--mono); }

.alert-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
  font-variation-settings: "opsz" 96;
}
.alert-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.55; }
.alert-card__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--hairline);
  font-size: 11.5px;
  color: var(--ink-fade);
  font-family: var(--mono);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
  gap: 8px;
}
.alert-card__matches { color: var(--coral-deep); font-weight: 700; }

/* ============================================================================
   PULL QUOTE
   ============================================================================ */

.pull {
  padding: clamp(80px, 10vw, 160px) clamp(20px, 5vw, 56px);
  background: var(--bg);
  position: relative;
}
.pull__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pull__mark {
  font-family: var(--serif);
  font-size: clamp(120px, 16vw, 240px);
  line-height: 0.6;
  color: var(--indigo);
  opacity: 0.18;
  margin-bottom: -40px;
  font-style: italic;
  font-weight: 800;
}
.pull__quote {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "opsz" 96, "SOFT" 60, "WONK" 1;
  max-width: 22ch;
  margin: 0 auto;
}
.pull__cite {
  display: block;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  font-style: normal;
}

/* ============================================================================
   PRICING
   ============================================================================ */

.pricing { padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 56px); background: var(--bg-deep); }
.pricing__inner { max-width: 980px; margin: 0 auto; }
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .pricing__grid { grid-template-columns: 1fr 1fr; } }

.plan {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--hairline);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.plan--premium {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.plan--premium .plan__label { color: var(--coral); }
.plan--premium .plan__alt   { color: rgba(255,255,255,0.6); }
.plan--premium .plan__list li { color: rgba(255,255,255,0.92); }
.plan--premium .plan__list li::before { background: var(--coral); }

.plan__badge {
  position: absolute;
  top: -12px; right: 28px;
  background: var(--coral);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.plan__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
}
.plan__price {
  font-family: var(--serif);
  font-size: clamp(60px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-top: 8px;
}
.plan__price small {
  font-size: 22px;
  color: var(--ink-fade);
  font-weight: 500;
  margin-left: 6px;
  letter-spacing: 0;
}
.plan--premium .plan__price small { color: rgba(255,255,255,0.5); }
.plan__alt { font-size: 13px; color: var(--ink-fade); margin-top: 6px; }
.plan__list {
  list-style: none;
  margin: 32px 0;
  display: flex; flex-direction: column; gap: 12px;
}
.plan__list li {
  font-size: 15px;
  color: var(--ink-soft);
  padding-left: 26px;
  position: relative;
  line-height: 1.4;
}
.plan__list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--indigo);
}
.plan__cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--indigo);
  padding-bottom: 2px;
  border-bottom: 1.5px solid currentColor;
  transition: color 0.2s, transform 0.2s;
}
.plan__cta--on-dark { color: var(--coral); }
.plan__cta:hover { transform: translateX(4px); }

/* ============================================================================
   FAQ
   ============================================================================ */

.faq { padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 56px); background: var(--bg); }
.faq__inner { max-width: 1100px; margin: 0 auto; }

.faq__list { display: flex; flex-direction: column; }
.faq__item {
  border-bottom: 1px solid var(--hairline-strong);
  padding: 0;
}
.faq__item:first-child { border-top: 1px solid var(--hairline-strong); }
.faq__item summary {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px 8px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: rgba(85, 112, 241, 0.04); }
.faq__num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: 0.05em;
}
.faq__q {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 96;
}
.faq__chev {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--ink-fade);
  line-height: 1;
  transition: transform 0.3s, color 0.3s;
}
.faq__item[open] .faq__chev { transform: rotate(45deg); color: var(--coral); }

.faq__a {
  padding: 0 8px 32px;
  max-width: 80ch;
}
.faq__a p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-muted);
}
.faq__a p + p { margin-top: 14px; }

/* ============================================================================
   DOWNLOAD CTA
   ============================================================================ */

.download {
  padding: clamp(80px, 10vw, 160px) clamp(20px, 5vw, 56px);
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download::before {
  content: "";
  position: absolute; top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(85, 112, 241, 0.25), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.download__inner { max-width: 760px; margin: 0 auto; position: relative; }
.download__title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-top: 18px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.download__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-top: 20px;
}
.download .hero__cta { margin-top: 36px; }
.download .store-badge {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.download .store-badge:hover { background: var(--coral); color: #fff; }
.download__qr {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.download__qr-row {
  margin-top: 20px;
  display: flex; justify-content: center;
}
.qr-block {
  width: 112px; height: 112px;
  background:
    repeating-conic-gradient(#fff 0 25%, #1B1B1F 0 50%) 0/24px 24px,
    repeating-conic-gradient(#fff 0 25%, #1B1B1F 0 50%) 12px 12px/24px 24px;
  border-radius: 12px;
  border: 6px solid #fff;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.qr-block::after {
  content: "";
  position: absolute; inset: 35%;
  background: #fff;
  border-radius: 8px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 56px) 40px;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.footer__inner { max-width: 1240px; margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline);
}
@media (min-width: 880px) { .footer__top { grid-template-columns: 1.2fr 1.8fr; } }

.footer__brand { max-width: 400px; }
.logo--footer .logo-text { font-size: 28px; }
.footer__mission { color: var(--ink-muted); font-size: 14px; margin-top: 14px; line-height: 1.6; }

.newsletter {
  margin-top: 24px;
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 4px;
  max-width: 380px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.newsletter:focus-within {
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px var(--indigo-soft);
}
.newsletter input {
  flex: 1;
  padding: 10px 16px;
  background: transparent;
  border: 0;
  outline: none;
  font-size: 14px;
  color: var(--ink);
  font-family: var(--sans);
}
.newsletter input::placeholder { color: var(--ink-fade); }
.newsletter button {
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.newsletter button:hover { background: var(--indigo); }

.footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 600px) { .footer__cols { grid-template-columns: repeat(3, 1fr); } }

.footer__cols h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-fade);
  margin-bottom: 16px;
}
.footer__cols a {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s, transform 0.2s;
}
.footer__cols a:hover { color: var(--indigo); transform: translateX(2px); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 28px;
}
@media (min-width: 720px) { .footer__bottom { flex-direction: row; justify-content: space-between; } }
.footer__tiny { font-size: 12px; color: var(--ink-fade); font-family: var(--mono); letter-spacing: 0.02em; }
.footer__tiny--right { text-align: right; }
.footer__tiny a { color: var(--ink-muted); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================================
   STICKY CTA
   ============================================================================ */

.sticky-cta {
  position: fixed;
  bottom: 16px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 60;
  width: calc(100% - 32px);
  max-width: 480px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 12px 14px;
  box-shadow:
    0 20px 50px -10px rgba(27, 27, 31, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-cta.is-visible { transform: translateX(-50%) translateY(0); }
.sticky-cta__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.sticky-cta__copy { display: flex; align-items: center; gap: 12px; }
.sticky-cta__copy strong { display: block; font-size: 14px; font-weight: 700; line-height: 1.1; }
.sticky-cta__copy small { display: block; font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px; font-family: var(--mono); letter-spacing: 0.03em; }
.sticky-cta__btn {
  display: inline-flex; align-items: center;
  padding: 10px 16px;
  background: var(--coral);
  color: #fff;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.sticky-cta__btn:hover { background: var(--coral-deep); transform: translateY(-1px); }

/* ============================================================================
   REVEAL ANIMATIONS
   ============================================================================ */

/* Reveal: content is visible by default. The IntersectionObserver-based
   opacity:0 → opacity:1 entrance animation caused most sections to render
   invisible (observer skipped elements on fast scrolls / anchor jumps and
   left them at opacity:0 permanently). The classname is preserved so
   existing JS observe() calls remain valid no-ops. */
.reveal { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero__blob,
  .device,
  .device__floater,
  .ticker__track,
  .phone-scanline,
  .status-dot { animation: none !important; }
  .phone-ring__progress { transition: none !important; stroke-dashoffset: 190 !important; }
  .phone-bar__fill { transition: none !important; width: var(--w) !important; }
}
