/**
 * MusicReference marketing — LyraDisplay product page styles
 * Dark-first marine cockpit palette
 */

:root {
  --bg: #0b1220;
  --bg-elevated: #111827;
  --card: #1e293b;
  --surface: #273549;
  --text: #e5e7eb;
  --text-muted: #94a3b8;
  --label: #cbd5e1;
  --border: #334155;
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-soft: rgba(59, 130, 246, 0.14);
  --success: #4ade80;
  --warn: #fbbf24;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --max: 1080px;
  --header-h: 64px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-hover);
}

/* —— Layout —— */
.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}

.section-head h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* —— Site nav (LyraDisplay product pattern) —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
}

.site-nav-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  flex-shrink: 0;
  text-decoration: none;
}

.site-brand:hover {
  color: inherit;
}

.site-brand img,
.brand-mark img {
  width: 22px;
  height: 22px;
  display: block;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(145deg, #1e40af, #3b82f6);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
  flex-shrink: 0;
}

.product-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.product-brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: #f8fafc;
}

.product-brand-by {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.site-nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.75rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.site-nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  flex: 1;
  min-width: 0;
}

.site-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.site-nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 0;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav-links a:hover,
.site-nav-links a.is-active {
  color: #f8fafc;
}

.site-nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-demo {
  background: var(--primary);
  color: #fff !important;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.btn-demo:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff !important;
}

.btn-pricing {
  background: transparent;
  color: var(--label) !important;
  border-color: var(--border);
}

.btn-pricing:hover {
  background: var(--surface);
  color: #fff !important;
  border-color: #475569;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Mobile: toggle + dropdown panel under the bar */
@media (max-width: 900px) {
  .site-nav-toggle {
    display: inline-flex;
  }

  .site-nav-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem 1rem 1.1rem;
    background: color-mix(in srgb, var(--bg) 97%, transparent);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  }

  .site-nav.is-open .site-nav-menu {
    display: flex;
  }

  .site-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav-links a {
    display: block;
    padding: 0.7rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  }

  .site-nav-ctas {
    flex-direction: column;
    width: 100%;
  }

  .site-nav-ctas .nav-btn {
    width: 100%;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.5rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.28);
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  border-color: var(--primary-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--label);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--surface);
  color: #fff;
  border-color: #475569;
}

.btn-lg {
  min-height: 2.85rem;
  padding: 0.6rem 1.35rem;
  font-size: 0.95rem;
}

/* —— Hero —— */
.hero {
  padding: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% 20% auto -10%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.16), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 3.8vw, 2.55rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 70%, transparent);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.chip-accent {
  border-color: color-mix(in srgb, var(--primary) 45%, var(--border));
  color: #93c5fd;
  background: var(--primary-soft);
}

/* —— Mock product frame —— */
.mock-frame {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-elevated) 80%, var(--card));
}

.mock-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #475569;
}

.mock-dot:nth-child(1) {
  background: #f87171;
}
.mock-dot:nth-child(2) {
  background: #fbbf24;
}
.mock-dot:nth-child(3) {
  background: #4ade80;
}

.mock-titlebar-label {
  margin-left: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mock-body {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-score {
  text-align: center;
  padding: 0.55rem;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--border));
}

.mock-score-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #93c5fd;
}

.mock-score-value {
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.mock-duel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem;
  align-items: stretch;
}

.mock-vs {
  align-self: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.mock-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem;
  min-width: 0;
}

.mock-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.mock-badge-reference {
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
}

.mock-badge-song,
.mock-badge-new {
  background: rgba(74, 222, 128, 0.14);
  color: #86efac;
}

.mock-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-card-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.mock-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

/* Compare mock: breakdown sits under both song cards (one score, varied bars) */
.mock-metrics-compare {
  margin-top: 0.15rem;
  padding: 0.55rem 0.6rem;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--border);
}

.mock-metric {
  display: grid;
  grid-template-columns: 5.25rem 1fr 2rem;
  gap: 0.3rem;
  align-items: center;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.mock-bar {
  height: 0.35rem;
  border-radius: 999px;
  background: #1e293b;
  overflow: hidden;
}

.mock-bar > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.mock-metric-pct {
  text-align: right;
  font-weight: 700;
  color: #e2e8f0;
  font-variant-numeric: tabular-nums;
}

.mock-footer {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  padding-top: 0.15rem;
}

/* Built-for strip */
.built-for {
  padding: 0 0 3rem;
}

.built-for-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--card) 55%, transparent);
}

.built-for-label {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.feature-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 8px;
  background: var(--primary-soft);
  color: #93c5fd;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Action blocks */
.action-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.action-block {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.action-block.reverse {
  grid-template-columns: 0.9fr 1.2fr;
}

.action-block.reverse .action-copy {
  order: 2;
}

.action-block.reverse .action-visual {
  order: 1;
}

.action-copy h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.action-copy > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.action-copy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.action-copy li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--label);
}

.action-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
}

.action-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  min-height: 9rem;
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
}

.mini-row strong {
  color: #f1f5f9;
  font-weight: 600;
}

.mini-pct {
  font-weight: 800;
  color: #86efac;
  font-variant-numeric: tabular-nums;
}

.mini-pct.is-mid {
  color: #fbbf24;
}

.stereo-mock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}

.stereo-cell {
  aspect-ratio: 1.2;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
}

.stereo-cell.filled {
  background: var(--primary-soft);
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
  color: #93c5fd;
}

.stereo-cell.span {
  grid-column: 1 / -1;
  aspect-ratio: auto;
  min-height: 1.6rem;
  background: color-mix(in srgb, #a78bfa 18%, var(--card));
  border-color: color-mix(in srgb, #a78bfa 40%, var(--border));
  color: #c4b5fd;
}

.map-mock {
  display: grid;
  place-items: center;
  min-height: 8.5rem;
  position: relative;
}

.map-node {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.map-node.n2 {
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

.map-line {
  position: absolute;
  height: 1px;
  background: color-mix(in srgb, var(--primary) 45%, transparent);
  transform-origin: left center;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem;
  position: relative;
}

.step-num {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.35rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Access / pricing cards */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.access-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
}

.access-card.featured {
  border-color: color-mix(in srgb, var(--primary) 50%, var(--border));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary) 25%, transparent);
}

.access-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: #93c5fd;
  margin-bottom: 0.65rem;
}

.access-card h3 {
  font-size: 1.15rem;
  color: #f8fafc;
  margin-bottom: 0.25rem;
}

.access-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.access-price span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.access-card ul {
  list-style: none;
  flex: 1;
  margin-bottom: 1.15rem;
}

.access-card li {
  font-size: 0.9rem;
  color: var(--label);
  padding: 0.3rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.access-card li:last-child {
  border-bottom: none;
}

/* Requirements table */
.req-table {
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.92rem;
}

.req-table th,
.req-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.req-table tr:last-child th,
.req-table tr:last-child td {
  border-bottom: none;
}

.req-table th {
  width: 38%;
  color: var(--text-muted);
  font-weight: 600;
  background: color-mix(in srgb, var(--surface) 50%, var(--card));
}

.req-table td {
  color: var(--label);
}

/* FAQ */
.faq-list {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1.1rem;
  font-weight: 650;
  color: #f1f5f9;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-weight: 700;
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

.faq-item p {
  padding: 0 1.1rem 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

.faq-more {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Inner pages */
.page-hero {
  padding: 3rem 0 1.5rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f8fafc;
  margin-bottom: 0.75rem;
}

.page-hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto;
}

.page-hero-lead a {
  font-weight: 600;
}

.narrow {
  max-width: 42rem;
  margin-inline: auto;
}

.feature-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.section-more {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.section-more a {
  font-weight: 600;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.audience-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}

.audience-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.audience-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.access-blurb {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: -0.35rem 0 1rem;
}

.steps-compact {
  margin-bottom: 2rem;
}

.faq-list-full .faq-item summary {
  font-size: 1rem;
}

/* Final CTA */
.cta-band {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.18), transparent 60%),
    var(--card);
}

.cta-band-compact {
  padding: 2.5rem 1.25rem;
  margin-top: 1rem;
}

.cta-band h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: #f8fafc;
  margin-bottom: 0.55rem;
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 28rem;
  margin-inline: auto;
}

.cta-band .hero-ctas {
  justify-content: center;
  margin-bottom: 0;
}

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

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  font-weight: 700;
  color: #f8fafc;
  font-size: 1rem;
}

.footer-brand span {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-tag {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding-top: 1.15rem;
  border-top: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-inner a {
  color: var(--text-muted);
  font-weight: 600;
}

.footer-inner a:hover {
  color: #fff;
}

/* Sections with alt bg */
.section-alt {
  background: color-mix(in srgb, var(--bg-elevated) 65%, var(--bg));
  border-block: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-grid,
  .feature-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .action-block,
  .action-block.reverse {
    grid-template-columns: 1fr;
  }

  .action-block.reverse .action-copy,
  .action-block.reverse .action-visual {
    order: unset;
  }
}

@media (max-width: 640px) {
  .feature-grid,
  .feature-grid.cols-2,
  .steps,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .mock-duel {
    grid-template-columns: 1fr;
  }

  .mock-vs {
    text-align: center;
  }

  .section {
    padding: 3.25rem 0;
  }
}

/* Demo landing */
.demo-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.demo-card {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.16), transparent 55%),
    var(--card);
}

.demo-card h1 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: #f8fafc;
  margin: 0.75rem 0 0.65rem;
  letter-spacing: -0.02em;
}

.demo-card p {
  color: var(--text-muted);
  margin: 0 0 1.35rem;
  line-height: 1.55;
}

.demo-card .hero-ctas {
  justify-content: center;
  margin-bottom: 1rem;
}

.demo-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
