/* ============================================================
   Nativo Creative — Apple-minimalist design system
   oklch tokens, Space Grotesk + DM Sans, shared chrome
   ============================================================ */

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

:root {
  /* Colors */
  --background: oklch(1 0 0);
  --foreground: oklch(0.16 0 0);
  --surface: oklch(0.985 0 0);
  --surface-elevated: oklch(0.97 0 0);
  --primary: oklch(0.16 0 0);
  --primary-foreground: oklch(1 0 0);
  --muted-foreground: oklch(0.45 0 0);
  --accent: oklch(0.62 0.18 280);
  --border: oklch(0.16 0 0 / 10%);
  --radius: 1.25rem;

  /* Gradients */
  --gradient-sparkle: linear-gradient(135deg,
    oklch(0.62 0.20 280),
    oklch(0.65 0.16 220),
    oklch(0.72 0.14 60));

  /* Shadows */
  --shadow-card: 0 20px 60px -25px oklch(0.16 0 0 / 0.12);

  /* Spacing */
  --max-w: 80rem;
  --section-py: 6.25rem;
}

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

body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'DM Sans', sans-serif;
  letter-spacing: -0.035em;
  font-weight: 600;
  line-height: 1.1;
}

/* ── UTILITY: TEXT GRADIENT ── */
.text-gradient {
  background: var(--gradient-sparkle);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-sparkle {
  background: var(--gradient-sparkle);
}

.shadow-card { box-shadow: var(--shadow-card); }

/* ── UTILITY: FLOAT ANIMATION ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* ── UTILITY: SHIMMER ── */
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.animate-shimmer {
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
}

/* ── UTILITY: GLASS ── */
.glass {
  background: oklch(1 0 0 / 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

/* ── FADE ON SCROLL (JS-driven) ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── SITE HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(1 0 0 / 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.site-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--foreground);
  text-decoration: none;
  white-space: nowrap;
}
.site-header-wordmark .text-gradient {
  background: var(--gradient-sparkle);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-header-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border-radius: 6.25rem;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.site-header-nav a:hover {
  color: var(--foreground);
  background: oklch(0.16 0 0 / 5%);
}
.site-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.125rem;
  background: var(--foreground);
  color: var(--background);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 6.25rem;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.15s;
}
.site-header-cta:hover { opacity: 0.85; transform: scale(1.02); }

/* ── SITE FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
}
.site-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem 1.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  max-width: 14rem;
}
.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.875rem;
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col-links li a {
  font-size: 0.8125rem;
  color: var(--foreground);
  text-decoration: none;
  transition: opacity 0.15s;
}
.footer-col-links li a:hover { opacity: 0.65; }
.footer-platforms {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}
.footer-copyright {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ── HERO SECTION ── */
.hero {
  padding: 6.875rem 1.5rem 6.25rem;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--foreground);
  max-width: 46rem;
  margin: 0 auto 1.25rem;
}
.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  background: var(--foreground);
  color: var(--background);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6.25rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.82; transform: scale(1.02); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--muted-foreground);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 6.25rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-secondary:hover { color: var(--foreground); border-color: oklch(0.45 0 0 / 40%); transform: scale(1.02); }
.hero-stat-row {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.hero-stat {
  padding: 0 3rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-stat-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

/* ── SECTION LABELS ── */
.section-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--foreground);
  max-width: 38rem;
  margin-bottom: 1rem;
}
.section-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  line-height: 1.65;
  margin-bottom: 3rem;
}

/* ── PROOF / PROBLEM SECTION ── */
.proof {
  background: var(--surface);
  padding: var(--section-py) 1.5rem;
}
.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.proof-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.proof-stat-card {
  background: var(--background);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
}
.proof-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proof-stat-val span { color: var(--accent); }
.proof-stat-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

/* ── PROCESS / HOW IT WORKS ── */
.process {
  padding: var(--section-py) 1.5rem;
}
.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.process-step-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}
.step-icon {
  width: 3rem;
  height: 3rem;
  background: var(--background);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
  margin-bottom: 0.6rem;
}
.step-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ── PRICING SECTION ── */
.pricing {
  background: var(--surface);
  padding: var(--section-py) 1.5rem;
}
.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.plan-card {
  background: var(--background);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.plan-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.plan-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px oklch(0.62 0.18 280 / 10%);
}
.plan-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: -0.01em;
}
.plan-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: oklch(0.62 0.18 280 / 10%);
  padding: 3px 8px;
  border-radius: 4px;
}
.plan-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
}
.plan-price-custom {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--foreground);
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.plan-features li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding-left: 1.5rem;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1.125rem;
  height: 1.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236969af' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
}
.plan-cta {
  display: block;
  text-align: center;
  margin-top: 1.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--surface);
  color: var(--foreground);
  border: 1px solid var(--border);
  transition: background 0.15s;
}
.plan-cta:hover { background: var(--surface-elevated); }
.plan-card-featured .plan-cta {
  background: var(--foreground);
  color: var(--background);
}
.plan-card-featured .plan-cta:hover { opacity: 0.82; }

/* ── MANIFESTO / CTA SECTION ── */
.manifesto {
  background: var(--foreground);
  color: var(--background);
  padding: var(--section-py) 1.5rem;
}
.manifesto-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.manifesto-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.375rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: var(--background);
  margin-bottom: 1.25rem;
}
.manifesto-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  color: oklch(1 0 0 / 55%);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}
.manifesto-ctas {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-manifesto {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6.25rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-manifesto:hover { opacity: 0.82; transform: scale(1.02); }
.btn-manifesto-primary {
  background: var(--background);
  color: var(--foreground);
}
.btn-manifesto-ghost {
  background: transparent;
  color: var(--background);
  border: 1.5px solid oklch(1 0 0 / 30%);
}

/* ── HERO SECTION (new layout) ── */
.hero-outer {
  padding: 7rem 1.5rem 0;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-outer { padding-top: 10rem; }
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Pill badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 1rem 0.4375rem 0.75rem;
  background: oklch(0.98 0.01 280 / 12%);
  border: 1px solid oklch(0.62 0.18 280 / 18%);
  border-radius: 6.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--gradient-sparkle);
  flex-shrink: 0;
}

/* Headline */
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

/* Subhead */
.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--muted-foreground);
  max-width: 32rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.btn-pill-solid {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  background: var(--foreground);
  color: var(--background);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6.25rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-pill-solid:hover { opacity: 0.82; transform: scale(1.02); }
.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--foreground);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 6.25rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-pill-outline:hover { border-color: oklch(0.16 0 0 / 30%); transform: scale(1.02); }

/* Hero canvas */
.hero-canvas-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-canvas {
  aspect-ratio: 16 / 10;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}
.hero-canvas-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── VIDEO MOMENT SECTIONS ── */
.video-moment {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-moment-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.video-moment-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--background) 0%,
    oklch(1 0 0 / 40%) 40%,
    transparent 80%
  );
  z-index: 1;
}
.video-moment-gradient-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    oklch(0.97 0 0 / 90%) 0%,
    oklch(0.97 0 0 / 50%) 45%,
    transparent 80%
  );
  z-index: 1;
}
.video-moment-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}
.video-moment-1 {
  height: 85vh;
  background: oklch(0.94 0.02 240);
}
.vm1-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: var(--foreground);
  margin-bottom: 1.25rem;
}
.vm1-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  line-height: 1.5;
}

.video-moment-2 {
  height: 80vh;
  background: oklch(0.93 0.02 220);
}
.video-moment-bg-2-img {
  object-position: center 20%;
}
.vm2-text-block {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  padding: 0 3rem 0 4rem;
  text-align: left;
}
.vm2-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
.vm2-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.vm2-cta {
  display: inline-flex;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  :root { --section-py: 4.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proof-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .vm2-text-block { padding: 0 2rem; }
}
@media (max-width: 640px) {
  :root { --section-py: 3.5rem; }
  .hero-outer { padding-top: 6rem; }
  .proof-stats-grid { grid-template-columns: 1fr 1fr; gap: 0.625rem; }
  .process-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .video-moment-1 { height: 70vh; }
  .video-moment-2 { height: 65vh; }
  .vm2-text-block { padding: 0 1.5rem; text-align: center; }
  .vm2-cta { justify-content: center; display: flex; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: oklch(0.16 0 0 / 12%); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: oklch(0.16 0 0 / 20%); }

/* Selection */
::selection { background: oklch(0.62 0.18 280 / 15%); }

/* ============================================================
   INNER PAGE HERO (shared across brands, pricing, contact)
   ============================================================ */
.inner-hero {
  padding: 7rem 1.5rem 5rem;
  text-align: center;
}
.inner-hero-inner {
  max-width: 40rem;
  margin: 0 auto;
}
.inner-hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.inner-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ============================================================
   BRANDS PAGE
   ============================================================ */
.use-cases {
  padding: var(--section-py) 1.5rem;
  background: var(--surface);
}
.use-cases-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.use-case-card {
  background: var(--background);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1.5px solid var(--border);
}
.use-case-icon {
  width: 3rem;
  height: 3rem;
  background: var(--surface);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.use-case-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
  margin-bottom: 0.6rem;
}
.use-case-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.brand-workflow {
  padding: var(--section-py) 1.5rem;
}
.brand-workflow-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.workflow-step {
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.workflow-step-num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.workflow-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
  margin-bottom: 0.6rem;
}
.workflow-step-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.brand-stats {
  background: var(--surface);
  padding: var(--section-py) 1.5rem;
}
.brand-stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.brand-stat {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  background: var(--background);
  border: 1px solid var(--border);
}
.brand-stat-val {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.brand-stat-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.inner-cta {
  padding: var(--section-py) 1.5rem;
}
.inner-cta-inner {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}
.inner-cta-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.inner-cta-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-full {
  padding: 2rem 1.5rem var(--section-py);
  background: var(--surface);
}
.pricing-full-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.pricing-note {
  padding: 3rem 1.5rem;
  text-align: center;
}
.pricing-note-inner {
  max-width: 28rem;
  margin: 0 auto;
}
.pricing-note-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-section {
  padding: 2rem 1.5rem var(--section-py);
}
.contact-form-inner {
  max-width: 40rem;
  margin: 0 auto;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group-full {
  grid-column: 1 / -1;
}
.form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--foreground);
}
.form-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--foreground);
  background: var(--background);
  border: 1.5px solid var(--border);
  border-radius: 0.625rem;
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--muted-foreground); }
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(0.62 0.18 280 / 10%);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236969af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 7rem;
}
.form-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}
.form-submit {
  flex-shrink: 0;
}
.form-status {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
}

.contact-note {
  padding: 0 1.5rem var(--section-py);
}
.contact-note-inner {
  max-width: 40rem;
  margin: 0 auto;
}
.contact-note-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-note-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.contact-note-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE UPDATES
   ============================================================ */
@media (max-width: 900px) {
  .use-cases-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .workflow-steps { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .brand-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-full-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .inner-hero { padding: 5rem 1.5rem 3.5rem; }
  .workflow-steps { grid-template-columns: 1fr; }
  .brand-stats-grid { grid-template-columns: 1fr; }
  .pricing-full-grid { grid-template-columns: 1fr; }
  .brand-stat-val { font-size: 2.25rem; }
}

/* ============================================================
   ROSTER — AI Actor Grid (Lovable motion spec)
   ============================================================ */
.roster {
  padding: var(--section-py) 1.5rem;
}
.roster-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.roster-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.roster-header-left { flex-shrink: 0; }
.roster-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--foreground);
}
.roster-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  max-width: 22rem;
}
.roster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  align-items: end;
}
@media (min-width: 768px) {
  .roster-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.actor-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: default;
}

/* Organic stagger: every tile where i % 3 === 1 gets translate-y on md+ */
@media (min-width: 768px) {
  .actor-card:nth-child(3n+2) {
    transform: translateY(2rem);
  }
}

.actor-img {
  aspect-ratio: 3 / 4;
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  transition: filter 0.7s ease, transform 0.7s ease;
}
.actor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.actor-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.1 0 0 / 60%) 0%, transparent 50%);
}
.actor-card:hover .actor-img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.actor-initials {
  position: relative;
  z-index: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: oklch(1 0 0 / 60%);
  letter-spacing: -0.02em;
}
/* Per-actor placeholder colors (used as fallback if image fails) */
.actor-img-sofia   { background: linear-gradient(160deg, oklch(0.92 0.03 280), oklch(0.88 0.04 240)); }
.actor-img-marcus  { background: linear-gradient(160deg, oklch(0.88 0.04 200), oklch(0.84 0.03 160)); }
.actor-img-aria    { background: linear-gradient(160deg, oklch(0.93 0.02 320), oklch(0.90 0.03 280)); }
.actor-img-kai     { background: linear-gradient(160deg, oklch(0.86 0.05 40),  oklch(0.82 0.04 60)); }
.actor-img-iris    { background: linear-gradient(160deg, oklch(0.92 0.02 180), oklch(0.88 0.03 200)); }
.actor-img-vivian  { background: linear-gradient(160deg, oklch(0.90 0.03 320), oklch(0.86 0.04 340)); }
.actor-img-diego   { background: linear-gradient(160deg, oklch(0.88 0.04 30),  oklch(0.84 0.03 50)); }
.actor-img-mei     { background: linear-gradient(160deg, oklch(0.93 0.02 280), oklch(0.89 0.03 260)); }
.actor-name {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: oklch(1 0 0 / 90%);
  text-shadow: 0 1px 8px oklch(0 0 0 / 50%);
  z-index: 2;
}

/* ============================================================
   SPLIT MOMENT — Hook / Platform section
   ============================================================ */
.split-moment {
  padding: var(--section-py) 1.5rem;
}
.split-moment-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-moment-text { }
.split-moment-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
.split-moment-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 28rem;
}
.split-moment-media { }
.split-moment-card {
  aspect-ratio: 3 / 4;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}
.split-moment-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-moment-card-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  letter-spacing: 0.06em;
}

/* ============================================================
   THREE-UP STEPS — Pure typography
   ============================================================ */
.steps {
  padding: var(--section-py) 1.5rem;
}
.steps-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.step-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.step-item:last-child { border-bottom: 1px solid var(--border); }
.step-num-large {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--muted-foreground);
  line-height: 1;
  padding-top: 0.25rem;
}
.step-content { }
.step-title-plain {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.step-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  max-width: 36rem;
}

/* ============================================================
   CLOSING CTA
   ============================================================ */
.cta-close {
  padding: var(--section-py) 1.5rem;
  text-align: center;
}
.cta-close-inner { }
.cta-close-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--foreground);
  margin-bottom: 2.5rem;
}
.cta-close-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ============================================================
   SPECIAL TEXT SCRAMBLE
   ============================================================ */
.st-char {
  display: inline-block;
  transition: color 0.1s;
}

/* ============================================================
   RESPONSIVE UPDATES FOR NEW SECTIONS
   ============================================================ */
@media (max-width: 900px) {
  .roster-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .actor-card-offset { transform: none; }
  .split-moment-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-moment-body { max-width: 100%; }
  .step-item { padding: 2rem 0; gap: 1.25rem; }
}
@media (max-width: 640px) {
  .roster { padding: 4rem 1.5rem; }
  .split-moment { padding: 4rem 1.5rem; }
  .steps { padding: 4rem 1.5rem; }
  .cta-close { padding: 4rem 1.5rem; }
  .roster-grid { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
  .step-item { grid-template-columns: 3.5rem 1fr; }
  .cta-close-headline { margin-bottom: 2rem; }
}