:root {
  --primary: #1B6CA8;
  --primary-active: #145a8a;
  --primary-disabled: #c4d2de;
  --accent: #74D1C7;
  --accent-active: #64C4B8;
  --ink: #0B2545;
  --body: #1a3a5c;

  --muted: #4d6680;
  --muted-soft: #738da0;
  --hairline: #b8d4e0;
  --canvas: #FAFAFA;
  --surface-soft: #edf6f8;
  --surface-card: #E8F5F2;
  --surface-cream-strong: #BFE4DE;
  --surface-dark: #0B2545;
  --surface-dark-elevated: #132d4e;
  --on-primary: #FAFAFA;
  --on-dark: #FAFAFA;
  --on-dark-soft: #7a9ab8;
  --ink-border-light: rgba(11, 37, 69, 0.1);
  --on-dark-border: rgba(200, 220, 240, 0.15);
  --on-dark-border-strong: rgba(200, 220, 240, 0.3);
  --on-dark-divider: rgba(200, 220, 240, 0.1);

  --success: #1a8a5a;
  --error: #c94040;
  --on-primary-soft: #d8ecf8;

  --font-display: 'Bitter', Georgia, 'Times New Roman', serif;
  --font-body: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --rounded-sm: 6px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-pill: 9999px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: var(--on-primary);
  padding: 12px 24px;
  border-radius: var(--rounded-md);
  font-size: 14px;
  font-weight: 500;
  z-index: 200;
  text-decoration: none;
}

.skip-link:focus {
  top: 8px;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
  background: var(--canvas);
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

p {
  max-width: 65ch;
  overflow-wrap: break-word;
}

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

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TOP NAV ---- */

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 64px;
  transition: box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.5px;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.logo-prefix {
  font-weight: 400;
  color: var(--accent);
}

.logo-name {
  font-weight: 600;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

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

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

.nav-cta {
  white-space: nowrap;
}

.nav-inner .btn-secondary.nav-cta {
  font-size: 13px;
  padding: 10px 16px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  padding: 0 24px;
  flex-direction: column;
  gap: 0;
  z-index: 99;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 37, 69, 0.3);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 14px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.15s;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 50ms, 50ms, 0ms; }
.mobile-menu.open a:nth-child(2) { transition-delay: 100ms, 100ms, 0ms; }
.mobile-menu.open a:nth-child(3) { transition-delay: 150ms, 150ms, 0ms; }
.mobile-menu.open a:nth-child(4) { transition-delay: 200ms, 200ms, 0ms; }
.mobile-menu.open a:nth-child(5) { transition-delay: 250ms, 250ms, 0ms; }

/* ---- BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 20px;
  border-radius: var(--rounded-md);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
  touch-action: manipulation;
}

.btn:active {
  transform: translateY(1px) scale(0.97);
  transition-duration: 100ms;
}

.btn-primary:active {
  background: var(--primary-active);
}

.btn-secondary:active {
  background: #dde8ec;
}

.btn-on-dark:active {
  background: #0d2240;
}

.btn-cta-inverse:active {
  background: #e0edf0;
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-1px);
  }

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

  .btn-secondary:hover {
    background: var(--surface-soft);
  }

  .btn-on-dark:hover {
    background: #1a3a5e;
    border-color: rgba(200, 220, 240, 0.25);
  }

  .btn-cta-inverse:hover {
    background: var(--surface-soft);
    border-color: var(--primary);
  }

  .hero .btn-primary:hover {
    background: var(--surface-soft);
  }

  .hero .btn-secondary:hover {
    background: rgba(200, 220, 240, 0.1);
  }

  .pricing-card-featured:hover {
    border-color: rgba(92, 200, 188, 0.5);
    box-shadow: 0 12px 32px rgba(11, 37, 69, 0.1), 0 0 24px rgba(92, 200, 188, 0.12);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .vertical-card:hover {
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.08), 0 12px 32px rgba(11, 37, 69, 0.1);
  }
}

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

.btn-secondary {
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
}

.btn-on-dark {
  background: var(--surface-dark-elevated);
  color: var(--on-dark);
  border: 1px solid var(--on-dark-border);
}

.btn-cta-inverse {
  background: var(--canvas);
  color: var(--primary);
  border: 1px solid var(--ink-border-light);
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-links a:focus-visible,
.footer-col a:focus-visible,
.footer-phone:focus-visible,
.footer-alexana:focus-visible,
.footer-logo:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-lg {
  font-size: 16px;
  padding: 16px 28px;
  border-radius: var(--rounded-lg);
}

.btn-full {
  width: 100%;
}

/* ---- HERO ---- */

.hero {
  padding: 120px 0 96px;
  background: var(--primary);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 20px;
  color: var(--on-primary);
  text-shadow: 0 2px 8px rgba(11, 37, 69, 0.25);
}

.hero-sub {
  font-size: 18px;
  color: var(--on-primary-soft);
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(11, 37, 69, 0.2);
}

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

.hero .btn-primary {
  background: var(--canvas);
  color: var(--primary);
}

.hero .btn-secondary {
  background: transparent;
  color: var(--on-primary);
  border-color: var(--on-dark-border-strong);
}

.hero-note {
  font-size: 14px;
  color: var(--on-primary-soft);
  margin-top: 4px;
  text-shadow: 0 1px 3px rgba(11, 37, 69, 0.15);
}


/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 320px;
  height: 480px;
  background: var(--surface-dark);
  border-radius: 32px;
  padding: 16px 16px 12px;
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.2), 0 24px 48px rgba(11, 37, 69, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.phone-mockup::before {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background: var(--surface-dark-elevated);
  border-radius: 3px;
  margin: 0 auto 12px;
  flex-shrink: 0;
}

.phone-mockup::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  margin: 10px auto 0;
  flex-shrink: 0;
}

.phone-screen {
  background: var(--surface-dark-elevated);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  overflow: hidden;
  flex: 1;
  min-height: 0;
  box-sizing: border-box;
  position: relative;
}

.phone-screen::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 195px;
  background: linear-gradient(to bottom,
    var(--surface-dark-elevated) 0%,
    var(--surface-dark-elevated) 82%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

.call-indicator {
  position: relative;
  z-index: 3;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.pulse-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--success);
  border-radius: 50%;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border: 2px solid var(--success);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.call-label {
  position: relative;
  z-index: 3;
  font-size: 16px;
  font-weight: 500;
  color: var(--on-dark);
  margin-bottom: 4px;
}

.call-status {
  position: relative;
  z-index: 3;
  font-size: 13px;
  color: var(--success);
  font-weight: 500;
  margin-bottom: 24px;
}

.call-transcript {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.6s ease-out;
  padding-bottom: 0;
}

.transcript-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.transcript-line .speaker {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--on-dark-soft);
}

.transcript-line.agent .speaker {
  color: var(--success);
}

.transcript-line .text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--on-dark);
}

.transcript-line.caller {
  opacity: 0;
}

.phone-mockup.animate .transcript-line.caller {
  animation: transcript-appear 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.typing-indicator {
  display: flex;
  gap: 5px;
  padding: 8px 0 4px;
  opacity: 0;
}

.phone-mockup.animate .typing-indicator {
  animation: typing-show 0.3s ease forwards, typing-hide 0.3s ease forwards;
}

.typing-indicator span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--on-dark-soft);
  animation: typing-dot 1.2s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.3s;
}

.transcript-line.agent {
  opacity: 0;
}

.phone-mockup.animate .transcript-line.agent {
  animation: transcript-appear 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes transcript-appear {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes typing-show {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes typing-hide {
  from { opacity: 1; max-height: 30px; padding: 8px 0 4px; }
  to { opacity: 0; max-height: 0; padding: 0; overflow: hidden; }
}

@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ---- PROBLEM BAND ---- */

.problem-band {
  background: var(--surface-card);
  padding: 64px 0;
  position: relative;
  box-shadow: inset 0 8px 16px -8px rgba(11, 37, 69, 0.06),
              inset 0 -8px 16px -8px rgba(11, 37, 69, 0.06);
}

.problem-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(11, 37, 69, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.problem-content {
  max-width: 680px;
  margin: 0 auto;
}

.problem-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(11, 37, 69, 0.08);
}

.problem-quote strong {
  color: var(--primary);
  font-weight: 600;
}

.problem-body {
  font-size: 17px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 auto;
}

/* ---- COMPARE BAND ---- */

.compare-band {
  padding: 80px 0;
}

.compare-band h2 {
  text-align: center;
  margin-bottom: 48px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}

.compare-col {
  padding: 32px;
  border-radius: var(--rounded-lg);
}

.compare-old {
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  box-shadow: 0 1px 3px rgba(11, 37, 69, 0.05), 0 4px 12px rgba(11, 37, 69, 0.03);
  opacity: 0.85;
}

.compare-new {
  background: var(--canvas);
  border: 1px solid var(--surface-cream-strong);
  box-shadow: 0 2px 6px rgba(11, 37, 69, 0.06), 0 8px 24px rgba(11, 37, 69, 0.08);
  transform: translateY(-4px);
}

.compare-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--body);
}

.compare-col li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.compare-old li svg {
  color: var(--error);
}

.compare-new li svg {
  color: var(--primary);
}

/* ---- HOW IT WORKS ---- */

.how-it-works {
  padding: 96px 0;
  background: var(--canvas);
}

.how-it-works h2,
.who-its-for h2,
.experience-band h2,
.pricing h2,
.faq h2,
.get-started h2 {
  text-align: center;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  margin: 0 auto 56px;
  max-width: 520px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--canvas);
  border-radius: var(--rounded-lg);
  padding: 32px;
  border: 1px solid var(--hairline);
  box-shadow: 0 2px 4px rgba(11, 37, 69, 0.06), 0 8px 20px rgba(11, 37, 69, 0.06);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  border-radius: 50%;
  margin-bottom: 20px;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: calc(var(--i, 0) * 100ms + 250ms);
}

.reveal-stagger.visible .step-number {
  transform: scale(1);
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.55;
}

/* ---- DEMO BAND ---- */

.demo-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-active) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 16px rgba(92, 200, 188, 0.2);
}

.demo-band::before,
.cta-band-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(11, 37, 69, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.demo-content h2 {
  color: var(--on-primary);
  font-weight: 500;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(11, 37, 69, 0.2);
}

.demo-content p {
  color: rgba(250, 250, 250, 0.9);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.55;
  text-shadow: 0 1px 3px rgba(11, 37, 69, 0.15);
}


/* ---- WHO IT'S FOR ---- */

.who-its-for {
  padding: 80px 0;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vertical-card {
  padding: 32px;
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  background: var(--canvas);
  box-shadow: 0 2px 4px rgba(11, 37, 69, 0.06), 0 8px 20px rgba(11, 37, 69, 0.06);
  transition: border-color 0.15s, transform 0.2s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) {
  .vertical-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
  }
}

.vertical-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-md);
  margin-bottom: 16px;
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) {
  .vertical-card:hover .vertical-icon {
    transform: translateY(-2px) scale(1.08);
    background: var(--primary);
    color: var(--on-primary);
  }
}

.vertical-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.vertical-card p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.5;
}

/* ---- EXPERIENCE TIMELINE ---- */

.experience-band {
  background: var(--surface-card);
  padding: 96px 0;
  box-shadow: inset 0 8px 16px -8px rgba(11, 37, 69, 0.06),
              inset 0 -8px 16px -8px rgba(11, 37, 69, 0.06);
}

.experience-timeline {
  max-width: 680px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(to bottom, var(--hairline) 0%, var(--primary) 30%, var(--primary) 70%, var(--hairline) 100%);
}

.exp-step {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  position: relative;
}

.exp-marker {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--canvas);
  border: 2px solid var(--hairline);
  border-radius: 50%;
  color: var(--primary);
  z-index: 1;
  transition: border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.exp-step.visible .exp-marker {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 108, 168, 0.12);
  background: rgba(27, 108, 168, 0.06);
}

.exp-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.exp-content p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.55;
  font-style: italic;
}

/* ---- PRICING ---- */

.pricing {
  background: var(--surface-soft);
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-lg);
  padding: 32px;
  position: relative;
  background: var(--canvas);
  box-shadow: 0 2px 4px rgba(11, 37, 69, 0.06), 0 8px 24px rgba(11, 37, 69, 0.07);
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) {
  .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 37, 69, 0.1);
  }
}

.pricing-card-featured {
  background: var(--surface-dark);
  border: 1px solid rgba(92, 200, 188, 0.35);
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.15), 0 0 24px rgba(92, 200, 188, 0.1);
  color: var(--on-dark);
  transform: translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--rounded-pill);
  white-space: nowrap;
  animation: badge-shimmer 3s ease-in-out infinite;
}

@keyframes badge-shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; box-shadow: 0 0 8px rgba(92, 200, 188, 0.4); }
}

.pricing-header {
  margin-bottom: 28px;
}

.pricing-header h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.pricing-card-featured .pricing-header h3 {
  color: var(--on-dark);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1;
}

.pricing-card-featured .price-amount {
  color: var(--on-dark);
}

.price-period {
  font-size: 16px;
  color: var(--muted);
}

.pricing-card-featured .price-period {
  color: var(--on-dark-soft);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 15px;
  color: var(--body);
  padding-left: 24px;
  position: relative;
  line-height: 1.45;
}

.pricing-card-featured .pricing-features li {
  color: var(--on-dark-soft);
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231B6CA8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pricing-card-featured .pricing-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235CC8BC' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}


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

.faq {
  background: var(--surface-card);
  padding: 80px 0;
  box-shadow: inset 0 8px 16px -8px rgba(11, 37, 69, 0.06);
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--hairline);
}

.faq-item summary {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  touch-action: manipulation;
}

@media (hover: hover) {
  .faq-item summary:hover {
    color: var(--primary);
  }
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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

.faq-toggle {
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  line-height: 1;
  width: 24px;
  text-align: center;
  user-select: none;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-item p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  padding: 0 0 20px;
  max-width: 65ch;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              padding-bottom 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item a {
  color: var(--primary);
  font-weight: 500;
}

/* ---- CTA BAND FINAL ---- */

.cta-band-final {
  background: linear-gradient(135deg, var(--accent-active) 0%, var(--accent) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  box-shadow: 0 -4px 16px rgba(92, 200, 188, 0.15);
}

.cta-band-final h2 {
  color: var(--on-primary);
  margin-bottom: 16px;
  text-shadow: 0 1px 3px rgba(11, 37, 69, 0.2);
}

.cta-band-final p {
  color: rgba(250, 250, 250, 0.9);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.55;
  text-shadow: 0 1px 3px rgba(11, 37, 69, 0.15);
}

/* ---- FOUNDER BAND ---- */

.founder-band {
  padding: 64px 0;
  background: var(--surface-card);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  box-shadow: inset 0 8px 16px -8px rgba(11, 37, 69, 0.06),
              inset 0 -8px 16px -8px rgba(11, 37, 69, 0.06);
}

.founder-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.founder-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
  text-align: center;
}

.founder-content p {
  font-size: 17px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 auto;
}

.founder-sig {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 28px;
  padding-top: 20px;
  position: relative;
}

.founder-sig::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* ---- GET STARTED FORM ---- */

.get-started {
  padding: 96px 0;
}

.early-access-badge {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(27, 108, 168, 0.08);
  border: 1px solid rgba(27, 108, 168, 0.2);
  border-radius: var(--rounded-pill);
  padding: 8px 20px;
  display: inline-block;
  margin: -24px auto 32px;
  width: auto;
}

.form-success {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(27, 108, 168, 0.08);
  border: 1px solid rgba(27, 108, 168, 0.2);
  border-radius: var(--rounded-lg, 12px);
  padding: 28px 24px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-band-alt {
  margin-top: 20px;
  font-size: 16px;
}

.cta-band-alt a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.get-started .container {
  text-align: center;
}

.start-form {
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
  background: var(--canvas);
  padding: 40px;
  border-radius: var(--rounded-lg);
  border: 1px solid var(--hairline);
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.06), 0 16px 40px rgba(11, 37, 69, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-full {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--rounded-md);
  padding: 10px 14px;
  height: 40px;
  transition: border-color 0.2s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.2s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 108, 168, 0.12);
  transform: translateY(-1px);
  scroll-margin-top: 100px;
}

.form-group textarea {
  resize: vertical;
  height: auto;
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.form-security svg {
  flex-shrink: 0;
  color: var(--muted-soft);
}

.form-security a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--hairline);
  text-underline-offset: 2px;
  transition: color 0.15s;
}

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

.btn-submit-loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-submit-loading::after {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 2px solid var(--on-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-submit-success {
  background: var(--success);
  pointer-events: none;
}

.what-happens-next {
  max-width: 480px;
  margin: 48px auto 0;
  text-align: left;
  overflow-wrap: break-word;
}

.what-happens-next h3 {
  font-size: 20px;
  margin-bottom: 16px;
  text-align: center;
}

.what-happens-next ol {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.what-happens-next li {
  counter-increment: steps;
  font-size: 15px;
  color: var(--body);
  padding-left: 32px;
  position: relative;
  line-height: 1.5;
}

.what-happens-next li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- LEGAL PAGES ---- */

.legal-page {
  padding: 120px 0 80px;
}

.legal-page h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: clamp(20px, 2vw, 24px);
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-page h3 {
  font-size: 17px;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-page p {
  max-width: 65ch;
  margin-bottom: 16px;
}

.legal-page ul {
  max-width: 65ch;
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 8px;
  line-height: 1.55;
}

.legal-page a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--hairline);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s;
  overflow-wrap: break-word;
  word-break: break-all;
}

.legal-page a:hover {
  text-decoration-color: var(--primary);
}

/* ---- FOOTER ---- */

.site-footer {
  background: var(--surface-dark);
  border-top: 3px solid var(--accent);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.footer-logo .logo-prefix {
  font-weight: 400;
  color: var(--accent);
}

.footer-logo .logo-name {
  font-weight: 600;
  color: var(--on-dark);
}

.footer-tagline {
  font-size: 14px;
  color: var(--on-dark-soft);
  line-height: 1.5;
}

.footer-phone {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.3px;
  margin-top: 8px;
  transition: color 0.15s;
}

.footer-phone:hover {
  color: var(--accent-active);
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--on-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--on-dark-soft);
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--on-dark);
}

.footer-bottom {
  border-top: 1px solid var(--on-dark-divider);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--on-dark-soft);
}

.footer-alexana {
  color: var(--on-dark-soft);
  text-decoration: underline;
  text-decoration-color: var(--on-dark-divider);
  text-underline-offset: 2px;
  transition: color 0.15s, text-decoration-color 0.15s;
}

.footer-alexana:hover {
  color: var(--on-dark);
  text-decoration-color: var(--on-dark);
}

/* ---- STICKY MOBILE CTA ---- */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(56px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--primary);
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 12px rgba(11, 37, 69, 0.15);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-cta-link {
  color: var(--on-primary);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

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

/* ---- RESPONSIVE ---- */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .phone-mockup {
    width: 280px;
    height: 420px;
  }

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

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

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

  .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .hero .container {
    text-align: center;
  }

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

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .phone-mockup {
    height: 380px;
  }

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

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

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

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

  .pricing-card:last-child {
    max-width: none;
    grid-column: auto;
    margin: 0;
  }

  .pricing-card-featured {
    transform: none;
  }

  .compare-new {
    transform: none;
  }

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

  .start-form {
    padding: 24px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links {
    gap: 32px;
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .site-footer {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }

  .experience-timeline::before {
    left: 20px;
  }

  .hero-cta-row .btn-lg {
    font-size: 14px;
    padding: 15px 20px;
    min-height: 44px;
  }

  .problem-band, .demo-band, .cta-band-final, .founder-band {
    padding: 48px 0;
  }

  .how-it-works, .experience-band, .get-started, .who-its-for, .faq {
    padding: 64px 0;
  }

  .compare-band {
    padding: 56px 0;
  }

  .pricing {
    padding: 80px 0;
  }

  .mobile-menu {
    display: flex;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                padding 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .mobile-menu.open {
    max-height: 400px;
    padding: 16px 24px 24px;
  }

  .mobile-menu .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .mobile-menu .btn:first-of-type {
    margin-top: 8px;
  }

  .section-sub {
    margin-bottom: 32px;
  }

  .faq-item summary {
    min-height: 44px;
    padding: 16px 0;
  }

  .form-group input,
  .form-group textarea {
    min-height: 44px;
  }

  .form-group input {
    height: 44px;
  }

  .form-group textarea {
    height: auto;
    min-height: 80px;
  }

  .footer-col a,
  .footer-phone {
    padding: 10px 0;
  }

  .btn-full {
    min-height: 44px;
  }

  .cta-band-final {
    padding-bottom: 64px;
  }

  h1 {
    letter-spacing: -1px;
  }

  h2 {
    letter-spacing: -0.3px;
  }

  .price-amount {
    font-size: 40px;
  }

  .reveal {
    transform: translateY(16px);
  }

  .reveal-stagger > * {
    transform: translateY(12px);
    transition-delay: calc(var(--i, 0) * 75ms);
  }

  .exp-marker {
    transform: scale(0.8);
    opacity: 0.5;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .exp-step.visible .exp-marker {
    transform: scale(1);
    opacity: 1;
  }

  .legal-page {
    padding: 80px 0 48px;
  }

  .step-card p,
  .exp-content p,
  .vertical-card p,
  .compare-col li,
  .faq-item p,
  .problem-body,
  .legal-page p,
  .legal-page li {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .who-its-for h2 {
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-row .btn-lg {
    font-size: 13px;
    padding: 14px 16px;
    text-align: center;
    justify-content: center;
    gap: 8px;
  }

  .phone-mockup {
    width: 100%;
    max-width: 280px;
    height: 380px;
  }

  .start-form {
    padding: 20px 16px;
  }

  .early-access-badge {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .container {
    padding: 0 16px;
  }
}

@media (max-width: 360px) {
  .hero-cta-row .btn-lg {
    font-size: 12px;
    padding: 12px 12px;
    gap: 6px;
  }

  .hero-cta-row .btn-lg svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }
}

/* ---- SCROLL REVEAL ---- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* ---- STAGGERED REVEALS ---- */

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: calc(var(--i, 0) * 100ms);
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---- NAV SCROLL STATE ---- */

.top-nav.scrolled {
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(11, 37, 69, 0.08);
  border-bottom-color: transparent;
}

/* ---- SCROLL-DRIVEN OVERDRIVE ---- */

.experience-timeline::before {
  transform-origin: top;
  transform: scaleY(0);
}

.experience-timeline.line-grown::before {
  transform: scaleY(1);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

@supports (animation-timeline: scroll()) {
  .phone-mockup {
    animation: phone-parallax linear both;
    animation-timeline: scroll(root);
    animation-range: 0px 700px;
  }

  @keyframes phone-parallax {
    from { transform: translateY(0); }
    to { transform: translateY(-50px); }
  }

  .experience-timeline::before {
    transform-origin: top;
    transform: scaleY(0);
    animation: line-grow linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 70%;
  }

  @keyframes line-grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary);
  z-index: 101;
  transition: none;
}

@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: progress-fill linear both;
    animation-timeline: scroll(root);
  }

  @keyframes progress-fill {
    from { width: 0%; }
    to { width: 100%; }
  }
}

/* ---- REDUCED MOTION ---- */

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

  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .step-number {
    transform: scale(1) !important;
  }

  .transcript-line.caller,
  .transcript-line.agent,
  .typing-indicator {
    opacity: 1 !important;
  }

  .pricing-badge {
    animation: none;
  }

  .scroll-progress {
    display: none;
  }

  .sticky-cta {
    transition: none;
  }

  .mobile-menu,
  .mobile-menu a {
    transition: none;
  }

  .exp-marker {
    transform: scale(1) !important;
    opacity: 1 !important;
  }
}

/* ---- PRINT ---- */

@media print {
  .top-nav, .mobile-menu, .mobile-menu-backdrop,
  .sticky-cta, .scroll-progress, .phone-mockup {
    display: none !important;
  }

  .hero, .demo-band, .cta-band-final {
    background: white !important;
    color: var(--ink) !important;
    box-shadow: none !important;
  }

  .hero-content h1, .demo-content h2, .cta-band-final h2 {
    color: var(--ink) !important;
    text-shadow: none !important;
  }

  .hero-sub, .demo-content p, .cta-band-final p {
    color: var(--body) !important;
    text-shadow: none !important;
  }

  .site-footer {
    background: white !important;
    color: var(--ink) !important;
  }

  .pricing-card-featured {
    background: white !important;
    color: var(--ink) !important;
    border: 2px solid var(--ink) !important;
  }

  .pricing-card-featured h3,
  .pricing-card-featured .price-amount {
    color: var(--ink) !important;
  }

  .pricing-card-featured .pricing-features li,
  .pricing-card-featured .price-period {
    color: var(--body) !important;
  }

  body { font-size: 12pt; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: var(--muted); }
  .btn::after { display: none; }
}
