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

:root {
  --bg: #0A0E14;
  --surface: #111820;
  --surface-raised: #182030;
  --blue: #1F6FEB;
  --blue-glow: rgba(31, 111, 235, 0.1);
  --blue-soft: rgba(31, 111, 235, 0.15);
  --tint: #E8F1FF;
  --slate: #5A6B7B;
  --white: #FFFFFF;
  --text-secondary: #8B95A5;
  --border: rgba(255, 255, 255, 0.07);
  --green: #4ade80;
  --red: #f87171;
  --purple: #8B5CF6;
  --purple-glow: rgba(139, 92, 246, 0.1);
  --purple-soft: rgba(139, 92, 246, 0.15);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;

  --max-w: 1100px;
  --section-py: 100px;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

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

/* ---- Aurora background ---- */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  will-change: transform, opacity;
}
.aurora-blob.a1 {
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.55), transparent 70%);
  top: 10%; left: -15%;
  animation: auroraFloat1 12s ease-in-out infinite;
}
.aurora-blob.a2 {
  width: 1200px; height: 800px;
  background: radial-gradient(ellipse, rgba(31,111,235,0.45), transparent 70%);
  top: 30%; right: -20%;
  animation: auroraFloat2 14s ease-in-out infinite 2s;
}
.aurora-blob.a3 {
  width: 1000px; height: 650px;
  background: radial-gradient(ellipse, rgba(99,60,220,0.5), transparent 70%);
  top: 50%; left: 5%;
  animation: auroraFloat3 16s ease-in-out infinite 4s;
}
.aurora-blob.a4 {
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse, rgba(31,111,235,0.4), transparent 70%);
  top: 65%; right: -10%;
  animation: auroraFloat4 13s ease-in-out infinite 1s;
}
.aurora-blob.a5 {
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.45), transparent 70%);
  top: 80%; left: -10%;
  animation: auroraFloat5 15s ease-in-out infinite 3s;
}
@keyframes auroraFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(100px, 40px) scale(1.2); opacity: 0.85; }
}
@keyframes auroraFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate(-80px, -50px) scale(1.25); opacity: 0.8; }
}
@keyframes auroraFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate(60px, -40px) scale(1.15); opacity: 0.8; }
}
@keyframes auroraFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-90px, 30px) scale(1.2); opacity: 0.75; }
}
@keyframes auroraFloat5 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate(70px, 30px) scale(1.15); opacity: 0.8; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Nav ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 0.5px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.navbar.scrolled {
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-login {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-login:hover { color: var(--white); }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: var(--section-py);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(31, 111, 235, 0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

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

#hero-star-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

nav, footer {
  position: relative;
  z-index: 3;
}

section {
  position: relative;
  z-index: 3;
}

section > * {
  position: relative;
  z-index: 3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
  position: relative;
}

.hero-left, .hero-right {
  position: relative;
  z-index: 1;
}

/* ---- Orbit Ring Animation ---- */
.hiw-orbit {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  pointer-events: none;
}

.hiw-orbit .brand-mark {
  filter: drop-shadow(0 0 8px rgba(255,255,255,1)) drop-shadow(0 0 20px rgba(255,255,255,0.8)) drop-shadow(0 0 45px rgba(200,220,255,0.7)) drop-shadow(0 0 90px rgba(140,180,255,0.5)) drop-shadow(0 0 140px rgba(100,140,255,0.3));
}

.orbit-arc {
  transition: opacity 0.15s linear;
}

h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.hero-right p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

/* ---- Product Showcase ---- */
.showcase {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5), 0 0 60px rgba(31, 111, 235, 0.06);
  position: relative;
  z-index: 4;
}

.showcase-tabs {
  display: flex;
  gap: 0;
  padding: 0 16px;
  border-bottom: 0.5px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.showcase-tab {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  background: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.showcase-tab.active {
  color: var(--white);
  border-bottom-color: var(--blue);
}

.showcase-viewport {
  overflow: hidden;
  cursor: grab;
  position: relative;
  height: 400px;
}

.showcase-viewport:active { cursor: grabbing; }

.showcase-scene {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.15s ease-out;
}

.showcase-slide {
  width: 100%;
  flex-shrink: 0;
  display: none;
  padding: 24px;
  min-width: 0;
}

.showcase-slide.active { display: flex; gap: 16px; }

/* Mock sidebar */
.mock-sidebar {
  width: 200px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px 0;
  border: 0.5px solid var(--border);
}

.mock-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 20px;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 12px;
}

.mock-sidebar-brand .orbit-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
}

.mock-sidebar-brand span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}

.mock-nav-item {
  padding: 8px 16px;
  font-size: 13px;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-nav-item.active {
  color: var(--white);
  background: var(--blue-glow);
  border-right: 2px solid var(--blue);
}

.mock-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.5;
}

/* Mock main */
.mock-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.mock-page-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
}

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

.mock-stat {
  background: var(--surface-raised);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.mock-stat-label {
  font-size: 10px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.mock-stat-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.mock-stat-value.green { color: var(--green); }
.mock-stat-value.blue { color: var(--blue); }

.mock-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
}

.mock-content-3col {
  grid-template-columns: 2fr 1.5fr 1fr;
}

.mock-panel {
  background: var(--surface-raised);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mock-panel-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.mock-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex: 1;
}

.mock-chart-bars .bar {
  flex: 1;
  background: var(--blue-soft);
  border-radius: 3px 3px 0 0;
  position: relative;
}

.mock-chart-bars .bar.accent { background: var(--blue); opacity: 0.7; }

/* Transaction rows */
.mock-txn {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--border);
  gap: 12px;
  font-size: 12px;
}

.mock-txn:last-child { border-bottom: none; }

.mock-txn-desc {
  flex: 1;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-txn-cat {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--blue-glow);
  color: var(--blue);
  white-space: nowrap;
}

.mock-txn-amt {
  font-family: var(--font-display);
  font-weight: 500;
  white-space: nowrap;
}

.mock-txn-amt.green { color: var(--green); }
.mock-txn-amt.red { color: var(--red); }

/* Mock report table */
.mock-report-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 12px;
  color: var(--text-secondary);
  border-bottom: 0.5px solid var(--border);
}

.mock-report-row:last-child { border-bottom: none; }
.mock-report-row.bold {
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.mock-report-row.total {
  color: var(--green);
  font-weight: 600;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 4px;
}

/* Health score circle */
.mock-health {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
}

.mock-health-ring {
  position: relative;
  width: 88px;
  height: 88px;
}
.mock-health-ring .health-svg {
  display: block;
}
.mock-health-ring .health-arc {
  transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.3));
}
.mock-health-ring .health-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--green);
}

.mock-health-label {
  font-size: 11px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ledger table */
.mock-ledger-header,
.mock-ledger-row {
  display: grid;
  grid-template-columns: 60px 140px 1fr 100px 100px;
  gap: 8px;
  padding: 7px 0;
  font-size: 12px;
  border-bottom: 0.5px solid var(--border);
  align-items: center;
}
.mock-ledger-header {
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
}
.mock-ledger-row { color: var(--text-secondary); }
.mock-ledger-row .green { color: var(--green); }
.mock-ledger-row .red { color: var(--red); }

/* Settings */
.mock-settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}
.mock-setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 12px;
}
.mock-setting-row:last-child { border-bottom: none; }
.mock-setting-label { color: var(--slate); }
.mock-setting-value { color: var(--text-secondary); font-weight: 500; }
.mock-setting-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(74, 222, 128, 0.1);
  color: var(--green);
}
.mock-setting-badge.inactive {
  background: rgba(255, 255, 255, 0.05);
  color: var(--slate);
}

/* Departures-board row animation */
.mock-row-animate {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mock-row-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Social Proof ---- */
.social-proof {
  padding: 48px 0;
  border-top: none;
  border-bottom: none;
  background: transparent;
}

.social-proof p {
  text-align: center;
  font-size: 13px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.logo-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.logo-row-offset {
  padding-left: 0;
}

.flip-box {
  position: relative;
  overflow: hidden;
  height: 70px;
  width: 180px;
}
.flip-box .flip-current,
.flip-box .flip-next {
  display: block;
  height: 70px;
  width: 100%;
  object-fit: contain;
  opacity: 0.6;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}
.flip-box .flip-next {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  opacity: 0;
}
.flip-box.flipping .flip-current {
  transform: translateY(100%);
  opacity: 0;
}
.flip-box.flipping .flip-next {
  transform: translateY(0);
  opacity: 0.6;
}

/* ---- Stats Section ---- */
.stats-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.10) 50%, transparent);
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(31, 111, 235, 0.06), transparent 70%);
  pointer-events: none;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-number .accent { color: var(--blue); }

.stat-label {
  font-size: 14px;
  color: var(--slate);
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-glow);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Features ---- */
.features {
  padding: var(--section-py) 0;
  position: relative;
  background: rgba(3,3,12,0.85);
  z-index: auto;
}

.features::before,
.features::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}
.features::before {
  bottom: 100%;
  background: linear-gradient(to bottom, transparent, rgba(3,3,12,0.85));
}
.features::after {
  top: 100%;
  background: linear-gradient(to top, transparent, rgba(3,3,12,0.85));
}

/* AI Orb block */
.ai-orb-block {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}

.ai-orb-wrap {
  flex-shrink: 0;
  width: 380px;
  height: 380px;
  position: relative;
  background: radial-gradient(circle, rgba(80, 60, 200, 0.12) 0%, transparent 65%);
}

#ai-orb-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.ai-orb-text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin: 12px 0 12px;
  letter-spacing: -0.5px;
}

.ai-orb-text p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.ai-orb-perks li {
  color: var(--text-secondary);
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.ai-orb-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
}

/* AI confidence timeline */
.ai-confidence-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 24px;
}
.ai-ct-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ai-ct-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(31, 111, 235, 0.25);
  display: grid;
  place-items: center;
  position: relative;
  background: radial-gradient(circle, rgba(31, 111, 235, 0.08), transparent);
}
.ai-ct-ring span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.ai-ct-ring.active {
  border-color: rgba(31, 111, 235, 0.5);
  box-shadow: 0 0 16px rgba(31, 111, 235, 0.2);
}
.ai-ct-ring.active span {
  color: var(--blue);
}
.ai-ct-ring.full {
  border-color: var(--blue);
  box-shadow: 0 0 24px rgba(31, 111, 235, 0.35);
  background: radial-gradient(circle, rgba(31, 111, 235, 0.15), transparent);
}
.ai-ct-ring.full span {
  color: #fff;
  font-size: 15px;
}
.ai-ct-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ai-ct-line {
  flex: 1;
  height: 2px;
  background: rgba(31, 111, 235, 0.15);
  min-width: 32px;
  position: relative;
  margin: 0 -2px;
  margin-bottom: 22px;
}
.ai-ct-line-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 111, 235, 0.3), var(--blue));
  transform-origin: left;
}
.ai-ct-caption {
  font-size: 12px;
  color: var(--slate);
  margin-top: 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  perspective: 800px;
}

.feature-card {
  background: #f5f0e8;
  border: 0.5px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.3s, transform 0.15s ease-out;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  z-index: 4;
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  color: #1a1a2e;
}

.feature-card p {
  font-size: 14px;
  color: #4a4a5a;
  line-height: 1.6;
}

/* Feature card visual panels */
.feature-visual {
  margin-top: 20px;
  min-height: 140px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 0.5px solid var(--border);
  overflow: hidden;
  position: relative;
  padding: 12px;
}


/* Mini mock inside feature visual */
.fv-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--surface);
  margin-bottom: 4px;
  font-size: 10px;
  color: var(--text-secondary);
}
.fv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fv-dot.blue { background: var(--blue); }
.fv-dot.purple { background: var(--purple); }
.fv-dot.green { background: var(--green); }
.fv-dot.red { background: var(--red); }
.fv-bar {
  height: 6px;
  border-radius: 3px;
  flex: 1;
}
.fv-bar.blue { background: linear-gradient(90deg, var(--blue), rgba(31, 111, 235, 0.3)); }
.fv-bar.purple { background: linear-gradient(90deg, var(--purple), rgba(139, 92, 246, 0.3)); }
.fv-badge {
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 100px;
  margin-left: auto;
  white-space: nowrap;
}
.fv-badge.blue { background: var(--blue-glow); color: var(--blue); }
.fv-badge.purple { background: var(--purple-glow); color: var(--purple); }
.fv-badge.green { background: rgba(74, 222, 128, 0.1); color: var(--green); }

/* Report mini visual */
.fv-report {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fv-report-line {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--slate);
  padding: 3px 6px;
  border-bottom: 0.5px solid var(--border);
}
.fv-report-line.header { color: var(--purple); font-weight: 600; }
.fv-report-line.total { color: var(--green); font-weight: 600; border-top: 1px solid var(--border); }

/* Health mini visual */
.fv-health-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--surface);
  margin-top: 6px;
  overflow: hidden;
}
.fv-health-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green), #22c55e);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Chat mini visual */
.fv-chat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fv-bubble {
  max-width: 80%;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 10px;
  line-height: 1.4;
}
.fv-bubble.user {
  align-self: flex-end;
  background: var(--blue);
  color: white;
  border-bottom-right-radius: 2px;
}
.fv-bubble.ai {
  align-self: flex-start;
  background: var(--surface);
  color: var(--text-secondary);
  border: 0.5px solid var(--border);
  border-bottom-left-radius: 2px;
}

/* Feature card animations */
.fv-row.anim-ready {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.fv-row.anim-ready.anim-in {
  opacity: 1;
  transform: translateX(0);
}
.fv-bar.anim-ready {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fv-bar.anim-in { transform: scaleX(1); }
.fv-badge.anim-ready {
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fv-badge.anim-in { opacity: 1; transform: scale(1); }
.fv-report-line.anim-ready {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.fv-report-line.anim-ready.anim-in {
  opacity: 1;
  transform: translateX(0);
}
@keyframes totalFlash {
  0% { background: transparent; }
  40% { background: rgba(74, 222, 128, 0.18); }
  100% { background: transparent; }
}
.fv-bubble.anim-ready {
  opacity: 0;
  transform: scale(0.8) translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.fv-bubble.anim-ready.anim-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.fv-typing-cursor {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: var(--text-secondary);
  margin-left: 1px;
  animation: blink 0.6s step-end infinite;
  vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0; } }

/* ---- Problem vs Solution ---- */
.problem-solution {
  padding: var(--section-py) 0;
  padding-bottom: 200px;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.12) 30%, rgba(31,111,235,0.15) 70%, transparent 100%);
}
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  perspective: 800px;
}
.ps-card {
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.18s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ps-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.ps-card.problem {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.18), rgba(22, 14, 30, 0.95));
  border: 1px solid rgba(248, 113, 113, 0.25);
}
.ps-card.problem:hover {
  border-color: rgba(248, 113, 113, 0.5);
}
.ps-card.solution {
  background: linear-gradient(135deg, rgba(31, 111, 235, 0.18), rgba(14, 16, 40, 0.95));
  border: 1px solid rgba(31, 111, 235, 0.25);
}
.ps-card.solution:hover {
  border-color: rgba(31, 111, 235, 0.5);
}
.ps-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.ps-card.problem .ps-label { color: var(--red); }
.ps-card.solution .ps-label { color: var(--blue); }
.ps-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.ps-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.ps-visual {
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 0.5px solid var(--border);
  padding: 16px;
  min-height: 160px;
}
/* Messy spreadsheet visual */
.ps-mess {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ps-mess-row {
  display: flex;
  gap: 6px;
  align-items: center;
}
.ps-mess-cell {
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 10px;
  white-space: nowrap;
}
.ps-mess-cell.err {
  background: rgba(248, 113, 113, 0.1);
  color: var(--red);
  border: 0.5px solid rgba(248, 113, 113, 0.2);
  transform: rotate(-1deg);
}
.ps-mess-cell.warn {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border: 0.5px solid rgba(251, 191, 36, 0.2);
  transform: rotate(0.5deg);
}
.ps-mess-cell.dim {
  background: var(--surface);
  color: var(--slate);
}
/* Clean orbit visual */
.ps-clean {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ps-clean-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 10px;
  color: var(--text-secondary);
  background: var(--surface);
}
.ps-clean-row .fv-badge { font-size: 9px; }
.ps-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- How It Works ---- */
.how-it-works {
  padding: var(--section-py) 0;
  padding-top: 200px;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(31,111,235,0.15) 200px, rgba(139,92,246,0.08) 100%);
}

.how-it-works::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05), transparent 60%);
  pointer-events: none;
}

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

.step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--purple);
  text-shadow: 0 0 8px rgba(139,92,246,1), 0 0 20px rgba(139,92,246,0.8), 0 0 45px rgba(139,92,246,0.6), 0 0 90px rgba(139,92,246,0.4), 0 0 140px rgba(139,92,246,0.2);
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Step connector arrows */
.step-connector {
  position: absolute;
  top: 60px;
  right: -24px;
  color: var(--blue);
  opacity: 0.3;
  font-size: 20px;
}

/* ---- Pricing ---- */
.pricing {
  padding: var(--section-py) 0;
  position: relative;
  background: linear-gradient(180deg, rgba(139,92,246,0.08), rgba(139,92,246,0.04) 80%, transparent);
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31, 111, 235, 0.04), transparent 60%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
  position: relative;
}

.pricing-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.pricing-card .pricing-features { flex: 1; }

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: transparent;
  background-image: linear-gradient(var(--surface), var(--surface)), linear-gradient(135deg, var(--blue), var(--purple));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 4px;
  white-space: nowrap;
  min-height: 44px;
}

.pricing-price span {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0;
}

.pricing-save {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 4px;
  min-height: 18px;
}

.pricing-save.hidden {
  visibility: hidden;
}

.pricing-desc {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--border);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}
.pricing-features li.disabled {
  text-decoration: line-through;
  text-decoration-thickness: 0.5px;
  opacity: 0.35;
}
.pricing-features li.disabled::before {
  color: var(--slate);
}

.pricing-card .btn-primary,
.pricing-card .btn-ghost,
.pricing-card .btn-primary {
  width: 100%;
  text-align: center;
}

.btn-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.pricing-toggle span {
  font-size: 14px;
  color: var(--slate);
  transition: color 0.3s;
}
.pricing-toggle span.active { color: var(--white); font-weight: 500; }
.pricing-toggle-track {
  width: 44px;
  height: 24px;
  background: var(--border);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}
.pricing-toggle-track.annual { background: var(--blue); }
.pricing-toggle-knob {
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left 0.3s;
}
.pricing-toggle-track.annual .pricing-toggle-knob { left: 23px; }
.pricing-save-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate);
  background: rgba(52,211,153,0.05);
  border: 0.5px solid rgba(52,211,153,0.15);
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}
.pricing-save-badge.active {
  color: #fff;
  background: rgba(52,211,153,0.7);
  border-color: rgba(52,211,153,0.9);
}

/* ---- Testimonials ---- */
.testimonials {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.04) 50%, transparent);
}

.testimonials-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials-carousel {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.carousel-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}
.carousel-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.testimonials-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-sizing: border-box;
}

.testimonial-card p {
  flex: 1;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card:hover { transform: translateY(-2px); }

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 500;
}

.testimonial-role {
  font-size: 12px;
  color: var(--slate);
}

.testimonial-ig {
  font-size: 11px;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}
.testimonial-ig:hover { text-decoration: underline; }

.testimonial-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50%;
}

/* ---- Final CTA ---- */
.cta-section { padding: var(--section-py) 0; }

.cta-box {
  text-align: center;
  padding: 80px 40px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(31, 111, 235, 0.08), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.06), transparent 50%);
  pointer-events: none;
}

.cta-box h2,
.cta-box p,
.cta-box .btn-primary { position: relative; }

.cta-box p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-box .btn-primary {
  font-size: 16px;
  padding: 14px 32px;
}

/* ---- Footer ---- */
footer {
  padding: 64px 0 32px;
  border-top: none;
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--slate);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }

.footer-col a {
  font-size: 14px;
  color: var(--slate);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 8px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.footer-bottom-links a {
  font-size: 13px;
  color: var(--slate);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* stagger children */
.fade-up-stagger > *:nth-child(1) { transition-delay: 0s; }
.fade-up-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.fade-up-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.fade-up-stagger > *:nth-child(4) { transition-delay: 0.3s; }

/* ---- Mobile Toggle ---- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--white);
}

/* ---- About / Careers pages ---- */
.about-hero {
  padding: 160px 0 64px;
  text-align: center;
}

.about-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-top: 12px;
}

.about-content {
  padding: 0 0 var(--section-py);
}

.about-block {
  max-width: 720px;
  margin: 0 auto 48px;
}

.about-block h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}

.about-block p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-values {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-values li {
  color: var(--muted);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.about-values li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.about-values li strong {
  color: var(--white);
}

.careers-coming-soon {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 0;
}

.coming-soon-icon {
  margin-bottom: 32px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon-icon::before {
  content: '';
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 111, 235, 0.2) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
  animation: orbit-torch 3s ease-in-out infinite;
}

.coming-soon-icon .brand-mark {
  position: relative;
  filter: drop-shadow(0 0 8px rgba(255,255,255,1)) drop-shadow(0 0 20px rgba(255,255,255,0.8)) drop-shadow(0 0 45px rgba(200,220,255,0.7)) drop-shadow(0 0 90px rgba(140,180,255,0.5)) drop-shadow(0 0 140px rgba(100,140,255,0.3));
}

@keyframes orbit-torch {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.careers-coming-soon h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}

.careers-coming-soon p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.careers-coming-soon a {
  color: var(--blue);
}

/* ---- Legal pages ---- */
.legal-block {
  max-width: 720px;
  margin: 0 auto 40px;
}

.legal-block h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

.legal-block h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 16px 0 8px;
  color: var(--white);
}

.legal-block p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal-block ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
}

.legal-block ul li {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.legal-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

.legal-block ul li strong {
  color: var(--white);
}

.legal-block a {
  color: var(--blue);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }

  .hero { padding-top: 100px; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; }

  .nav-links,
  .nav-login { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 0.5px solid var(--border);
  }
  .mobile-toggle { display: flex; }

  .ai-orb-block {
    flex-direction: column;
    text-align: center;
  }
  .ai-orb-wrap {
    width: 260px;
    height: 260px;
  }
  .ai-orb-perks { align-items: center; }

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

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 32px; }

  .showcase-viewport { height: 300px; }
  .showcase-slide { width: 100%; }
  .mock-sidebar { display: none; }

  .step-connector { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .showcase-viewport { height: 250px; }
}
