/* 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(--brand);
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  font-weight: 700;
  box-shadow: inset 0 -2px 0 var(--brand);
}
.nav-mobile a.is-active {
  color: var(--brand);
  font-weight: 700;
}

.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 */
.goto-search-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: end center;
}
.goto-search-modal[hidden] { display: none !important; }
.goto-search-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.goto-search-modal-sheet {
  position: relative;
  z-index: 1;
  width: min(32rem, 100%);
  max-height: min(88vh, 40rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px 16px 0 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.goto-search-modal-head {
  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: 2rem;
  height: 2rem;
}
.goto-search-modal-body {
  padding: 0.75rem;
  overflow: auto;
  flex: 1;
}
.goto-search-input-mobile {
  width: 100%;
  height: 2.6rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--input-bg);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  padding: 0 0.85rem;
  margin-bottom: 0.65rem;
  outline: none;
}
.goto-search-input-mobile:focus {
  border-color: var(--border-hover);
  box-shadow: 0 0 0 3px var(--ring);
}
.goto-search-results--modal .goto-search-item {
  padding: 0.75rem 0.65rem;
  border-radius: 8px;
  border-left: 0;
}
.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; }

.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);
}

.hide-sm { display: none; }

/* 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;
  }
}

@media (max-width: 919px) {
  .goto-search { display: none; }
  .goto-search-mobile-btn { display: inline-flex; }
}

/* —— 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-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.12fr 0.88fr; gap: 3rem; }
}

.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;
}
.section-alt {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-soft) 55%, transparent);
}
.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%;
}
.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 card “More” chips — button-like, not pills, not yellow */
.card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  max-width: 100%;
  padding: 0.4rem 0.65rem 0.4rem 0.7rem;
  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.78rem;
  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);
}
.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-label {
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.68rem;
  color: var(--brand);
  flex-shrink: 0;
}
.card-more:hover .card-more-label { color: var(--brand); }
.card-more-topic {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
}
.card-more:hover .card-more-topic { color: var(--text); }
.card-more i {
  flex-shrink: 0;
  font-size: 0.85rem;
  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: 0.9rem;
  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;
  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;
}
/* 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);
  background:
    radial-gradient(500px 160px at 0% 0%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 55%),
    var(--surface);
  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 {
  padding: clamp(2rem, 5vw, 3rem) 0 1rem;
}
.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.65rem;
}
.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 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-faint);
  margin-bottom: 0.85rem;
}
.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--brand); }

/* —— 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 h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin: 1.75rem 0 0.55rem;
}
.prose p, .prose li { color: var(--text-muted); font-size: 0.95rem; }
.prose ul { padding-left: 1.1rem; }
.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 —— */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 1rem;
  padding: 2.75rem 0 1.5rem;
  background: var(--bg-elevated);
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.35fr 1fr 1fr 1fr; }
}
.footer-heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}
.footer-links a:hover { color: var(--text); }
.footer-links a.is-active {
  color: var(--brand);
  font-weight: 700;
}
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); }
.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 var(--border);
  color: var(--text-soft);
  background: var(--surface);
  text-decoration: none;
  transition: color 0.15s var(--ease), border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.footer-social a:hover {
  color: var(--brand);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--border));
  background: color-mix(in srgb, var(--brand) 10%, var(--surface));
}

/* —— Share bar —— */
.share-bar {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 0.85rem 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 {
  padding: 2.5rem 0 2.75rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 50%),
    var(--bg);
  border-top: 1px solid var(--border);
  scroll-margin-top: 5rem;
}
.reviews-head { margin-bottom: 1.25rem; }
.reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: reviews-scroll 70s linear infinite;
  padding: 0.25rem 0 0.5rem;
}
.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;
}
.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-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: 1.25rem 0 0;
  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; }

/* 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 a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}
.footer-contact a:hover { color: var(--brand); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-faint);
  font-weight: 500;
}

/* —— 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 {
  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);
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px var(--ring);
}
.form textarea { min-height: 7.5rem; resize: vertical; }

/* —— 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; }
}
