/* Olivo — design system */
@import url("./fonts.css");
/* Phosphor, vendored out of node_modules at build time and served from our own
   domain. Only the weights the site actually renders: `ph` everywhere, and
   `ph-bold` for the confirmation-card ticks. */
@import url("./icons/phosphor.css");

/* Phosphor icon defaults */
i[class*="ph-"] { display: inline-block; line-height: 1; vertical-align: -0.125em; }
.chev { width: 12px; height: 12px; opacity: 0.6; transition: transform 0.2s; }
.icon-tile i { font-size: 30px; }
.ico i { font-size: 22px; }
.feature .ico i { font-size: 22px; }
.cap .ico i { font-size: 22px; }
.pill i { font-size: 16px; }
/* Inline list/sidebar icons */
.pf-side .item i { font-size: 16px; opacity: 0.8; }
.pf-list .search i { font-size: 14px; }
.pf-list .row .lock i { font-size: 11px; }
.pf-reading .e2ee i { font-size: 16px; }
/* Drive file thumbs */
.file .thumb i { font-size: 32px; }
.file.folder .thumb i { font-size: 40px; }
.file .thumb .lock-stamp i { font-size: 12px; }
/* Cal toolbar */
.cal-toolbar .nav i { font-size: 14px; }
/* Comparison ticks */
.compare i.ph { font-size: 16px; }
/* Auth lock */
.auth-card .lock-row i { font-size: 16px; }

:root {
  /* Light theme */
  --bg: #fafaf7;
  --surface: #ffffff;
  --surface-2: #f3f4ee;
  --text: #1a1f1a;
  --text-soft: #3d4a3a;
  --muted: #6b7268;
  --border: #e5e7df;
  --border-strong: #d3d7c9;

  /* Brand green — single anchor sampled directly from the logo / product
     screenshots. All other greens are derived from this. */
  --primary: #55C25E;        /* anchor — same value on light & dark */
  --primary-soft: #E8F5E8;   /* very light wash for tinted backgrounds */
  --primary-strong: #2F8A3A; /* darkened for buttons & text on light bg */
  --primary-strong-hover: #246E2E;
  --primary-fg: #ffffff;
  --on-primary-soft: #1A4920;

  --accent-warm: #c98a5c;   /* terracotta accent for warmth */

  --shadow-sm: 0 1px 2px rgba(20, 30, 18, 0.04), 0 1px 1px rgba(20, 30, 18, 0.03);
  --shadow-md: 0 4px 16px rgba(20, 30, 18, 0.06), 0 1px 2px rgba(20, 30, 18, 0.04);
  --shadow-lg: 0 24px 60px rgba(20, 30, 18, 0.10), 0 4px 12px rgba(20, 30, 18, 0.06);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1200px;
  --container-narrow: 920px;

  --header-h: 52px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Source Sans Pro", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

[data-theme="dark"] {
  --bg: #000000;
  --surface: #1d1d1f;
  --surface-2: #161617;
  --text: #f5f5f7;
  --text-soft: #d2d2d7;
  --muted: #86868b;
  --border: #2a2a2c;
  --border-strong: #3a3a3c;

  --primary: #55C25E;
  --primary-soft: #14241A;
  --primary-strong: #55C25E;
  --primary-strong-hover: #6FD076;
  --primary-fg: #051405;
  --on-primary-soft: #88D88E;

  --accent-warm: #86868b;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.6);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
html { scroll-behavior: smooth; }
body {
  /* Flex column so `main { flex: 1 0 auto }` below pins the footer to the
     bottom on short pages. */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  transition: background-color 0.25s ease, color 0.25s ease;
}
main { flex: 1 0 auto; }
img, svg { display: block; max-width: 100%; }
input, select, textarea { font: inherit; color: inherit; }

/* These resets are unlayered, so they would otherwise beat theme.css's
   @layer base rules on the legacy sign-in page. Excluding that subtree lets it
   keep its own typography and link colours. */
a:not(.legacy-theme a) { color: inherit; text-decoration: none; }
button:not(.legacy-theme button) { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:is(h1, h2, h3, h4):not(.legacy-theme *) {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}
h1:not(.legacy-theme *) { font-size: clamp(40px, 6vw, 76px); }
h2:not(.legacy-theme *) { font-size: clamp(32px, 4.4vw, 52px); }
h3:not(.legacy-theme *) { font-size: clamp(22px, 2.4vw, 28px); font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.01em; }
h4:not(.legacy-theme *) { font-size: 18px; font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.005em; }

p { margin: 0; text-wrap: pretty; }
.lede { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; color: var(--text-soft); max-width: 60ch; }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 96px 0; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
}
.site-header .header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Source Sans 3", var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--primary-strong);
  text-decoration: none;
}
.brand img {
  height: 24px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
/* The inline mark is sized here rather than per-instance, so the SVG partial
   stays presentation-free. */
.brand-mark {
  height: 30px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.site-footer .brand-mark { height: 26px; }
.brand span {
  display: inline-block;
  line-height: 1;
  /* optical centering: nudge wordmark down a hair so cap-height visually aligns with the canopy */
  transform: translateY(1px);
}
[data-theme="dark"] .brand { color: var(--primary); }
/* Footer logo is 26px (vs 30px in header) — scale the wordmark to keep the
   same logo:title ratio as the brand mark on olivotek.com (~1.24). */
.site-footer .brand { font-size: 21px; gap: 7px; }
.brand-mark-fallback {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--primary);
  display: grid; place-items: center;
  font-family: var(--font-display);
  color: var(--on-primary-soft);
  font-weight: 600;
  font-size: 18px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav-item {
  position: relative;
  font-size: 14px;
  line-height: 1;
  /* match brand wordmark optical-center nudge so labels level with "Olivo" */
  transform: translateY(1px);
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s, background 0.15s;
}
.nav-item:hover { color: var(--text); background: color-mix(in oklab, var(--text) 5%, transparent); }
.nav-item[aria-current="page"] { color: var(--text); }
.nav-item .chev {
  width: 10px; height: 10px; opacity: 0.6;
  transition: transform 0.2s;
}
.nav-item[aria-expanded="true"] .chev { transform: rotate(180deg); }
i.chev { font-size: 11px !important; }

.nav-spacer { flex: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.05s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary-strong); color: var(--primary-fg); }
.btn-primary:hover { background: var(--primary-strong-hover); }
.btn-ghost { color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: color-mix(in oklab, var(--text) 5%, transparent); }
.btn-soft { background: var(--primary-soft); color: var(--on-primary-soft); }
.btn-soft:hover { background: color-mix(in oklab, var(--primary-soft) 80%, var(--text) 8%); }
.btn-lg { padding: 14px 24px; font-size: 15.5px; }

/* Header buttons: match the brand mark's height (30px) */
.site-header .btn {
  height: 30px;
  padding: 0 14px;
  font-size: 13px;
  border-radius: 8px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.theme-toggle:hover { color: var(--text); border-color: var(--border-strong); }
.theme-toggle i { font-size: 13px; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* MEGA MENU */
.megamenu-overlay {
  position: fixed;
  top: calc(var(--header-h) + 4px);
  left: 0;
  background: transparent;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s, transform 0.18s;
}
.megamenu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.megamenu-inner {
  width: 640px;
  max-width: calc(100vw - 32px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
[data-theme="dark"] .megamenu-inner {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.product-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  text-align: left;
  transition: background 0.15s;
}
.product-card:hover { background: var(--surface-2); }
.product-card .icon-tile {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--primary-soft);
  color: var(--on-primary-soft);
  flex-shrink: 0;
}
.product-card .icon-tile i { font-size: 20px !important; }
.product-card .icon-tile svg { width: 20px; height: 20px; }
[data-theme="dark"] .product-card .icon-tile {
  background: color-mix(in oklab, var(--primary) 18%, var(--surface));
  color: var(--primary);
}
.product-card .pc-title {
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.product-card .pc-arrow { font-size: 14px; opacity: 0; transform: translateX(-4px); transition: opacity 0.15s, transform 0.15s; }
.product-card:hover .pc-arrow { opacity: 0.6; transform: translateX(0); }

.megamenu-footer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--muted);
}
.megamenu-footer a { color: var(--on-primary-soft); font-weight: 600; }
[data-theme="dark"] .megamenu-footer a { color: var(--primary); }

/* HERO */
.hero { padding: 64px 0 40px; }
.hero h1 { line-height: 1.08; padding-bottom: 0.08em; }
.hero h1 .accent { color: var(--primary-strong); font-style: italic; }
[data-theme="dark"] .hero h1 .accent { color: var(--primary); }
.hero .lede { margin-top: 32px; }
.hero .cta-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }

/* The "EU stamp" small pill */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--on-primary-soft);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--primary-strong);
}
[data-theme="dark"] .eyebrow .dot { background: var(--primary); }
.eyebrow .eu-flag {
  width: 18px; height: 14px;
  background: #003399;
  border-radius: 2px;
  display: grid; place-items: center;
  color: #FFCC00;
  font-size: 8px;
  letter-spacing: -1px;
  font-weight: 700;
}

/* Section header */
.section-header { display: grid; gap: 16px; max-width: 720px; margin-bottom: 48px; }
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-strong);
}
[data-theme="dark"] .kicker { color: var(--primary); }

/* Cards / generic */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-hover { transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s; }
.card-hover:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Product hero placeholder */
.placeholder {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--primary) 30%, transparent) 0 12px,
      transparent 12px 24px),
    var(--surface);
  border: 1px dashed var(--border-strong);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.placeholder::after {
  content: attr(data-label);
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}
.feature .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--primary-soft);
  color: var(--on-primary-soft);
  margin-bottom: 16px;
}
.feature .ico svg { width: 22px; height: 22px; }
.feature h4 { margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 13.5px;
  padding: 64px 0 32px;
  margin-top: 72px;
  padding-top: 40px;
  padding-bottom: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 28px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; }
.footer-col a { color: var(--text-soft); font-size: 13.5px; }
.footer-col a.brand { color: var(--primary-strong); }
[data-theme="dark"] .footer-col a.brand { color: var(--primary); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}
.lang-switcher {
  display: inline-flex;
  align-items: center;
  /* Anchors the off-screen .lang-measure ruler below. */
  position: relative;
  height: 24px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}
.lang-switcher:hover { border-color: var(--border-strong); }
.lang-switcher select { background: none; border: none; color: inherit; outline: none; cursor: pointer; padding: 0 4px 0 0; width: auto; appearance: none; -webkit-appearance: none; font: inherit; }
/* Off-screen ruler used to size the select to its selected option. */
.lang-measure { position: absolute; visibility: hidden; white-space: pre; padding: 0; }

/* Quote block */
.quote-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.quote-block blockquote {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--text);
  font-weight: 500;
}
.quote-block cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
}

/* Utility */
.row { display: flex; gap: 12px; flex-wrap: wrap; }
.muted { color: var(--muted); }
.divider { height: 1px; background: var(--border); margin: 32px 0; }

/* Responsive */
@media (max-width: 900px) {
  .nav-item.products-trigger ~ .nav-item { display: none; }
  .nav-item.products-trigger { display: none; }
  .megamenu-inner { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 48px 0 32px; }
  .section { padding: 48px 0; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .container, .container-narrow { padding: 0 20px; }
  .site-header .header-inner { padding: 0 20px; gap: 12px; }
  .btn-signin { display: none; }
}

/* ===== Suite cards + final CTA =====
   Shared by the homepage and the /products index. */
/* Suite section */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.suite-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.suite-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.suite-card .preview {
  aspect-ratio: 4/3;
  background: var(--primary-soft);
  border-bottom: 1px solid var(--border);
  position: relative;
  display: grid;
  place-items: center;
  color: var(--on-primary-soft);
}
.suite-card .preview svg { width: 56px; height: 56px; opacity: 0.85; }
/* Product preview — dark canvas with green glow, screenshot peeks from upper-left.
   In light theme the canvas, glow and screenshot all swap to light variants. */
.suite-card .preview-product {
  background:
    radial-gradient(ellipse 50% 45% at 22% 26%, rgba(85, 194, 94, 0.38), transparent 65%),
    radial-gradient(ellipse 80% 80% at 50% 50%, #0c1a13 0%, #06100a 70%);
  overflow: hidden;
  display: block;
}
[data-theme="light"] .suite-card .preview-product,
:root:not([data-theme="dark"]) .suite-card .preview-product {
  background:
    radial-gradient(ellipse 50% 45% at 22% 26%, rgba(85, 194, 94, 0.28), transparent 65%),
    radial-gradient(ellipse 80% 80% at 50% 50%, #F4F8EE 0%, #E8EEDD 70%);
}
/* Soft fade so the screenshot dissolves into the dark canvas at the right
   and bottom edges instead of being clipped on a hard line. */
.suite-card .preview-product::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, transparent 55%, #06100a 100%),
    linear-gradient(to bottom, transparent 55%, #06100a 100%);
}
[data-theme="light"] .suite-card .preview-product::after,
:root:not([data-theme="dark"]) .suite-card .preview-product::after {
  background:
    linear-gradient(to right, transparent 55%, #E8EEDD 100%),
    linear-gradient(to bottom, transparent 55%, #E8EEDD 100%);
}
.suite-card .preview-product img {
  position: absolute;
  top: 14%;
  left: 14%;
  width: 96%;
  height: auto;
  border-radius: 8px 0 0 0;
  box-shadow:
    0 0 0 1px rgba(85, 194, 94, 0.18),
    -10px -10px 40px rgba(85, 194, 94, 0.22),
    0 30px 60px rgba(0, 0, 0, 0.6);
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), box-shadow 0.45s ease;
}
[data-theme="light"] .suite-card .preview-product img,
:root:not([data-theme="dark"]) .suite-card .preview-product img {
  box-shadow:
    0 0 0 1px rgba(85, 194, 94, 0.22),
    -10px -10px 40px rgba(85, 194, 94, 0.18),
    0 24px 50px rgba(20, 40, 22, 0.18);
}
.suite-card:hover .preview-product img {
  transform: translate(-10px, -10px);
  box-shadow:
    0 0 0 1px rgba(85, 194, 94, 0.32),
    -16px -16px 64px rgba(85, 194, 94, 0.40),
    0 36px 70px rgba(0, 0, 0, 0.65);
}
.suite-card .body { padding: 24px; }
.suite-card .name { font-weight: 600; font-size: 18px; margin-bottom: 6px; }
.suite-card .body p { color: var(--muted); font-size: 14px; }
.suite-card .body .arrow {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-strong);
}
[data-theme="dark"] .suite-card .body .arrow { color: var(--primary); }

/* The suite grid is shared by the homepage and /products, so its responsive
   rule belongs here rather than in a single page's stylesheet. */
@media (max-width: 900px) {
  .suite-grid { grid-template-columns: 1fr; }
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 96px 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--primary-soft), color-mix(in oklab, var(--primary-soft) 50%, var(--bg)));
  border: 1px solid var(--border);
}
[data-theme="dark"] .final-cta { background: var(--surface-2); }
