/* SummarizAI marketing landing — dark-first, SF Pro stack */
:root {
  --brand-1: #ff9a29;
  --brand-2: #fb651e;
  --brand-3: #e5461c;
  --bg: #0b0b0e;
  --bg-elevated: #131318;
  --surface: #1a1a21;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f5f7;
  --muted: rgba(245, 245, 247, 0.62);
  --muted-2: rgba(245, 245, 247, 0.42);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --max: 1120px;
  --nav-h: 80px;
  --focus-ring: 0 0 0 4px rgba(251, 101, 30, 0.35);
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', system-ui,
    'Helvetica Neue', sans-serif;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 8px;
}

.wrap {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

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

/* Checkout banners */
.global-banner {
  position: sticky;
  top: var(--banner-offset, 0);
  z-index: 59;
  padding: 14px 24px;
  text-align: center;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.global-banner--success {
  background: rgba(48, 209, 88, 0.12);
  color: #34c759;
}

.global-banner--warn {
  background: rgba(251, 101, 30, 0.15);
  color: var(--brand-1);
}

.global-banner button.dismiss {
  margin-left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 13px;
}

.global-banner[hidden] {
  display: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  transition: background 0.28s ease, backdrop-filter 0.28s ease, padding 0.28s ease,
    border-color 0.28s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(11, 11, 14, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo span {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, filter 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible {
  box-shadow: var(--focus-ring);
}

.btn-store {
  background: linear-gradient(180deg, var(--brand-1), var(--brand-2));
  color: #fff;
}

.btn-store:hover {
  filter: brightness(1.06);
}

.btn-store[aria-disabled='true'] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background: #fff;
  color: #111;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  padding: calc(var(--nav-h) + 24px) 32px 32px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 12px 0;
}

.mobile-menu .btn-store {
  margin-top: 16px;
  align-self: flex-start;
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin: 0 0 12px;
}

.section-title {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 16px;
}

.section-desc {
  margin: 0 0 40px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 18px;
}

/* Hero */
.hero {
  padding: 56px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 55% at 50% -30%, rgba(251, 101, 30, 0.38), transparent 58%),
    radial-gradient(ellipse 45% 35% at 100% 40%, rgba(255, 154, 41, 0.12), transparent),
    radial-gradient(ellipse 40% 28% at 0% 85%, rgba(229, 70, 28, 0.14), transparent),
    linear-gradient(180deg, #14141c 0%, var(--bg) 72%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.11;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 72% 58% at 50% 28%, black, transparent);
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-video {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.hero-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0a0e;
  box-shadow: 0 40px 80px -48px rgba(0, 0, 0, 0.85);
}

.hero-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero-inner--centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-inner--centered .hero-lead {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.hero-inner--centered .hero-cta-row {
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-layout {
    gap: 48px;
  }
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-1);
  margin: 0 0 16px;
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.06;
  margin: 0 0 20px;
}

.hero-lead {
  margin: 0 0 32px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 44ch;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-proof {
  font-size: 14px;
  color: var(--muted-2);
}

/* Hero visual mock */
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), transparent 42%), var(--surface);
  padding: 14px;
  box-shadow: 0 40px 80px -48px rgba(0, 0, 0, 0.85);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-visual-glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(
      135deg,
      rgba(251, 101, 30, 0.35),
      transparent 42%,
      rgba(255, 154, 41, 0.18)
    );
    opacity: 0.55;
    pointer-events: none;
    animation: glow-shift 10s ease-in-out infinite;
  }

  @keyframes glow-shift {
    0%,
    100% {
      opacity: 0.45;
    }

    50% {
      opacity: 0.7;
    }
  }
}

.mock-yt-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin-bottom: 10px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.mock-yt-bar {
  flex: 1;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.mock-stage {
  display: grid;
  grid-template-columns: 1fr minmax(140px, 34%);
  gap: 10px;
  min-height: 200px;
}

@media (max-width: 520px) {
  .mock-stage {
    grid-template-columns: 1fr;
  }
}

.mock-player {
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65)),
    linear-gradient(145deg, #22222d, #121218);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.mock-player-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  opacity: 0.35;
}

.mock-progress {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.mock-progress::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  border-radius: 2px;
  background: var(--brand-2);
}

.mock-sidebar {
  border-radius: var(--radius-md);
  border: 1px solid rgba(251, 101, 30, 0.35);
  background: rgba(11, 11, 14, 0.92);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-sidebar-cap {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-1);
}

.mock-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mock-chip {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--muted);
}

.mock-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.mock-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
}

.mock-line.short {
  width: 72%;
}

.mock-ts {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-2);
}

/* Logo strip */
.logo-strip {
  border-block: 1px solid var(--border);
  padding: 28px 0;
  background: rgba(255, 255, 255, 0.02);
}

.logo-strip p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.logo-strip-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 16px;
  font-size: 15px;
  color: var(--muted);
}

/* Pain grid */
.pain-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}

.pain-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.pain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.pain-close {
  margin-top: 40px;
  text-align: center;
  font-size: 18px;
  color: var(--text);
}

/* Solution snapshot */
.snapshot {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 48px;
  background:
    linear-gradient(145deg, rgba(251, 101, 30, 0.07), transparent 45%),
    var(--surface);
}

.snapshot-inner {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .snapshot-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.snapshot-demo .mock-stage {
  min-height: 180px;
}

/* Bento */
.bento {
  display: grid;
  gap: 14px;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(120px, auto);
  }

  .bento .tile.span-2 {
    grid-column: span 2;
  }

  .bento .tile.tall {
    grid-row: span 2;
  }
}

.tile {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.2s, transform 0.2s;
}

.tile:hover {
  border-color: rgba(251, 101, 30, 0.35);
  transform: translateY(-2px);
}

.tile-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-2);
  margin-bottom: 12px;
}

.tile h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.tile p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

/* Five-tab strip (homepage) */
.tabs-strip {
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .tabs-strip {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  .tabs-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tab-card {
  padding: 22px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
}

.tab-card:hover {
  border-color: rgba(251, 101, 30, 0.35);
  transform: translateY(-2px);
}

.tab-card-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 8px;
}

.tab-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.25;
}

.tab-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

/* Personas */
.personas {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .personas {
    grid-template-columns: repeat(3, 1fr);
  }
}

.persona-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}

.persona-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: 8px;
}

.persona-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.persona-card p {
  margin: 0;
  color: var(--muted);
}

/* Before / after */
.before-after {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
  .ba-row {
    grid-template-columns: 1fr;
  }
}

.ba-cell {
  padding: 22px 24px;
  font-size: 16px;
}

.ba-cell.before {
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  border-right: 1px solid var(--border);
}

.ba-cell.after {
  background: rgba(251, 101, 30, 0.08);
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 640px) {
  .ba-cell.before {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* Steps */
.steps {
  display: grid;
  gap: 24px;
  counter-reset: step;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(251, 101, 30, 0.22);
  margin-bottom: 8px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

/* Demo strip */
.demo-strip {
  padding: 56px 0;
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--border);
}

.demo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.demo-chip {
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.demo-chip strong {
  color: var(--brand-1);
}

/* Comparison table */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
}

.compare-table td {
  color: var(--muted);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .highlight {
  color: var(--text);
  font-weight: 600;
}

.compare-footnote {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted-2);
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(251, 101, 30, 0.5);
  box-shadow: 0 0 0 1px rgba(251, 101, 30, 0.12), 0 32px 64px -40px rgba(251, 101, 30, 0.45);
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-1);
}

.price-tier {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.price-amount {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 8px 0 4px;
}

.price-amount small {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}

.price-was {
  font-size: 14px;
  color: var(--muted-2);
  text-decoration: line-through;
  margin-bottom: 8px;
  min-height: 1.25em;
}

.price-save {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-1);
  margin-bottom: 16px;
  min-height: 1.25em;
}

.price-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--muted);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features strong {
  color: var(--text);
}

.price-card .btn {
  width: 100%;
}

.price-trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  font-size: 14px;
  color: var(--muted-2);
}

.price-error {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  color: var(--muted);
}

.price-error a {
  color: var(--brand-1);
  text-decoration: underline;
}

/* Quota nudge */
.quota-nudge {
  margin-bottom: 28px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(251, 101, 30, 0.35);
  background: rgba(251, 101, 30, 0.08);
  font-size: 15px;
}

.quota-nudge[hidden] {
  display: none;
}

.quota-nudge strong {
  color: var(--brand-1);
}

/* Quotes */
.quotes-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .quotes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}

.quote-card blockquote {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}

.quote-meta {
  font-size: 14px;
  color: var(--muted);
}

/* Objections */
.obj-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .obj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.obj-tile {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.obj-tile h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.obj-tile p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--muted);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
}

/* Final CTA */
.cta-band {
  text-align: center;
  padding: 120px 0;
  position: relative;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 18% 12%;
  background: radial-gradient(ellipse, rgba(251, 101, 30, 0.22), transparent 72%);
  z-index: -1;
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-band > .wrap > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--text);
}

/* Mobile sticky bar */
.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 48;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(11, 11, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: none;
  gap: 10px;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

@media (max-width: 899px) {
  .mobile-sticky {
    display: flex;
  }

  body {
    padding-bottom: 88px;
  }
}

.mobile-sticky.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.mobile-sticky .btn {
  flex: 1;
  min-height: 48px;
}

.store-hint {
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 8px;
}

.store-hint[hidden] {
  display: none;
}
