:root {
  color-scheme: dark;
  --bg: #0A0E17;
  --bg-section: #0F1623;
  --bg-card: #141D2E;
  --navy: #1E3A6E;
  --navy-bright: #2952A3;
  --navy-glow: rgba(41, 82, 163, 0.15);
  --text: #E8EDF5;
  --text-muted: #6B7A99;
  --border: #1A2740;
  --white: #FFFFFF;
  --max-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
}

button,
a {
  font: inherit;
}

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

.page-shell {
  width: min(100%, 100vw - 2.5rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.01em;
  color: var(--text);
}

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-heading {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 16ch;
}

section h2 .word {
  display: inline-block;
}

.section-lead {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 17px;
}

.section-closing {
  margin-top: 2.5rem;
  font-size: 1.05rem;
  max-width: 640px;
}

.section-source {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* ---------- Buttons ---------- */

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-bright);
}

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

.btn-ghost:hover {
  border-color: var(--navy-bright);
  color: var(--white);
}

/* ---------- Sections ---------- */

.section {
  padding: 80px 0;
  background: var(--bg);
}

.section--alt {
  background: var(--bg-section);
}

@media (min-width: 768px) {
  .section {
    padding: 120px 0;
  }
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, padding 0.2s ease;
}

.nav.scrolled {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn-primary) {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 10px 22px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: 0.6rem;
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.4rem;
  height: 1.4rem;
}

/* ---------- Hero ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.hero-eyebrow {
  opacity: 0;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-line {
  display: block;
}

.hero-line.accent {
  color: var(--navy-bright);
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.hero-sub {
  color: var(--text-muted);
  max-width: 520px;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hourglass-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  perspective: 800px;
}

.counter-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--navy-glow), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.counter-glow.active {
  opacity: 1;
}

.hourglass-svg {
  width: 140px;
  height: 190px;
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}

@media (min-width: 768px) {
  .hourglass-svg {
    width: 180px;
    height: 240px;
  }
}

.hourglass-counter {
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.counter-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(60px, 8vw, 80px);
  color: var(--white);
  line-height: 1;
}

.counter-number.complete {
  color: var(--navy-bright);
}

.counter-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.counter-label.complete {
  color: var(--navy-bright);
}

.sand-particle {
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* ---------- Reveal animation hooks ---------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Problem stats ---------- */

.stat-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin: 2.5rem 0;
}

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

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  color: var(--text-muted);
}

.stat-source {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- How it works ---------- */

.steps-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
  padding-top: 3rem;
}

.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 1.25rem;
  left: 1.75rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-bright);
  letter-spacing: 0.08em;
}

.step-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-text {
  color: var(--text-muted);
}

/* ---------- Workflow diagram ---------- */

.workflow-diagram {
  max-width: 900px;
  margin: 2.5rem auto 0;
}

.workflow-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  font-family: 'DM Sans', sans-serif;
}

.workflow-line {
  fill: none;
  stroke: var(--border);
  stroke-width: 1.5;
}

.workflow-line-draw {
  fill: none;
  stroke: var(--navy-bright);
  stroke-opacity: 0.6;
  stroke-width: 1.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.workflow-tile {
  fill: var(--bg-card);
  stroke: var(--border);
  stroke-width: 1;
}

.workflow-tile-icon {
  fill: none;
  stroke: var(--text);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-node-label {
  fill: var(--text-muted);
  font-size: 13px;
  dominant-baseline: middle;
}

.workflow-input-label {
  fill: var(--text-muted);
  font-size: 12px;
  text-anchor: middle;
}

.workflow-input,
.workflow-output {
  opacity: 0;
}

.workflow-ai-node {
  fill: var(--navy);
  stroke: none;
}

.workflow-ai-pulse {
  fill: none;
  stroke: var(--navy-bright);
  stroke-width: 2;
  opacity: 0;
}

.workflow-ai-label {
  fill: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-anchor: middle;
}

.workflow-ai-node,
.workflow-ai-label {
  opacity: 0;
}

.workflow-output-tile {
  fill: var(--bg-card);
  stroke: var(--border);
  stroke-width: 1;
}

.workflow-output-tile--pulse {
  stroke: var(--navy-bright);
}

.workflow-dot {
  fill: var(--navy-bright);
  opacity: 0;
}

@media (max-width: 640px) {
  .workflow-node-label {
    font-size: 16px;
  }

  .workflow-input-label {
    font-size: 14px;
  }
}

/* ---------- Services / Pricing ---------- */

.tier-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
}

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

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
  align-content: start;
  position: relative;
}

.tier-card--popular {
  border-color: var(--navy-bright);
}

.tier-badge {
  display: inline-flex;
  width: fit-content;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
}

.tier-title {
  font-weight: 700;
  font-size: 1.5rem;
}

.tier-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--white);
}

.tier-channels {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.tier-list {
  display: grid;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tier-list li {
  list-style: none;
  position: relative;
  padding-left: 1.25rem;
}

.tier-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy-bright);
}

.tier-usage {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tier-cta {
  margin-top: 0.5rem;
  width: 100%;
}

/* ---------- Add-ons ---------- */

.addons {
  margin-top: 4rem;
}

.addons-heading {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.addons-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

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

.addon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.addon-name {
  font-weight: 500;
}

.addon-price {
  color: var(--text-muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.about-photo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  min-height: 360px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-content {
  display: grid;
  gap: 1.25rem;
}

.about-text {
  color: var(--text-muted);
  max-width: 640px;
}

/* ---------- FAQ ---------- */

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text-muted);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > p {
  overflow: hidden;
  color: var(--text-muted);
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding: 0 1.5rem 1.25rem;
}

/* ---------- Newsletter ---------- */

.newsletter-shell {
  max-width: 600px;
  text-align: center;
}

.newsletter-shell .section-lead {
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0.75rem;
  justify-content: center;
}

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

/* ---------- Forms ---------- */

.form-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  flex: 1;
  min-width: 220px;
}

.form-input:focus {
  outline: none;
  border-color: var(--navy-bright);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
  width: 100%;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
}

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

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.contact-text {
  color: var(--text-muted);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-cta {
  width: 100%;
}

.form-success {
  color: var(--text);
}

.form-error {
  color: var(--text);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.footer-copy,
.footer-email {
  color: var(--text-muted);
  font-weight: 300;
  text-decoration: none;
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

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

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ---------- Mobile nav ---------- */

@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: var(--bg);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a:not(.btn-primary) {
    font-size: 1.25rem;
    color: var(--text);
  }
}

/* ---------- Second Brain Architect ---------- */

.second-brain {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, var(--navy-glow), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

#neural-network-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.second-brain-shell {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.second-brain-eyebrow {
  color: var(--navy-bright);
}

.second-brain-heading {
  font-size: clamp(28px, 3.5vw, 40px);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.second-brain-lead {
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
}

.sb-stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 3rem 0;
  text-align: left;
}

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

.sb-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.sb-stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}

.sb-stat-label {
  color: var(--text-muted);
  line-height: 1.7;
}

.sb-what-it-is {
  margin-top: 1rem;
}

/* Phases */

.sb-phases {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin: 4rem 0;
  text-align: left;
  position: relative;
}

@media (min-width: 1024px) {
  .sb-phases {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }

  .sb-phases::before {
    content: '';
    position: absolute;
    top: 1.1rem;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--border);
    z-index: 0;
  }
}

.sb-phase {
  position: relative;
}

.sb-phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-bright);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.sb-phase-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.sb-phase-optional {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

.sb-phase-text {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
}

/* Pricing */

.sb-pricing {
  margin-top: 4rem;
  text-align: left;
}

.sb-pricing-heading {
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.sb-pricing .second-brain-lead {
  text-align: center;
  margin-bottom: 0;
}

.sb-pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
}

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

.sb-pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
  position: relative;
  transition: transform 0.25s ease;
}

.sb-pricing-card:hover {
  transform: scale(1.02);
}

.sb-pricing-card--featured {
  border-color: var(--navy-bright);
}

.sb-pricing-badge {
  display: inline-flex;
  width: fit-content;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
}

.sb-pricing-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.sb-pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
}

.sb-pricing-desc {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
}

.sb-pricing-list {
  display: grid;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.sb-pricing-list li {
  list-style: none;
  position: relative;
  padding-left: 1.25rem;
}

.sb-pricing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy-bright);
}

.sb-payment-terms {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sb-retainer {
  margin-top: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  text-align: center;
}

.sb-retainer-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.sb-retainer-text {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
}

/* CTA */

.sb-cta {
  margin-top: 4rem;
}

.sb-cta-heading {
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 1rem;
}

.sb-cta-text {
  margin-bottom: 2rem;
}

/* FAQ divider */

.faq-divider {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
