/* SpotPro next-gen — SaaS product marketing
   Inter + Plus Jakarta Sans · zinc system · dark-first · refined light */

:root,
[data-theme="dark"] {
  color-scheme: dark;
  --bg: #09090b;
  --bg-elevated: #0c0c0f;
  --bg-soft: #141418;
  --surface: #111114;
  --surface-2: #18181b;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(255, 255, 255, 0.2);
  --text: #fafafa;
  --text-soft: #e4e4e7;
  --text-muted: #a1a1aa;
  --text-faint: #71717a;
  --brand: #e4e4e7;           /* accent text / links hover — cool zinc, not gold */
  --brand-dim: #a1a1aa;
  --brand-fg: #09090b;
  --btn-primary-bg: #fafafa;
  --btn-primary-fg: #09090b;
  --btn-primary-hover: #ffffff;
  --accent: #38bdf8;
  --success: #4ade80;
  --danger: #f87171;
  --ring: rgba(255, 255, 255, 0.22);
  --shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 24px 48px rgba(0, 0, 0, 0.55);
  --shadow-sm: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 8px 24px rgba(0, 0, 0, 0.35);
  --header-bg: rgba(9, 9, 11, 0.8);
  --glow-a: rgba(255, 255, 255, 0.04);
  --glow-b: rgba(56, 189, 248, 0.07);
  --input-bg: #0c0c0f;
  --logo-on-dark-display: block;   /* light-colored mark for dark backgrounds */
  --logo-on-light-display: none;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --max: 1120px;
  --header-h: 68px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Plus Jakarta Sans", var(--font);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Cold professional light — product UI, not warm brochure paper */
[data-theme="light"] {
  color-scheme: light;
  --bg: #fafafa;
  --bg-elevated: #ffffff;
  --bg-soft: #f4f4f5;
  --surface: #ffffff;
  --surface-2: #f4f4f5;
  --border: rgba(24, 24, 27, 0.1);
  --border-hover: rgba(24, 24, 27, 0.18);
  --border-accent: rgba(24, 24, 27, 0.22);
  --text: #09090b;
  --text-soft: #27272a;
  --text-muted: #71717a;
  --text-faint: #a1a1aa;
  --brand: #18181b;
  --brand-dim: #3f3f46;
  --brand-fg: #fafafa;
  --btn-primary-bg: #18181b;
  --btn-primary-fg: #fafafa;
  --btn-primary-hover: #27272a;
  --accent: #0284c7;
  --success: #16a34a;
  --danger: #dc2626;
  --ring: rgba(24, 24, 27, 0.2);
  --shadow: 0 0 0 1px rgba(24, 24, 27, 0.06), 0 16px 40px rgba(24, 24, 27, 0.08);
  --shadow-sm: 0 0 0 1px rgba(24, 24, 27, 0.06), 0 4px 16px rgba(24, 24, 27, 0.06);
  --header-bg: rgba(250, 250, 250, 0.85);
  --glow-a: rgba(24, 24, 27, 0.04);
  --glow-b: rgba(2, 132, 199, 0.06);
  --input-bg: #ffffff;
  --logo-on-dark-display: none;
  --logo-on-light-display: block;
}

*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  font-feature-settings: "ss01" on, "cv11" on;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--glow-a), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, var(--glow-b), transparent 45%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}
a:hover { color: var(--brand); }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86em;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 0.12em 0.4em;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  background: var(--brand);
  color: var(--brand-fg);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 600;
  font-size: 0.875rem;
}
.skip-link:focus { left: 0.5rem; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(var(--max), calc(100% - 1.5rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  /* Compact logo so nav + go-to fit one line */
  width: 10.5rem;
  height: 2.5rem;
}
.brand-logo {
  display: block;
  width: 10.5rem;
  height: 2.5rem;
  max-width: none;
  object-fit: fill;
  object-position: left center;
}
.brand-logo--on-dark { display: var(--logo-on-dark-display); }
.brand-logo--on-light { display: var(--logo-on-light-display); }
.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media (max-width: 480px) {
  .brand {
    width: 9rem;
    height: 2.2rem;
  }
  .brand-logo {
    width: 9rem;
    height: 2.2rem;
  }
}

.nav-desktop {
  display: none;
  flex-wrap: nowrap;
  flex-shrink: 1;
  align-items: center;
  gap: 0;
  margin-left: 0.15rem;
  min-width: 0;
  white-space: nowrap;
}
.nav-desktop a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8125rem;
  padding: 0.35rem 0.45rem;
  border-radius: 7px;
  white-space: nowrap;
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.nav-desktop a:hover {
  color: var(--text);
  background: var(--bg-soft);
}
.nav-desktop a.is-active {
  color: var(--text);
  background: none;
  font-weight: 650;
  box-shadow: inset 0 -2px 0 var(--accent);
}
.nav-mobile a.is-active {
  color: var(--text);
  font-weight: 650;
  background: none;
  border-radius: 0;
  box-shadow: inset 0 -2px 0 var(--accent);
}

.header-actions {
  margin-left: auto;
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
  gap: 0.3rem;
}

/* —— Go to section (Ctrl+K) —— */
.goto-search {
  display: none; /* full field only on wide desktops */
  position: relative;
  margin-left: 0.15rem;
  flex: 0 0 auto;
  width: 11.5rem;
  min-width: 0;
  max-width: 11.5rem;
}
.goto-search-field {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  height: 2.25rem;
  padding: 0 0.55rem 0 0.65rem;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface);
  color: var(--text-muted);
  cursor: text;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.goto-search.is-open .goto-search-field,
.goto-search-field:focus-within {
  border-color: var(--border-hover);
  box-shadow: 0 0 0 3px var(--ring);
  color: var(--text);
}
.goto-search-field > i { font-size: 0.95rem; flex-shrink: 0; }
.goto-search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0;
}
.goto-search-input::placeholder { color: var(--text-faint); font-weight: 500; }
.goto-search-kbd {
  flex-shrink: 0;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-faint);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.1rem 0.3rem;
  background: var(--bg-soft);
}
.goto-search-panel {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: auto;
  width: min(22rem, calc(100vw - 2rem));
  max-height: min(70vh, 28rem);
  overflow: auto;
  z-index: 200;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.goto-search-hint {
  padding: 0.55rem 0.85rem;
  font-size: 0.75rem;
  color: var(--text-faint);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.goto-search-group {
  padding: 0.5rem 0.85rem 0.25rem;
  font-size: 0.68rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}
.goto-search-item {
  display: grid;
  gap: 0.1rem;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  color: inherit;
  border-left: 2px solid transparent;
}
.goto-search-item:hover,
.goto-search-item.is-active {
  background: var(--bg-soft);
  border-left-color: var(--accent);
}
.goto-search-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.goto-search-item-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.goto-search-empty {
  padding: 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.goto-search-mobile-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.goto-search-mobile-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--bg-soft);
}

/* Mobile full-sheet go-to — lives outside sticky header so fixed positioning works on iOS */
.goto-search-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  /* Prefer dynamic viewport when keyboard is open */
  height: 100%;
  height: 100dvh;
  max-height: 100%;
  max-height: 100dvh;
  padding: 0;
  margin: 0;
  overscroll-behavior: none;
}
.goto-search-modal[hidden] { display: none !important; }
.goto-search-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-tap-highlight-color: transparent;
}
.goto-search-modal-sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
  /* Leave room for keyboard; fall back to vh when dvh unsupported */
  max-height: min(92vh, 40rem);
  max-height: min(92dvh, 40rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Safe area for home indicator */
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.goto-search-modal-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}
.goto-search-modal-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.goto-search-modal-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.goto-search-modal-search {
  flex: 0 0 auto;
  padding: 0.75rem 0.75rem 0.35rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.goto-search-modal-body {
  flex: 1 1 auto;
  min-height: 0; /* critical for nested overflow scroll in flex */
  padding: 0.35rem 0.5rem 1rem;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.goto-search-input-mobile {
  width: 100%;
  height: 2.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--input-bg);
  color: var(--text);
  font-family: var(--font);
  /* ≥16px prevents iOS Safari zoom-on-focus */
  font-size: 16px;
  line-height: 1.3;
  padding: 0 0.85rem;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.goto-search-input-mobile:focus {
  border-color: var(--border-hover);
  box-shadow: 0 0 0 3px var(--ring);
}
.goto-search-results--modal {
  max-height: none;
}
.goto-search-results--modal .goto-search-item {
  padding: 0.8rem 0.7rem;
  border-radius: 8px;
  border-left: 0;
  display: block;
  text-decoration: none;
  color: inherit;
}
.goto-search-results--modal .goto-search-item.is-active,
.goto-search-results--modal .goto-search-item:hover {
  background: var(--bg-soft);
}
body.goto-modal-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  /* top set via JS to preserve scroll position */
}

.theme-toggle,
.nav-burger {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s var(--ease), color 0.15s var(--ease), background 0.15s var(--ease);
}
.theme-toggle { width: 2.25rem; height: 2.25rem; position: relative; }
.theme-toggle:hover,
.nav-burger:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--bg-soft);
}
.theme-icon { position: absolute; font-size: 0.95rem; }
[data-theme="dark"] .theme-icon--sun { display: none; }
[data-theme="light"] .theme-icon--moon { display: none; }

.nav-burger {
  width: 2.35rem;
  height: 2.35rem;
  flex-direction: column;
  gap: 4px;
}
.nav-burger span {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}
.nav-mobile {
  border-top: 1px solid var(--border);
  padding: 0.65rem 1rem 1rem;
  display: grid;
  gap: 0.15rem;
  background: var(--bg-elevated);
}
.nav-mobile[hidden] { display: none !important; }
.nav-mobile a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
}
.nav-mobile a:hover {
  background: var(--bg-soft);
  color: var(--text);
}

/* Must beat .btn { display: inline-flex } (same specificity, later in file) */
.hide-sm { display: none !important; }

/* Tablet / laptop: nav + go-to icon (no full search field — avoids wrap) */
@media (min-width: 920px) {
  .nav-desktop { display: flex; }
  .nav-burger { display: none; }
  .nav-mobile { display: none !important; }
  .goto-search { display: none; }
  .goto-search-mobile-btn { display: inline-flex; }
  .hide-sm { display: inline-flex !important; }
}

/* Hide less-critical nav labels when space is tight */
@media (min-width: 920px) and (max-width: 1099px) {
  .nav-desktop a:nth-child(4) { display: none; } /* All features — still in go-to + burger not shown; available via search */
  .header-actions .btn-ghost.hide-sm { display: none !important; }
  .header-actions .btn-primary {
    padding-inline: 0.7rem;
    font-size: 0.8125rem;
  }
}

/* Wide desktop: full go-to field */
@media (min-width: 1100px) {
  .goto-search { display: block; }
  .goto-search-mobile-btn { display: none; }
  .nav-desktop a {
    font-size: 0.875rem;
    padding: 0.4rem 0.55rem;
  }
  .goto-search {
    width: 12.5rem;
    max-width: 12.5rem;
  }
}

@media (min-width: 1240px) {
  .brand {
    width: 12rem;
    height: 2.75rem;
  }
  .brand-logo {
    width: 12rem;
    height: 2.75rem;
  }
  .goto-search {
    width: 14rem;
    max-width: 14rem;
  }
  .nav-desktop a {
    padding: 0.4rem 0.65rem;
  }
}

/*
 * Phone / small tablet: brand + compass + theme + Log in + burger.
 * Try free stays in the mobile menu only (saves width; primary CTA is also on-page).
 * .hide-sm needs !important override here — base rule hides it, and .btn display
 * used to win so Log in + Try free both showed and clipped the burger.
 */
@media (max-width: 919px) {
  .goto-search { display: none; }
  .goto-search-mobile-btn { display: inline-flex; }
  .header-actions > .btn-primary {
    display: none !important;
  }
  .header-actions > .btn-ghost.hide-sm {
    display: inline-flex !important;
    padding-inline: 0.65rem;
    font-size: 0.8125rem;
  }
  .header-actions {
    gap: 0.25rem;
    min-width: 0;
  }
  .header-inner {
    width: min(var(--max), calc(100% - 1rem));
    gap: 0.35rem;
  }
  .brand {
    width: 8.25rem;
    height: 2rem;
  }
  .brand-logo {
    width: 8.25rem;
    height: 2rem;
  }
}

/* Extra-narrow phones: slightly tighter so Log in still fits with icons */
@media (max-width: 360px) {
  .brand {
    width: 7.25rem;
    height: 1.85rem;
  }
  .brand-logo {
    width: 7.25rem;
    height: 1.85rem;
  }
  .header-actions > .btn-ghost.hide-sm {
    padding-inline: 0.5rem;
    font-size: 0.75rem;
  }
  .theme-toggle,
  .goto-search-mobile-btn {
    width: 2.1rem;
    height: 2.1rem;
  }
  .nav-burger {
    width: 2.15rem;
    height: 2.15rem;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 9px;
  padding: 0.55rem 1rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease);
  white-space: nowrap;
  line-height: 1.25;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg) !important;
  border-color: transparent;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 8px 20px rgba(0, 0, 0, 0.25);
}
.btn-primary:hover {
  background: var(--btn-primary-hover);
  color: var(--btn-primary-fg) !important;
}
[data-theme="light"] .btn-primary {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 6px 16px rgba(24, 24, 27, 0.12);
}
.btn-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text) !important;
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--bg-soft);
  color: var(--text) !important;
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-muted) !important;
}
.btn-ghost:hover {
  color: var(--text) !important;
  border-color: var(--border-hover);
  background: var(--bg-soft);
}
.btn-block { width: 100%; }
.btn-lg {
  padding: 0.7rem 1.2rem;
  font-size: 0.9375rem;
  border-radius: 10px;
}

/* —— Hero —— */
.hero {
  padding: clamp(2.75rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3.5rem);
}
.hero--clean {
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
}
/* Keep copy readable, but use full .container width like every other section */
.hero-clean .hero-lead {
  max-width: 40rem;
}
.hero-value {
  margin: 0 0 0.85rem;
  max-width: 40rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-soft);
  letter-spacing: -0.015em;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
}
.hero-pills li {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.hero-pills a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 0.35rem 0.75rem;
}
.hero-pills li:has(a:hover),
.hero-pills li:hover {
  border-color: var(--border-hover);
  background: var(--bg-soft);
  color: var(--text);
}
.hero-pills a:hover { color: var(--text); }
.shot-strip-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}
.feature-compact .card p {
  font-size: 0.84rem;
  line-height: 1.45;
}

/* Integrations strip */
.section-integrations {
  padding: 0.85rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
}
.integrations-label {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.integrations-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.integrations-row li {
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--text-soft);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
}
.integrations-opt {
  font-weight: 500;
  color: var(--text-faint);
  font-size: 0.75rem;
}

.price-teaser-bullets {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.price-teaser-bullets li {
  display: flex;
  gap: 0.45rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
}
.price-teaser-bullets i {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Founder band */
.founder-band {
  display: grid;
  gap: 1.25rem 1.75rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 800px) {
  .founder-band {
    grid-template-columns: minmax(10rem, 14rem) 1fr;
  }
}
.founder-photo {
  width: 100%;
  max-width: 16rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
}
.founder-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.55rem;
  line-height: 1.2;
}
.founder-copy p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 40rem;
}
.founder-copy a {
  font-weight: 600;
  text-decoration: none;
  color: var(--text-soft);
}
.founder-copy a:hover { color: var(--brand); }

/* Features page — jump nav + deep dives (serious evaluators) */
.feature-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.feature-jump a {
  font-size: 0.75rem;
  font-weight: 650;
  text-decoration: none;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.7rem;
  transition: color 0.15s var(--ease), border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.feature-jump a:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: var(--surface-2);
}
.deep-link-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .deep-link-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .deep-link-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.deep-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.deep-link:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}
.deep-link strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
}
.deep-link span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.eval-band {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.eval-band h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.eval-band p {
  color: var(--text-muted);
  font-size: 0.875rem;
  max-width: 36rem;
  line-height: 1.5;
}
.eval-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.12fr 0.88fr; gap: 3rem; }
}

/* Homepage product shots — high on the page */
.shot-strip {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
.shot-strip--hero {
  /* Mobile: larger single-column previews */
  gap: 1rem;
}
@media (min-width: 640px) {
  .shot-strip { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .shot-strip { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.shot-strip .shot-card figcaption,
.shot-strip .shot-card-cap {
  font-size: 0.8rem;
  padding: 0.65rem 0.85rem;
}
.shot-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.shot-card--link:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
  color: inherit;
  transform: translateY(-2px);
}
.shot-card--link .shot-card-cap {
  display: block;
  font-weight: 600;
  color: var(--text-soft);
  border-top: 1px solid var(--border);
}
.shot-strip--hero .shot-card img {
  aspect-ratio: 16 / 10;
}
/* Mobile: bigger product shots so the UI is readable */
@media (max-width: 639px) {
  .shot-strip--hero .shot-card img {
    aspect-ratio: 4 / 3;
    min-height: 12.5rem;
    object-fit: cover;
    object-position: top left;
  }
  .shot-strip--hero .shot-card-cap {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
}
@media (min-width: 1000px) {
  .shot-strip--hero .shot-card img {
    aspect-ratio: 16 / 10;
    min-height: 11rem;
  }
}

/* Early pricing band */
.price-teaser {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--border-hover);
  background:
    radial-gradient(500px 160px at 10% 0%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow);
}
.price-teaser-amount {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0.15rem 0 0.35rem;
  color: var(--text);
}
.price-teaser-amount span {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}
.price-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.price-teaser-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--text-faint);
  font-weight: 500;
}

/* Comparison table */
.compare-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 32rem;
  font-size: 0.9rem;
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  font-weight: 650;
  background: var(--bg-soft);
}
.compare-table tbody th {
  font-weight: 600;
  color: var(--text-soft);
  width: 28%;
}
.compare-table tbody td:nth-child(2) {
  color: var(--text-muted);
  width: 32%;
}
.compare-table tbody td:nth-child(3) {
  color: var(--text);
  width: 40%;
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}
.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;
}
.cta-band--final {
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.cta-band--final h2 {
  font-size: clamp(1.5rem, 3vw, 1.95rem);
}
.cta-band--final p {
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.55;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.7rem;
  margin-bottom: 1.15rem;
  box-shadow: var(--shadow-sm);
}
.eyebrow i { color: var(--accent); font-size: 0.85rem; }

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.15rem, 4.8vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0 0 1rem;
  color: var(--text);
}
.hero h1 em {
  font-style: normal;
  color: var(--text);
  background: linear-gradient(105deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 0 1.5rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  color: var(--text-faint);
  font-size: 0.8125rem;
  font-weight: 500;
}
.hero-proof strong {
  color: var(--text-soft);
  font-weight: 600;
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-panel-top {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-panel-top span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 22%, transparent);
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.hero-stat {
  background: var(--surface-2);
  padding: 1rem 0.95rem;
}
.hero-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
}
.hero-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.35;
  display: block;
  margin-top: 0.2rem;
}

/* —— Sections —— */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}
/*
 * Dual radial glow (top + bottom) — same family as reviews.
 * Use on selected bands only; plain .section stays flat.
 */
.section-glow,
.section-alt,
.reviews-band {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 70% at 12% 0%, color-mix(in srgb, var(--brand) 14%, transparent), transparent 60%),
    radial-gradient(ellipse 100% 85% at 88% 100%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center top, center bottom;
}
.section-alt {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
/* Quieter on dense feature pages — still the same effect, less ink */
.section-alt {
  background-image:
    radial-gradient(ellipse 85% 65% at 10% 0%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 58%),
    radial-gradient(ellipse 95% 75% at 90% 100%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 60%);
}
.section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 0 0 0.6rem;
  color: var(--text);
}
.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* —— Grids / cards —— */
.grid-3, .grid-2, .grid-4 {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 800px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s var(--ease), transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
  height: 100%;
}
/* Pin “More” chips to bottom-left so side-by-side cards look uniform */
.card:has(.card-more),
.card:has(> .card-link),
.channel-card:has(.card-more),
.channel-card:has(> .card-link) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
/* Grow the body block so margin-top:auto on .card-more pins the chip */
.card:has(.card-more) > p,
.card:has(> .card-link) > p,
.card:has(.card-more) > ul:last-of-type,
.channel-card:has(.card-more) > ul {
  flex: 1 1 auto;
  margin-bottom: 0;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}
.card:hover .card-icon {
  border-color: var(--border-hover);
  color: var(--accent);
}
.card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text);
}
.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}
/* Feature / channel card chips — pin bottom-left in equal-height cards */
.card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  align-self: flex-start;
  max-width: 100%;
  padding: 0.4rem 0.65rem 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--border));
  background: color-mix(in srgb, var(--brand) 9%, var(--surface));
  color: var(--text);
  font-weight: 650;
  font-size: 0.8125rem;
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition:
    background 0.15s var(--ease),
    border-color 0.15s var(--ease),
    color 0.15s var(--ease),
    transform 0.15s var(--ease),
    box-shadow 0.15s var(--ease);
}
/* Keep a consistent gap above the chip once it sits at the bottom */
.card:has(.card-more) > p:has(+ .card-more),
.card:has(.card-more) > ul:has(+ .card-more),
.channel-card:has(.card-more) > ul:has(+ .card-more) {
  padding-bottom: 1rem;
}
.card-more:hover {
  background: color-mix(in srgb, var(--brand) 16%, var(--surface));
  border-color: color-mix(in srgb, var(--brand) 48%, var(--border));
  color: var(--brand);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--brand) 12%, transparent);
  transform: translateY(-1px);
}
.card-more:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.card-more-topic {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-soft);
  font-weight: 650;
  font-size: 0.8125rem;
}
.card-more:hover .card-more-topic { color: var(--brand); }
.card-more i {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--brand);
  opacity: 0.9;
}
.card-more:hover i { opacity: 1; }

.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  align-self: flex-start;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--border));
  background: color-mix(in srgb, var(--brand) 8%, var(--surface));
  font-weight: 650;
  font-size: 0.8125rem;
  text-decoration: none;
  color: var(--text-soft);
  transition:
    background 0.15s var(--ease),
    border-color 0.15s var(--ease),
    color 0.15s var(--ease),
    transform 0.15s var(--ease);
}
.card a.card-link:hover {
  color: var(--brand);
  border-color: color-mix(in srgb, var(--brand) 45%, var(--border));
  background: color-mix(in srgb, var(--brand) 14%, var(--surface));
  transform: translateY(-1px);
}

/* —— Channels —— */
.channel-band {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 900px) {
  .channel-band { grid-template-columns: repeat(3, 1fr); }
}
.channel-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.35rem 1.25rem 1.25rem;
  height: 100%;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.channel-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.channel-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, #a1a1aa, var(--accent));
  opacity: 0.85;
}
[data-theme="light"] .channel-card::before {
  background: linear-gradient(90deg, #3f3f46, var(--accent));
}
.channel-card .tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}
.channel-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.channel-card p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.channel-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.channel-card li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--text-soft);
  font-weight: 500;
}
.channel-card li i {
  color: var(--success);
  margin-top: 0.15rem;
  font-size: 0.85rem;
}
.channel-card .card-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.8125rem;
  text-decoration: none;
  color: var(--text-soft);
}
.channel-card .card-link:hover { color: var(--brand); }

/* —— Media —— */
.shot-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.shot-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: #0a0a0c;
  display: block;
}
/* Prevent iOS zoom on any search/text inputs in chrome */
@media (max-width: 919px) {
  input[type="search"],
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px !important;
  }
}
/* Full-page product captures: keep chrome readable */
.shot-card img[src*="marketing-screenshots"] {
  object-fit: cover;
  object-position: top center;
}
.shot-card figcaption {
  padding: 0.7rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* —— Pricing —— */
.price-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 800px) {
  .price-grid { grid-template-columns: 1.15fr 0.85fr; align-items: stretch; }
}
.price-card {
  border-radius: 16px;
  border: 1px solid var(--border-hover);
  background:
    radial-gradient(500px 180px at 15% 0%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 60%),
    var(--surface);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
}
.price-card .amount {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0.4rem 0;
  color: var(--text);
}
.price-card .amount span {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}
.price-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.price-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-soft);
  font-weight: 500;
}
.price-list i { color: var(--success); flex-shrink: 0; margin-top: 0.15rem; }

/* —— FAQ —— */
.faq-list {
  display: grid;
  gap: 0.5rem;
  max-width: 42rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1.05rem;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--text-faint);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; color: var(--accent); }
.faq-item .faq-body {
  padding: 0 1.05rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
  line-height: 1.6;
}

/* —— CTA —— */
.cta-band {
  margin: 0.5rem 0 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  /* Same dual-glow family as reviews / section-alt, contained in the card */
  background-color: var(--surface);
  background-image:
    radial-gradient(ellipse 90% 80% at 8% 0%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 55%),
    radial-gradient(ellipse 95% 90% at 92% 100%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 58%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center top, center bottom;
  padding: clamp(1.4rem, 3.5vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.cta-band h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.3rem;
}
.cta-band p {
  margin: 0;
  color: var(--text-muted);
  max-width: 30rem;
  font-size: 0.9375rem;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* —— Inner pages —— */
.page-hero {
  /* Tight under preview banner / header — no huge empty band above crumbs */
  padding: 0.55rem 0 1rem;
}
.page-hero > .container {
  position: relative;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 0.4rem;
  clear: both;
}
.page-hero .hero-kicker {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text-soft);
  line-height: 1.35;
  max-width: 40rem;
}
.page-hero .lead {
  margin: 0;
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.page-hero .lead-wide {
  max-width: 48rem;
  font-size: 1.1rem;
}

/* —— Dense feature pages —— */
.section-head-wide {
  max-width: 46rem;
}
.feature-intro {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-soft);
}
.feature-intro p { margin: 0; }
.feature-intro strong { color: var(--text); font-weight: 650; }
.feature-intro a { font-weight: 600; }

.card-compact {
  padding: 0.95rem 1.1rem;
}
.card-compact p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.feature-detail-stack {
  display: grid;
  gap: 1.5rem;
}
.feature-detail {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 900px) {
  .feature-detail {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.75rem;
    padding: 1.6rem 1.5rem;
  }
  .feature-detail:not(:has(.feature-detail-shot)) {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .feature-detail-alt {
    direction: rtl;
  }
  .feature-detail-alt > * {
    direction: ltr;
  }
}
.feature-detail-copy h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--text);
}
.feature-detail-copy p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}
.feature-detail-copy p:last-child { margin-bottom: 0; }
.feature-detail-shot {
  margin: 0;
}
.feature-faq.faq-list {
  max-width: none;
}
.card-link-block {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-link-block:hover {
  border-color: var(--border-hover);
  color: inherit;
}
.card-link-block h3 {
  color: var(--text);
}
.card-link-block:hover h3 {
  color: var(--accent);
}

/* FAQ body already defined; ensure multi-paragraph answers breathe */
.faq-item .faq-body p { margin: 0; }
.breadcrumbs {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-faint);
  margin: 0 0 0.45rem;
  line-height: 1.35;
  text-align: right;
}
/* In page heroes, pin crumbs to the right and keep them compact */
.page-hero .breadcrumbs {
  display: block;
  width: 100%;
  text-align: right;
  margin: 0 0 0.35rem;
  padding: 0;
}
/* Prefer one inline text run — no list markers, no stacked flex labels */
.breadcrumbs-inline,
.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumbs-inline:hover,
.breadcrumbs a:hover {
  color: var(--brand);
}
.breadcrumbs .bc-sep {
  color: var(--text-faint);
  opacity: 0.8;
  font-weight: 500;
  user-select: none;
}
.breadcrumbs .bc-current {
  color: var(--text-soft);
  font-weight: 600;
}
.breadcrumbs-trail {
  margin: 0;
  display: inline;
  line-height: 1.35;
}
@media (max-width: 520px) {
  .page-hero .breadcrumbs {
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
  }
}

/* —— Table —— */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
table.data th,
table.data td {
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.data th {
  color: var(--text-faint);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  background: var(--bg-soft);
}
table.data tr:last-child td { border-bottom: 0; }
table.data td { color: var(--text-soft); font-weight: 500; }

/* —— Prose —— */
.prose { max-width: 40rem; }
.prose--wide { max-width: 48rem; }
.prose h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin: 1.75rem 0 0.55rem;
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  color: var(--text);
}
.prose h3 {
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin: 1.25rem 0 0.4rem;
  color: var(--text);
}
.prose p, .prose li { color: var(--text-muted); font-size: 0.95rem; }
.prose ul, .prose ol { padding-left: 1.1rem; }
.prose code {
  font-size: 0.86em;
  padding: 0.1em 0.35em;
  border-radius: 5px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-soft);
}
.prose .lead-inline {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 46rem;
}
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--brand); }

/* Legal / source-of-truth docs (what-is, privacy, terms) */
.legal-doc .sot-note {
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  border-radius: 0 10px 10px 0;
  padding: 0.85rem 1.05rem;
  margin: 0 0 1.35rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.legal-doc .sot-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin: 0 0 1.5rem;
  box-shadow: var(--shadow-sm);
}
.legal-doc .sot-toc strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin-bottom: 0.45rem;
}
.legal-doc .sot-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  gap: 0.15rem 1.5rem;
}
@media (max-width: 560px) {
  .legal-doc .sot-toc ul { columns: 1; }
}
.legal-doc .sot-toc li { margin: 0; padding: 0.15rem 0; break-inside: avoid; }
.legal-doc .sot-toc a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
}
.legal-doc .sot-toc a:hover { color: var(--accent); text-decoration: underline; }
.legal-doc .table-wrap { margin: 0.85rem 0 1.1rem; }
.legal-doc .faq-list { margin-top: 0.5rem; display: grid; gap: 0.45rem; }
.muted { color: var(--text-muted); }
.gold { color: var(--text-soft); font-weight: 600; }
.stack { display: grid; gap: 0.85rem; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.85rem; }
.mb-3 { margin-bottom: 1.35rem; }
.mt-3 { margin-top: 1.35rem; }
.mt-4 { margin-top: 1.75rem; }

/* —— Footer (CDXList-hero atmosphere: deep navy + soft grid) —— */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 1rem;
  padding: 3rem 0 1.65rem;
  color: #e2e8f0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 70% 60% at 12% 0%, rgba(56, 189, 248, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 45% at 92% 100%, rgba(255, 255, 255, 0.05), transparent 50%),
    linear-gradient(165deg, #071525 0%, #0a1a2e 48%, #08101c 100%);
}
.footer-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 85% at 50% 35%, #000 15%, transparent 78%);
}
.footer-shell {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  gap: 1.85rem 1.5rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(186, 230, 253, 0.72);
  margin: 0 0 0.85rem;
  font-weight: 650;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.footer-links a {
  color: rgba(226, 232, 240, 0.72);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s var(--ease);
}
.footer-links a:hover { color: #f8fafc; }
.footer-links a.is-active {
  color: #f8fafc;
  font-weight: 650;
  box-shadow: inset 0 -2px 0 #38bdf8;
  padding-bottom: 0.05rem;
}
.footer-links a.footer-muted-link {
  color: rgba(148, 163, 184, 0.85);
}
.footer-links a.footer-muted-link:hover { color: #e2e8f0; }

.footer-brand-mark {
  position: relative;
  display: inline-flex;
  width: auto;
  height: auto;
  margin-bottom: 0.85rem;
  color: #f8fafc;
}
.footer-logo {
  display: block !important;
  width: 9.5rem;
  height: 2.25rem;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-tagline {
  margin: 0 0 0.85rem;
  max-width: 22rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.78);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(226, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: color 0.15s var(--ease), border-color 0.15s var(--ease), background 0.15s var(--ease), transform 0.15s var(--ease);
}
.footer-social a:hover {
  color: #f8fafc;
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(56, 189, 248, 0.12);
  transform: translateY(-1px);
}

/* —— Share bar —— */
.share-bar {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 0.85rem 0;
}
/* Pre-footer placement: reviews → share → footer */
.share-bar--prefooter {
  border-bottom: 0;
  margin: 0;
}
.reviews-band + .share-bar--prefooter {
  border-top: 1px solid var(--border);
}
.share-bar--prefooter + .site-footer {
  margin-top: 0;
}
.share-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  justify-content: space-between;
}
.share-bar-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.share-btn:hover {
  color: var(--text);
  border-color: color-mix(in srgb, var(--brand) 35%, var(--border));
  background: color-mix(in srgb, var(--brand) 8%, var(--surface));
}
.share-btn.is-copied {
  color: var(--success);
  border-color: color-mix(in srgb, var(--success) 40%, var(--border));
}
.share-btn span { display: none; }
@media (min-width: 560px) {
  .share-btn span { display: inline; }
}

/* —— Reviews band —— */
.reviews-band {
  /* Inherits .section-glow dual gradient; slightly stronger for this band */
  padding: 2.25rem 0 1.5rem;
  margin: 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 5rem;
  background-image:
    radial-gradient(ellipse 90% 70% at 12% 0%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 60%),
    radial-gradient(ellipse 100% 85% at 88% 100%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 62%);
}
.reviews-band > .container {
  margin-bottom: 0;
  padding-bottom: 0;
}
.reviews-head { margin-bottom: 1.1rem; }
.reviews-marquee {
  overflow: hidden;
  /* Horizontal fade only — never a vertical mask that clips the section */
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  margin: 0;
  padding: 0.15rem 0 0.35rem; /* room for card shadow inside the band */
}
.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  animation: reviews-scroll 70s linear infinite;
  padding: 0.15rem 0 0.35rem;
  margin: 0;
}
/* Pause only for real hover (mouse). Touch devices keep sticky :hover and
   used to freeze the marquee forever with no way to scroll. */
@media (hover: hover) and (pointer: fine) {
  .reviews-marquee:hover .reviews-track,
  .reviews-marquee:focus-within .reviews-track {
    animation-play-state: paused;
  }
}
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 min(20rem, 82vw);
  margin: 0;
  padding: 1.15rem 1.2rem 1.05rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.reviews-swipe-hint {
  display: none;
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

/*
 * Phone / touch: swipeable snap carousel.
 * Infinite CSS marquee + sticky hover pause left mobile users stuck.
 */
@media (max-width: 719px), (hover: none) and (pointer: coarse) {
  .reviews-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.25rem;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .reviews-marquee::-webkit-scrollbar {
    display: none;
  }
  .reviews-track {
    animation: none !important;
    transform: none !important;
    gap: 0.75rem;
    padding-inline: 0.15rem;
    width: max-content;
  }
  /* Marquee duplicates are only for seamless loop — hide on swipe UI */
  .reviews-track .review-card[aria-hidden="true"] {
    display: none;
  }
  .review-card {
    flex: 0 0 min(20rem, calc(100vw - 2.75rem));
    scroll-snap-align: center;
    scroll-snap-stop: always;
    max-width: 22rem;
  }
  .reviews-swipe-hint {
    display: block;
  }
}
.review-stars {
  display: flex;
  gap: 0.15rem;
  color: #f5c542;
  font-size: 0.9rem;
}
.review-quote {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  font-weight: 500;
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
  font-size: 0.8125rem;
}
.review-byline {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.review-shop {
  color: var(--text-faint);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
}
.review-meta strong {
  color: var(--text);
  font-weight: 700;
}
.review-tag {
  display: inline-flex;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  color: var(--text-soft);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.reviews-foot {
  margin: 1rem 0 0;
  padding: 0 0 0.15rem; /* no extra bottom gap under the gradient */
  font-size: 0.9rem;
  text-align: center;
}
.reviews-foot a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}
.reviews-foot a:hover { text-decoration: underline; }

/* Reviews → share → footer seams stay tight */
.reviews-band + .share-bar {
  margin-top: 0;
}

/* Tool cards that link out */
a.card-tool-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.15s var(--ease), border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
a.card-tool-link:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--border));
  box-shadow: var(--shadow-md, 0 8px 24px rgba(0,0,0,0.12));
}
a.card-tool-link:hover h3 { color: var(--brand); }
.card-tool-arrow {
  opacity: 0.45;
  font-weight: 700;
  margin-left: 0.15rem;
}
a.card-tool-link:hover .card-tool-arrow { opacity: 1; }
.card-tool-cta {
  display: inline-flex;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.01em;
}

/* Anchor scroll offset under sticky header */
[id] { scroll-margin-top: 5.25rem; }
.feature-detail[id] { scroll-margin-top: 5.5rem; }
.footer-contact {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(148, 163, 184, 0.9);
}
.footer-contact a {
  color: rgba(203, 213, 225, 0.88);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s var(--ease);
}
.footer-contact a:hover { color: #7dd3fc; }
.footer-bottom {
  margin-top: 2.15rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(148, 163, 184, 0.78);
  font-weight: 500;
}
.footer-bottom p { margin: 0; }
.footer-preview-note code {
  font-size: 0.78em;
  color: rgba(186, 230, 253, 0.85);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.08rem 0.35rem;
  border-radius: 4px;
}

/* —— Form —— */
.form {
  display: grid;
  gap: 0.75rem;
  max-width: 32rem;
}
.form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text-soft);
}
.form input,
.form textarea,
.form select {
  font: inherit;
  font-weight: 500;
  color: var(--text);
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0.65rem 0.8rem;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px var(--ring);
}
.form textarea { min-height: 7.5rem; resize: vertical; }
.form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 11px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}
.form-wide { max-width: none; }
.form-row {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-soft);
}
.form-check input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.form-check a { color: var(--accent); }
.form-section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin: 0.85rem 0 0.15rem;
  color: var(--text);
}
.form-hint {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}
.form-alert {
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.85rem;
}
.form-alert-warn {
  border-color: color-mix(in srgb, #f59e0b 45%, var(--border));
  background: color-mix(in srgb, #f59e0b 12%, var(--surface));
}
.form-alert-test {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
}

/* Registration layout */
.regv2-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 960px) {
  .regv2-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.75fr);
    gap: 1.5rem;
  }
}
.regv2-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 1.25rem 1.4rem;
}
.regv2-side {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 0.75rem);
}
.regv2-side-media {
  aspect-ratio: 16 / 9;
  background: #0a0a0c;
  line-height: 0;
}
.regv2-side-media video,
.regv2-side-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.regv2-side-body { padding: 1rem 1.15rem 1.2rem; }
.regv2-side-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.35rem;
}
.regv2-side-body h2 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  color: var(--text);
}
.regv2-side-body p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
#card-element {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--input-bg);
  min-height: 2.6rem;
}
.regv2-card-errors,
.payment-status {
  color: var(--danger);
  font-size: 0.875rem;
  margin-top: 0.45rem;
  font-weight: 500;
}
input.parsley-error,
select.parsley-error {
  border-color: var(--danger) !important;
}
.parsley-errors-list {
  color: var(--text-muted);
  font-size: 0.8125rem;
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
}
.password-requirements {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-size: 0.8125rem;
}
.password-requirements-title {
  margin: 0 0 0.45rem;
  font-weight: 650;
  color: var(--text-soft);
  font-size: 0.8125rem;
}
.password-checklist { margin: 0; padding: 0; list-style: none; }
.password-checklist li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.password-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  background: var(--surface);
}
.password-checklist li.met { color: var(--success); }
.password-checklist li.met::before {
  content: '✓';
  border-color: var(--success);
  background: var(--success);
  color: #052e16;
  font-size: 0.5rem;
  line-height: 0.65rem;
  text-align: center;
}
.password-checklist li.unmet { color: var(--text-muted); }

/* —— Preview banner —— */
.preview-banner {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  padding: 0.4rem 1rem;
  letter-spacing: 0.01em;
}
.preview-banner a {
  color: var(--text-soft);
  font-weight: 600;
  text-decoration: none;
}
.preview-banner a:hover { color: var(--brand); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .channel-card, .nav-desktop a { transition: none; }
  /* No auto marquee — same swipe/scroll track as mobile */
  .reviews-track {
    animation: none !important;
    transform: none !important;
  }
  .reviews-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .reviews-track .review-card[aria-hidden="true"] {
    display: none;
  }
  .review-card {
    scroll-snap-align: center;
  }
}
