/* ============================================
   DIMEDOME MARKETING — BOLDER EDITION
   Pure black canvas · Lime #50ad17 as punctuation
   ============================================ */

:root {
  --black: #000000;
  --white: #ffffff;
  --lime: #50ad17;
  --lime-bright: #6ccf21;
  --lime-dim: rgba(80, 173, 23, 0.15);
  --ink: #0a0a0a;
  --ink-2: #111111;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --muted: rgba(255, 255, 255, 0.62);
  --muted-2: rgba(255, 255, 255, 0.4);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius: 28px;
  --radius-sm: 18px;

  --font: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* ============ LIQUID GLASS TOKENS ============
     Apple Liquid Glass values (WWDC 2025):
     - Light blur (2-6px) — you should see through clearly
     - Heavy saturate (180%) — colors behind pop through
     - Bright rim border (~0.5-0.8 alpha white)
     - Inset rim lights via negative-spread box-shadows
     - Outer shadow for floating depth
  */
  --glass-tint: rgba(8, 10, 12, 0.48);
  --glass-tint-strong: rgba(8, 10, 12, 0.62);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-border-soft: rgba(255, 255, 255, 0.22);
  --glass-blur: blur(16px) saturate(180%);
  --glass-blur-lg: blur(24px) saturate(200%);
  --glass-blur-sm: blur(8px) saturate(180%);

  /* Rim light — the signature Apple liquid glass edge highlight */
  --glass-rim:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    inset 1px 0 0 rgba(255, 255, 255, 0.12),
    inset -1px 0 0 rgba(255, 255, 255, 0.12);
  --glass-rim-strong:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 1px 0 0 rgba(255, 255, 255, 0.2),
    inset -1px 0 0 rgba(255, 255, 255, 0.2);

  /* Depth — outer shadow for floating glass */
  --glass-depth:
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 10px 40px rgba(0, 0, 0, 0.35),
    0 24px 80px rgba(0, 0, 0, 0.3);
  --glass-depth-lg:
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 40px 120px rgba(80, 173, 23, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html, body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-feature-settings: "tnum" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Respect reduced motion for scroll behavior too */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.num { font-variant-numeric: tabular-nums; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ============ FOCUS-VISIBLE (KEYBOARD ACCESSIBILITY) ============ */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--lime-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.chip:focus-visible,
.plan__cta:focus-visible {
  outline-offset: 4px;
  border-radius: 999px;
}
.feature:focus-visible,
.stat:focus-visible,
.promise:focus-visible,
.plan:focus-visible,
.showcase__card:focus-visible {
  outline-offset: 4px;
  border-radius: var(--radius);
}

/* ============ SCROLL ANCHORING ============
   Floating nav is ~70px tall; anchor links must clear it */
section[id], [id="household"] {
  scroll-margin-top: 100px;
}

/* ============ TEXT WRAPPING ============
   Balance headlines so lines don't create widows/orphans */
h1, h2, h3 {
  text-wrap: balance;
}

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

/* ============ AMBIENT ORBS — the refraction source ============
   Liquid glass needs colorful content behind it to bend light through.
   These blurred orbs are the light source. */
.orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
  will-change: transform;
}
.orb--1 {
  width: 720px; height: 720px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(80, 173, 23, 0.55), transparent 70%);
  animation: drift1 32s ease-in-out infinite;
}
.orb--2 {
  width: 640px; height: 640px;
  top: 30%; right: -180px;
  background: radial-gradient(circle, rgba(108, 207, 33, 0.35), transparent 70%);
  animation: drift2 40s ease-in-out infinite;
}
.orb--3 {
  width: 520px; height: 520px;
  top: 120%; left: 20%;
  background: radial-gradient(circle, rgba(80, 173, 23, 0.45), transparent 70%);
  animation: drift3 36s ease-in-out infinite;
}
.orb--4 {
  width: 580px; height: 580px;
  top: 200%; right: 10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  animation: drift1 44s ease-in-out infinite;
}
.orb--5 {
  width: 680px; height: 680px;
  top: 280%; left: -120px;
  background: radial-gradient(circle, rgba(80, 173, 23, 0.4), transparent 70%);
  animation: drift2 38s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 60px) scale(1.08); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 80px) scale(1.12); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -50px) scale(0.94); }
}
@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
}

/* Ensure every section sits above orbs */
.nav, .hero, .stats, .features, .showcase, .privacy, .cta-band, .footer { position: relative; z-index: 2; }

/* ============ GRAIN OVERLAY ============ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ REVEAL ANIMATION ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 900ms var(--ease);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============ NAV — Floating Liquid Glass Pill ============ */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 12px 14px 12px 28px;
  background: var(--glass-tint-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  border-radius: 999px;
  box-shadow: var(--glass-rim), var(--glass-depth);
  width: min(1200px, calc(100% - 40px));
}
/* Specular shine on top edge */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0) 40%
  );
}

.nav__links {
  display: flex;
  gap: 40px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav__links a {
  color: var(--muted);
  transition: color 200ms var(--ease);
}
.nav__links a:hover { color: var(--white); }

/* ============ WORDMARK ============ */
.wordmark {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.wordmark__dime { color: var(--white); }
.wordmark__dot { color: var(--lime); margin: 0 2px; }
.wordmark__dome { color: var(--white); }
.wordmark--sm { font-size: 16px; }

/* CadaCen brand variant — swapped in for Brazilian visitors / cadacen.com.br */
.wordmark--cc {
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.wordmark__cc-name {
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.wordmark__cc-name::first-letter { color: var(--lime); }
.wordmark__cc-tag {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.wordmark--sm .wordmark__cc-tag { font-size: 8px; }

/* Brand toggle — dev/test affordance to force CadaCen rebrand */
.brand-toggle {
  appearance: none;
  margin-right: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: var(--font);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.brand-toggle:hover { color: var(--white); border-color: var(--lime); }
[data-brand="cadacen"] .brand-toggle {
  color: var(--lime);
  border-color: var(--lime);
  background: var(--lime-dim);
}

/* ============ LANGUAGE SWITCHER ============ */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-right: 12px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.lang-switcher__btn {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--muted-2);
  font-family: var(--font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}
.lang-switcher__btn:hover { color: var(--white); }
.lang-switcher__btn.is-active {
  color: var(--black);
  background: var(--white);
}

@media (max-width: 820px) {
  .lang-switcher { margin-right: 8px; padding: 3px; }
  .lang-switcher__btn { font-size: 10px; padding: 4px 8px; }
}

/* ============ BUTTONS ============ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 200ms var(--spring), background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), box-shadow 250ms var(--ease);
  white-space: nowrap;
  isolation: isolate;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Specular highlight layer — the liquid shine */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.05) 48%,
    rgba(255, 255, 255, 0) 100%
  );
  mix-blend-mode: overlay;
  opacity: 0.9;
}

.btn--primary {
  background: var(--lime);
  color: var(--black);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 6px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(80, 173, 23, 0.45),
    0 2px 8px rgba(80, 173, 23, 0.3);
}
.btn--primary:hover {
  background: var(--lime-bright);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -2px 6px rgba(0, 0, 0, 0.12),
    0 12px 32px rgba(80, 173, 23, 0.55),
    0 4px 12px rgba(80, 173, 23, 0.4);
}

.btn--ghost {
  background: var(--glass-tint);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  color: var(--white);
  border-color: var(--glass-border-soft);
  box-shadow: var(--glass-rim), 0 4px 16px rgba(0, 0, 0, 0.25);
}
.btn--ghost:hover {
  border-color: var(--glass-border);
  background: var(--glass-tint-strong);
  color: var(--white);
}

.btn--invert {
  background: var(--black);
  color: var(--lime);
  border-color: var(--black);
}
.btn--invert:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 18px 32px; font-size: 15px; }
.btn--xl { padding: 26px 44px; font-size: 18px; font-weight: 700; }

.btn .arrow {
  display: inline-block;
  transition: transform 300ms var(--spring);
}
.btn:hover .arrow { transform: translateX(6px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 140px 48px 80px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__meta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  padding: 12px 22px;
  border: 1px solid var(--glass-border-soft);
  border-radius: 999px;
  align-self: flex-start;
  max-width: 100%;
  background: var(--glass-tint);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-rim), 0 8px 24px rgba(0, 0, 0, 0.3);
}
.hero__meta > span:last-child {
  white-space: normal;
  line-height: 1.35;
}
.hero__meta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 50%);
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(80, 173, 23, 0.6);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(80, 173, 23, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(80, 173, 23, 0); }
  100% { box-shadow: 0 0 0 0 rgba(80, 173, 23, 0); }
}

.hero__headline {
  font-size: clamp(3.5rem, 11vw, 170px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 48px;
  text-transform: uppercase;
}
.hero__headline .line {
  display: block;
  position: relative;
}
.hero__headline .line:nth-child(2) { padding-left: 8vw; }
.hero__headline .line:nth-child(3) { padding-left: 3vw; }
.hero__headline .line:nth-child(4) { padding-left: 14vw; }

.line--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  text-stroke: 2px var(--white);
}

.accent-block {
  display: inline-block;
  width: clamp(24px, 2vw, 44px);
  height: clamp(12px, 1vw, 22px);
  max-height: 22px;
  background: var(--lime);
  margin-left: 0.15em;
  vertical-align: middle;
  transform: translateY(-0.25em);
  border-radius: 3px;
}
.accent-dot { color: var(--lime); }
.accent-slash { color: var(--lime); display: inline-block; font-weight: 300; transform: translateY(-0.05em); }

.hero__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  max-width: 1400px;
}

.hero__sub {
  font-size: 19px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 480px;
  font-weight: 400;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero__mark {
  position: absolute;
  right: 48px;
  top: 160px;
  width: clamp(120px, 14vw, 180px);
  height: clamp(120px, 14vw, 180px);
  max-width: 180px;
  max-height: 180px;
  border-radius: 50%;
  border: 1.5px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(60px, 8vw, 96px);
  font-weight: 900;
  color: var(--lime);
  opacity: 0.22;
  animation: floaty 8s var(--ease) infinite;
  pointer-events: none;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}

/* ============ STATS ============ */
.stats {
  position: relative;
  padding: 140px 48px 100px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 60px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.stat {
  position: relative;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  background: var(--glass-tint);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius);
  box-shadow: var(--glass-rim), var(--glass-depth);
  transition: transform 400ms var(--spring), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.stat::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 45%);
}
.stat:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border);
}
.stat--accent {
  background: rgba(80, 173, 23, 0.75);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--black);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 20px 60px rgba(80, 173, 23, 0.35),
    0 4px 12px rgba(80, 173, 23, 0.4);
}
.stat--accent .stat__label { color: rgba(0, 0, 0, 0.75); }

.stat__value {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  white-space: nowrap;
}
.stat__unit {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--lime);
  margin-left: 4px;
}
.stat--accent .stat__unit { color: var(--black); opacity: 0.7; }

.stat__label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  max-width: 220px;
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 32px 0;
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -0.02em;
}
.marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  color: var(--muted-2);
}
.marquee__track span:nth-child(odd) { color: var(--white); }
.marquee__track span:nth-child(4n+2) { color: var(--lime); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ FEATURES ============ */
.features {
  padding: 180px 48px 120px;
}

.features__header {
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lime);
}
.features__header h2,
.showcase h2,
.cta-band h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.accent-text { color: var(--lime); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.feature {
  position: relative;
  padding: 48px 40px;
  background: var(--glass-tint);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius);
  box-shadow: var(--glass-rim), var(--glass-depth);
  transition: border-color 300ms var(--ease), transform 400ms var(--spring), box-shadow 300ms var(--ease);
  overflow: hidden;
  isolation: isolate;
}
/* Specular shine — top highlight */
.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 35%),
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(255, 255, 255, 0.08), transparent 60%);
  z-index: 0;
}
/* Ensure content sits above the shine */
.feature > * { position: relative; z-index: 1; }
.feature:hover {
  border-color: var(--glass-border);
  transform: translateY(-6px);
  box-shadow: var(--glass-rim-strong), var(--glass-depth-lg);
}
.feature:hover .feature__num { color: var(--lime); }

.feature {
  grid-column: span 4;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.feature--hero {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 480px;
}
.feature--wide {
  grid-column: span 8;
}

.feature__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  transition: color 300ms var(--ease);
}
.feature h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.feature p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 480px;
}
.feature__visual {
  margin-top: auto;
  padding-top: 40px;
}

/* Budget bars */
.budget-bar { margin-bottom: 20px; }
.budget-bar:last-child { margin-bottom: 0; }
.budget-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.budget-bar__label .num { color: var(--white); font-weight: 600; }
.budget-bar__track {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.budget-bar__fill {
  height: 100%;
  background: var(--lime);
  border-radius: 999px;
  transition: width 1.2s var(--ease);
  box-shadow: 0 0 12px rgba(80, 173, 23, 0.4);
}
.budget-bar__fill--over {
  background: #ff3b30;
  box-shadow: 0 0 12px rgba(255, 59, 48, 0.5);
}
.budget-bar:has(.budget-bar__fill--over) .budget-bar__label .num {
  color: #ff5b52;
}

.feature__chip {
  margin-top: auto;
  padding-top: 24px;
  font-size: 28px;
  letter-spacing: 0.15em;
}
.feature__chip--chart { font-size: inherit; }
.feature__chip--chart svg { width: 100%; height: 60px; display: block; }

.feature__visual--household {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  position: relative;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--glass-border-soft);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--glass-tint);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  box-shadow: var(--glass-rim), 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.chip::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 50%);
}
.chip--active {
  background: rgba(80, 173, 23, 0.85);
  color: var(--black);
  border-color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(80, 173, 23, 0.4);
}

/* ============ SHOWCASE ============ */
.showcase {
  padding: 140px 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}
.showcase__text .eyebrow { margin-bottom: 24px; display: block; }
.showcase__text h2 { margin-bottom: 28px; }
.showcase__text p {
  font-size: 18px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.5;
}

.showcase__card {
  position: relative;
  padding: 44px;
  background: var(--glass-tint-strong);
  backdrop-filter: var(--glass-blur-lg);
  -webkit-backdrop-filter: var(--glass-blur-lg);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  box-shadow: var(--glass-rim-strong), var(--glass-depth-lg);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
/* Layered specular shine — top-to-bottom + corner */
.showcase__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 35%),
    radial-gradient(ellipse 100% 60% at 30% -10%, rgba(255, 255, 255, 0.15), transparent 55%),
    radial-gradient(ellipse 80% 40% at 80% 100%, rgba(80, 173, 23, 0.18), transparent 60%);
  z-index: 0;
}
/* Accent rim light — the lime edge glow along the top inner edge */
.showcase__card::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(80, 173, 23, 0.95), transparent);
  filter: blur(1px);
  pointer-events: none;
  z-index: 2;
}
.showcase__card > * { position: relative; z-index: 1; }
.card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}
.card__value {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}
.card__cents {
  font-size: 0.5em;
  color: var(--muted);
  font-weight: 700;
}
.card__delta { text-align: right; }
.delta {
  display: inline-block;
  padding: 6px 12px;
  background: var(--lime-dim);
  color: var(--lime);
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  letter-spacing: -0.01em;
}
.delta__sub {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card__chart {
  margin: 24px -12px;
}
.card__chart svg {
  width: 100%;
  height: 120px;
  display: block;
}

.card__row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
}
.card__row:first-of-type { border-top: 1px solid var(--line-strong); margin-top: 16px; }
.card__row .num { font-weight: 700; }
.card__row--muted { color: var(--muted); }
.card__row--muted .num { color: #ff3b30; }

/* ============ PRICING ============ */
.pricing {
  position: relative;
  padding: 160px 48px 140px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.pricing__header {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}
.pricing__header .eyebrow {
  display: inline-block;
  margin-bottom: 24px;
}
.pricing__header h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.pricing__lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
}

.plan {
  position: relative;
  padding: 44px 36px 36px;
  background: var(--glass-tint);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  border-radius: 32px;
  box-shadow: var(--glass-rim), var(--glass-depth);
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 400ms var(--spring), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}
.plan::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 40%),
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(255, 255, 255, 0.08), transparent 60%);
}
.plan > * { position: relative; z-index: 1; }
.plan:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border);
  box-shadow: var(--glass-rim-strong), var(--glass-depth-lg);
}

.plan--pro {
  background: rgba(80, 173, 23, 0.18);
  border-color: rgba(80, 173, 23, 0.55);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 20px 60px rgba(80, 173, 23, 0.25),
    0 40px 120px rgba(80, 173, 23, 0.18);
}
.plan--pro::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 40%),
    radial-gradient(ellipse 100% 60% at 50% -10%, rgba(255, 255, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 100%, rgba(80, 173, 23, 0.28), transparent 60%);
}
.plan--pro:hover {
  border-color: rgba(80, 173, 23, 0.8);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 28px 80px rgba(80, 173, 23, 0.35),
    0 48px 140px rgba(80, 173, 23, 0.25);
}

.plan__badge {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--black);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(80, 173, 23, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.plan__head { display: flex; flex-direction: column; gap: 6px; }
.plan__name {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan__tag {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 0 8px;
}
.plan__currency {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: var(--muted);
  letter-spacing: -0.02em;
  transform: translateY(-0.3em);
}
.plan__amount {
  font-size: clamp(4rem, 9vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.85;
}
.plan__period {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}

.plan__cta {
  justify-content: center;
  width: 100%;
}

.plan__features {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan--pro .plan__features {
  border-top-color: rgba(255, 255, 255, 0.25);
}
.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}
.plan__features strong {
  font-weight: 700;
  color: var(--white);
}
.check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(80, 173, 23, 0.18);
  border: 1px solid rgba(80, 173, 23, 0.5);
  color: var(--lime-bright);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  margin-top: 1px;
}
.plan--pro .check {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.plan__restriction {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.45;
  font-style: italic;
}

.pricing__footnote {
  text-align: center;
  margin-top: 60px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============ PRIVACY MANIFESTO ============ */
.privacy {
  position: relative;
  padding: 180px 48px 160px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(80, 173, 23, 0.08), transparent 70%),
    var(--black);
  overflow: hidden;
}
.privacy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 100%);
}

.privacy__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.privacy__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border: 1px solid rgba(80, 173, 23, 0.5);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lime-bright);
  margin-bottom: 56px;
  background: rgba(80, 173, 23, 0.14);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(80, 173, 23, 0.25);
  overflow: hidden;
}
.privacy__eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 50%);
}
.lock { filter: grayscale(1) brightness(1.4); }

.privacy__headline {
  font-size: clamp(3.5rem, 11vw, 13rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.privacy__never {
  display: inline-block;
  position: relative;
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.privacy__never .accent-dot {
  -webkit-text-stroke: 0;
  color: var(--lime);
}

.privacy__lede {
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 100px;
  line-height: 1.5;
}

.privacy__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
  margin-bottom: 120px;
}
.promise {
  position: relative;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--glass-tint);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius);
  box-shadow: var(--glass-rim), var(--glass-depth);
  transition: transform 400ms var(--spring), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.promise::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 40%);
}
.promise > * { position: relative; z-index: 1; }
.promise:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border);
  box-shadow: var(--glass-rim-strong), var(--glass-depth-lg);
}
.promise__mark {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: var(--lime);
  font-family: var(--font);
}
.promise__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.promise__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.privacy__seal {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
}
.seal__line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: var(--line-strong);
}
.seal__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.seal__big {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--lime);
}
.seal__small {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--lime);
  color: var(--black);
  padding: 160px 48px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 2px, transparent 2px 40px);
  pointer-events: none;
}
.cta-band__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.cta-band h2 {
  color: var(--black);
  font-size: clamp(3.5rem, 11vw, 13rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin-bottom: 60px;
  text-transform: uppercase;
}
.cta-band__strike {
  position: relative;
  display: inline-block;
  font-style: italic;
  font-weight: 800;
}
.cta-band__strike::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  top: 48%;
  height: 8px;
  background: var(--black);
  transform: rotate(-2deg);
}
.cta-band__dot { color: var(--black); }
.cta-band__note {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  gap: 40px;
  flex-wrap: wrap;
}
.footer__tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer__parent {
  font-size: 11px;
  color: var(--muted-2);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.footer__parent-name {
  color: var(--lime);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  font-size: 13px;
}
.footer__right {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: var(--muted);
}
.footer__right a { transition: color 200ms var(--ease); }
.footer__right a:hover { color: var(--lime); }

/* ============ ADAPT: CONTAINER CAPS ============
   Cap content width on 4K+ so layouts don't stretch uncomfortably. */
.hero,
.stats,
.features,
.pricing,
.privacy .privacy__inner,
.cta-band .cta-band__inner,
.footer {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.hero, .stats, .features, .pricing { width: 100%; }

/* ============ ADAPT: LARGE DESKTOP (1400px+) ============ */
@media (min-width: 1400px) {
  .nav { padding: 14px 16px 14px 32px; }
  .hero { padding: 160px 64px 120px; }
  .stats, .features, .privacy { padding-left: 64px; padding-right: 64px; }
  .showcase { padding: 160px 64px; }
}

/* ============ ADAPT: TABLET LANDSCAPE / SMALL DESKTOP (1024-1199px) ============ */
@media (max-width: 1199px) {
  .feature--hero { grid-column: span 12; grid-row: auto; min-height: 420px; }
  .feature { grid-column: span 6; }
  .feature--wide { grid-column: span 12; }
}

/* ============ ADAPT: TABLET (768-1023px) ============ */
@media (max-width: 1023px) {
  /* Nav: keep the pill floating but tighten */
  .nav {
    top: 16px;
    padding: 10px 12px 10px 22px;
    gap: 20px;
    width: min(720px, calc(100% - 32px));
  }
  .nav__links { display: none; }

  /* Hero: reset asymmetric indents here, not at 640 — they look broken on tablet */
  .hero { padding: 120px 32px 80px; }
  .hero__mark { display: none; }
  .hero__headline { font-size: clamp(3.5rem, 10vw, 120px); }
  .hero__headline .line:nth-child(2),
  .hero__headline .line:nth-child(3),
  .hero__headline .line:nth-child(4) { padding-left: 0; }
  .hero__foot { grid-template-columns: 1fr; gap: 32px; }
  .hero__cta { justify-content: flex-start; }
  .hero__sub { max-width: 560px; font-size: 17px; }

  /* Sections */
  .stats { padding: 100px 32px 80px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .features { padding: 120px 32px 100px; }
  .features__header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 60px; }
  .feature-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature, .feature--hero, .feature--wide {
    grid-column: span 1; grid-row: auto; min-height: auto;
    padding: 40px 32px;
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 100px 32px;
  }
  .showcase__card { padding: 36px; }

  .pricing { padding: 120px 32px 100px; }
  .pricing__header { margin-bottom: 60px; }
  .pricing__grid { grid-template-columns: 1fr; gap: 20px; max-width: 560px; }
  .plan { padding: 40px 32px 36px; }
  .plan__amount { font-size: clamp(4rem, 14vw, 6rem); }

  .privacy { padding: 100px 32px 80px; }
  .privacy__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .privacy__seal { flex-direction: column; gap: 16px; }
  .seal__line { max-width: 120px; }
  .privacy__lede { margin-bottom: 72px; }

  .cta-band { padding: 100px 32px; }

  .footer { padding: 48px 32px; gap: 32px; }

  /* Orbs: reduce load on mobile GPUs */
  .orb--4, .orb--5 { display: none; }
  .orb { filter: blur(80px); opacity: 0.55; }
}

/* ============ ADAPT: MOBILE LANDSCAPE (640-767px) ============ */
@media (max-width: 767px) {
  /* Touch targets: 44px minimum */
  .btn { min-height: 44px; }
  .btn--sm { padding: 12px 18px; font-size: 13px; min-height: 44px; }
  .btn--lg { padding: 14px 22px; font-size: 14px; }
  .btn--xl { padding: 18px 26px; font-size: 15px; }
  .chip { min-height: 44px; padding: 12px 20px; }
  .nav__links a { padding: 8px 0; }

  .nav {
    top: 12px;
    padding: 8px 10px 8px 18px;
    gap: 16px;
    width: calc(100% - 24px);
  }

  .hero { padding: 110px 20px 72px; }
  .hero__meta { font-size: 11px; padding: 10px 18px; margin-bottom: 24px; }
  .hero__headline {
    font-size: clamp(2.75rem, 13vw, 88px);
    line-height: 0.92;
    margin-bottom: 36px;
  }
  .hero__sub { font-size: 16px; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta .btn { justify-content: center; width: 100%; }

  .stats { padding: 80px 20px 60px; }
  .stats__label { margin-bottom: 40px; }
  .stats__grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 56px; }
  .stat { padding: 32px 24px; }
  .stat__value { font-size: clamp(2rem, 10vw, 3rem); }
  .marquee { font-size: 24px; padding: 24px 0; }
  .marquee__track { gap: 20px; }

  .features { padding: 80px 20px 72px; }
  .features__header { margin-bottom: 48px; }
  .feature { padding: 32px 24px; }
  .feature h3 { font-size: clamp(1.4rem, 5.5vw, 1.8rem); }

  .showcase { padding: 80px 20px; gap: 48px; }
  .showcase__card { padding: 24px; border-radius: 24px; }
  .card__head { flex-direction: column; gap: 20px; align-items: flex-start; }
  .card__delta { text-align: left; }

  .privacy { padding: 80px 20px 64px; }
  .privacy__eyebrow { font-size: 11px; padding: 12px 18px; margin-bottom: 40px; }
  .privacy__lede { font-size: 16px; margin-bottom: 56px; }
  .privacy__grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 72px; }
  .promise { padding: 32px 24px; }

  .pricing { padding: 80px 20px 72px; }
  .pricing__header { margin-bottom: 48px; }
  .plan { padding: 32px 24px 28px; border-radius: 24px; }
  .plan__badge { top: 16px; right: 18px; font-size: 10px; padding: 6px 12px; }
  .plan__amount { font-size: clamp(3.5rem, 18vw, 5rem); }
  .plan__features li { font-size: 14px; }
  .pricing__footnote { font-size: 11px; margin-top: 48px; }

  .cta-band { padding: 80px 20px; }
  .cta-band h2 { margin-bottom: 40px; }
  .cta-band__strike::after { height: 5px; top: 50%; }

  .footer {
    padding: 40px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer__right { flex-wrap: wrap; gap: 20px; }
}

/* ============ ADAPT: SMALL MOBILE (<400px) ============ */
@media (max-width: 399px) {
  .nav { padding: 8px 8px 8px 16px; gap: 10px; }
  .wordmark { font-size: 17px; }
  .hero { padding: 100px 16px 64px; }
  .hero__headline { font-size: clamp(2.25rem, 14vw, 3.25rem); }
  .stats, .features, .showcase, .privacy, .cta-band, .footer { padding-left: 16px; padding-right: 16px; }
  .feature, .promise, .stat { padding: 28px 20px; }
  .showcase__card { padding: 20px; }
  .cta-band h2 { font-size: clamp(2.75rem, 15vw, 4rem); }
}

/* ============ ADAPT: LANDSCAPE PHONE (short viewport) ============
   iPhones in landscape have ~375px height. Don't waste it on padding. */
@media (max-height: 500px) and (orientation: landscape) {
  .nav { top: 8px; padding: 6px 8px 6px 16px; }
  .hero { padding: 80px 32px 48px; min-height: auto; }
  .hero__meta { margin-bottom: 16px; }
  .hero__headline { font-size: clamp(2.5rem, 9vw, 5rem); margin-bottom: 24px; }
  .orb { opacity: 0.35; }
}

/* ============ ADAPT: TOUCH DEVICES ============
   Disable hover lifts on touch — they look broken when tapped */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .feature:hover,
  .stat:hover,
  .promise:hover,
  .plan:hover {
    transform: none;
  }
  /* Tap feedback instead */
  .btn:active { transform: scale(0.97); }
  .feature:active, .stat:active, .promise:active, .plan:active { transform: scale(0.99); }
}

/* ============ ADAPT: PRINT ============ */
@media print {
  .nav, .orbs, .grain, .hero__mark, .marquee, .cta-band { display: none; }
  body { background: white; color: black; }
  .hero, .stats, .features, .showcase, .privacy, .footer { padding: 24px 0; break-inside: avoid; }
  .hero__headline, h2, h3 { color: black; -webkit-text-stroke: 0; }
  .line--outline { color: black; -webkit-text-stroke: 0; }
  .feature, .stat, .promise, .showcase__card {
    background: white;
    border: 1px solid #ccc;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .accent-text, .accent-dot, .accent-slash { color: #50ad17; }
  a { color: #50ad17; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
}

/* ============ EU GDPR NOTICE BAR ============ */
.eu-notice {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  background: var(--glass-tint-strong);
  backdrop-filter: var(--glass-blur-lg);
  -webkit-backdrop-filter: var(--glass-blur-lg);
  border: 1px solid var(--glass-border-soft);
  box-shadow: var(--glass-rim), var(--glass-depth);
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 360ms var(--spring), opacity 260ms var(--ease);
}
.eu-notice.is-visible { transform: translateY(0); opacity: 1; }
.eu-notice[hidden] { display: none; }

.eu-notice__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-bright);
  margin-bottom: 8px;
}
.eu-notice__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 14px;
}
.eu-notice__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.eu-notice__link {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-strong);
  transition: text-decoration-color 200ms var(--ease);
}
.eu-notice__link:hover { text-decoration-color: var(--lime); }
.eu-notice__btn {
  appearance: none;
  border: none;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms var(--spring), background 200ms var(--ease);
}
.eu-notice__btn:hover { background: var(--lime-bright); transform: translateY(-1px); }

@media (max-width: 640px) {
  .eu-notice { left: 12px; right: 12px; bottom: 12px; padding: 16px 18px; }
  .eu-notice__text { font-size: 12.5px; }
}

/* ============ MARKETING PRIVACY NOTICE SECTION ============ */
.privacy-notice {
  position: relative;
  z-index: 2;
  padding: 120px 48px 80px;
  max-width: 900px;
  margin: 0 auto;
  color: var(--white);
}
.privacy-notice__inner {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 56px;
}
.privacy-notice h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 16px 0 24px;
}
.privacy-notice h3 {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 40px 0 16px;
  color: var(--white);
}
.privacy-notice p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 20px;
}
.privacy-notice__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.privacy-notice__list li {
  position: relative;
  padding: 14px 18px 14px 34px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.privacy-notice__list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
.privacy-notice__list strong { color: var(--white); font-weight: 700; }
.privacy-notice__list code {
  font-family: 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
  font-size: 12.5px;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}
.privacy-notice__list a {
  color: var(--lime-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-notice__note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px !important;
  color: var(--muted-2) !important;
  font-style: italic;
}

@media (max-width: 640px) {
  .privacy-notice { padding: 80px 16px 60px; }
  .privacy-notice__inner { padding: 28px 22px; }
  .privacy-notice__list li { padding: 12px 14px 12px 30px; font-size: 13.5px; }
  .privacy-notice__list li::before { left: 12px; top: 19px; }
}

