/* Dooable marketing site — dark, orange/amber accent, Hanken Grotesk + JetBrains Mono */

@keyframes glow-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-3%, 4%) scale(1.08); }
}
@keyframes float-panel {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
@keyframes float-panel-2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-11px); }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

:root {
  --bg-hero: oklch(0.16 0.012 55);
  --bg-base: oklch(0.13 0.01 55);
  --bg-footer: oklch(0.11 0.01 55);
  --card: oklch(0.19 0.015 55);
  --card-featured: oklch(0.21 0.02 55);
  --border: oklch(0.3 0.02 55);
  --text: oklch(0.97 0.006 70);
  --text-muted: oklch(0.78 0.015 70);
  --text-subtle: oklch(0.65 0.015 65);
  --accent: oklch(0.75 0.17 55);
  --accent-grad: linear-gradient(100deg, oklch(0.82 0.16 68), oklch(0.72 0.19 48));
  --accent-grad-text: linear-gradient(100deg, oklch(0.78 0.16 60), oklch(0.68 0.19 45));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text);
  font-family: 'Hanken Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; }
a { text-decoration: none; color: inherit; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  background: var(--bg-hero);
  overflow: hidden;
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow.glow-1 {
  top: -25%; right: -15%; width: 1100px; height: 1100px;
  background: radial-gradient(circle, oklch(0.75 0.19 55 / 0.55), transparent 68%);
  filter: blur(50px);
  animation: glow-drift 14s ease-in-out infinite;
}
.hero-glow.glow-2 {
  top: 10%; left: 5%; width: 800px; height: 800px;
  background: radial-gradient(circle, oklch(0.82 0.18 95 / 0.28), transparent 70%);
  filter: blur(70px);
}
.hero-glow.glow-3 {
  bottom: -30%; left: 20%; width: 1300px; height: 900px; border-radius: 50%;
  background: radial-gradient(ellipse, oklch(0.6 0.16 45 / 0.4), transparent 70%);
  filter: blur(60px);
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(oklch(1 0 0 / 0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

/* ─── NAV ─── */
.nav { position: relative; z-index: 10; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 32px 64px; max-width: 1440px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo-lockup { height: 39px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 40px; font-size: 15px; color: oklch(0.8 0.01 70); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.glass-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 15px;
  cursor: pointer;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}
.glass-btn-ghost {
  color: var(--text);
  border: 1px solid oklch(1 0 0 / 0.25);
  background: linear-gradient(155deg, oklch(1 0 0 / 0.16), oklch(1 0 0 / 0.03) 60%);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.35), inset 0 -6px 12px oklch(0.7 0.15 55 / 0.12), 0 6px 18px rgba(0,0,0,0.25);
}
.glass-btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.45), inset 0 -6px 14px oklch(0.7 0.17 55 / 0.2), 0 10px 26px rgba(0,0,0,0.3);
}
.glass-btn-accent {
  color: var(--text);
  font-weight: 600;
  border: 1px solid oklch(0.85 0.16 60 / 0.55);
  background: linear-gradient(155deg, oklch(0.8 0.15 60 / 0.4), oklch(0.7 0.18 50 / 0.14) 60%);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.4), inset 0 -6px 14px oklch(0.75 0.18 55 / 0.3), 0 6px 20px oklch(0.7 0.18 50 / 0.3);
}
.glass-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.5), inset 0 -6px 16px oklch(0.75 0.18 55 / 0.4), 0 10px 28px oklch(0.7 0.18 50 / 0.45);
}

.nav-mobile-actions { display: none; align-items: center; gap: 14px; }
.mobile-signin-pill {
  color: var(--text); font-size: 14px; border: 1px solid oklch(1 0 0 / 0.25);
  padding: 8px 16px; border-radius: 100px; background: oklch(1 0 0 / 0.06); white-space: nowrap;
}
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px; border-radius: 10px; background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.15);
  cursor: pointer; padding: 0; z-index: 3;
}
.nav-hamburger span {
  display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px;
}

/* ─── MOBILE FULL-SCREEN MENU ─── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 50; background: var(--bg-base);
  flex-direction: column; overflow: hidden;
}
.mobile-menu.is-open { display: flex; animation: rise-in 0.25s ease-out both; }
.mobile-menu-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.mobile-menu-glow.glow-a { top: -20%; right: -25%; width: 700px; height: 700px; background: radial-gradient(circle, oklch(0.75 0.19 55 / 0.28), transparent 68%); filter: blur(60px); }
.mobile-menu-glow.glow-b { bottom: -25%; left: -20%; width: 600px; height: 600px; background: radial-gradient(circle, oklch(0.6 0.16 45 / 0.22), transparent 70%); filter: blur(60px); }
.mobile-menu-head {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid oklch(0.28 0.015 55);
}
.mobile-menu-head .nav-logo-lockup { height: 28px; }
.mobile-menu-close {
  display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px;
  background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.15); cursor: pointer; color: var(--text);
  font-size: 18px; padding: 0;
}
.mobile-menu-rows { position: relative; z-index: 1; display: flex; flex-direction: column; padding: 24px 24px 8px; overflow-y: auto; flex: 1; }
.mobile-menu-row {
  display: flex; align-items: center; justify-content: space-between; padding: 19px 4px;
  font-size: 21px; font-weight: 700; color: var(--text); border-bottom: 1px solid oklch(0.26 0.015 55);
}
.mobile-menu-row span { color: var(--accent); font-size: 18px; }
.mobile-menu-actions {
  position: relative; z-index: 1; padding: 20px 24px 36px; display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid oklch(0.28 0.015 55);
}
.mobile-menu-btn {
  font-size: 16.5px; font-weight: 700; padding: 16px; border-radius: 12px; cursor: pointer; text-align: center;
}
.mobile-menu-btn-ghost { color: var(--text); background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.2); }
.mobile-menu-btn-accent { color: oklch(0.18 0.02 55); background: var(--accent-grad); border: none; box-shadow: 0 8px 24px oklch(0.7 0.18 50 / 0.35); }
.mobile-menu-tagline { text-align: center; font-size: 12.5px; color: oklch(0.55 0.015 65); margin-top: 6px; }

/* ─── HERO GRID ─── */
.hero-grid {
  position: relative; z-index: 2; max-width: 1440px; margin: 0 auto;
  padding: 64px 64px 0;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px 40px;
  grid-template-areas: "top visual" "bottom visual";
  align-items: center;
}
.hero-top { grid-area: top; animation: rise-in 0.8s ease-out both; }
.hero-bottom { grid-area: bottom; animation: rise-in 0.8s ease-out both; }
.hero-visual { grid-area: visual; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px 7px 8px; border-radius: 100px;
  background: oklch(0.24 0.02 55); border: 1px solid oklch(0.35 0.03 55);
  margin-bottom: 28px; font-size: 13.5px; color: oklch(0.85 0.02 65); font-weight: 600;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-headline {
  font-size: 64px; line-height: 1.04; font-weight: 700; letter-spacing: -0.02em;
  margin: 0 0 24px; min-height: 200px;
}
.hh-seg { visibility: hidden; }
.hh-seg.is-visible { visibility: visible; }
.hh-gradient {
  background: var(--accent-grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hh-cursor { opacity: 0.7; color: var(--text); }
.hh-cursor.is-hidden { visibility: hidden; }

.hero-sub { font-size: 19px; line-height: 1.6; color: var(--text-muted); max-width: 520px; margin: 0 0 40px; }

.hero-cta-row { display: flex; align-items: center; gap: 20px; margin-bottom: 52px; }
.btn-gradient {
  font-family: 'Hanken Grotesk', sans-serif; font-size: 16.5px; font-weight: 700;
  color: oklch(0.18 0.02 55); background: var(--accent-grad); border: none;
  padding: 17px 32px; border-radius: 100px; cursor: pointer;
  box-shadow: 0 8px 30px oklch(0.7 0.18 50 / 0.4);
  display: inline-block;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
}
.btn-gradient:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 14px 44px oklch(0.7 0.18 50 / 0.55); }
.btn-gradient-lg { font-size: 17px; padding: 18px 40px; }
.hero-link { font-size: 15.5px; color: var(--text-muted); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }

.hero-stats { display: flex; align-items: center; gap: 28px; padding-top: 28px; border-top: 1px solid oklch(0.3 0.015 55); }
.hero-stat-val { font-size: 22px; font-weight: 700; }
.hero-stat-lbl { font-size: 13px; color: var(--text-subtle); margin-top: 2px; }
.hero-stat-divider { width: 1px; height: 32px; background: oklch(0.3 0.015 55); }

.hero-visual { position: relative; height: 640px; animation: rise-in 1s ease-out 0.15s both; }
.hero-mockup {
  position: absolute; top: 20px; left: -70px; width: 135%; border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6), 0 0 0 1px oklch(0.3 0.02 55);
  animation: float-panel 8s ease-in-out infinite;
}
.hero-mockup-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: oklch(0.13 0.01 55); }
.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot-red { background: #e05a4c; }
.dot-amber { background: #e0b23f; }
.dot-green { background: #5cb85c; }
.hero-mockup img { display: block; width: 100%; height: auto; }

.hero-ai-panel {
  position: absolute; bottom: -10px; right: -70px; width: 270px; border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 70px -15px rgba(0,0,0,0.55); border: 1px solid oklch(0.35 0.02 55);
  background: oklch(0.2 0.015 55);
  animation: float-panel-2 7s ease-in-out infinite 0.6s;
}
.hero-ai-head { padding: 14px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid oklch(0.3 0.015 55); }
.hero-ai-emoji { font-size: 16px; }
.hero-ai-name { font-weight: 700; font-size: 14.5px; }
.hero-ai-badge { font-size: 10px; font-weight: 700; color: var(--accent); background: oklch(0.28 0.05 55); padding: 2px 7px; border-radius: 5px; margin-left: auto; }
.hero-ai-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.hero-ai-prompt { font-size: 13px; color: var(--text-muted); }
.hero-ai-bubble { font-size: 12.5px; padding: 9px 12px; border-radius: 9px; background: oklch(0.27 0.04 55); color: oklch(0.9 0.03 65); width: fit-content; }

/* ─── TRUST STRIP ─── */
.trust-strip { position: relative; z-index: 2; max-width: 1440px; margin: 100px auto 0; padding: 0 64px 100px; text-align: center; }
.trust-label { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: oklch(0.6 0.02 65); margin-bottom: 24px; }
.trust-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.trust-pill {
  padding: 11px 22px; border-radius: 100px; background: oklch(0.22 0.015 55);
  border: 1px solid oklch(0.32 0.02 55); font-size: 14.5px; color: oklch(0.85 0.015 65);
}

/* ─── FEATURE SHOWCASE — independently-pinned sticky panels, pure CSS ───
   Each panel is an outer spacer (175vh) wrapping an inner `position: sticky`
   panel (100vh) — it pins for the duration of its own spacer, then is
   naturally covered by the next panel scrolling up over it. No JS scroll
   listener drives this; only video play/pause is JS (IntersectionObserver). */
@keyframes feature-grow {
  from { transform: scale(0.68); opacity: 0.55; }
  to { transform: scale(1.06); opacity: 1; }
}
.feature-section { position: relative; z-index: 1; }
.feature-spacer { position: relative; height: 175vh; view-timeline-name: --feature-panel; view-timeline-axis: block; }
.feature-panel {
  position: sticky; top: 0; height: 100vh; height: 100dvh; overflow: hidden;
  background: var(--bg-base); display: flex; align-items: center; padding: 2px 0;
}
.feature-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(65px); }

.feature-row {
  position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; padding: 56px 64px;
  width: 100%; height: 100%; box-sizing: border-box;
  display: flex; flex-direction: column; gap: 28px; align-items: stretch; justify-content: center;
}
.feature-imgstack {
  position: relative; flex: 0 1 auto; min-height: 0; height: 64vh;
  display: flex; align-items: center; justify-content: center;
  animation: feature-grow linear both; animation-timeline: --feature-panel; animation-range: entry 0% cover 45%;
}
@supports not (animation-timeline: view()) {
  .feature-imgstack { animation: none !important; transform: none !important; }
}
.feature-shot {
  position: relative; z-index: 1; height: 100%; width: auto; max-width: 100%;
  aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden;
}
.feature-shot video { display: block; width: 100%; height: 100%; object-fit: contain; background: #000; }

.feature-textstack { position: relative; text-align: left; flex-shrink: 0; }
.feature-heading { font-size: 31px; line-height: 1.18; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 6px; color: var(--text); }
.feature-sub { font-size: 16.5px; line-height: 1.45; color: oklch(0.72 0.015 70); margin: 0 0 2px; max-width: 760px; }
.feature-checklist {
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; row-gap: 12px;
  width: 100%; max-width: 820px; margin: 16px 0 0;
}
.feature-checklist div { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; line-height: 1.3; color: oklch(0.85 0.015 65); }
.check-mark { color: var(--accent); font-weight: 700; flex-shrink: 0; }

@media (max-width: 1024px) {
  /* Sticky pinning is desktop/tablet-only; below this, panels degrade to a
     plain stacked scroll — the intended simpler mobile behavior. */
  .feature-panel { position: relative; height: auto; min-height: 100vh; overflow: visible; padding: 80px 0; }
  .feature-spacer { height: auto; }
  .feature-row { padding-top: 0; padding-bottom: 0; }
  .feature-imgstack { height: auto; width: 100%; }
  .feature-imgstack .feature-shot { height: auto !important; width: 100% !important; }
}
@media (max-width: 720px) {
  .feature-checklist { grid-template-columns: 1fr; }
}

/* ─── SCROLL REVEAL ─── */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2,.8,.2,1); }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

/* ─── HOW IT WORKS ─── */
.how {
  position: relative; z-index: 2; background: var(--bg-hero);
  padding: 130px 64px; overflow: hidden;
  border-radius: 48px 48px 0 0; box-shadow: 0 -60px 100px -20px rgba(0,0,0,0.55);
}
.how-glow {
  position: absolute; top: 0; right: 0; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, oklch(0.78 0.17 60 / 0.12), transparent 70%); filter: blur(60px);
}
.how-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }
.how-heading { font-size: 44px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 64px; color: var(--text); max-width: 600px; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.how-step { border-left: 1px solid oklch(0.32 0.02 55); padding-left: 28px; }
.how-number { font-size: 15px; font-weight: 700; color: oklch(0.55 0.1 55); margin-bottom: 18px; }
.how-step h3 { font-size: 22px; font-weight: 700; margin: 0 0 12px; color: var(--text); }
.how-step p { font-size: 15.5px; line-height: 1.6; color: oklch(0.68 0.015 70); margin: 0; }

@media (max-width: 1024px) {
  .how-steps { grid-template-columns: 1fr; gap: 36px; }
}

/* ─── PRICING ─── */
.pricing { position: relative; background: var(--bg-base); padding: 130px 64px; }
.pricing-inner { max-width: 1280px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 64px; }
.section-heading { font-size: 44px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 16px; color: var(--text); }
.section-sub { font-size: 17px; color: oklch(0.7 0.015 70); max-width: 520px; margin: 0 auto; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 28px; display: flex; flex-direction: column;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.plan-card:hover { transform: perspective(1200px) rotateX(2deg) translateY(-10px); box-shadow: 0 30px 70px -20px oklch(0.7 0.18 50 / 0.45); }
.plan-name { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.plan-desc { font-size: 13.5px; color: oklch(0.62 0.015 65); margin-bottom: 24px; min-height: 36px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; font-size: 38px; font-weight: 700; margin-bottom: 24px; }
.plan-per { font-size: 14px; font-weight: 500; color: oklch(0.6 0.015 65); }
.plan-features { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; color: oklch(0.82 0.015 65); flex: 1; }
.plan-features > div { display: flex; align-items: flex-start; gap: 8px; }
.plan-inherits { color: oklch(0.6 0.16 55); font-weight: 600; }
.plan-inherits-featured { color: oklch(0.78 0.17 58); }
.plan-addons-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: oklch(0.7 0.17 55); margin-top: 8px;
}
.bullet { color: oklch(0.55 0.02 60); flex-shrink: 0; }
.coming-soon { color: oklch(0.5 0.015 60); font-style: italic; }
.plan-btn {
  font-weight: 700; font-size: 15px; padding: 13px; border-radius: 10px; cursor: pointer;
  text-align: center; display: block; margin-top: 20px;
}
.plan-btn-ghost { color: oklch(0.95 0.006 70); background: transparent; border: 1px solid oklch(0.4 0.02 60); }
.plan-btn-primary { color: oklch(0.18 0.02 55); background: var(--accent-grad); border: none; }

.plan-card-featured {
  background: var(--card-featured);
  border: 1px solid oklch(0.75 0.17 55 / 0.5);
  box-shadow: 0 20px 60px -20px oklch(0.7 0.18 50 / 0.35);
  transform: perspective(1400px) rotateX(2deg) rotateY(-2deg);
}
.plan-card-featured:hover { transform: perspective(1400px) rotateX(0deg) rotateY(0deg) translateY(-6px) scale(1.015); }
.plan-popular {
  position: absolute; top: -14px; left: 28px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
  color: oklch(0.18 0.02 55); background: var(--accent-grad); padding: 5px 14px; border-radius: 100px;
}
.pricing-footnote { text-align: center; font-size: 13.5px; color: oklch(0.55 0.015 65); margin-top: 36px; }
.pricing-footnote a { text-decoration: underline; }

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card-featured { transform: none; }
  .plan-card-featured:hover { transform: translateY(-6px); }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ─── FINAL CTA ─── */
.final-cta { position: relative; background: var(--bg-hero); padding: 130px 64px; overflow: hidden; text-align: center; }
.final-cta-glow {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 1000px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse, oklch(0.72 0.18 55 / 0.4), transparent 70%); filter: blur(70px);
}
.final-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final-cta-inner h2 { font-size: 42px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 32px; color: var(--text); }

/* ─── FOOTER ─── */
.footer { position: relative; background: var(--bg-footer); padding: 80px 64px 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-lockup { height: 34.5px; width: auto; object-fit: contain; }
.footer-brand p { font-size: 15px; color: oklch(0.6 0.015 65); line-height: 1.6; margin: 0; }
.footer-col-title { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: oklch(0.5 0.015 65); margin-bottom: 20px; }
.footer-col { display: flex; flex-direction: column; gap: 0; }
.footer-col a { display: block; font-size: 14.5px; color: oklch(0.72 0.015 70); margin-bottom: 14px; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; padding-top: 28px;
  border-top: 1px solid oklch(0.24 0.015 55); font-size: 13.5px; color: oklch(0.5 0.015 65);
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; grid-template-areas: "top" "visual" "bottom"; padding-top: 24px; }
  .hero-visual { height: auto; margin-top: 16px; margin-bottom: 8px; overflow: visible; }
  .hero-mockup { position: static; width: 100%; max-width: 100%; left: 0; top: 0; }
  .hero-ai-panel { display: none; }
  .hero-headline { font-size: 44px; min-height: 0; }
  .nav-links { display: none; }
  .nav-mobile-actions { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding-top: 20px; padding-bottom: 20px; }
  .hero-grid, .nav-inner { padding-left: 32px; padding-right: 32px; }
  .trust-strip { padding-left: 32px; padding-right: 32px; }
  .trust-pills { gap: 10px; }
  .hero-stats { gap: 20px; }
  .hero-stat-val { font-size: 18px; white-space: nowrap; }
}
@media (max-width: 640px) {
  .hero-headline { font-size: 34px; min-height: 0; }
  .hero-sub { margin-top: 4px; }
  .hero-visual { height: auto; margin-top: 16px; margin-bottom: 8px; overflow: visible; }
  .hero-mockup { box-shadow: 0 24px 60px -18px rgba(0,0,0,0.6), 0 0 0 1px oklch(0.3 0.02 55); }
  .nav-inner { padding-top: 16px; padding-bottom: 16px; }
  .hero-grid, .nav-inner { padding-left: 20px; padding-right: 20px; }
  .trust-strip { padding-left: 20px; padding-right: 20px; }
  .how, .pricing, .final-cta, .footer { padding-left: 24px; padding-right: 24px; }
  .section-heading, .how-heading { font-size: 30px; }
  .hero-stats { gap: 14px; }
  .hero-stat-val { font-size: 15.5px; }
  .hero-stat-lbl { font-size: 11.5px; }
}
