/* ==========================================================================
   Fonts — self-hosted (single variable file, weights 200–800, latin subset)
   ========================================================================== */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/plus-jakarta-sans-variable.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Corvenza — design tokens
   Source: GoogleBoost design system (indigo/lime SaaS palette), reused as-is.
   ========================================================================== */
:root {
  /* base palette */
  --ink-950: #0b0f1a; --ink-900: #121729; --ink-800: #1b2138; --ink-700: #262e4a;
  --ink-600: #374063; --ink-500: #4d5788; --ink-400: #7680ab; --ink-300: #a3abcf;
  --ink-200: #c9cfe6; --ink-100: #e4e8f5; --ink-50: #f2f4fc; --white: #ffffff;

  --indigo-900: #1c1550; --indigo-800: #2a1f78; --indigo-700: #3826a3; --indigo-600: #4630cf;
  --indigo-500: #5b3ff0; --indigo-400: #7d68f4; --indigo-300: #a598f8; --indigo-200: #cdc5fb;
  --indigo-100: #e9e5fd; --indigo-50: #f5f3fe;

  --lime-900: #233d0a; --lime-800: #345a0d; --lime-700: #457810; --lime-600: #5a9c14;
  --lime-500: #79c91a; --lime-400: #9bdc47; --lime-300: #bdeb80; --lime-200: #dcf5b3;
  --lime-100: #eefad9; --lime-50: #f7fdee;

  --amber-600: #b17915; --amber-400: #f0bd4f; --amber-100: #fdf2dd;
  --red-600: #c22e46; --red-500: #e14360; --red-100: #fbe2e6;
  --teal-600: #0f8078; --teal-500: #15a396; --teal-100: #dcf3f0;

  /* semantic — light mode */
  --bg-page: var(--ink-50);
  --bg-surface: var(--white);
  --bg-sunken: var(--ink-100);
  --bg-inverse: var(--ink-950);
  --border-subtle: var(--ink-100);
  --border-default: var(--ink-200);
  --text-primary: var(--ink-950);
  --text-secondary: var(--ink-600);
  --text-tertiary: var(--ink-400);
  --text-inverse: var(--white);
  --text-link: var(--indigo-600);

  --brand-primary: var(--indigo-600);
  --brand-primary-hover: var(--indigo-700);
  --brand-on-primary: var(--white);
  --brand-accent: var(--lime-500);
  --brand-accent-hover: var(--lime-600);
  --brand-on-accent: var(--ink-950);

  --status-success: var(--lime-600); --status-success-bg: var(--lime-50);
  --status-warning: var(--amber-600); --status-warning-bg: var(--amber-100);
  --status-danger: var(--red-600); --status-danger-bg: var(--red-100);
  --status-info: var(--teal-600); --status-info-bg: var(--teal-100);

  --focus-ring: var(--indigo-400);
  --overlay-scrim: rgb(11 15 26 / 55%);

  /* type */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs: 12px; --text-sm: 13.5px; --text-base: 15px; --text-md: 17px;
  --text-lg: 20px; --text-xl: 25px; --text-2xl: 32px; --text-3xl: 40px;
  --leading-tight: 1.1; --leading-snug: 1.3; --leading-normal: 1.5; --leading-relaxed: 1.7;
  --tracking-tight: -0.02em; --tracking-wide: 0.04em; --tracking-wider: 0.09em;

  /* spacing / layout */
  --content-max: 1180px;
  --gutter-mobile: 20px;
  --gutter-desktop: 64px;

  /* radius */
  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 18px; --radius-xl: 26px; --radius-pill: 999px;

  /* shadow */
  --shadow-sm: 0 1px 2px rgb(11 15 26 / 6%);
  --shadow-md: 0 6px 16px rgb(11 15 26 / 8%);
  --shadow-lg: 0 16px 40px rgb(11 15 26 / 12%);
  --shadow-brand: 0 12px 32px rgb(91 63 240 / 22%);

  /* motion */
  --ease-standard: cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --duration-fast: 120ms; --duration-base: 200ms; --duration-slow: 340ms;
}

[data-theme="dark"] {
  --bg-page: #0a0d17;
  --bg-surface: #141a2b;
  --bg-sunken: #0e1220;
  --bg-inverse: var(--ink-50);
  --border-subtle: #212841;
  --border-default: #2c3552;
  --text-primary: #f3f5fc;
  --text-secondary: #aab1d6;
  --text-tertiary: #6d76a3;
  --text-inverse: var(--ink-950);
  --text-link: var(--indigo-300);

  --brand-primary: var(--indigo-400);
  --brand-primary-hover: var(--indigo-300);
  --brand-on-primary: var(--ink-950);
  --brand-accent: var(--lime-400);
  --brand-accent-hover: var(--lime-300);
  --brand-on-accent: var(--ink-950);

  --status-success: var(--lime-400); --status-success-bg: #1b2a0c;
  --status-warning: var(--amber-400); --status-warning-bg: #2c2109;
  --status-danger: var(--red-500); --status-danger-bg: #301019;
  --status-info: var(--teal-500); --status-info-bg: #0c2624;

  --focus-ring: var(--indigo-300);
  --overlay-scrim: rgb(5 7 14 / 70%);

  --shadow-sm: 0 1px 2px rgb(0 0 0 / 30%);
  --shadow-md: 0 8px 20px rgb(0 0 0 / 40%);
  --shadow-lg: 0 20px 48px rgb(0 0 0 / 50%);
  --shadow-brand: 0 14px 36px rgb(125 104 244 / 30%);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
h1, h2, h3, p, figure { margin: 0; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }
button { background: none; border: none; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-sans);
  background: var(--bg-page);
  color: var(--text-primary);
  min-height: 100vh;
  transition: background var(--duration-base) var(--ease-standard), color var(--duration-base) var(--ease-standard);
}

a { color: var(--text-link); text-decoration: none; }
a:hover { color: var(--brand-primary-hover); }
::selection { background: var(--brand-accent); color: var(--ink-950); }

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.icon {
  width: 20px; height: 20px; stroke: currentColor; fill: none; flex-shrink: 0;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.icon-brand { stroke: none; fill: currentColor; }

.skip-link {
  position: absolute;
  left: 12px; top: -48px;
  background: var(--brand-primary);
  color: var(--brand-on-primary);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  z-index: 100;
  transition: top var(--duration-base) var(--ease-standard);
}
.skip-link:focus { top: 12px; color: var(--brand-on-primary); }

.container { max-width: var(--content-max); margin: 0 auto; padding-inline: var(--gutter-desktop); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--duration-base) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard),
              transform var(--duration-fast) var(--ease-standard);
}
.btn:active { transform: scale(0.98); }
.btn-md { padding: 12px 22px; font-size: 14px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn .icon { width: 18px; height: 18px; }
.btn-lg .icon { width: 20px; height: 20px; }

.btn-primary { background: var(--brand-primary); color: var(--brand-on-primary); box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-primary-hover); color: var(--brand-on-primary); }
.btn-accent { background: var(--brand-accent); color: var(--brand-on-accent); }
.btn-accent:hover { background: var(--brand-accent-hover); color: var(--brand-on-accent); }
.btn-secondary { background: var(--bg-surface); color: var(--text-primary); border-color: var(--border-default); }
.btn-secondary:hover { color: var(--text-primary); box-shadow: var(--shadow-md); }
.btn-full { width: 100%; justify-content: center; }

.btn-pulse { border-radius: var(--radius-md); }
@media (prefers-reduced-motion: no-preference) {
  .btn-pulse { animation: ctaPulse 2.6s ease-in-out infinite; }
}

/* ==========================================================================
   Nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg-page) 82%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-row {
  max-width: var(--content-max); margin: 0 auto; padding: 14px var(--gutter-desktop);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { flex-shrink: 0; }
.brand-mark .ring { fill: none; stroke: var(--brand-primary); stroke-width: 6.5; stroke-linecap: round; stroke-dasharray: 70 100; transform: rotate(38deg); transform-origin: center; }
.brand-mark .dot { fill: var(--brand-accent); }
.brand-name { font-weight: 800; font-size: 20px; letter-spacing: var(--tracking-tight); color: var(--text-primary); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--text-secondary); }
.nav-links a:hover { color: var(--text-primary); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-contact { font-size: 14.5px; font-weight: 600; color: var(--text-primary); padding: 9px 4px; }

.icon-btn {
  width: 40px; height: 40px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-default); background: var(--bg-surface);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: box-shadow var(--duration-base) var(--ease-standard);
}
.icon-btn:hover { box-shadow: var(--shadow-sm); }
.icon-btn .icon { width: 18px; height: 18px; color: var(--text-primary); }

.theme-icon-dark { display: none; }
[data-theme="dark"] .theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: block; }

.nav-burger { display: none; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 20px 18px;
  border-top: 1px solid var(--border-subtle);
}
.mobile-menu a {
  padding: 12px 4px; font-size: 15px; font-weight: 600; color: var(--text-primary);
}
.mobile-menu-actions { display: flex; gap: 10px; margin-top: 12px; }
.mobile-menu-actions .btn { flex: 1; justify-content: center; }
.site-header.is-open .mobile-menu { display: flex; }

@media (max-width: 899px) {
  .nav-links, .nav-actions-desktop { display: none; }
  .nav-burger { display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -10% -10% auto -10%; height: 640px;
  background:
    radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--brand-primary) 22%, transparent), transparent 60%),
    radial-gradient(circle at 80% 10%, color-mix(in srgb, var(--brand-accent) 16%, transparent), transparent 55%);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-glow { animation: floatGlow 14s ease-in-out infinite; }
}
.hero-row {
  position: relative; max-width: var(--content-max); margin: 0 auto;
  padding: 96px var(--gutter-desktop) 40px;
  display: flex; flex-wrap: wrap; gap: 56px; align-items: center;
}
.hero-copy, .hero-visual { flex: 1 1 460px; min-width: 300px; }

.eyebrow-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-default); background: var(--bg-surface);
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  margin-bottom: 24px;
}
.eyebrow-badge .icon { width: 14px; height: 14px; color: var(--brand-primary); }

.hero-title {
  font-weight: 800; font-size: clamp(38px, 5.2vw, 64px); line-height: 1.05;
  letter-spacing: var(--tracking-tight); color: var(--text-primary); margin-bottom: 22px;
}
.hero-lede {
  font-size: var(--text-md); line-height: var(--leading-relaxed); color: var(--text-secondary);
  max-width: 520px; margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-fine-print { font-size: 13px; color: var(--text-tertiary); }

.mock-window {
  border-radius: var(--radius-xl); border: 1px solid var(--border-default);
  background: var(--bg-surface); box-shadow: var(--shadow-lg); overflow: hidden;
}
.mock-titlebar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--border-subtle); }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot-danger { background: var(--status-danger); }
.mock-dot-warning { background: var(--status-warning); }
.mock-dot-success { background: var(--status-success); }
.mock-titlebar span { margin-left: 10px; font-size: 12.5px; color: var(--text-tertiary); font-weight: 500; }
.mock-body { padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock-stat { background: var(--bg-sunken); border-radius: var(--radius-md); padding: 14px; }
.mock-stat-label { font-size: 11.5px; color: var(--text-tertiary); font-weight: 600; text-transform: uppercase; letter-spacing: var(--tracking-wide); }
.mock-stat-value { font-size: 24px; font-weight: 800; color: var(--text-primary); margin-top: 4px; }
.mock-stat-value.accent { color: var(--brand-accent-hover); }
.mock-chart { width: 100%; height: auto; }
.mock-rows { display: flex; flex-direction: column; gap: 8px; }
.mock-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: var(--bg-sunken); border-radius: var(--radius-sm); }
.mock-row span:first-child { font-size: 13.5px; font-weight: 600; color: var(--text-primary); }
.mock-tag { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-pill); }
.mock-tag.success { color: var(--status-success); background: var(--status-success-bg); }
.mock-tag.info { color: var(--status-info); background: var(--status-info-bg); }

/* ==========================================================================
   Logo strip
   ========================================================================== */
.logo-strip { padding: 8px var(--gutter-desktop) 64px; }
.logo-strip-label {
  text-align: center; font-size: 12.5px; font-weight: 600; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 26px;
}
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 44px; opacity: 0.65; }
.logo-row a {
  font-weight: 800; font-size: 19px; color: var(--text-secondary);
  transition: color var(--duration-base) var(--ease-standard);
}
.logo-row a:hover { color: var(--brand-primary); }

/* ==========================================================================
   Section headers / shared
   ========================================================================== */
section { scroll-margin-top: 76px; }
.section-pad { padding: 60px var(--gutter-desktop) 100px; }
.section-pad-lg { padding: 96px var(--gutter-desktop); }
.section-band { background: var(--bg-sunken); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.eyebrow {
  font-size: 13px; font-weight: 700; color: var(--brand-primary);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
}
.section-title {
  font-weight: 800; font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: var(--tracking-tight); color: var(--text-primary); margin-top: 12px;
}

[data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0; transform: translateY(28px);
    transition: opacity 700ms var(--ease-standard), transform 700ms var(--ease-standard);
  }
  [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Features
   ========================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--bg-sunken);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-icon .icon { color: var(--brand-primary); }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; line-height: var(--leading-normal); color: var(--text-secondary); }

/* ==========================================================================
   How we work
   ========================================================================== */
/* Explicit column counts, not auto-fit — auto-fit can strand a lone item on its own
   row (e.g. 2-up leaving 1 behind) at in-between widths. Only ever 3-across or 1-across. */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 860px) {
  .step-grid { grid-template-columns: 1fr; }
}
.step-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.step-num {
  font-weight: 800; font-size: 15px; color: var(--brand-on-primary); background: var(--brand-primary);
  width: 40px; height: 40px; border-radius: var(--radius-md); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.step-grid h3 { font-size: 19px; font-weight: 700; color: var(--text-primary); margin: 0; }
.step-grid p { font-size: 14.5px; line-height: var(--leading-normal); color: var(--text-secondary); }

/* ==========================================================================
   Showcase
   ========================================================================== */
.showcase-row { display: flex; flex-wrap: wrap-reverse; gap: 56px; align-items: center; }
.showcase-visual, .showcase-copy { flex: 1 1 440px; min-width: 300px; }
.showcase-panel {
  /* Fixed dark background (not var(--bg-inverse)) on purpose: this card's content is hardcoded
     white-on-dark, and bg-inverse flips to near-white in dark mode, which broke contrast. */
  border-radius: var(--radius-xl); border: 1px solid var(--border-default); background: var(--ink-950);
  box-shadow: var(--shadow-lg); padding: 28px; position: relative; overflow: hidden;
}
.showcase-panel-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--indigo-500) 35%, transparent), transparent 60%);
}
.showcase-steps { position: relative; display: flex; flex-direction: column; gap: 14px; }
.showcase-step { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); }
.showcase-step .icon { width: 16px; height: 16px; color: var(--lime-400); }
.showcase-step span { font-size: 13.5px; font-weight: 600; color: #fff; }
.showcase-step.is-done { background: rgba(121,201,26,0.14); border-color: rgba(121,201,26,0.35); }
.showcase-connector { height: 20px; width: 2px; background: rgba(255,255,255,0.2); margin-left: 26px; }

.showcase-title { font-weight: 800; font-size: clamp(28px, 3.4vw, 38px); letter-spacing: var(--tracking-tight); color: var(--text-primary); margin: 12px 0 20px; line-height: 1.15; }
.showcase-lede { font-size: var(--text-md); line-height: var(--leading-relaxed); color: var(--text-secondary); margin-bottom: 26px; }
.showcase-points { display: flex; flex-direction: column; gap: 14px; }
.showcase-point { display: flex; align-items: flex-start; gap: 12px; }
.showcase-point .icon { width: 18px; height: 18px; color: var(--brand-accent-hover); margin-top: 1px; }
.showcase-point span { font-size: 15px; color: var(--text-primary); font-weight: 500; }

/* ==========================================================================
   Pricing
   ========================================================================== */
/* Same reasoning as .step-grid: explicit 3-across or 1-across, never a stranded 2+1. */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 900px) {
  .plan-grid { grid-template-columns: 1fr; }
}
.plan-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative;
  transition: transform var(--duration-base) var(--ease-standard);
}
.plan-card:hover { transform: translateY(-4px); }
/* Fixed dark background (not var(--bg-inverse)) — same reasoning as .showcase-panel above. */
.plan-card.is-featured { background: var(--ink-950); border-color: transparent; box-shadow: var(--shadow-brand); color: #fff; }
.plan-badge {
  position: absolute; top: -13px; left: 32px; background: var(--brand-accent); color: var(--brand-on-accent);
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill);
}
.plan-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.plan-card.is-featured .plan-name { color: #fff; }
.plan-desc { font-size: 13.5px; margin-bottom: 22px; color: var(--text-tertiary); }
.plan-card.is-featured .plan-desc { color: rgba(255,255,255,0.65); }
.plan-price-tag {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--radius-pill); background: var(--bg-sunken); margin-bottom: 26px;
}
.plan-card.is-featured .plan-price-tag { background: rgba(255,255,255,0.12); }
.plan-price-tag span { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.plan-card.is-featured .plan-price-tag span { color: #fff; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex: 1; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; }
.plan-feature .icon { width: 16px; height: 16px; margin-top: 2px; color: var(--brand-accent-hover); }
.plan-feature span { font-size: 14px; color: var(--text-primary); }
.plan-card.is-featured .plan-feature span { color: #fff; }
.plan-card.is-featured .plan-feature .icon { color: var(--lime-400); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq-item { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; font-size: 15.5px; font-weight: 600; color: var(--text-primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { color: var(--text-tertiary); }
.faq-icon-minus { display: none; }
.faq-item[open] .faq-icon-plus { display: none; }
.faq-item[open] .faq-icon-minus { display: block; }
.faq-answer { padding: 0 22px 20px; font-size: 14.5px; line-height: var(--leading-relaxed); color: var(--text-secondary); }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta-panel {
  /* Fixed dark background (not var(--bg-inverse)) — same reasoning as .showcase-panel above. */
  position: relative; overflow: hidden; background: var(--ink-950);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl); padding: 72px 40px; text-align: center;
}
.cta-panel-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--indigo-500) 40%, transparent), transparent 65%);
}
.cta-content { position: relative; }
.cta-title { font-weight: 800; font-size: clamp(28px, 4vw, 44px); letter-spacing: var(--tracking-tight); color: #fff; margin-bottom: 16px; }
.cta-lede { font-size: var(--text-md); color: rgba(255,255,255,0.72); margin-bottom: 34px; }
.cta-form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 440px; margin: 0 auto; }
.cta-input {
  flex: 1 1 220px; min-width: 180px; padding: 14px 18px; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: #fff;
  font-family: var(--font-sans); font-size: 14.5px; outline: none;
}
.cta-input::placeholder { color: rgba(255,255,255,0.5); }
.cta-input:focus-visible { outline: 2px solid var(--lime-400); outline-offset: 2px; }
.cta-fine-print { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 18px; }
.cta-fine-print a { color: rgba(255,255,255,0.75); }
.cta-fine-print a:hover { color: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { border-top: 1px solid var(--border-subtle); background: var(--bg-page); }
.footer-inner { padding: 64px var(--gutter-desktop) 40px; }
/* Explicit grid steps (4-across / 2x2 / 1-across) instead of flex-wrap — flex-wrap let this
   land as 3-up-top + 1-alone-bottom at in-between widths, which is what we're avoiding. */
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand { max-width: 300px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand-name { font-size: 18px; }
.footer-brand p { font-size: 13.5px; line-height: var(--leading-normal); color: var(--text-tertiary); }
.footer-contact { display: flex; align-items: center; gap: 10px; margin-top: 10px; font-size: 13.5px; font-weight: 600; }
.footer-contact:first-of-type { margin-top: 20px; }
.footer-contact .icon { width: 15px; height: 15px; color: var(--text-secondary); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social .icon { width: 17px; height: 17px; color: var(--text-primary); }
.footer-col-title {
  font-size: 12.5px; font-weight: 700; color: var(--text-primary); text-transform: uppercase;
  letter-spacing: var(--tracking-wide); margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--text-secondary); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
}
.footer-bottom span { font-size: 13px; color: var(--text-tertiary); }

/* ==========================================================================
   Simple content pages (privacy / terms)
   ========================================================================== */
.legal-main { max-width: 760px; margin: 0 auto; padding: 64px var(--gutter-desktop) 100px; }
.legal-main h1 { font-weight: 800; font-size: clamp(28px, 4vw, 40px); letter-spacing: var(--tracking-tight); margin-bottom: 8px; }
.legal-updated { font-size: 13.5px; color: var(--text-tertiary); margin-bottom: 40px; }
.legal-main h2 { font-size: 19px; font-weight: 700; margin: 40px 0 12px; }
.legal-main p, .legal-main li { font-size: 15px; line-height: var(--leading-relaxed); color: var(--text-secondary); }
.legal-main ul { padding-left: 20px; }
.legal-main li { margin-bottom: 8px; }
.legal-main a { font-weight: 600; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes floatGlow { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-2%, 3%); } }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(121, 201, 26, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(121, 201, 26, 0); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 640px) {
  .container, .nav-row, .hero-row, .section-pad, .section-pad-lg, .logo-strip, .footer-inner {
    padding-left: var(--gutter-mobile);
    padding-right: var(--gutter-mobile);
  }
  .mobile-menu { padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile); }
  .cta-panel { padding: 48px 24px; }
}
