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

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

:root {
  --navy: #0d1b35;
  --navy-mid: #122040;
  --navy-light: #1a2b4a;
  --navy-border: rgba(255,255,255,0.08);
  --red: #dc2626;
  --red-hover: #b91c1c;
  --red-light: rgba(220,38,38,0.12);
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --green: #10b981;
  --amber: #f59e0b;
  --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.12);
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  --shadow-xl: 0 24px 80px rgba(0,0,0,0.24);
}

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

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

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

.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(13, 27, 53, 0.92);
  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(13, 27, 53, 0.98);
}

.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;
}

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

.logo-geri::before {
  content: 'Get';
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}

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

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

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

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

.nav-links .nav-cta:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
}

.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(13,27,53,0.98);
  padding: 16px 24px 24px;
  gap: 4px;
}

.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.06);
}

.nav-mobile-menu .nav-cta {
  color: var(--white) !important;
  font-weight: 600;
  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(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220,38,38,0.35);
}

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

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

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

.btn-outline:hover {
  background: var(--navy);
  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(--red);
  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(--navy);
}

.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(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 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(220,38,38,0.12) 0%, transparent 70%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  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.65);
  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.4);
  letter-spacing: 0.04em;
}

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

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

/* ─── 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.6), 0 0 0 1px rgba(255,255,255,0.08);
}

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

.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.06);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0 8px;
}

.screenshot-content {
  display: flex;
  height: 380px;
}

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

.mock-logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}

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

.mock-nav-item.active {
  color: var(--white);
  background: rgba(220,38,38,0.15);
  border-right: 2px solid var(--red);
}

.mock-main {
  flex: 1;
  background: #0f1b2d;
  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.red { color: var(--red); }
.stat-num.green { color: var(--green); }

.stat-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  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.5);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.pipeline-bar {
  background: rgba(220,38,38,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.5);
}

.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.5);
}

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

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

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

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

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

.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 var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pain-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(220,38,38,0.08);
  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-cta {
  text-align: center;
}

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

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

.transition-block {
  background: var(--navy);
  padding: 100px 0;
}

.transition-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.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.6);
  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(--red);
  margin-bottom: 12px;
}

.feature-copy h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  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: #0f1b2d;
  border: 1px solid rgba(255,255,255,0.08);
}

.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.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.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.08);
  color: rgba(255,255,255,0.8);
  align-self: flex-start;
}

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

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

.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.4);
  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.35);
  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(220,38,38,0.2);
  background: rgba(220,38,38,0.06);
}

.crm-name { color: rgba(255,255,255,0.85); font-weight: 600; }
.crm-source { color: rgba(255,255,255,0.4); }
.crm-date { color: rgba(255,255,255,0.4); }
.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.08); color: rgba(255,255,255,0.5); }
.status-pill.member { background: rgba(16,185,129,0.2); color: var(--green); }
.status-pill.new { background: rgba(220,38,38,0.2); color: var(--red); }

/* 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.7);
}

.ads-thead {
  color: rgba(255,255,255,0.3);
  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(220,38,38,0.15) !important; }

.ads-insight {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
  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.06);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

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

.coach-avatar {
  width: 28px;
  height: 28px;
  background: var(--red);
  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.75);
  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.5);
  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(--navy);
  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(--navy);
  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: #0f1b2d;
  border: 1px solid rgba(255,255,255,0.08);
}

.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.4);
  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.6);
}

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

.placeholder-ai-note {
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,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(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

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

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

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

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

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

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

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

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

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

.dark-panel {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.04);
}

.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.5); }
.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.65); }
.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: #0d1b35;
  border: 1px solid rgba(255,255,255,0.08);
  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.25);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
  flex-shrink: 0;
}

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

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

.navy-logo {
  color: var(--navy) !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.45);
  border-radius: 6px;
  cursor: pointer;
}

.di.active {
  background: rgba(220,38,38,0.15);
  color: var(--white);
  font-weight: 600;
}

.light-di { color: var(--gray-500); }
.light-di.active-light {
  background: var(--red-light);
  color: var(--red);
  font-weight: 600;
}

.demo-content {
  flex: 1;
  padding: 16px;
  background: #0f1b2d;
  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(--navy); }

.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(220,38,38,0.3) !important; }
.red-border { border-color: var(--red) !important; }

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

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

.dc-l {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.35);
  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(220,38,38,0.3);
  border-radius: 3px 3px 0 0;
  transition: height 0.5s ease;
}

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

.light-bar { background: rgba(13,27,53,0.12); }
.light-bar.highlight-light { background: var(--navy); }

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

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

.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(--navy);
}

.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(--navy);
}

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

.story-img-placeholder {
  background: var(--navy);
  border-radius: var(--radius-xl);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.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.4);
  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(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.ss-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  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(--off-white);
  padding: 120px 0;
}

.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 var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testimonial:hover {
  box-shadow: var(--shadow);
  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(--navy);
  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(--navy);
  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 var(--gray-200);
  border-radius: var(--radius);
}

.pm-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  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-card {
  max-width: 520px;
  margin: 0 auto 40px;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  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.5);
  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.6);
  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.5);
  align-self: flex-end;
  margin-bottom: 12px;
}

.pricing-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  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.75);
  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.3);
  margin-top: 16px;
}

.multi-studio {
  max-width: 520px;
  margin: 0 auto;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  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(--navy);
  font-size: 0.95rem;
}

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

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

.final-cta {
  background: var(--navy);
  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(220,38,38,0.08) 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: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.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.6);
  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.3);
  letter-spacing: 0.03em;
}

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

.footer {
  background: #08111f;
  border-top: 1px solid rgba(255,255,255,0.05);
  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;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  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.3);
  margin-bottom: 4px;
}

.footer-col a {
  color: rgba(255,255,255,0.5);
  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.25);
}

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

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  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;
  }
}

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

  .hero-headline { font-size: 2.4rem; }

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

  .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;
  }

  .screenshot-content {
    height: 260px;
  }

  .mock-sidebar {
    width: 120px;
  }
}

@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);
  }
}
