/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */

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

:root {
  /* Obsidian Palette */
  --black:        #0A0A0A;
  --black-deep:   #060606;
  --charcoal:     #2C2C2C;
  --butter:       #FAF6EE;
  --purple:       #7000FF;
  --purple-hover: #5a00cc;
  --purple-light: rgba(112,0,255,0.12);
  --purple-glow:  rgba(112,0,255,0.4);

  /* Status colours — unchanged */
  --green:  #10b981;
  --amber:  #f59e0b;
  --red:    #ef4444;

  /* Neutrals */
  --white:      #ffffff;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-300:   #d1d5db;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-600:   #4b5563;
  --gray-700:   #374151;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.14);
  --shadow:    0 4px 24px rgba(0,0,0,0.14);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.22);
  --shadow-xl: 0 24px 80px rgba(0,0,0,0.30);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* prevent horizontal bleed from off-screen animations */
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Utility colour classes */
.text-purple { color: var(--purple); }
.text-red    { color: var(--red); }
.text-green  { color: var(--green); }
.text-amber  { color: var(--amber); }

/* ─── NAV ─────────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}

.nav.scrolled {
  background: rgba(10,10,10,0.99);
  border-bottom-color: rgba(112,0,255,0.18);
}

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

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-get {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-geri {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.5px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-links .nav-login {
  color: rgba(255,255,255,0.6) !important;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 16px;
  border-radius: 8px;
  transition: color 0.2s, border-color 0.2s !important;
}

.nav-links .nav-login:hover {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.35);
}

.nav-links .nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}

.nav-links .nav-cta:hover {
  background: var(--purple-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(112,0,255,0.35);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.99);
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid rgba(112,0,255,0.15);
}

.nav-mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-mobile-menu .nav-cta {
  color: var(--purple) !important;
  font-weight: 700;
  border-bottom: none;
  margin-top: 8px;
}

.nav-mobile-menu.open {
  display: flex;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--purple-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(112,0,255,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.28);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-full   { width: 100%; }

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* ─── SECTION TYPOGRAPHY ─────────────────────────────────────────────────── */

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* ─── SCROLL ANIMATIONS ───────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: 0.3s;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-feature {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ─── HERO ────────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

/* ─── HERO 2-COLUMN LAYOUT ─────────────────────────────────────────────────── */

.hero-layout {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text-col {
  text-align: left;
}

.hero-text-col .hero-badge {
  display: inline-flex;
}

.hero-text-col .hero-sub {
  margin-left: 0;
  margin-right: 0;
  max-width: 520px;
}

.hero-text-col .hero-actions {
  justify-content: flex-start;
}

.hero-text-col .hero-trust {
  align-items: flex-start;
}

.hero-text-col .hero-microcopy {
  text-align: left;
}

.hero-visual-col {
  position: relative;
}

.hero-visual-col .screenshot-frame {
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(112,0,255,0.15) 0%, transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Hero screenshot no longer a standalone block — kept for any legacy styles */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(112,0,255,0.1);
  border: 1px solid rgba(112,0,255,0.25);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.trust-dots {
  display: flex;
  gap: 6px;
}

.trust-dots span {
  width: 28px;
  height: 28px;
  background: rgba(112,0,255,0.12);
  border-radius: 50%;
  border: 2px solid rgba(112,0,255,0.2);
}

/* ─── HERO SCREENSHOT ─────────────────────────────────────────────────────── */

.hero-screenshot {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 24px;
}

.screenshot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(112,0,255,0.15);
}

.screenshot-bar {
  background: rgba(0,0,0,0.5);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red   { background: #ff5f57; }
.dot.amber { background: #febc2e; }
.dot.green { background: #28c840; }

.url-bar {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin: 0 8px;
}

/* Screenshot content — column layout: app-header-bar then flex row below */
.screenshot-content {
  display: flex;
  flex-direction: column;
}

/* Purple app header bar inside the browser chrome */
.app-header-bar {
  background: linear-gradient(to right, #0A0A0A, #12003a);
  border-bottom: 1px solid rgba(112,0,255,0.35);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.app-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-logo-get  { font-size: 0.95rem; font-weight: 800; color: var(--white); }
.app-logo-geri { font-size: 0.95rem; font-weight: 800; color: var(--purple); }

.app-header-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.15);
  margin: 0 4px;
}

.app-studio-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.app-studio-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(112,0,255,0.8);
}

.app-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-badge {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  padding: 3px 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  white-space: nowrap;
}

.app-badge .badge-indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse-dot 2s ease infinite;
}

.app-ai-pill {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--purple);
  background: rgba(112,0,255,0.12);
  border: 1px solid rgba(112,0,255,0.3);
  border-radius: 100px;
  padding: 3px 10px;
}

/* App body: sidebar + main row */
.app-body {
  display: flex;
  height: 340px;
}

/* Mock UI Elements */
.mock-sidebar {
  width: 180px;
  background: rgba(0,0,0,0.35);
  border-right: 1px solid rgba(112,0,255,0.1);
  padding: 16px 0;
  flex-shrink: 0;
}

.mock-nav-item {
  padding: 10px 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: 0.15s;
}

.mock-nav-item.active {
  color: var(--white);
  background: rgba(112,0,255,0.18);
  border-right: 2px solid var(--purple);
  font-weight: 600;
}

.mock-main {
  flex: 1;
  background: #111111;
  padding: 20px;
  overflow: hidden;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mock-greeting {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.mock-ai-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 3px 10px;
  border-radius: 100px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.mock-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-num.purple { color: var(--purple); }
.stat-num.green  { color: var(--green); }

.stat-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.38);
  margin-top: 3px;
}

.mock-pipeline {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

.pipeline-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pipeline-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pipeline-bar {
  background: rgba(112,0,255,0.25);
  border-radius: 3px;
  padding: 4px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: width 1s ease;
}

.pipeline-bar span {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
}

.pipeline-bar b {
  font-size: 0.65rem;
  color: var(--white);
}

.mock-activity {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
}

.activity-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.activity-dot.ai {
  background: var(--purple);
}

.activity-item b {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* ─── PAIN SECTION ───────────────────────────────────────────────────────── */

.pain {
  background: var(--butter);
  padding: 120px 0;
}

.pain .section-headline { color: var(--charcoal); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.pain-card {
  background: var(--white);
  border: 1px solid rgba(44,44,44,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pain-card:hover {
  border-color: rgba(112,0,255,0.3);
  box-shadow: 0 4px 20px rgba(112,0,255,0.07);
  transform: translateY(-2px);
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.pain-fix {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(112,0,255,0.07);
  border-left: 3px solid var(--purple);
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple);
  line-height: 1.5;
}

.pain-cta {
  text-align: center;
}

.pain-cta-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
}

/* ─── VALUE STACK ───────────────────────────────────────────────────────────── */

.value-stack {
  background: var(--black);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.value-stack::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(112,0,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.value-stack .section-label { color: var(--purple); }
.value-stack .section-headline { color: var(--butter); }
.value-stack .section-sub { color: var(--gray-400); }

/* Hero "Buy back your time" card */
.vs-hero-card {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(112,0,255,0.25);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.vs-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(112,0,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.vs-hero-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.vs-hero-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--butter);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.vs-hero-content p {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 36px;
}

.vs-time-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.vs-time-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vts-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: -0.03em;
  line-height: 1;
}

.vts-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
  max-width: 160px;
  line-height: 1.4;
}

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

.vs-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s;
}

.vs-card:hover {
  border-color: rgba(112,0,255,0.35);
  transform: translateY(-3px);
}

.vs-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  line-height: 1;
}

.vs-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--butter);
  margin-bottom: 10px;
  line-height: 1.35;
}

.vs-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* Pricing guarantee block */
.pricing-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

.guarantee-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Trial section direct CTA */
.trial-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trial-direct-btn {
  display: inline-block;
  margin-top: 24px;
  font-size: 1rem;
  padding: 14px 28px;
}

.trial-direct-note {
  margin-top: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── TRANSITION BLOCK ─────────────────────────────────────────────────────── */

.transition-block {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.transition-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(112,0,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.transition-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.transition-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.transition-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ─── FEATURES ────────────────────────────────────────────────────────────── */

.features {
  background: var(--white);
  padding: 120px 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 12px;
}

.feature-copy h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.feature-copy p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Screen Mockups */
.screen-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.screen-mockup.dark {
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,0.07);
}

.screen-mockup.light {
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.screen-bar {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dark-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.screen-body {
  padding: 20px;
}

.light-body {
  background: var(--gray-50);
}

/* Chat UI */
.chat-ui {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-msg {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 85%;
}

.chat-msg.lead {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  align-self: flex-start;
}

.chat-msg.ai {
  background: rgba(112,0,255,0.15);
  color: rgba(255,255,255,0.9);
  align-self: flex-end;
  border: 1px solid rgba(112,0,255,0.2);
}

.chat-meta {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.28);
}

.chat-meta.lead-meta { align-self: flex-start; }
.chat-meta.ai-meta   { align-self: flex-end; }

.chat-badge {
  align-self: center;
  background: rgba(16,185,129,0.15);
  color: var(--green);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  margin-top: 4px;
}

/* CRM UI */
.crm-ui {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.crm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.crm-count {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

.crm-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  align-items: center;
}

.crm-row.header-row {
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.6rem;
  padding-bottom: 4px;
}

.crm-row:not(.header-row) {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
}

.crm-row.overdue-row {
  border-color: rgba(239,68,68,0.2);
  background: rgba(239,68,68,0.05);
}

.crm-name   { color: rgba(255,255,255,0.85); font-weight: 600; }
.crm-source { color: rgba(255,255,255,0.38); }
.crm-date   { color: rgba(255,255,255,0.38); }
.overdue-text { color: var(--red) !important; }

.status-pill {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  display: inline-block;
}

.status-pill.trial     { background: rgba(245,158,11,0.2);   color: var(--amber); }
.status-pill.follow    { background: rgba(99,102,241,0.2);   color: #818cf8; }
.status-pill.contacted { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.45); }
.status-pill.member    { background: rgba(16,185,129,0.2);   color: var(--green); }
.status-pill.new       { background: rgba(37,99,235,0.2);    color: #3b82f6; }

/* Ads UI */
.ads-ui {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ads-header {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.ads-row {
  display: grid;
  grid-template-columns: 2fr 0.6fr 0.6fr 0.8fr 0.8fr;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  align-items: center;
  color: rgba(255,255,255,0.65);
}

.ads-thead {
  color: rgba(255,255,255,0.28);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ads-row:not(.ads-thead) {
  background: rgba(255,255,255,0.04);
}

.ad-name { color: rgba(255,255,255,0.85); font-weight: 500; }

.best-row { border: 1px solid rgba(16,185,129,0.2) !important; background: rgba(16,185,129,0.05) !important; }
.poor-row { border: 1px solid rgba(239,68,68,0.15) !important; }

.ads-insight {
  background: rgba(245,158,11,0.07);
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* Coach UI */
.coach-ui {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coach-header {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.coach-q {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

.coach-a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.coach-avatar {
  width: 28px;
  height: 28px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.coach-response { flex: 1; }

.coach-response p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin-bottom: 6px;
}

.coach-response strong { color: rgba(255,255,255,0.95); }

.coach-stats-row {
  display: flex;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin: 4px 0;
}

.coach-stats-row b { color: rgba(255,255,255,0.9); }

/* Email UI */
.email-ui {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.email-header-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 8px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.email-from { font-size: 0.72rem; color: var(--gray-600); font-weight: 500; }
.email-time { font-size: 0.65rem; color: var(--gray-400); }

.email-subject {
  padding: 10px 14px 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gray-100);
}

.email-body {
  padding: 12px 14px;
}

.email-body > p {
  font-size: 0.72rem;
  color: var(--gray-600);
  margin-bottom: 10px;
}

.email-stat-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.email-stat {
  flex: 1;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 8px;
  text-align: center;
}

.esn {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}

.esn.red   { color: var(--red); }
.esn.amber { color: var(--amber); }

.email-stat small {
  font-size: 0.58rem;
  color: var(--gray-400);
}

.email-priorities {
  font-size: 0.72rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.email-list {
  padding-left: 16px;
  font-size: 0.68rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* Feature Visual Placeholder */
.feature-visual-placeholder {
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dark-placeholder {
  background: #0A0A0A;
  border: 1px solid rgba(112,0,255,0.12);
}

.placeholder-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.placeholder-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.placeholder-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 8px;
}

.placeholder-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.green-text { color: var(--green); font-weight: 700; }

.placeholder-ai-note {
  background: rgba(112,0,255,0.08);
  border: 1px solid rgba(112,0,255,0.15);
  border-radius: 8px;
  padding: 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-top: 4px;
  line-height: 1.5;
}

/* Compact Features Grid */
.features-grid-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 40px;
}

.features-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.compact-feature {
  background: var(--butter);
  border: 1px solid rgba(44,44,44,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.compact-feature:hover {
  border-color: rgba(112,0,255,0.3);
  box-shadow: 0 4px 20px rgba(112,0,255,0.07);
  transform: translateY(-2px);
}

.cf-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.compact-feature h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.compact-feature p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ─── LIGHT/DARK SHOWCASE ─────────────────────────────────────────────────── */

.showcase {
  background: var(--black);
  padding: 120px 0 0;
  overflow: hidden;
}

.showcase .section-label  { color: var(--purple); }
.showcase .section-headline { color: var(--white); }
.showcase .section-sub    { color: rgba(255,255,255,0.5); }

.showcase-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 64px;
}

.showcase-panel {
  padding: 48px 48px 0;
}

.dark-panel {
  background: #111111;
  border-top: 1px solid rgba(112,0,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.03);
}

.light-panel {
  background: var(--gray-50);
}

.panel-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.dark-panel .panel-label  { color: rgba(255,255,255,0.45); }
.light-panel .panel-label { color: var(--gray-400); }

.panel-desc {
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.dark-panel .panel-desc  { color: rgba(255,255,255,0.6); }
.light-panel .panel-desc { color: var(--gray-500); }

.panel-screen {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  height: 300px;
}

.dark-demo {
  background: #0A0A0A;
  border: 1px solid rgba(112,0,255,0.12);
  border-bottom: none;
}

.light-demo {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-bottom: none;
}

.demo-sidebar {
  width: 140px;
  background: rgba(0,0,0,0.4);
  border-right: 1px solid rgba(112,0,255,0.15);
  padding: 16px 0;
  flex-shrink: 0;
}

.light-sidebar {
  background: var(--butter);
  border-right: 1px solid var(--gray-200);
}

.demo-logo-small {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--purple);
  padding: 0 16px 14px;
  border-bottom: 1px solid rgba(112,0,255,0.1);
  margin-bottom: 8px;
}

.navy-logo {
  color: var(--charcoal) !important;
  border-bottom-color: var(--gray-200) !important;
}

.demo-items { display: flex; flex-direction: column; gap: 2px; padding: 0 8px; }

.di {
  padding: 8px 12px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  border-radius: 6px;
  cursor: pointer;
}

.di.active {
  background: rgba(112,0,255,0.2);
  color: var(--purple);
  font-weight: 600;
}

.light-di { color: var(--gray-500); }
.light-di.active-light {
  background: rgba(112,0,255,0.08);
  color: var(--purple);
  font-weight: 600;
}

.demo-content {
  flex: 1;
  padding: 16px;
  background: #111111;
  overflow: hidden;
}

.light-content { background: var(--white); }

.demo-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
}

.navy-title { color: var(--charcoal); }

.demo-cards {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.dc {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}

.light-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.red-card   { border-color: rgba(112,0,255,0.25) !important; }
.red-border { border-color: var(--purple) !important; }

.dc-n {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.navy-n { color: var(--charcoal); }

.dc-l {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.32);
  margin-top: 3px;
}

.navy-l { color: var(--gray-400); }

.demo-chart {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 80px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  padding: 10px;
}

.light-chart { background: var(--gray-50); }

.chart-bar {
  flex: 1;
  background: rgba(112,0,255,0.35);
  border-radius: 3px 3px 0 0;
  transition: height 0.5s ease;
}

.chart-bar.highlight { background: var(--purple); }

.light-bar              { background: rgba(44,44,44,0.1); }
.light-bar.highlight-light { background: var(--purple); }

/* ─── STORY ───────────────────────────────────────────────────────────────── */

.story {
  background: var(--black);
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-copy .section-label { display: block; }

.story-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.story-copy p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-sig {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.sig-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.sig-role {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.story-img-placeholder {
  background: var(--black);
  border-radius: var(--radius-xl);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.story-img-inner {
  text-align: center;
}

.story-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.story-img-text {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.story-img-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story-stat {
  text-align: center;
  padding: 20px 12px;
  background: var(--butter);
  border: 1px solid rgba(44,44,44,0.1);
  border-radius: var(--radius);
}

.ss-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
}

.ss-num.red { color: var(--red); }

.ss-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 4px;
  line-height: 1.4;
}

/* ─── SOCIAL PROOF ────────────────────────────────────────────────────────── */

.social-proof {
  background: var(--butter);
  padding: 120px 0;
}

.social-proof .section-headline { color: var(--charcoal); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.testimonial {
  background: var(--white);
  border: 1px solid rgba(44,44,44,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testimonial:hover {
  box-shadow: 0 8px 32px rgba(112,0,255,0.08);
  transform: translateY(-2px);
}

.t-stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.t-quote {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.t-name {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.9rem;
}

.t-role {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.proof-metric {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid rgba(44,44,44,0.1);
  border-radius: var(--radius);
}

.pm-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.pm-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ─── PRICING ─────────────────────────────────────────────────────────────── */

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

.pricing .section-headline { color: var(--charcoal); }

.pricing-card {
  max-width: 520px;
  margin: 0 auto 40px;
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(112,0,255,0.2);
  border-top: 3px solid var(--purple);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

.price-amount {
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-period {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  align-self: flex-end;
  margin-bottom: 12px;
}

.pricing-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
}

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

.pricing-features li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  padding-left: 4px;
}

.pricing-features li::first-letter {
  color: var(--green);
}

.pricing-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  margin-top: 16px;
}

.multi-studio {
  max-width: 520px;
  margin: 0 auto;
  background: var(--butter);
  border: 1px solid rgba(44,44,44,0.12);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ms-icon { font-size: 2rem; flex-shrink: 0; }

.ms-text { flex: 1; }

.ms-title {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.ms-sub {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ─── FINAL CTA ───────────────────────────────────────────────────────────── */

.final-cta {
  background: var(--black);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(112,0,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 24px;
  background: rgba(112,0,255,0.1);
  border: 1px solid rgba(112,0,255,0.25);
  padding: 6px 18px;
  border-radius: 100px;
}

.final-inner h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 24px;
}

.final-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.final-promise {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.03em;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */

.footer {
  background: var(--black-deep);
  border-top: 1px solid rgba(112,0,255,0.12);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

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

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

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
}

.footer-col a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.22);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.5);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .showcase-panels {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Hero 2-col → single col */
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .hero-text-col .hero-badge {
    display: inline-flex;
  }

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

  .hero-text-col .hero-actions {
    justify-content: center;
  }

  .hero-text-col .hero-trust {
    align-items: center;
  }

  .hero-text-col .hero-microcopy {
    text-align: center;
  }

  /* Advisor sections → single col */
  .advisor-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .advisor-row-reverse {
    direction: ltr;
  }

  /* 12-feature grid → 2 col */
  .features-extra-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Demo form row → single col */
  .demo-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .vs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vs-hero-card {
    flex-direction: column;
    gap: 24px;
    padding: 36px;
  }

  .vs-time-stats {
    gap: 28px;
  }
}

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

  .hero-headline { font-size: 2.4rem; }
  .advisor-section { padding: 80px 0; }
  .features-extra-grid { grid-template-columns: 1fr; }
  .features-grid-wrap { margin-top: 48px; padding-top: 40px; }

  .section-headline { font-size: 2rem; }

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

  .vs-hero-card {
    padding: 28px 20px;
  }

  .vs-time-stats {
    flex-direction: column;
    gap: 16px;
  }

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

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

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

  .pricing-card {
    padding: 32px 24px;
  }

  .features-compact-grid {
    grid-template-columns: 1fr;
  }

  .story-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .multi-studio {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .app-body {
    height: 220px;
  }

  .mock-sidebar {
    width: 120px;
  }

  .app-header-bar {
    padding: 8px 12px;
  }

  .app-badge { display: none; }
}

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

  .final-actions {
    flex-direction: column;
    align-items: center;
  }

  .proof-metrics {
    grid-template-columns: 1fr 1fr;
  }

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

  .app-studio-label { display: none; }
}

/* ─── Hero microcopy ─────────────────────────────────────────────────────────── */

.hero-microcopy {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
  letter-spacing: 0.01em;
}

/* ─── Autonomy Spectrum ──────────────────────────────────────────────────────── */

.autonomy {
  padding: 120px 0;
  background: var(--black);
}

.autonomy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.autonomy-slider-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.slider-label { cursor: pointer; transition: color 0.2s; }
.slider-label.active { color: var(--purple); }

.slider-track-wrap {
  padding: 0 2px;
}

.autonomy-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--charcoal);
  outline: none;
  cursor: pointer;
}

.autonomy-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(112,0,255,0.2);
  transition: box-shadow 0.2s;
}

.autonomy-range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 8px rgba(112,0,255,0.25);
}

.autonomy-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 4px rgba(112,0,255,0.2);
}

.slider-desc-box {
  background: rgba(112,0,255,0.08);
  border: 1px solid rgba(112,0,255,0.2);
  border-radius: 12px;
  padding: 20px 24px;
}

.sdb-mode {
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
}

.sdb-text {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* Inbox panel */
.autonomy-inbox {
  background: var(--charcoal);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.inbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.inbox-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--butter);
}

.ai-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--purple);
  background: rgba(112,0,255,0.15);
  border: 1px solid rgba(112,0,255,0.3);
  border-radius: 20px;
  padding: 3px 10px;
}

.inbox-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 12px;
}

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

.ic-info { flex: 1; min-width: 0; }

.ic-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--butter);
  margin-bottom: 3px;
}

.ic-preview {
  font-size: 0.75rem;
  color: var(--gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ic-status {
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ic-status[data-label="sent"] {
  color: #10b981;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
}

.ic-status[data-label="draft"] {
  color: #f59e0b;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
}

.ic-status[data-label="escalated"] {
  color: #ef4444;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.25);
}

/* ─── Features more prose ─────────────────────────────────────────────────────── */

.features-more {
  margin-top: 80px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 48px 56px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-more-headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--butter);
  margin-bottom: 16px;
}

.features-more-body {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.8;
}

/* ─── Story — full-width emotional version ────────────────────────────────────── */

.story-full {
  max-width: 720px;
  margin: 0 auto;
}

.story-full h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--butter);
  line-height: 1.2;
  margin-bottom: 40px;
  margin-top: 16px;
}

.story-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-400);
  margin-bottom: 1.25em;
}

.story-body em {
  color: var(--gray-300);
  font-style: italic;
}

.story-highlight {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--butter) !important;
}

.story-closer {
  font-size: 1.1rem !important;
  color: var(--butter) !important;
  font-weight: 500 !important;
  border-left: 3px solid var(--purple);
  padding-left: 20px;
  margin-top: 32px !important;
}

.story-sig-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.story-sig-block .sig-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--butter);
  margin-bottom: 6px;
}

.story-sig-block .sig-role {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ─── FAQ ─────────────────────────────────────────────────────────────────────── */

.faq {
  padding: 120px 0;
  background: var(--black);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}

.faq-item {
  padding: 32px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.faq-item:nth-child(even) {
  border-right: none;
}

.faq-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.faq-q {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--butter);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-a {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ─── Trial Signup Section ───────────────────────────────────────────────────── */

.trial-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #0d0d0d 0%, var(--black) 100%);
  border-top: 1px solid rgba(112,0,255,0.15);
}

.trial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.trial-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--butter);
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 16px;
}

.trial-copy p {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 28px;
}

.trial-promises {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trial-promises li {
  font-size: 0.9rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trial-promises li::first-letter {
  color: #10b981;
}

.trial-form-wrap {
  background: var(--charcoal);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.08);
}

.trial-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-row label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-row input,
.form-row select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--butter);
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-row input::placeholder { color: var(--gray-600); }

.form-row input:focus,
.form-row select:focus {
  border-color: var(--purple);
  background: rgba(112,0,255,0.06);
}

.form-row select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row select option { background: #1a1a1a; color: var(--butter); }

.trial-submit {
  margin-top: 4px;
  font-size: 0.95rem;
  padding: 14px;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-align: center;
  margin: 0;
}

.trial-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon { font-size: 3rem; margin-bottom: 16px; }

.trial-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--butter);
  margin-bottom: 12px;
}

.trial-success p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* Final CTA risk-reversal line */
.final-risk {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-top: 16px;
  margin-bottom: 32px;
  font-style: italic;
}

/* ─── Responsive — new sections ──────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .autonomy-layout { grid-template-columns: 1fr; gap: 40px; }
  .trial-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-more { padding: 36px 32px; }
}

@media (max-width: 768px) {
  .autonomy { padding: 80px 0; }
  .faq { padding: 80px 0; }
  .trial-section { padding: 80px 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { border-right: none !important; }
  .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .faq-item:last-child { border-bottom: none; }
  .features-more { padding: 32px 24px; margin-top: 48px; }
  .story-full { padding: 0 8px; }
  .trial-form-wrap { padding: 28px 20px; }
}

/* ─── Feature prose (replaces bullet lists) ──────────────────────────────────── */

.feature-prose {
  font-size: 0.925rem;
  color: var(--gray-400);
  line-height: 1.75;
  margin-top: 12px;
}

/* ─── Chat animation ─────────────────────────────────────────────────────────── */

.chat-animate {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.chat-animate.chat-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CRM row slide-in ───────────────────────────────────────────────────────── */

.slide-in-row {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-in-row.slide-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Proof metric count-up highlight ───────────────────────────────────────── */

.pm-num.counting {
  color: var(--purple);
}

/* ─── 12-FEATURE GRID ────────────────────────────────────────────────────────── */

.features-grid-wrap {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--gray-100);
}

.features-grid-headline {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.features-grid-sub {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 48px;
}

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

/* ─── AI ADVISOR SECTIONS ────────────────────────────────────────────────────── */

.advisor-section {
  padding: 120px 0;
}

.advisor-dark {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.advisor-dark .section-label { color: var(--purple); }
.advisor-dark h2 { color: var(--butter); }
.advisor-dark p { color: var(--gray-400); }

.advisor-butter {
  background: var(--butter);
  border-top: 1px solid rgba(44,44,44,0.08);
}

.advisor-butter .section-label { color: var(--purple); }
.advisor-butter h2 { color: var(--charcoal); }
.advisor-butter p { color: var(--gray-500); }

.advisor-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.advisor-row-reverse {
  direction: rtl;
}

.advisor-row-reverse > * {
  direction: ltr;
}

.advisor-copy h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  margin-top: 12px;
}

.advisor-copy p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.advisor-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.advisor-list li {
  font-size: 0.9rem;
  padding-left: 22px;
  position: relative;
  color: var(--gray-400);
  line-height: 1.55;
}

.advisor-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.advisor-list-dark li {
  color: var(--gray-500);
}

/* ─── Meta Advisor UI mockup ──────────────────────────────────────────────────── */

.meta-advisor-ui {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ma-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.ma-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.ma-period {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
}

.ma-summary-row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.ma-stat {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
}

.ma-num {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.ma-stat small {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
}

.ma-table {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ma-row {
  display: grid;
  grid-template-columns: 2fr 0.7fr 0.7fr 0.7fr;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  align-items: center;
  color: rgba(255,255,255,0.6);
}

.ma-thead {
  color: rgba(255,255,255,0.25);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ma-row:not(.ma-thead) {
  background: rgba(255,255,255,0.04);
}

.ma-name {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.ma-best {
  border: 1px solid rgba(16,185,129,0.2) !important;
  background: rgba(16,185,129,0.04) !important;
}

.ma-poor {
  border: 1px solid rgba(239,68,68,0.15) !important;
}

.ma-insight {
  background: rgba(245,158,11,0.07);
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-top: 2px;
}

/* ─── Financial Advisor UI mockup ────────────────────────────────────────────── */

.financial-ui {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fi-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
}

.fi-period {
  font-size: 0.68rem;
  color: var(--gray-400);
}

.fi-pnl-row {
  display: flex;
  gap: 8px;
}

.fi-pnl-card {
  flex: 1;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.fi-pnl-card small {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.fi-pnl-card span {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.fi-revenue {
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.15);
}

.fi-revenue small { color: #818cf8; }
.fi-revenue span  { color: var(--charcoal); }

.fi-expenses {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.12);
}

.fi-expenses small { color: var(--red); }
.fi-expenses span  { color: var(--charcoal); }

.fi-net {
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.18);
}

.fi-net small { color: var(--green); }

.fi-bills {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.fi-section-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-400);
  padding: 8px 12px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.fi-bill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.72rem;
  color: var(--gray-600);
}

.fi-bill:last-child {
  border-bottom: none;
}

.fi-bill-warn {
  background: rgba(245,158,11,0.04);
}

.fi-amount {
  font-weight: 600;
  color: var(--gray-500);
}

.fi-insight {
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.72rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ─── DEMO BOOKING FORM (Final CTA) ──────────────────────────────────────────── */

.demo-form-wrap {
  max-width: 560px;
  margin: 0 auto 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.demo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.demo-form input,
.demo-form select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--butter);
  font-size: 0.88rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.demo-form input::placeholder {
  color: rgba(255,255,255,0.28);
}

.demo-form input:focus,
.demo-form select:focus {
  border-color: var(--purple);
  background: rgba(112,0,255,0.08);
}

.demo-form select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.demo-form select option { background: #1a1a1a; color: var(--butter); }

.demo-submit-btn {
  margin-top: 4px;
  font-size: 0.95rem;
  padding: 14px;
}

.demo-success {
  text-align: center;
  padding: 32px 20px;
}

.demo-success .success-icon { font-size: 2.5rem; margin-bottom: 12px; }

.demo-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--butter);
  margin-bottom: 8px;
}

.demo-success p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.final-trial-link {
  display: inline-block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 16px;
}

.final-trial-link:hover {
  color: rgba(255,255,255,0.8);
}

.final-guarantee {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.03em;
}

/* ─── prefers-reduced-motion ─────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .chat-animate,
  .slide-in-row {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .pipeline-bar,
  .chart-bar {
    transition: none !important;
  }
}

/* ────────────────────────────────────────────────────────────
   Advisor row overrides — these base styles are defined after
   the earlier media queries so we re-declare the collapse here.
   ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .advisor-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .advisor-row-reverse {
    direction: ltr;
  }
}

/* ════════════════════════════════════════════════════════════
   MOBILE IMPROVEMENTS — targeted fixes for ≤ 768px / ≤ 480px
   Desktop layout is unchanged. All rules here are additions.
   ════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Section vertical padding ───────────────────────────────
     Desktop uses 120–140 px. Mobile gets ~half. */
  .pain,
  .value-stack,
  .features,
  .story,
  .social-proof     { padding: 64px 0; }
  .showcase         { padding: 64px 0 0; }
  .transition-block { padding: 56px 0; }
  .final-cta        { padding: 72px 0; }

  /* ── Feature rows ───────────────────────────────────────────
     Desktop bottom-margin is 120px — halve it on mobile. */
  .feature-row      { gap: 32px; margin-bottom: 56px; }

  /* ── Section sub bottom margin ──────────────────────────────
     Was 64px; reduce so sections feel tighter on small screens. */
  .section-sub      { margin-bottom: 36px; }

  /* ── Feature copy heading ───────────────────────────────────
     2rem is large when the column is full-width on mobile. */
  .feature-copy h3  { font-size: 1.65rem; }

  /* ── Showcase panels ────────────────────────────────────────
     48px horizontal padding in a single-column layout eats
     too much of the 390px content width. */
  .showcase-panel   { padding: 32px 20px 0; }

  /* ── Value-stack hero card icon ─────────────────────────────
     3.5rem emoji is disproportionate in single-column layout. */
  .vs-hero-icon     { font-size: 2.5rem; }

  /* ── Hero — remove gap when stacked vertically ──────────────
     The 48px gap between text-col and visual-col adds dead space. */
  .hero-layout      { gap: 24px; }
}

@media (max-width: 480px) {

  /* ── Further reduce section padding on very small phones ──── */
  .pain,
  .value-stack,
  .features,
  .story,
  .social-proof     { padding: 48px 0; }
  .showcase         { padding: 48px 0 0; }
  .transition-block { padding: 40px 0; }
  .final-cta        { padding: 56px 0; }

  /* ── Giant pricing number ───────────────────────────────────
     5rem = 80px on a 390px screen. Scale down to 3.5rem. */
  .price-amount     { font-size: 3.5rem; }

  /* ── Final CTA heading ──────────────────────────────────────
     clamp() bottoms out at 2.5rem — too large on tiny phones. */
  .final-inner h2   { font-size: 2rem; }

  /* ── Story stats ────────────────────────────────────────────
     3 columns at 480px = ~95px each; too cramped for the labels. */
  .story-stats      { grid-template-columns: repeat(2, 1fr); }

  /* ── VS hero card icon ──────────────────────────────────────*/
  .vs-hero-icon     { font-size: 2rem; }

  /* ── Pain CTA copy ──────────────────────────────────────────*/
  .pain-cta-text    { font-size: 1.15rem; }

  /* ── Feature copy heading ───────────────────────────────────*/
  .feature-copy h3  { font-size: 1.4rem; }
}
