/* ============================================================
   Breakout — Minimal Design System
   Fonts:    Gambarino (display) · ClashDisplay (UI) · Inter (body) · Instrument Serif (accent)
   Depth:    Surface shifts + one cinematic hero image
   Spacing:  8px grid: 8 16 24 32 48 64 80 96 128
   ============================================================ */

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --bg:            #000;
  --bg-raised:     #0a0a0a;

  --border:        rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);

  --fg:            #f5f0ea;
  --fg-secondary:  #8a8480;
  --fg-muted:      #4a4744;

  --brand-from:    #ffb38a;
  --brand-to:      #ff7e9d;
  --brand-grad:    linear-gradient(110deg, var(--brand-from), var(--brand-to));

  --success:       #6ee7b7;
  --accent-a:      #c4b5fd;

  --pill:  9999px;
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  24px;

  --max:   1120px;
  --pad:   24px;

  --font-display:    'ClashDisplay', 'Inter', sans-serif;
  --font-editorial:  'Gambarino', Georgia, serif;
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:      'Instrument Serif', Georgia, serif;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

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

::selection { background: rgba(255, 139, 107, 0.25); color: #fff; }

/* ─── Animatable custom properties ────────────────────────── */
@property --tilt {
  syntax: '<angle>';
  inherits: false;
  initial-value: -1.2deg;
}

@property --float-y {
  syntax: '<length>';
  inherits: false;
  initial-value: 0px;
}

@property --scroll-y {
  syntax: '<length>';
  inherits: false;
  initial-value: 0px;
}

@property --shimmer-pos {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}

/* ─── Keyframes ───────────────────────────────────────────── */
@keyframes hero-line-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes image-in {
  from { opacity: 0; --float-y: 12px; }
  to   { opacity: 1; --float-y: 0px; }
}

@keyframes hero-float {
  0%, 100% { --float-y: 0px; }
  50%      { --float-y: -14px; }
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes sparkle-pop {
  0%, 100% { transform: scale(1) rotate(0deg);    opacity: 0.85; }
  50%      { transform: scale(1.25) rotate(18deg); opacity: 1;    }
}

@keyframes draw-in {
  to { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes step-num-in {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.8;  transform: translate(-50%, -50%) scale(1.15); }
}

/* ─── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Opacity-only fade — for elements that already have their own transform */
.fade-in {
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.in-view { opacity: 1; }

/* ─── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px var(--pad) 0;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--fg);
}

/* ─── Header nav actions ──────────────────────────────────── */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.004em;
  color: var(--fg-secondary);
  transition: color 180ms ease;
  white-space: nowrap;
}
.nav-link:hover { color: var(--fg); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn-demo-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: var(--pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.004em;
  color: var(--fg);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  transition: background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}
.btn-demo-nav:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); }

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.006em;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-secondary);
  transition: color 180ms ease;
}
.btn-text:hover { color: var(--fg); }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px var(--pad) 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 56px;
}

.hero-eyebrow {
  opacity: 0;
  animation: reveal-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-from);
  margin: 0 0 20px;
}

.hero-title {
  font-family: var(--font-editorial);
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 28px;
  color: var(--fg);
  text-wrap: balance;
}

.hero-line {
  display: block;
  opacity: 0;
  animation: hero-line-in 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.12s + 0.1s);
}

.serif-line,
.section-title em,
.demo-title em {
  font-style: italic;
  background-image: linear-gradient(
    110deg,
    var(--brand-from) 0%,
    var(--brand-to) 35%,
    #ffd9c0 50%,
    var(--brand-to) 65%,
    var(--brand-from) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
}

.hero-sub {
  opacity: 0;
  animation: reveal-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-secondary);
  max-width: 420px;
  margin: 0 0 36px;
}

.hero-cta {
  opacity: 0;
  animation: reveal-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Hero glow (cursor-following) ────────────────────────── */
.hero { position: relative; isolation: isolate; }

.hero-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 139, 107, 0.22), transparent 70%);
  filter: blur(36px);
  pointer-events: none;
  left: 30%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: left 700ms cubic-bezier(0.16, 1, 0.3, 1),
              top  700ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  animation: glow-pulse 6s ease-in-out infinite;
}

.hero-text,
.hero-visual { position: relative; z-index: 1; }

/* ─── Hero image (float + tilt) ───────────────────────────── */
.hero-visual {
  --tilt: -1.2deg;
  --float-y: 0px;
  --scroll-y: 0px;
  opacity: 0;
  background: #fdf8ef;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-strong);
  padding: clamp(20px, 3vw, 36px);
  box-shadow:
    0 32px 80px -24px rgba(0, 0, 0, 0.9),
    0 0 120px -40px rgba(255, 139, 107, 0.22);
  transform-origin: center;
  transform: translateY(calc(var(--float-y) + var(--scroll-y))) rotate(var(--tilt));
  transition: --tilt 500ms cubic-bezier(0.16, 1, 0.3, 1),
              --scroll-y 200ms linear;
  animation:
    image-in 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards,
    hero-float 9s ease-in-out 2s infinite;
}

.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  display: block;
}

/* ─── Hand-drawn doodle accents around hero ───────────────── */
.doodle {
  position: absolute;
  color: var(--brand-from);
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  opacity: 0;
  pointer-events: none;
  animation: draw-in 1.4s cubic-bezier(0.65, 0, 0.35, 1) 1.4s forwards;
}

.doodle path { stroke-dasharray: inherit; stroke-dashoffset: inherit; }

.doodle-sparkle {
  width: 48px;
  height: 48px;
  top: -28px;
  right: -20px;
  animation:
    draw-in 1.2s cubic-bezier(0.65, 0, 0.35, 1) 1.4s forwards,
    sparkle-pop 3.2s ease-in-out 2.6s infinite;
}

.doodle-arrow {
  width: 96px;
  height: 76px;
  bottom: -30px;
  left: -52px;
  transform: rotate(-12deg);
  color: #ffb380;
  animation: draw-in 1.6s cubic-bezier(0.65, 0, 0.35, 1) 1.8s forwards;
}

.doodle-squiggle {
  width: 56px;
  height: 56px;
  top: 8px;
  left: -34px;
  color: var(--brand-to);
  opacity: 0;
  animation:
    draw-in 1.2s cubic-bezier(0.65, 0, 0.35, 1) 2.0s forwards,
    sparkle-pop 4s ease-in-out 3.2s infinite;
}

/* ─── Stats / Social proof ────────────────────────────────── */
.stats-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px var(--pad) 96px;
}

.stats-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 640px;
  margin-inline: auto;
}

.stats-header .overline { text-align: center; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.stat {
  text-align: center;
  padding: 0 16px;
  position: relative;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--border);
}

.stat:hover { transform: translateY(-4px); }

.stat-num {
  display: block;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.18;
  padding: 0 0.12em 0.06em;
  margin-bottom: 10px;
  background-image: linear-gradient(
    110deg,
    var(--brand-from) 0%,
    var(--brand-to) 35%,
    #ffd9c0 50%,
    var(--brand-to) 65%,
    var(--brand-from) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
  font-variant-numeric: tabular-nums;
  overflow: visible;
}

.stat-num-suffix {
  font-size: 0.45em;
  letter-spacing: 0;
  opacity: 0.8;
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg-secondary);
  line-height: 1.4;
  max-width: 160px;
  margin: 0 auto;
}

.stats-pull {
  max-width: 920px;
  margin: 64px auto 0;
  text-align: center;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--fg);
}

.stats-pull strong {
  font-weight: 400;
  font-style: italic;
  background-image: linear-gradient(
    110deg,
    var(--brand-from) 0%,
    var(--brand-to) 35%,
    #ffd9c0 50%,
    var(--brand-to) 65%,
    var(--brand-from) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ─── How It Works ────────────────────────────────────────── */
.steps-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px var(--pad);
}

.steps-header {
  margin-bottom: 72px;
}

.overline {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 16px;
}

.section-title {
  font-family: var(--font-editorial);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
  color: var(--fg);
}

.section-title em {
  font-family: var(--font-serif);
  font-weight: 400;
}

/* Sticky scroll storytelling */
.steps-scroll {
  position: relative;
}

.steps-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 28px 1fr 1.05fr;
  align-items: center;
  gap: 56px;
  padding-top: 80px;
  padding-bottom: 40px;
}

/* Progress rail */
.steps-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 220px;
  align-self: center;
  justify-self: center;
}

.steps-progress-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: transparent;
  transition: background 360ms ease, border-color 360ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.steps-progress-line {
  flex: 1;
  width: 1.5px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.steps-progress-line::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 0;
  background: linear-gradient(180deg, var(--brand-from), var(--brand-to));
  transition: height 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.steps-scroll[data-active="2"] .steps-progress-line:first-of-type::after,
.steps-scroll[data-active="3"] .steps-progress-line::after { height: 100%; }

.steps-scroll[data-active="1"] [data-dot="1"],
.steps-scroll[data-active="2"] [data-dot="2"],
.steps-scroll[data-active="3"] [data-dot="3"] {
  background: var(--brand-from);
  border-color: var(--brand-from);
  transform: scale(1.35);
  box-shadow: 0 0 0 6px rgba(255, 179, 138, 0.14);
}

.steps-scroll[data-active="2"] [data-dot="1"],
.steps-scroll[data-active="3"] [data-dot="1"],
.steps-scroll[data-active="3"] [data-dot="2"] {
  background: var(--brand-from);
  border-color: var(--brand-from);
}

/* Stage holds text + visual */
.steps-stage {
  display: contents;
}

/* Cross-fading text slides */
.steps-text { position: relative; min-height: 360px; }

.step-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  max-width: 520px;
}

.steps-scroll[data-active="1"] [data-step="1"],
.steps-scroll[data-active="2"] [data-step="2"],
.steps-scroll[data-active="3"] [data-step="3"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.step-num-big {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background-image: linear-gradient(180deg, var(--brand-from), var(--brand-to));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(255, 179, 138, 0.25);
}

.step-slide-title {
  font-family: var(--font-editorial);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--fg);
}

.step-slide-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background-image: linear-gradient(
    110deg,
    var(--brand-from) 0%,
    var(--brand-to) 35%,
    #ffd9c0 50%,
    var(--brand-to) 65%,
    var(--brand-from) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
}

.step-slide p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-secondary);
  margin: 0;
  max-width: 480px;
}

/* Right side visual stage */
.steps-visual {
  position: relative;
  min-height: 460px;
}

.step-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  will-change: transform;
}

/* Each step's photo gets a polaroid-card treatment with its own tilt */
.step-visual[data-step="1"] { transform: translateY(28px) rotate(-2deg) scale(0.97); }
.step-visual[data-step="2"] { transform: translateY(28px) rotate(1.2deg) scale(0.97); }
.step-visual[data-step="3"] { transform: translateY(28px) rotate(-1.5deg) scale(0.97); }

.steps-scroll[data-active="1"] [data-step="1"].step-visual { transform: translateY(0) rotate(-1.5deg) scale(1); }
.steps-scroll[data-active="2"] [data-step="2"].step-visual { transform: translateY(0) rotate(1deg) scale(1); }
.steps-scroll[data-active="3"] [data-step="3"].step-visual { transform: translateY(0) rotate(-1deg) scale(1); }

.steps-scroll[data-active="1"] [data-step="1"].step-visual,
.steps-scroll[data-active="2"] [data-step="2"].step-visual,
.steps-scroll[data-active="3"] [data-step="3"].step-visual {
  opacity: 1;
  pointer-events: auto;
}

.step-visual img {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 16px;
  background: #fdf8ef;
  box-shadow:
    0 32px 80px -24px rgba(0, 0, 0, 0.9),
    0 0 140px -40px rgba(255, 139, 107, 0.28);
}


/* Scroll spacers — one viewport-height per step */
.step-spacer {
  height: 90vh;
}
.step-spacer:first-of-type {
  /* The first segment already shows when the user enters the pin */
  height: 50vh;
}


/* ─── Demo / Calendly ─────────────────────────────────────── */
.demo-section {
  padding-bottom: 120px;
}

.demo-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.demo-copy {
  margin-bottom: 40px;
  text-align: center;
}

.demo-copy .overline {
  text-align: center;
}

.demo-title {
  font-family: var(--font-editorial);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--fg);
}

.demo-title em {
  font-family: var(--font-serif);
  font-weight: 400;
}

.demo-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-secondary);
  margin: 0;
  max-width: 480px;
  margin-inline: auto;
}

.calendly-embed {
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  background: var(--bg-raised);
  overflow: hidden;
  box-shadow:
    0 32px 80px -24px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 139, 107, 0.04);
}

.calendly-inline-widget {
  width: 100%;
}

.demo-alt {
  margin-top: 24px;
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
}
.demo-alt a {
  color: var(--fg-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 150ms ease;
}
.demo-alt a:hover { color: var(--fg); }

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--fg);
}

.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  margin: 0;
}

.footer-ai-ops {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}
.footer-ai-ops a { color: var(--fg-muted); transition: color 150ms ease; }
.footer-ai-ops a:hover { color: var(--brand-from); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px var(--pad) 64px;
    gap: 48px;
  }

  .hero-visual { transform: rotate(-0.8deg); }

  .stats-section { padding-bottom: 64px; }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
    padding: 32px 0;
  }
  .stat + .stat::before { display: none; }
  .stat:nth-child(even)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: var(--border);
    display: block;
  }

  .steps-section { padding: 64px var(--pad); }

  /* Mobile fallback: drop the sticky scroll, stack steps vertically */
  .steps-pin {
    position: static;
    height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0;
  }
  .steps-progress { display: none; }
  .steps-text { min-height: 0; }
  .step-slide,
  .step-visual {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    max-width: 100%;
  }
  .steps-visual { min-height: 0; }
  .step-spacer { display: none; }
  .step-visual img { max-width: 100%; }

  .calendly-inline-widget { height: 720px; }
}

@media (max-width: 480px) {
  .header-inner { border-radius: 16px; }

  .hero-title { font-size: clamp(38px, 10vw, 56px); }
}
