/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ===== LUCIDE ICONS ===== */
.step-icon [data-lucide], .step-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.feature-icon [data-lucide], .feature-icon svg { width: 20px; height: 20px; stroke-width: 1.75; }
.plan-features .check [data-lucide], .plan-features .check svg { width: 13px; height: 13px; stroke-width: 2.5; }

:root {
  --bg: #0c0a09;
  --bg-card: #1c1917;
  --bg-card-hover: #292524;
  --text: #f5f5f4;
  --text-dim: #a8a29e;
  --brand: #c45d3e;
  --accent: #c45d3e;
  --accent-rgb: 196, 93, 62;
  --accent2: #d4845a;
  --gradient: linear-gradient(135deg, #c45d3e, #d4845a);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #162030 transparent;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

a { color: inherit; text-decoration: none; }

/* ===== GRAIN TEXTURE ===== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== WEBGL PARALLAX SCENE ===== */
#scene3dCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;           /* behind everything */
}

/* ===== AMBIENT PARTICLES ===== */
#ambientParticles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;           /* above WebGL scene */
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(12,10,9,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(12,10,9,0.92); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-mark {
  flex-shrink: 0;
  color: var(--brand);
}
.nav-logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-logo-voz {
  color: var(--brand);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--text-dim);
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta {
  padding: 0.45rem 1.3rem !important;
  background: var(--gradient);
  border-radius: 100px;
  color: #0c0a09 !important;
  font-weight: 500 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb),0.25);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav.open {
  pointer-events: auto;
  visibility: visible;
}

/* Backdrop blur */
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-nav.open .mobile-nav-backdrop {
  opacity: 1;
}

/* Slide-in panel */
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 380px);
  background: linear-gradient(165deg, #1c1917 0%, #0c0a09 100%);
  border-left: 1px solid rgba(196, 93, 62, 0.15);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.75rem 2rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}

.menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.menu-close svg {
  width: 20px;
  height: 20px;
}

/* Nav links */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  flex: 1;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  padding: 1.1rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s, padding-left 0.3s;
  opacity: 0;
  transform: translateX(20px);
}

.mobile-nav.open .mobile-nav-links a {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s, padding-left 0.3s;
}

.mobile-nav.open .mobile-nav-links a:nth-child(1) { transition-delay: 0.1s, 0.1s, 0s, 0s; }
.mobile-nav.open .mobile-nav-links a:nth-child(2) { transition-delay: 0.17s, 0.17s, 0s, 0s; }
.mobile-nav.open .mobile-nav-links a:nth-child(3) { transition-delay: 0.24s, 0.24s, 0s, 0s; }

.mobile-nav-links a:active {
  padding-left: 1rem;
  color: var(--accent);
}

.mobile-nav-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--accent);
  opacity: 0.6;
  min-width: 1.5rem;
}

/* Footer area */
.mobile-nav-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(12px);
}

.mobile-nav.open .mobile-nav-footer {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  transition: opacity 0.2s;
}

.mobile-nav-cta:active {
  opacity: 0.85;
}

.mobile-nav-cta svg {
  width: 18px;
  height: 18px;
}

.mobile-nav-tagline {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.4;
  margin-top: 1rem;
  letter-spacing: 0.5px;
}

/* ===== SHARED SECTION STYLES ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 8rem 0; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-dim);
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  max-width: 520px;
  line-height: 1.65;
  font-weight: 300;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: var(--gradient);
  border: none;
  border-radius: 12px;
  color: #0c0a09;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb),0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
}

/* ===== PARALLAX ===== */
[data-parallax] {
  will-change: transform;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.35s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#blobCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(var(--accent-rgb),0.25);
  background: rgba(var(--accent-rgb),0.06);
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent2);
  border-radius: 50%;
  animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  font-weight: 300;
  padding: 0 0.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero load-in animations */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-anim-1 { animation-delay: 0.1s; }
.hero-anim-2 { animation-delay: 0.3s; }
.hero-anim-3 { animation-delay: 0.5s; }
.hero-anim-4 { animation-delay: 0.7s; }
.hero-anim-5 { animation-delay: 0.85s; }

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

/* (3D blob canvas is in hero-bg, styled via #blobCanvas above) */

/* Particle canvas — fixed so it covers only the viewport, not the full page */
#ambientParticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

/* ===== STEPS (How it works) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

/* ===== ANIMATED GRADIENT BORDER (improvement #4) ===== */
/* Angle is driven by JS — see main.js initGradientBorders() */

.step-card {
  background: transparent;
  border: none;
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  position: relative;
  isolation: isolate;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(var(--accent-rgb),0.18);
}

/* Ring layer — JS updates --gba (gradient border angle) on each frame */
.step-card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255,255,255,0.06);
  z-index: -1;
  transition: opacity 0.4s;
  pointer-events: none;
}
.step-card.gb-active::before,
.feature-card.gb-active::before {
  background: conic-gradient(
    from var(--gba, 0deg),
    transparent 0%,
    var(--accent) 18%,
    var(--accent2) 28%,
    #facdb4 33%,
    var(--accent2) 38%,
    var(--accent) 48%,
    transparent 66%
  );
}
.step-card::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: calc(var(--radius) - 1px);
  background: var(--bg-card);
  z-index: -1;
  pointer-events: none;
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: rgba(var(--accent-rgb),0.1);
  border: 1px solid rgba(var(--accent-rgb),0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  color: var(--accent);
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
}

.step-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ===== ACCURACY SECTION ===== */
.accuracy-section {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.accuracy-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 90vw);
  height: 400px;
  background: radial-gradient(ellipse, rgba(var(--accent-rgb),0.08) 0%, rgba(212,132,90,0.04) 50%, transparent 70%);
  pointer-events: none;
}

.accuracy-inner {
  text-align: center;
  padding: 0 1.5rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.accuracy-inner .section-label,
.accuracy-inner .section-title,
.accuracy-inner .section-subtitle {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.accuracy-section.in-view .accuracy-inner .section-label {
  opacity: 1; transform: translateY(0);
}
.accuracy-section.in-view .accuracy-inner .section-title {
  opacity: 1; transform: translateY(0); transition-delay: 0.12s;
}
.accuracy-section.in-view .accuracy-inner .section-subtitle {
  opacity: 1; transform: translateY(0); transition-delay: 0.22s;
}

.accuracy-inner .section-title {
  font-size: clamp(2rem, 5vw, 4rem);
}

/* Divider line that draws in */
.accuracy-divider {
  width: 0;
  height: 1px;
  margin: 2.5rem auto;
  background: var(--gradient);
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.accuracy-section.in-view .accuracy-divider {
  width: min(200px, 50vw);
}

.accuracy-stats {
  display: flex;
  gap: clamp(2rem, 6vw, 5rem);
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat:nth-child(1) { transition-delay: 0.35s; }
.stat:nth-child(2) { transition-delay: 0.5s; }
.stat:nth-child(3) { transition-delay: 0.65s; }

.accuracy-section.in-view .stat {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -2px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-top: 0.35rem;
  letter-spacing: 0.5px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.feature-card {
  background: transparent;
  border: none;
  border-radius: var(--radius);
  padding: 2.2rem;
  position: relative;
  isolation: isolate;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(var(--accent-rgb),0.18);
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255,255,255,0.06);
  z-index: -1;
  pointer-events: none;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: calc(var(--radius) - 1px);
  background: var(--bg-card);
  z-index: -1;
  pointer-events: none;
}

.feature-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(var(--accent-rgb),0.1);
  border: 1px solid rgba(var(--accent-rgb),0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ===== COMPARISON BARS ===== */
.comparison { margin-top: 4rem; }

.comp-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.comp-label {
  width: 160px;
  font-size: 0.88rem;
  color: var(--text-dim);
  text-align: right;
  flex-shrink: 0;
}

.comp-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bar-name {
  font-size: 0.72rem;
  width: 85px;
  color: var(--text-dim);
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,0.03);
  border-radius: 100px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 100px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bar-fill.ours { background: var(--gradient); }
.bar-fill.theirs { background: rgba(255,255,255,0.12); }

.bar-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  width: 35px;
  color: var(--text-dim);
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 8rem 0;
  position: relative;
}

.cta-glow {
  position: absolute;
  width: min(500px, 90vw);
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient);
  pointer-events: none;
}

.cta .section-title {
  max-width: 550px;
  margin: 0 auto 1rem;
}
.cta .section-subtitle {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.dl-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.8rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.dl-btn.android {
  background: var(--gradient);
  color: #0c0a09;
}
.dl-btn.android:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb),0.25);
}
.dl-btn.mac {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
}
.dl-btn.mac:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.dl-icon { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; }
.dl-text { text-align: left; }
.dl-text small {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.6;
}


/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 1.2rem; }
  .zoom-stats { gap: 2rem; }
}

/* Mobile */
@media (max-width: 640px) {
  nav {
    padding: 0.8rem 1rem;
  }
  .nav-links { display: none; } /* Hide the desktop links block */
  
  .nav-actions { gap: 0.75rem; }
  .nav-cta {
    font-size: 0.78rem !important;
    padding: 0.35rem 0.9rem !important;
  }
  .menu-toggle { display: block; } /* Show hamburger */

  .hero {
    padding: 6rem 1.5rem 2rem;
    min-height: auto;
    display: block; /* stack vertically if needed */
  }
  .hero-content {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .hero h1 {
    letter-spacing: -1px;
    margin-bottom: 1rem;
  }
  .hero p {
    margin-bottom: 2rem;
    padding: 0;
  }
  .hero-badge {
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
    padding: 0.35rem 0.8rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }


  /* Sections */
  section { padding: 4rem 0; }
  .container { padding: 0 1.2rem; }

  .section-title { letter-spacing: -1px; }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 2.5rem auto 0;
    gap: 1rem;
  }
  .step-card {
    padding: 1.8rem 1.5rem;
  }

  /* Accuracy */
  .accuracy-section { padding: 5rem 0; }
  .accuracy-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .accuracy-inner .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .feature-card {
    padding: 1.8rem 1.5rem;
  }

  /* Comparison */
  .comparison { margin-top: 2.5rem; }
  .comp-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .comp-label {
    width: auto;
    text-align: left;
    font-size: 0.82rem;
  }
  .bar-name { width: 70px; font-size: 0.68rem; }
  .bar-val { font-size: 0.7rem; width: 30px; }

  /* CTA */
  .cta { padding: 5rem 0; }
  .dl-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .dl-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ===== MODEL COMPARISON (card layout) ===== */
.mc-wrap {
  display: grid;
  grid-template-columns: 130px 1fr 1fr 1fr;
  gap: 0;
  margin-top: 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #252220;
}

/* Label column */
.mc-labels {
  display: flex;
  flex-direction: column;
  background: #0e0c0b;
  border-right: 1px solid #252220;
}
.mc-label-spacer {
  /* matches header height */
  min-height: 148px;
  border-bottom: 1px solid #252220;
}
.mc-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: #6b6460;
  padding: 0 1.1rem;
  display: flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid #1a1816;
  letter-spacing: 0.02em;
}
.mc-label:last-child { border-bottom: none; }

/* Model columns */
.mc-col {
  display: flex;
  flex-direction: column;
  background: #131110;
  border-right: 1px solid #1e1c1a;
  position: relative;
}
.mc-col:last-child { border-right: none; }

/* Column header */
.mc-head {
  padding: 1.6rem 1.4rem 1.2rem;
  border-bottom: 1px solid #252220;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.3rem;
}
.mc-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #57534e;
  text-transform: uppercase;
}
.mc-tag {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

/* Quality bar */
.mc-bars {
  margin-top: 0.85rem;
  position: relative;
  height: 3px;
  border-radius: 999px;
  background: #2a2725;
  overflow: hidden;
}
.mc-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--w);
  background: #3d3a38;
  border-radius: 999px;
  transition: width 1s cubic-bezier(0.16,1,0.3,1);
}
.mc-bar-track { display: none; }

/* Cells */
.mc-cell {
  padding: 0 1.4rem;
  min-height: 52px;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  border-bottom: 1px solid #1a1816;
  gap: 0.5rem;
}
.mc-cell-last { border-bottom: none; font-size: 0.8rem; }
.mc-label-mob { display: none; }

/* Dots */
.mc-dots { display: inline-flex; gap: 4px; }
.mcd {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2a2725;
  flex-shrink: 0;
}
.mcd.on { background: #57534e; }
.mcd.on-p { background: var(--accent); }

/* Free tag */
.mc-free-tag {
  display: inline-block;
  background: rgba(var(--accent-rgb),0.12);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb),0.2);
}

/* PREMIUM column */
.mc-col-premium {
  background: #160e07;
  border-right: none;
  border-left: 1px solid rgba(var(--accent-rgb),0.2);
}
.mc-premium-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: radial-gradient(ellipse at 50% -10%, rgba(var(--accent-rgb),0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.mc-head-premium {
  border-bottom-color: rgba(var(--accent-rgb),0.2);
  position: relative;
  z-index: 1;
}
.mc-premium-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--gradient);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.mc-name-premium { color: var(--accent); }
.mc-tag-premium { color: var(--text); }
.mc-bar-premium { background: var(--gradient); }

.mc-cell-premium {
  background: #160e07;
  border-bottom-color: rgba(var(--accent-rgb),0.1);
  position: relative;
  z-index: 1;
}
.mc-accent { color: var(--accent) !important; font-weight: 600; }

/* Hover rows */
.mc-col:not(.mc-col-premium) .mc-cell:hover { background: rgba(255,255,255,0.02); }
.mc-col-premium .mc-cell:hover { background: rgba(var(--accent-rgb),0.05); }

.model-disclaimer {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Mobile: stack columns, hide label column */
@media (max-width: 760px) {
  .mc-wrap {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .mc-labels { display: none; }
  .mc-col { border-right: none; border-bottom: 1px solid #252220; }
  .mc-col:last-child { border-bottom: none; }
  .mc-col-premium { border-left: none; border-top: 2px solid var(--accent); }
  .mc-head { min-height: auto; }
  .mc-label-mob {
    display: block;
    font-size: 0.72rem;
    color: #6b6460;
    min-width: 110px;
  }
  .mc-cell { min-height: 44px; }
}

/* ===== PRICING ===== */
.pricing-toggle {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 2rem 0 3rem;
}
.toggle-btn {
  background: var(--bg-card);
  border: 1px solid #2e2b29;
  color: var(--text-dim);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.toggle-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid #2e2b29;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover {
  border-color: #4a4744;
  transform: translateY(-4px);
}
.pricing-card-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #1f1614 0%, var(--bg-card) 100%);
}
.pricing-card-featured:hover {
  border-color: var(--accent2);
}

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dim);
}
.plan-price.hidden { display: none; }

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.plan-features li {
  font-size: 0.88rem;
  color: var(--text-dim);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.plan-features .check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 1px;
}

.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}
.plan-btn-primary {
  background: var(--gradient);
  color: #fff;
}
.plan-btn-primary:hover { opacity: 0.88; }
.plan-btn-outline {
  border: 1px solid #3d3a38;
  color: var(--text);
}
.plan-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

/* Small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 0.9rem; }
  .section-title { font-size: 1.6rem; }
  .step-card h3, .feature-card h3 { font-size: 1.05rem; }
  .step-card p, .feature-card p { font-size: 0.85rem; }
  .stat-number { font-size: 2rem; }
}
