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

:root {
  --ink: #0a0a0f;
  --ink-secondary: #1a1a2e;
  --ink-muted: #6b6b8a;
  --ink-subtle: #9494b0;
  --surface: #fafafe;
  --surface-raised: #ffffff;
  --surface-dark: #0c0c14;
  --surface-dark-raised: #14142a;
  --accent: #525289;
  --accent-light: #7472aa;
  --accent-glow: rgba(82, 82, 137, 0.15);
  --accent-warm: #f59e0b;
  --accent-warm-glow: rgba(245, 158, 11, 0.1);
  --border: rgba(82, 82, 137, 0.08);
  --border-dark: rgba(255, 255, 255, 0.06);
  --gradient-hero: linear-gradient(170deg, #0c0c14 0%, #181838 40%, #0c0c14 100%);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container--narrow {
  max-width: 900px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.badge--dark {
  background: rgba(82, 82, 137, 0.1);
  color: var(--accent-light);
  border: 1px solid rgba(82, 82, 137, 0.15);
}

.badge--light {
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(82, 82, 137, 0.12);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-subheading {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1), 0 4px 16px rgba(82, 82, 137, 0.3);
}

.btn--primary:hover {
  background: #45457a;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1), 0 8px 24px rgba(82, 82, 137, 0.4);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

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

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(82, 82, 137, 0.25);
}

.btn--outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.btn--large {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 14px;
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(12, 12, 20, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.nav__logo-svg {
  height: 42px;
  width: auto;
  color: #fff;
  transition: color 0.2s;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav__links a:hover { color: #fff; }

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

.nav__cta .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__mobile-toggle { display: block; }
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(82, 82, 137, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 82, 137, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black 20%, transparent 70%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: rgba(82, 82, 137, 0.08);
  top: -200px;
  right: -100px;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(124, 107, 196, 0.06);
  bottom: -100px;
  left: -100px;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.04);
  top: 30%;
  left: 10%;
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__badge {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease-out) 0.2s forwards;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.05;
  color: #fff;
  margin: 28px auto 0;
  max-width: 800px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease-out) 0.35s forwards;
}

.hero__heading span {
  background: linear-gradient(135deg, var(--accent-light) 0%, #a78bfa 50%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  margin: 24px auto 0;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease-out) 0.5s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease-out) 0.65s forwards;
}

.hero__email-form {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease-out) 0.65s forwards;
}

.hero__email-input {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
}

.hero__email-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.hero__email-input:focus {
  border-color: var(--accent-light);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(82, 82, 137, 0.2);
}

.hero__email-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease-out) 0.75s forwards;
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #4ade80;
  font-size: 15px;
  font-weight: 500;
}

.form-success.visible {
  display: flex;
}

@media (max-width: 480px) {
  .hero__email-form { flex-direction: column; }
  .hero__email-form .btn { width: 100%; justify-content: center; }
}

.hero__visual {
  margin-top: 64px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s var(--ease-out) 0.85s forwards;
}

.hero__mockup {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--surface-dark-raised);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 120px rgba(82, 82, 137, 0.08);
}

.mockup__toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup__dot--red { background: #ff5f57; }
.mockup__dot--yellow { background: #febc2e; }
.mockup__dot--green { background: #28c840; }

.mockup__url {
  margin-left: 12px;
  flex: 1;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.mockup__body {
  padding: 0;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #0f0f1a 0%, #161628 100%);
  display: flex;
  overflow: hidden;
}

.mockup__sidebar {
  width: 220px;
  border-right: 1px solid rgba(255,255,255,0.04);
  padding: 20px 16px;
  flex-shrink: 0;
}

.mockup__sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.mockup__sidebar-item--active {
  background: rgba(82, 82, 137, 0.1);
  color: var(--accent-light);
}

.mockup__sidebar-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.mockup__sidebar-item--active .mockup__sidebar-icon {
  background: rgba(82, 82, 137, 0.2);
}

.mockup__main {
  flex: 1;
  padding: 20px 24px;
}

.mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mockup__title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.mockup__search {
  width: 180px;
  height: 30px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.mockup__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mockup__card {
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.mockup__card:hover {
  border-color: rgba(82, 82, 137, 0.2);
  transform: translateY(-2px);
}

.mockup__card-preview {
  aspect-ratio: 4/3;
  position: relative;
}

.mockup__card-preview--img1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.mockup__card-preview--img2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.mockup__card-preview--img3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.mockup__card-preview--img4 {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.mockup__card-preview--img5 {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
.mockup__card-preview--img6 {
  background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}
.mockup__card-preview--img7 {
  background: linear-gradient(135deg, #fccb90 0%, #d57eeb 100%);
}
.mockup__card-preview--img8 {
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.mockup__card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mockup__card-badge--approved {
  background: rgba(40, 200, 64, 0.15);
  color: #4ade80;
}

.mockup__card-badge--pending {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.mockup__card-info {
  padding: 10px 12px;
}

.mockup__card-name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup__card-meta {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  margin-top: 3px;
}

@media (max-width: 768px) {
  .mockup__sidebar { display: none; }
  .mockup__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════ */
.social-proof {
  background: var(--surface-dark);
  padding: 56px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.social-proof__label {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
}

.social-proof__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.social-proof__logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: rgba(255,255,255,0.15);
  transition: color 0.3s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.social-proof__logo:hover {
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════ */
.problem {
  padding: 120px 24px;
  background: var(--surface);
  position: relative;
}

.problem__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem__header {
  text-align: center;
  margin-bottom: 64px;
}

.problem__header .section-subheading {
  margin: 0 auto;
}

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

.problem__card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.problem__card:hover {
  border-color: rgba(82, 82, 137, 0.15);
  box-shadow: 0 8px 32px rgba(82, 82, 137, 0.06);
  transform: translateY(-4px);
}

.problem__stat {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, #7c6bc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.problem__stat-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.problem__stat-desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.problem__stat-source {
  margin-top: 12px;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-subtle);
}

@media (max-width: 768px) {
  .problem__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════ */
.features {
  padding: 120px 24px;
  background: var(--surface);
}

.features__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features__header {
  text-align: center;
  margin-bottom: 72px;
}

.features__header .section-subheading {
  margin: 0 auto;
}

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

.feature-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.feature-card:hover {
  border-color: rgba(82, 82, 137, 0.15);
  box-shadow: 0 12px 40px rgba(82, 82, 137, 0.06);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.feature-card__icon--purple {
  background: linear-gradient(135deg, rgba(82, 82, 137, 0.1) 0%, rgba(124, 107, 196, 0.1) 100%);
  color: var(--accent);
}

.feature-card__icon--amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.08) 100%);
  color: var(--accent-warm);
}

.feature-card__icon--teal {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%);
  color: #14b8a6;
}

.feature-card__icon--rose {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, rgba(124, 107, 196, 0.08) 100%);
  color: #f43f5e;
}

.feature-card__icon--blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(82, 82, 137, 0.08) 100%);
  color: #3b82f6;
}

.feature-card__icon--emerald {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(245, 158, 11, 0.08) 100%);
  color: #10b981;
}

.feature-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card__desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
}

.feature-card__tag {
  display: inline-flex;
  margin-top: 16px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.feature-card__tag--new {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.feature-card__tag--popular {
  background: rgba(82, 82, 137, 0.08);
  color: var(--accent);
}

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

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--surface) 0%, #f0f0ff 100%);
}

.how__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how__header {
  text-align: center;
  margin-bottom: 72px;
}

.how__header .section-subheading {
  margin: 0 auto;
}

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

.how__steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #7c6bc4, var(--accent-warm));
  opacity: 0.2;
}

.how__step {
  text-align: center;
  position: relative;
}

.how__step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 2px solid rgba(82, 82, 137, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(82, 82, 137, 0.06);
  transition: all 0.3s var(--ease-out);
}

.how__step:hover .how__step-number {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(82, 82, 137, 0.12);
  transform: scale(1.05);
}

.how__step-number i {
  color: var(--accent);
}

.how__step-digit {
  position: absolute;
  top: -8px;
  right: -4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how__step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.how__step-desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .how__steps { grid-template-columns: 1fr; gap: 48px; }
  .how__steps::before { display: none; }
}

/* ═══════════════════════════════════════
   AI SECTION
   ═══════════════════════════════════════ */
.ai {
  padding: 120px 24px;
  background: var(--surface-dark);
  position: relative;
  overflow: hidden;
}

.ai__orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(82, 82, 137, 0.06);
  filter: blur(100px);
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.ai__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ai__content .section-label { color: var(--accent-light); }
.ai__content .section-heading { color: #fff; }
.ai__content .section-subheading { color: rgba(255,255,255,0.45); max-width: 440px; }

.ai__features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ai__feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(82, 82, 137, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-light);
}

.ai__feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}

.ai__feature-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.ai__visual {
  position: relative;
}

.ai__terminal {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.ai__terminal-bar span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-left: 12px;
}

.ai__terminal-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 2;
}

.ai__terminal-line {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: terminalLine 0.4s var(--ease-out) forwards;
}

.ai__terminal-line:nth-child(1) { animation-delay: 0.2s; }
.ai__terminal-line:nth-child(2) { animation-delay: 0.6s; }
.ai__terminal-line:nth-child(3) { animation-delay: 1.0s; }
.ai__terminal-line:nth-child(4) { animation-delay: 1.4s; }
.ai__terminal-line:nth-child(5) { animation-delay: 1.8s; }
.ai__terminal-line:nth-child(6) { animation-delay: 2.2s; }

.ai__terminal-line .prefix {
  color: var(--accent-light);
}

.ai__terminal-line .key {
  color: rgba(255,255,255,0.4);
}

.ai__terminal-line .value {
  color: rgba(255,255,255,0.7);
}

.ai__terminal-line .tag {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.ai__terminal-line .tag--green {
  background: rgba(40, 200, 64, 0.12);
  color: #4ade80;
}

.ai__terminal-line .tag--amber {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
}

.ai__terminal-line .tag--blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

@keyframes terminalLine {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.ai__terminal-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.ai__tag {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(82, 82, 137, 0.08);
  color: var(--accent-light);
  border: 1px solid rgba(82, 82, 137, 0.1);
}

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

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing {
  padding: 120px 24px;
  background: var(--surface);
}

.pricing__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing__header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing__header .section-subheading {
  margin: 0 auto;
}

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

.pricing-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 40px rgba(82, 82, 137, 0.1);
}

.pricing-card--featured:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 16px 48px rgba(82, 82, 137, 0.15);
}

.pricing-card__popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.pricing-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--ink);
  line-height: 1;
}

.pricing-card__period {
  font-size: 15px;
  color: var(--ink-muted);
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--ink-subtle);
  margin-bottom: 28px;
  line-height: 1.5;
}

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

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-secondary);
}

.pricing-card__features li i {
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  padding: 120px 24px;
  background: linear-gradient(180deg, #f0f0ff 0%, var(--surface) 100%);
}

.testimonials__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}

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

.testimonial-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--accent-warm);
}

.testimonial-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.testimonial-card__avatar--purple { background: linear-gradient(135deg, var(--accent), #7c6bc4); }
.testimonial-card__avatar--amber { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.testimonial-card__avatar--teal { background: linear-gradient(135deg, #14b8a6, #3b82f6); }

.testimonial-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--ink-muted);
}

@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   TEAM
   ═══════════════════════════════════════ */
.team {
  padding: 120px 24px;
  background: var(--surface);
}

.team__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.team__header {
  text-align: center;
  margin-bottom: 64px;
}

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

.team-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #7c6bc4);
}

.team-card__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.team-card__desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

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

/* ═══════════════════════════════════════
   CTA
   ═══════════════════════════════════════ */
.cta {
  padding: 120px 24px;
  background: var(--surface-dark);
  position: relative;
  overflow: hidden;
}

.cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.cta__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(82, 82, 137, 0.08);
  top: -200px;
  left: -150px;
}

.cta__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(124, 107, 196, 0.06);
  bottom: -150px;
  right: -100px;
}

.cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta .section-heading {
  color: #fff;
  font-size: clamp(36px, 5vw, 52px);
}

.cta .section-subheading {
  color: rgba(255,255,255,0.45);
  margin: 0 auto 40px;
  max-width: 480px;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cta__note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.cta__demo-form {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta__demo-input {
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
  width: 100%;
}

.cta__demo-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.cta__demo-input:focus {
  border-color: var(--accent-light);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(82, 82, 137, 0.2);
}

.cta__demo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta__demo-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.cta__demo-form .form-success {
  margin-top: 4px;
}

@media (max-width: 600px) {
  .cta__actions { flex-direction: column; }
  .cta__actions .btn { width: 100%; justify-content: center; }
  .cta__demo-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--surface-dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 64px 24px 40px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer__brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.2s;
}

.footer__social a:hover {
  background: rgba(82, 82, 137, 0.15);
  color: var(--accent-light);
}

.footer__column h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer__column a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer__column a:hover {
  color: rgba(255,255,255,0.7);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  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); }

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   THEME TOGGLE
   ═══════════════════════════════════════ */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

/* ═══════════════════════════════════════
   LIGHT MODE
   ═══════════════════════════════════════ */
[data-theme="light"] {
  --surface-dark: #f5f5fa;
  --surface-dark-raised: #eeeef6;
  --border-dark: rgba(82, 82, 137, 0.1);
  --gradient-hero: linear-gradient(170deg, #f0f0ff 0%, #e8e8f8 40%, #f5f5fa 100%);
}

/* Toggle icon swap */
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* Nav */
[data-theme="light"] .theme-toggle {
  border-color: rgba(82, 82, 137, 0.15);
  background: rgba(82, 82, 137, 0.06);
  color: var(--ink-muted);
}
[data-theme="light"] .theme-toggle:hover {
  background: rgba(82, 82, 137, 0.12);
  color: var(--ink);
  border-color: rgba(82, 82, 137, 0.25);
}

[data-theme="light"] .nav {
  background: rgba(250, 250, 254, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
[data-theme="light"] .nav.scrolled {
  background: rgba(250, 250, 254, 0.9);
  border-bottom: 1px solid rgba(82, 82, 137, 0.08);
}
[data-theme="light"] .nav__logo,
[data-theme="light"] .nav__logo-svg { color: var(--accent); }
[data-theme="light"] .nav__links a { color: var(--ink-muted); }
[data-theme="light"] .nav__links a:hover { color: var(--ink); }
[data-theme="light"] .btn--ghost {
  color: var(--ink-secondary);
  border-color: rgba(82, 82, 137, 0.15);
}
[data-theme="light"] .btn--ghost:hover {
  background: rgba(82, 82, 137, 0.06);
  border-color: rgba(82, 82, 137, 0.25);
}
[data-theme="light"] .nav__mobile-toggle { color: var(--ink); }

/* Hero */
[data-theme="light"] .hero {
  background: var(--gradient-hero);
}
[data-theme="light"] .hero__grid-bg {
  background-image:
    linear-gradient(rgba(82, 82, 137, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 82, 137, 0.06) 1px, transparent 1px);
}
[data-theme="light"] .hero__orb--1 { background: rgba(82, 82, 137, 0.06); }
[data-theme="light"] .hero__orb--2 { background: rgba(124, 107, 196, 0.05); }
[data-theme="light"] .hero__orb--3 { background: rgba(245, 158, 11, 0.04); }
[data-theme="light"] .hero__heading { color: var(--ink); }
[data-theme="light"] .hero__sub { color: var(--ink-muted); }
[data-theme="light"] .hero__email-input {
  border-color: rgba(82, 82, 137, 0.15);
  background: rgba(255,255,255,0.8);
  color: var(--ink);
}
[data-theme="light"] .hero__email-input::placeholder { color: var(--ink-subtle); }
[data-theme="light"] .hero__email-input:focus {
  border-color: var(--accent);
  background: #fff;
}
[data-theme="light"] .hero__email-note { color: var(--ink-subtle); }
[data-theme="light"] .form-success {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.15);
  color: #059669;
}

/* Mockup */
[data-theme="light"] .hero__mockup {
  background: #fff;
  border-color: rgba(82, 82, 137, 0.1);
  box-shadow: 0 0 0 1px rgba(82, 82, 137, 0.05), 0 20px 60px rgba(82, 82, 137, 0.1);
}
[data-theme="light"] .mockup__toolbar {
  background: rgba(82, 82, 137, 0.03);
  border-bottom-color: rgba(82, 82, 137, 0.06);
}
[data-theme="light"] .mockup__url {
  background: rgba(82, 82, 137, 0.04);
  color: var(--ink-muted);
}
[data-theme="light"] .mockup__body {
  background: linear-gradient(180deg, #fafaff 0%, #f5f5fc 100%);
}
[data-theme="light"] .mockup__sidebar {
  border-right-color: rgba(82, 82, 137, 0.06);
}
[data-theme="light"] .mockup__sidebar-item { color: var(--ink-subtle); }
[data-theme="light"] .mockup__sidebar-item--active {
  background: rgba(82, 82, 137, 0.08);
  color: var(--accent);
}
[data-theme="light"] .mockup__sidebar-icon { background: rgba(82, 82, 137, 0.06); }
[data-theme="light"] .mockup__sidebar-item--active .mockup__sidebar-icon { background: rgba(82, 82, 137, 0.12); }
[data-theme="light"] .mockup__title { color: var(--ink-secondary); }
[data-theme="light"] .mockup__search {
  background: rgba(82, 82, 137, 0.04);
  border-color: rgba(82, 82, 137, 0.08);
}
[data-theme="light"] .mockup__card {
  background: rgba(82, 82, 137, 0.02);
  border-color: rgba(82, 82, 137, 0.06);
}
[data-theme="light"] .mockup__card:hover { border-color: rgba(82, 82, 137, 0.15); }
[data-theme="light"] .mockup__card-name { color: var(--ink-secondary); }
[data-theme="light"] .mockup__card-meta { color: var(--ink-subtle); }

/* Social Proof */
[data-theme="light"] .social-proof {
  background: var(--surface);
  border-top-color: rgba(82, 82, 137, 0.06);
}
[data-theme="light"] .social-proof__label { color: var(--ink-subtle); }
[data-theme="light"] .social-proof__logo { color: rgba(82, 82, 137, 0.2); }
[data-theme="light"] .social-proof__logo:hover { color: rgba(82, 82, 137, 0.4); }

/* AI Section */
[data-theme="light"] .ai {
  background: linear-gradient(170deg, #1a1a2e 0%, #252550 40%, #1a1a2e 100%);
}
[data-theme="light"] .ai__orb { background: rgba(82, 82, 137, 0.12); }
[data-theme="light"] .ai__content .section-label { color: var(--accent-light); }
[data-theme="light"] .ai__content .section-heading { color: #fff; }
[data-theme="light"] .ai__content .section-subheading { color: rgba(255,255,255,0.5); }
[data-theme="light"] .ai__feature-icon {
  background: rgba(82, 82, 137, 0.15);
  color: var(--accent-light);
}
[data-theme="light"] .ai__feature-text h4 { color: rgba(255,255,255,0.9); }
[data-theme="light"] .ai__feature-text p { color: rgba(255,255,255,0.45); }
[data-theme="light"] .ai__terminal {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
[data-theme="light"] .ai__terminal-bar {
  background: rgba(255,255,255,0.03);
  border-bottom-color: rgba(255,255,255,0.05);
}
[data-theme="light"] .ai__terminal-bar span { color: rgba(255,255,255,0.35); }
[data-theme="light"] .ai__terminal-line .prefix { color: var(--accent-light); }
[data-theme="light"] .ai__terminal-line .key { color: rgba(255,255,255,0.45); }
[data-theme="light"] .ai__terminal-line .value { color: rgba(255,255,255,0.75); }
[data-theme="light"] .ai__terminal-tag-row { border-top-color: rgba(255,255,255,0.05); }
[data-theme="light"] .ai__tag {
  background: rgba(82, 82, 137, 0.1);
  color: var(--accent-light);
  border-color: rgba(82, 82, 137, 0.15);
}

/* CTA Section */
[data-theme="light"] .cta {
  background: #f0f0ff;
}
[data-theme="light"] .cta__orb--1 { background: rgba(82, 82, 137, 0.05); }
[data-theme="light"] .cta__orb--2 { background: rgba(124, 107, 196, 0.04); }
[data-theme="light"] .cta .section-heading { color: var(--ink); }
[data-theme="light"] .cta .section-subheading { color: var(--ink-muted); }
[data-theme="light"] .cta__note { color: var(--ink-subtle); }
[data-theme="light"] .cta__demo-input {
  border-color: rgba(82, 82, 137, 0.15);
  background: #fff;
  color: var(--ink);
}
[data-theme="light"] .cta__demo-input::placeholder { color: var(--ink-subtle); }
[data-theme="light"] .cta__demo-input:focus {
  border-color: var(--accent);
  background: #fff;
}

/* Footer */
[data-theme="light"] .footer {
  background: #f5f5fa;
  border-top-color: rgba(82, 82, 137, 0.06);
}
[data-theme="light"] .footer .nav__logo,
[data-theme="light"] .footer .nav__logo-svg { color: var(--accent); }
[data-theme="light"] .footer__brand-desc { color: var(--ink-muted); }
[data-theme="light"] .footer__social a {
  background: rgba(82, 82, 137, 0.06);
  color: var(--ink-muted);
}
[data-theme="light"] .footer__social a:hover {
  background: rgba(82, 82, 137, 0.12);
  color: var(--accent);
}
[data-theme="light"] .footer__column h4 { color: var(--ink-secondary); }
[data-theme="light"] .footer__column a { color: var(--ink-muted); }
[data-theme="light"] .footer__column a:hover { color: var(--ink); }
[data-theme="light"] .footer__top { border-bottom-color: rgba(82, 82, 137, 0.06); }
[data-theme="light"] .footer__copyright { color: var(--ink-subtle); }
[data-theme="light"] .footer__legal a { color: var(--ink-subtle); }
[data-theme="light"] .footer__legal a:hover { color: var(--ink-muted); }