/* =============================================================
   1. TOKENS — Custom properties
   ============================================================= */
:root {
  /* Backgrounds */
  --bg:        #ffffff;
  --bg-soft:   #f8f8f8;
  --bg-dark:   #0d0d0d;
  --bg-dark2:  #111111;
  --bg-card:   #1a1a1a;

  /* Text */
  --ink:       #0d0d0d;
  --ink-mute:  #6b7280;
  --ink-light: #9ca3af;
  --cream:     #f0f0f0;
  --cream-dim: rgba(240,240,240,0.7);

  /* Accent — Airbnb Red */
  --accent:      #FF385C;
  --accent-dark: #e0213c;
  --accent-mute: rgba(255,56,92,0.10);
  --accent-glow: rgba(255,56,92,0.25);

  /* Lines */
  --line:       rgba(13,13,13,0.09);
  --line-light: rgba(255,255,255,0.10);

  /* Typography */
  --font-display: 'Manrope', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter:    1.5rem;
  --radius:    16px;
  --radius-sm: 8px;
  --radius-lg: 24px;

  /* Easings */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

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

p { text-wrap: pretty; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

::selection {
  background: var(--accent);
  color: white;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. UTILITIES
   ============================================================= */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  padding: .6rem 1rem;
  background: var(--accent);
  color: white;
  z-index: 9999;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.accent-text {
  color: var(--accent);
}

.br-desktop { display: none; }
@media (min-width: 960px) { .br-desktop { display: block; } }

/* =============================================================
   4. SCROLL REVEALS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* CRITICAL gotcha A.4.5 fix */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

/* =============================================================
   5. BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  transition: background 0.25s var(--ease-out),
              transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,56,92,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary-light {
  background: white;
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-primary-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary-sm:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.8125rem;
}

/* =============================================================
   6. NAVIGATION
   ============================================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1.25rem 0;
  transition: background 0.35s var(--ease-out),
              padding 0.35s var(--ease-out),
              box-shadow 0.35s var(--ease-out);
}
.site-nav.is-scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-nimo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
}
.logo-tag {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-link:hover { color: white; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-menu.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 400;
}
.nav-menu.is-open .nav-link {
  font-size: 1.5rem;
  color: white;
}

@media (min-width: 960px) {
  .nav-menu { display: flex; }
  .nav-toggle { display: none; }
}

/* =============================================================
   7. HERO SECTION
   ============================================================= */
.section-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: var(--bg-dark);
  color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  --mx: 50%;
  --my: 40%;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 700px 600px at var(--mx) var(--my),
      rgba(255,56,92,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 450px 350px at 85% 12%,
      rgba(255,56,92,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 350px 350px at 10% 90%,
      rgba(160,25,55,0.12) 0%, transparent 60%),
    linear-gradient(165deg, #111111 0%, #0d0d0d 60%, #0a0a0a 100%);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' 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");
  background-size: 300px 300px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 7rem;
  padding-bottom: 4rem;
  flex: 1;
  justify-content: center;
}

.hero-eyebrow {
  display: flex;
  align-items: flex-start;
}

.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.55rem 1.25rem 0.55rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.4vw, 0.8125rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  transition: border-color 0.3s, background 0.3s;
}
.hero-eyebrow-badge:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 56, 92, 0.4);
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(255, 56, 92, 0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  color: white;
  max-width: 20ch;
  letter-spacing: -0.03em;
}
.hero-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
}
.hero-headline strong { font-weight: 800; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  max-width: 52ch;
  line-height: 1.65;
}
.hero-sub strong { color: rgba(255,255,255,0.9); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

/* Social proof bar */
.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0.5rem;
}

.proof-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
}
.proof-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

.proof-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  display: none;
}
@media (min-width: 540px) { .proof-sep { display: block; } }

.proof-availability {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}
.proof-availability strong { color: white; }

.avail-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: avail-pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes avail-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  animation: hero-scroll-bounce 2.5s ease-in-out infinite;
}
.hero-scroll:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
  color: white;
}
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

@media (min-width: 960px) {
  .hero-content { padding-top: 9rem; }
  .hero-proof { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* =============================================================
   8. STATS BAR
   ============================================================= */
.section-stats {
  background: white;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.stat-item {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-item:nth-child(2n) { border-right: none; }
.stat-item:nth-last-child(-n+2) { border-bottom: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-number span {
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--ink-mute);
  font-weight: 500;
  line-height: 1.4;
}

@media (min-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-item {
    border-bottom: none;
  }
  .stat-item:last-child { border-right: none; }
  .stat-item:nth-child(2n) { border-right: 1px solid var(--line); }
  .stat-item:last-child { border-right: none; }
}

@media (min-width: 960px) {
  .stat-item { padding: 2rem; }
}

/* =============================================================
   9. PAIN POINTS
   ============================================================= */
.section-pain {
  background: var(--bg-soft);
  padding: 5rem 0;
}

.section-kicker {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.kicker-light { color: rgba(255,255,255,0.45); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}
.section-title-light { color: white; }
.section-title-light em { color: rgba(255,255,255,0.75); }

.section-sub {
  font-size: 1.0625rem;
  color: var(--ink-mute);
  max-width: 52ch;
  line-height: 1.65;
}
.section-sub-light { color: rgba(255,255,255,0.55); }

.pain-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pain-header .section-sub { margin-inline: auto; }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: 0.9375rem;
  color: var(--ink-mute);
  line-height: 1.55;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.pain-card:hover {
  border-color: var(--accent-mute);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.pain-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-mute);
  color: var(--accent);
  flex-shrink: 0;
}
.pain-icon svg { width: 18px; height: 18px; }

.pain-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.pain-cta-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

@media (min-width: 720px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   10. VSL SECTION
   ============================================================= */
.section-vsl {
  background: var(--bg-dark);
  padding: 5rem 0 6rem;
  color: white;
}

.vsl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.vsl-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.vsl-headline em {
  font-style: italic;
  color: var(--accent);
}

.vsl-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 44ch;
  margin-bottom: 1.75rem;
}

.vsl-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.vsl-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.bullet-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.vsl-cta { display: flex; flex-direction: column; gap: 0.5rem; }
.vsl-cta-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* Video frame */
.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 50%, #0d0d0d 100%);
  cursor: pointer;
}

.video-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 40px rgba(255,56,92,0.5);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 50px rgba(255,56,92,0.65);
}
.play-btn svg { margin-left: 4px; }

.video-duration {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
}
.video-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.video-wrapper--local {
  aspect-ratio: 16 / 9;
}
.vsl-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (min-width: 960px) {
  .vsl-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* =============================================================
   11. AUTHORITY SECTION
   ============================================================= */
.section-authority {
  background: white;
  padding: 5rem 0;
}

.auth-header {
  margin-bottom: 3rem;
}

.auth-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.metric-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.metric-card:hover {
  border-color: var(--accent-mute);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.metric-num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--ink-mute);
  line-height: 1.4;
}

.metric-bar {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  margin-top: 0.5rem;
  overflow: hidden;
}
.metric-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 1.2s var(--ease-out);
}

/* Platforms */
.auth-platforms {
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.platforms-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.platforms-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.platform-logo { opacity: 0.55; transition: opacity 0.2s; }
.platform-logo:hover { opacity: 1; }

.platform-airbnb {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 900;
  color: #FF385C;
  letter-spacing: -0.03em;
}
.platform-booking {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #003580;
  letter-spacing: -0.01em;
}
.platform-booking span { color: #009fe3; }
.platform-vrbo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: #3D67CC;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}
.platform-expedia {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #00355f;
  letter-spacing: -0.02em;
}

/* Trust items */
.auth-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: white;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-mute);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-item span {
  font-size: 0.8125rem;
  color: var(--ink-mute);
}

.auth-cta { margin-top: 1rem; }

@media (min-width: 720px) {
  .auth-metrics { grid-template-columns: repeat(3, 1fr); }
  .auth-trust { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   12. METHODOLOGY
   ============================================================= */
.section-methodology {
  background: var(--bg-dark);
  padding: 5rem 0 6rem;
  color: white;
}

.method-header {
  margin-bottom: 3.5rem;
}
.method-header .section-title { color: white; }
.method-header .section-sub { margin-top: 0.5rem; color: rgba(255,255,255,0.55); }
.method-header .section-kicker { color: var(--accent); }

/* --- Steps track (vertical mobile / horizontal desktop) ------ */
.steps-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
}

/* Vertical connecting line on mobile */
.steps-track::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 38px;
  bottom: 38px;
  width: 1px;
  background: linear-gradient(to bottom,
    rgba(255,56,92,0.5) 0%,
    rgba(255,56,92,0.15) 70%,
    rgba(255,56,92,0.03) 100%);
  z-index: 0;
  pointer-events: none;
}

.step-item {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  position: relative;
}

.step-node-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 38px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,56,92,0.08);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255,56,92,0.15);
}
.step-circle span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.step-card {
  padding: 0.25rem 0 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

/* Last step — no bottom padding gap */
.step-item:last-child .step-card { padding-bottom: 0; }

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,56,92,0.12);
  border: 1px solid rgba(255,56,92,0.18);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg { width: 22px; height: 22px; }

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.025em;
}

.step-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}

.step-result {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  border-radius: 50px;
  background: rgba(255,56,92,0.07);
  border: 1px solid rgba(255,56,92,0.18);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,56,92,0.9);
  align-self: flex-start;
  letter-spacing: 0.01em;
}

.method-cta { text-align: center; }

/* --- Desktop: horizontal timeline ----------------------------- */
@media (min-width: 900px) {
  .steps-track {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  /* Remove the mobile vertical line */
  .steps-track::before { display: none; }

  .step-item {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
  }

  /* Horizontal connecting line between circles */
  .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: calc(38px + 0.75rem);
    right: calc(-0.75rem);
    height: 1px;
    background: linear-gradient(to right,
      rgba(255,56,92,0.4) 0%,
      rgba(255,56,92,0.05) 100%);
    z-index: 0;
  }

  .step-node-wrap {
    width: 38px;
    margin-bottom: 1.5rem;
    flex-direction: column;
  }

  .step-card {
    padding: 0 1.5rem 0 0;
  }

  .step-item:last-child .step-card { padding-right: 0; }
}

/* =============================================================
   13. CASES OF SUCCESS
   ============================================================= */
.section-cases {
  background: var(--bg-dark);
  padding: 5rem 0 6rem;
  color: white;
}

.cases-header {
  margin-bottom: 3rem;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* ---- Case card ------------------------------------------ */
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  will-change: transform;
}
.case-card:hover {
  border-color: rgba(255,56,92,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

/* Photo area */
.case-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #1a1a2e;
  overflow: hidden;
}
.case-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.case-card:hover .case-photo-img { transform: scale(1.04); }

/* Card body */
.case-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.case-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.case-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: white;
}
.case-location {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}
.case-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.cases-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cases-cta-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
}

@media (min-width: 720px) {
  .cases-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   14. CTA FUERTE — Calendly
   ============================================================= */
.section-cta {
  background: var(--bg-dark2);
  padding: 5rem 0 6rem;
  color: white;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.cta-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.cta-headline em {
  font-style: italic;
  color: var(--accent);
}

.cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  max-width: 44ch;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.cta-urgency {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255,56,92,0.08);
  border: 1px solid rgba(255,56,92,0.18);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
  animation: avail-pulse 2s ease-in-out infinite;
}
.cta-urgency strong { color: white; }

.cta-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.cta-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
}
.cta-bullets li span {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.875rem;
}

.calendly-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  background: white;
}

@media (min-width: 1024px) {
  .cta-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

/* =============================================================
   15. FAQ
   ============================================================= */
.section-faq {
  background: white;
  padding: 5rem 0;
}

.faq-header { margin-bottom: 2.5rem; }

.faq-list {
  max-width: 720px;
  margin-bottom: 3rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.35s var(--ease-out);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
}
.faq-answer-inner p {
  font-size: 0.9375rem;
  color: var(--ink-mute);
  line-height: 1.7;
}
.faq-answer-inner strong { color: var(--ink); }

.faq-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.faq-cta p {
  font-size: 1rem;
  color: var(--ink-mute);
}

/* =============================================================
   16. FOOTER
   ============================================================= */
.site-footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: block;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav-title {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.5rem;
}
.footer-nav a, .footer-cta-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-family: var(--font-body);
}
.footer-nav a:hover, .footer-cta-link:hover { color: white; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}
.footer-credits {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.18);
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* =============================================================
   17. MOBILE STICKY CTA
   ============================================================= */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.875rem 1.5rem;
  z-index: 300;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mobile-cta.is-visible { transform: translateY(0); }

.mobile-cta-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  line-height: 1.3;
  flex: 1;
}

@media (max-width: 719px) {
  .mobile-cta { display: flex; }
}

/* =============================================================
   18. GSAP REVEAL STATES
   ============================================================= */
/* Elements animated by GSAP should start hidden via JS,
   so CSS doesn't need to set them — avoids FOUC */

/* =============================================================
   19. RESPONSIVE — Desktop enhancements
   ============================================================= */
@media (min-width: 960px) {
  .section-pain,
  .section-vsl,
  .section-authority,
  .section-methodology,
  .section-cases,
  .section-cta,
  .section-faq { padding: 7rem 0; }

  .section-stats { padding: 0; }
  .stat-item { padding: 2.5rem 2rem; }

  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
  :root {
    --gutter: 2rem;
  }
}

/* =============================================================
   20. REDUCED MOTION — Only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .eyebrow-dot,
  .avail-dot,
  .urgency-dot,
  .hero-scroll { animation: none; }
}
