/* ============================================================
   Camel Clipping
   Dark premium landing page. Motion system: two easing curves
   (deceleration for travel, spring for interaction) and four
   duration steps, applied consistently across every transition.
   ============================================================ */

:root {
  /* --- palette --- */
  --bg: #090401;
  --text: #f8f5f2;
  --muted: rgba(255, 255, 255, 0.6);
  --muted-2: rgba(255, 255, 255, 0.8);

  --card-grad: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  --card-dark: rgba(0, 0, 0, 0.4);
  --ring: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  --ring-strong: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  --bloom: 0 24px 60px -20px rgba(250, 97, 20, 0.28);

  --orange: #fa6114;
  --orange-hi: #ff7b3d;
  --orange-lo: #f23c05;
  --peach: #ffa15e;

  --btn-grad: linear-gradient(180deg, rgba(255, 123, 61, 0.9) 0%, rgba(242, 60, 5, 0.9) 100%);
  --gloss:
    inset 0 2px 2px rgba(255, 255, 255, 0.45),
    inset 0 -3px 4px rgba(140, 30, 0, 0.55);
  --num-grad: linear-gradient(180deg, #ffd9b8 0%, #fa6114 92%);

  /* --- motion system --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);       /* travel + entrances */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1); /* overshoot: hover, pops */
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);        /* color + opacity only */
  --ease: var(--ease-out);
  --t-fast: 200ms;
  --t-med: 380ms;
  --t-slow: 700ms;
  --t-entrance: 900ms;

  /* --- layout --- */
  --r: 16px;
  --container: 1240px;

  --font-head: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-accent: "Bricolage Grotesque", "Inter", sans-serif;
  --font-mono: "Roboto Mono", monospace;

  /* lets the FAQ animate to intrinsic height where supported */
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 6.2vw, 4rem); line-height: 1.18; }
h2 { font-size: clamp(2.1rem, 5vw, 3.625rem); line-height: 1.1; }
h3 { font-size: 1.5rem; line-height: 1.3; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 30px; position: relative; z-index: 1; }
section[id] { scroll-margin-top: 120px; }

::selection { background: var(--orange); color: #12060a; }

/* dark scrollbar */
* { scrollbar-color: rgba(250, 97, 20, 0.5) rgba(255, 255, 255, 0.05); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #0c0603; }
::-webkit-scrollbar-thumb {
  background: rgba(250, 97, 20, 0.45);
  border-radius: 999px;
  border: 3px solid #0c0603;
}
::-webkit-scrollbar-thumb:hover { background: rgba(250, 97, 20, 0.75); }

/* keyboard focus — visible everywhere, never removed without replacement */
:focus-visible {
  outline: 2px solid var(--peach);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible, .plat-chip:focus-visible { outline-offset: 4px; border-radius: 999px; }

/* off-screen until tabbed to, so the header nav is skippable */
.skip-link {
  position: fixed; top: 12px; left: 50%;
  transform: translate(-50%, -160%);
  z-index: 200;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--btn-grad);
  color: #fff; font-weight: 500; font-size: 0.95rem;
  text-decoration: none;
  transition: transform var(--t-med) var(--ease-spring);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

/* ============ Starfield (two offset layers to break tiling) ============ */
.stars { position: relative; }
.stars::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='460' height='460'><g fill='none'><circle cx='40' cy='60' r='1.4' fill='white' opacity='0.55'/><circle cx='210' cy='30' r='1.1' fill='%23ffa15e' opacity='0.7'/><circle cx='330' cy='120' r='1.3' fill='white' opacity='0.4'/><circle cx='120' cy='210' r='1' fill='white' opacity='0.35'/><circle cx='420' cy='250' r='1.4' fill='%23ffa15e' opacity='0.5'/><circle cx='260' cy='330' r='1.1' fill='white' opacity='0.45'/><circle cx='70' cy='390' r='1.2' fill='%23ffa15e' opacity='0.5'/><path d='M160 130l1.6 6.4 6.4 1.6-6.4 1.6-1.6 6.4-1.6-6.4-6.4-1.6 6.4-1.6z' fill='%23ffa15e' opacity='0.8'/><path d='M380 60l1.3 5.2 5.2 1.3-5.2 1.3-1.3 5.2-1.3-5.2-5.2-1.3 5.2-1.3z' fill='white' opacity='0.5'/><path d='M300 420l1.3 5.2 5.2 1.3-5.2 1.3-1.3 5.2-1.3-5.2-5.2-1.3 5.2-1.3z' fill='%23ffa15e' opacity='0.6'/></g></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='710' height='690'><g fill='none'><circle cx='95' cy='150' r='1.2' fill='white' opacity='0.4'/><circle cx='520' cy='90' r='1.5' fill='%23ffa15e' opacity='0.45'/><circle cx='640' cy='430' r='1.1' fill='white' opacity='0.35'/><circle cx='300' cy='560' r='1.3' fill='%23ffa15e' opacity='0.4'/><circle cx='180' cy='620' r='1' fill='white' opacity='0.3'/><path d='M470 300l1.4 5.6 5.6 1.4-5.6 1.4-1.4 5.6-1.4-5.6-5.6-1.4 5.6-1.4z' fill='white' opacity='0.4'/><path d='M60 470l1.2 4.8 4.8 1.2-4.8 1.2-1.2 4.8-1.2-4.8-4.8-1.2 4.8-1.2z' fill='%23ffa15e' opacity='0.5'/></g></svg>");
  background-position: 0 0, 130px 60px;
  pointer-events: none;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500; font-size: 0.98rem;
  color: #fff;
  border: none; cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition:
    transform var(--t-med) var(--ease-spring),
    box-shadow var(--t-med) var(--ease-out),
    background var(--t-fast) var(--ease-soft),
    filter var(--t-fast) var(--ease-soft);
}
.btn:active { transform: translateY(0) scale(0.97); transition-duration: var(--t-fast); }

.btn-orange {
  background: var(--btn-grad);
  box-shadow: var(--gloss), 0 14px 40px -14px rgba(242, 60, 5, 0.75);
  padding-right: 14px;
}
.btn-orange:not(:has(.arr-circle)):not(:has(.arr)) { padding-right: 30px; }
.btn-orange:hover {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.06);
  box-shadow: var(--gloss), 0 26px 60px -14px rgba(242, 60, 5, 1);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--ring);
}
.btn-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--ring-strong), 0 18px 44px -20px rgba(0, 0, 0, 0.9);
}

.btn-white {
  background: #fff;
  color: #090401;
  padding: 0 18px 0 24px;
}
.btn-white:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 40px -16px rgba(255, 255, 255, 0.5); }
.btn-white .arr { color: #090401; font-size: 1rem; }

.arr, .arr-circle { transition: transform var(--t-med) var(--ease-spring), background var(--t-med) var(--ease-soft); }
.btn:hover .arr { transform: translate(2px, -2px); }
.arr { font-size: 0.95rem; }
.arr-circle {
  width: 27px; height: 27px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: rgba(105, 25, 0, 0.4);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25);
  font-size: 0.82rem;
}
.btn:hover .arr-circle { transform: translate(2px, -2px) rotate(8deg); background: rgba(150, 40, 0, 0.55); }
.btn-lg { height: 50px; padding-left: 34px; }
.btn-block { width: 100%; margin-top: 26px; }

/* ============ Header ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding-top: 26px;
  pointer-events: none;
  transition: padding-top var(--t-slow) var(--ease-out);
}
.site-header .container { pointer-events: auto; }
.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 18px;
  border-radius: 999px;
  padding: 0 10px 0 22px;
  background: linear-gradient(90deg, rgba(28, 16, 9, 0.62), rgba(12, 7, 4, 0.62));
  box-shadow: var(--ring);
  backdrop-filter: blur(14px) saturate(130%);
  transition:
    height var(--t-slow) var(--ease-out),
    background var(--t-slow) var(--ease-soft),
    box-shadow var(--t-slow) var(--ease-out);
}
/* condense + solidify once the page scrolls */
.site-header[data-scrolled] { padding-top: 14px; }
.site-header[data-scrolled] .header-bar {
  height: 62px;
  background: linear-gradient(90deg, rgba(20, 11, 6, 0.88), rgba(9, 5, 2, 0.88));
  box-shadow: var(--ring), 0 18px 44px -24px rgba(0, 0, 0, 0.95);
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { border-radius: 9px; transition: transform var(--t-med) var(--ease-spring); }
.brand:hover img { transform: rotate(-5deg) scale(1.08); }
.brand span { font-family: var(--font-head); font-weight: 600; font-size: 1.22rem; letter-spacing: -0.02em; }
.brand em { font-style: normal; background: var(--num-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav { display: flex; gap: 30px; }
.nav a {
  color: var(--muted); font-size: 0.95rem;
  position: relative;
  transition: color var(--t-fast) var(--ease-soft);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -7px;
  height: 2px; border-radius: 2px;
  background: var(--btn-grad);
  transform: scaleX(0);
  transition: transform var(--t-med) var(--ease-out);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after, .nav a.is-current::after { transform: scaleX(1); }
.nav a.is-current { color: var(--text); }

.header-right { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 12px;
  border: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); cursor: pointer;
  transition: background var(--t-fast) var(--ease-soft);
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.14); }
.menu-toggle span {
  height: 2px; background: var(--text); border-radius: 2px;
  transition: transform var(--t-med) var(--ease-spring), opacity var(--t-fast) var(--ease-soft);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  margin-top: 10px;
  flex-direction: column; gap: 4px;
  padding: 14px 22px 22px;
  border-radius: 22px;
  background: rgba(9, 4, 1, 0.95); backdrop-filter: blur(16px);
  box-shadow: var(--ring);
  animation: menu-drop var(--t-med) var(--ease-out) both;
}
@keyframes menu-drop {
  from { opacity: 0; transform: translateY(-14px) scale(0.97); }
}
.mobile-menu a {
  padding: 12px 4px; color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--t-fast) var(--ease-soft), padding-left var(--t-fast) var(--ease-out);
}
.mobile-menu a:hover { color: var(--text); padding-left: 8px; }
.mobile-menu a.btn { border-bottom: none; color: #fff; margin-top: 12px; padding-left: 0; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 190px 0 64px;
  text-align: center;
  overflow: hidden;
}
.hero-stripes {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.018) 0 2px,
      transparent 2px 76px),
    repeating-linear-gradient(90deg,
      rgba(0, 0, 0, 0.55) 0px,
      transparent 38px,
      rgba(255, 255, 255, 0.014) 76px),
    linear-gradient(180deg, #170c05 0%, #0d0603 55%, #090401 100%);
  /* long, gradual dissolve so the curtain never ends on a visible seam */
  -webkit-mask-image: linear-gradient(180deg, #000 48%, rgba(0, 0, 0, 0.55) 74%, rgba(0, 0, 0, 0.18) 89%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 48%, rgba(0, 0, 0, 0.55) 74%, rgba(0, 0, 0, 0.18) 89%, transparent 100%);
  pointer-events: none;
}
/* atmospheric sun bleeding in from the top left */
.hero-sun {
  position: absolute; top: -340px; left: -300px;
  width: 900px; height: 900px; border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(255, 154, 77, 0.85) 0%,
      rgba(250, 97, 20, 0.72) 26%,
      rgba(242, 60, 5, 0.4) 45%,
      rgba(242, 60, 5, 0.14) 62%,
      transparent 76%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center;
  height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--ring);
  overflow: hidden;
}
.hero-badge .spark { color: var(--peach); font-size: 0.85rem; animation: sparkle 2.4s var(--ease-soft) infinite; flex-shrink: 0; }
@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.3) rotate(25deg); opacity: 0.65; }
}
.badge-text {
  font-family: var(--font-accent);
  font-size: 0.95rem; color: #fff;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  margin-left: 0;
  transform: translateX(-10px);
  transition:
    max-width var(--t-slow) var(--ease-out),
    margin-left var(--t-slow) var(--ease-out),
    opacity var(--t-med) var(--ease-soft) 160ms,
    transform var(--t-slow) var(--ease-spring) 120ms;
}
.hero-badge.badge-open .badge-text {
  max-width: 320px;
  opacity: 1;
  transform: none;
  margin-left: 10px;
}

.hero h1 { margin: 28px 0 22px; }
.hero-sub { color: var(--muted); font-size: 1.12rem; line-height: 1.65; max-width: 58ch; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* staged hero entrance */
.hero .hero-badge.reveal { transition-delay: 0ms; }
.hero .hero-sub.reveal { transition-delay: 440ms; }
.hero .hero-actions.reveal { transition-delay: 560ms; }
.hero .hero-carousel.reveal { transition-delay: 700ms; }
.hero .hero-chips.reveal { transition-delay: 860ms; }

/* --- 3D coverflow carousel --- */
.hero-carousel {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  padding: 54px 0;
  perspective: 900px;
  perspective-origin: 50% 50%;
}
.hero-car-track {
  display: flex;
  width: max-content;
  transform-style: preserve-3d;
  animation: scroll-x 92s linear infinite;
}
.hero-carousel:hover .hero-car-track { animation-play-state: paused; }
/* loop distance is one authored set, set by script.js */
@keyframes scroll-x { to { transform: translateX(var(--loop-x, -50%)); } }

.car-card {
  width: 176px; height: 312px;
  /* each card owns its trailing gap, so the track measures exactly
     n x pitch and translateX(-50%) lands on an exact set boundary */
  margin-right: 26px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transform-origin: center center;
  backface-visibility: hidden;
  box-shadow: var(--ring), 0 30px 70px -24px rgba(0, 0, 0, 0.85);
  background: linear-gradient(165deg, #201209 0%, #0e0703 100%);
  transition: box-shadow var(--t-med) var(--ease-out);
}
/* GPU layers only while the coverflow loop is actually running */
.hero-carousel.is-live .car-card { will-change: transform, opacity; }
.car-card:hover {
  box-shadow:
    inset 0 0 0 1px rgba(250, 97, 20, 0.55),
    0 44px 90px -22px rgba(0, 0, 0, 0.95),
    0 18px 70px -14px rgba(250, 97, 20, 0.5);
}
.car-card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.car-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(9, 4, 1, 0.55));
  pointer-events: none;
}

/* chips pill */
.hero-chips {
  display: inline-flex; align-items: center; gap: 18px;
  margin-top: 64px;
  padding: 13px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--ring);
  font-family: var(--font-accent);
  font-size: 0.92rem; color: var(--muted-2);
}
.chip-item { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.chip-item i {
  font-style: normal; font-size: 0.62rem;
  width: 20px; height: 20px; border-radius: 6px;
  display: inline-grid; place-items: center;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--ring);
  color: var(--peach);
  transition: transform var(--t-med) var(--ease-spring), background var(--t-fast) var(--ease-soft);
}
.chip-item:hover i { transform: scale(1.18) rotate(-8deg); background: rgba(250, 97, 20, 0.22); }
.hero-chips > b { color: var(--orange); font-size: 0.55rem; }

/* ============ Sections ============ */
.section { position: relative; padding: 120px 0; overflow: hidden; }
/* pulled up so the heading sits inside the horizon glow rather than
   floating in dead space below it (glow peaks 157px below this edge) */
#problem { padding-top: 96px; }

.kicker {
  display: inline-flex; align-items: center;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--ring);
  font-family: var(--font-accent);
  font-size: 0.92rem; color: #fff;
  margin-bottom: 26px;
  transition: transform var(--t-med) var(--ease-spring), box-shadow var(--t-med) var(--ease-out);
}
.kicker:hover { transform: translateY(-3px); box-shadow: var(--ring-strong); }

.section-head { max-width: 800px; margin: 0 auto 64px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; line-height: 1.65; margin: 20px auto 0; max-width: 62ch; }

.section-head.split {
  max-width: none; text-align: left;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: end;
  margin-bottom: 56px;
}
.section-head.split h2 { max-width: 19ch; }
.section-head.split p { margin-left: 0; }
.split-right { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.split-right p { margin: 0; color: var(--muted); font-size: 1.06rem; line-height: 1.65; }

.glow-rule {
  border: none; height: 1px; margin: 0 0 56px;
  background: linear-gradient(90deg, transparent, rgba(250, 97, 20, 0.45), transparent);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* One continuous horizon glow spanning the hero/problem boundary.
   #problem drops its overflow clip so nothing is ever sliced: the only
   edge is the gradient's own falloff, which is what removes the seam.
   z-index -1 keeps it behind all content but above the page background. */
/* clip sideways only: the glow still bleeds vertically across the
   section boundary, but can never create a horizontal scrollbar */
#problem { overflow: visible; overflow-x: clip; }
.light-beam {
  position: absolute;
  /* the gradient sits dead centre in its own box, so the box's centre IS the
     bright point: top = (headline centre) - (height / 2) = 280 - 640. Keeping
     it at 50% means the falloff is symmetrical and neither end of the gradient
     gets sliced by the box edge. */
  top: -360px; left: 50%; transform: translateX(-50%);
  width: 1800px; height: 1280px;
  background:
    radial-gradient(46% 38% at 50% 50%,
      rgba(250, 97, 20, 0.26) 0%,
      rgba(250, 97, 20, 0.15) 30%,
      rgba(250, 97, 20, 0.07) 50%,
      rgba(250, 97, 20, 0.025) 68%,
      rgba(250, 97, 20, 0.008) 82%,
      transparent 94%);
  pointer-events: none;
  z-index: -1;
}

/* shared card hover — one declaration, one curve */
.problem-card, .stat-card, .service-card, .process-card, .price-card {
  transition:
    transform var(--t-med) var(--ease-spring),
    box-shadow var(--t-med) var(--ease-out);
}
.problem-card:hover, .stat-card:hover, .service-card:hover,
.process-card:hover, .price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--ring-strong), var(--bloom);
}

/* ============ Problem cards ============ */
.problem-card {
  background: var(--card-grad);
  box-shadow: var(--ring);
  border-radius: var(--r);
  padding: 16px 16px 28px;
}
.problem-card h3 { font-size: 1.45rem; margin: 22px 8px 8px; }
.problem-card > p { color: var(--muted); margin: 0 8px; font-size: 0.97rem; }

.chart-box {
  position: relative;
  border-radius: 12px;
  padding: 18px 18px 20px;
  min-height: 240px;
  display: flex; flex-direction: column;
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(250, 97, 20, 0.22), transparent 70%),
    linear-gradient(180deg, #221008 0%, #140803 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.chart-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.02em; }
.chart-big { font-family: var(--font-head); font-size: 2rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.chart-big-sm { font-size: 1.5rem; }
.chart-sub { font-size: 0.74rem; color: var(--muted); margin-top: 2px; }

/* card 1: declining bars */
.bars-decline {
  position: relative;
  flex: 1;
  display: flex; align-items: flex-end; gap: 10px;
  margin-top: 16px;
}
.bd-bar {
  flex: 1; height: var(--h);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, rgba(255, 156, 90, 0.85), rgba(122, 44, 14, 0.5));
  position: relative;
  transform-origin: bottom;
  transition: transform var(--t-med) var(--ease-spring);
}
.problem-card:hover .bd-bar { transform: scaleY(1.06); }
.bd-bar i { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); font-style: normal; font-size: 0.52rem; color: var(--muted); letter-spacing: 0.06em; }
.drop-pill {
  position: absolute; top: 6%; right: 0; z-index: 2;
  background: var(--btn-grad); box-shadow: var(--gloss);
  color: #fff; font-size: 0.68rem; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
}

/* card 2: radar */
.radar { position: relative; flex: 1; margin-top: 8px; min-height: 150px; }
.radar-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px solid rgba(250, 97, 20, 0.35);
  animation: radar-pulse 3.2s var(--ease-soft) infinite;
}
.radar-ring.r1 { width: 64px; height: 64px; border-color: rgba(250, 97, 20, 0.7); animation-delay: 0s; }
.radar-ring.r2 { width: 112px; height: 112px; animation-delay: 0.4s; }
.radar-ring.r3 { width: 158px; height: 158px; border-color: rgba(250, 97, 20, 0.18); animation-delay: 0.8s; }
@keyframes radar-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.65; }
}
.radar-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; padding-left: 3px;
  background: var(--btn-grad); box-shadow: var(--gloss);
  font-size: 0.8rem; color: #fff;
  z-index: 1;
}
.mini-chip {
  position: absolute;
  font-size: 0.66rem; color: var(--muted-2);
  background: rgba(0, 0, 0, 0.5); box-shadow: var(--ring);
  padding: 4px 10px; border-radius: 999px;
  z-index: 2;
}
.chip-likes { top: 4px; right: 4px; }
.chip-growth { bottom: 26px; left: 0; }
.radar-pct { position: absolute; bottom: 0; right: 0; font-family: var(--font-mono); font-size: 1.6rem; color: var(--text); z-index: 2; }

/* card 3: consistency */
.week-dots { display: flex; justify-content: space-between; gap: 6px; margin: 18px 0 14px; }
.wd { display: flex; flex-direction: column-reverse; align-items: center; gap: 7px; flex: 1; }
.wd i {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-style: normal; font-size: 0.7rem; color: rgba(0, 0, 0, 0.7);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--ring);
  transition: transform var(--t-med) var(--ease-spring);
}
.wd.on i { background: linear-gradient(180deg, var(--peach), var(--orange-lo)); box-shadow: var(--gloss); }
.problem-card:hover .wd.on i { transform: scale(1.14); }
.wd span { font-size: 0.54rem; color: var(--muted); letter-spacing: 0.08em; }
.output-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.out-label { font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-right: auto; }
.output-row b { font-family: var(--font-mono); font-size: 1.05rem; color: var(--peach); }
.out-note { font-size: 0.62rem; color: var(--muted); }
.out-pct { margin-left: 8px; }
.out-bar { height: 5px; border-radius: 5px; background: rgba(255, 255, 255, 0.08); margin-top: 10px; overflow: hidden; }
.out-bar i { display: block; height: 100%; width: var(--w, 32%); border-radius: 5px; background: var(--btn-grad); }

/* ============ Stats ============ */
.stat-card {
  background: var(--card-grad);
  box-shadow: var(--ring);
  border-radius: var(--r);
  padding: 26px 26px 24px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -40px; height: 110px;
  background: radial-gradient(60% 100% at 50% 100%, rgba(250, 97, 20, 0.22), transparent 75%);
  opacity: 0.85;
  transition: opacity var(--t-med) var(--ease-soft);
  pointer-events: none;
}
.stat-card:hover::after { opacity: 1.35; }
.stat-label { font-size: 0.92rem; color: var(--muted-2); }
.stat-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(2.6rem, 4.4vw, 3.4rem);
  line-height: 1;
  margin: 14px 0 16px;
  background: var(--num-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.stat-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* ============ Services ============ */
.service-card {
  background: var(--card-grad);
  box-shadow: var(--ring);
  border-radius: 20px;
  padding: 34px 30px 36px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.service-card h3 { font-size: 1.9rem; font-weight: 500; }
.service-card h3 em { font-style: normal; background: var(--num-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.service-card p { color: var(--muted); margin: 26px 0 0; font-size: 0.96rem; max-width: 34ch; }

.icon3d {
  position: relative;
  width: 190px; height: 190px;
  margin-top: 34px;
  border-radius: 44px;
  display: grid; place-items: center;
  background: linear-gradient(155deg, #2c2420 0%, #0d0806 45%, #060302 100%);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.35),
    inset 0 -4px 8px rgba(250, 97, 20, 0.6),
    inset 4px 0 8px rgba(250, 97, 20, 0.18),
    0 30px 60px -20px rgba(0, 0, 0, 0.9),
    0 12px 50px -10px rgba(250, 97, 20, 0.3);
  transition:
    transform var(--t-slow) var(--ease-spring),
    box-shadow var(--t-slow) var(--ease-out);
}
.service-card:hover .icon3d {
  transform: rotate(-7deg) scale(1.09);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.45),
    inset 0 -5px 12px rgba(250, 97, 20, 0.9),
    inset 5px 0 12px rgba(250, 97, 20, 0.3),
    0 40px 70px -20px rgba(0, 0, 0, 0.95),
    0 18px 70px -10px rgba(250, 97, 20, 0.55);
}
.icon3d::after {
  content: "";
  position: absolute; inset: 10px;
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), transparent 42%);
  pointer-events: none;
}
.icon3d svg { width: 84px; height: 84px; fill: #fff; color: #fff; filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.75)); }

/* ============ Process ============ */
.process-card {
  background: var(--card-grad);
  box-shadow: var(--ring);
  border-radius: var(--r);
  padding: 16px 16px 30px;
}
.proc-visual {
  border-radius: 12px;
  padding: 18px;
  min-height: 230px;
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(250, 97, 20, 0.14), transparent 70%),
    linear-gradient(180deg, #1c0e07 0%, #120702 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.process-card h3 { font-size: 1.42rem; margin: 22px 8px 8px; }
.process-card > p { color: var(--muted); margin: 0 8px; font-size: 0.95rem; }

/* step 1 — upload */
.upload-zone {
  position: relative;
  flex: 1;
  border: 1.5px dashed rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  display: grid; place-items: center;
  min-height: 190px;
  transition: border-color var(--t-med) var(--ease-soft);
}
.process-card:hover .upload-zone { border-color: rgba(250, 97, 20, 0.5); }
.uz-icon {
  width: 74px; height: 74px;
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.6rem; color: var(--muted-2);
  transition: transform var(--t-slow) var(--ease-spring);
}
.process-card:hover .uz-icon { transform: translateY(-6px) scale(1.06); }
/* CSS-drawn clip thumbnail (no external image) */
.uz-stack { position: absolute; right: 14px; bottom: 12px; }
.uz-thumb {
  width: 64px; height: 48px; border-radius: 8px;
  background:
    radial-gradient(120% 100% at 30% 10%, rgba(255, 161, 94, 0.5), transparent 60%),
    linear-gradient(160deg, #43210f 0%, #150a04 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: rotate(-6deg);
  display: grid; place-items: center;
  color: rgba(255, 255, 255, 0.8); font-size: 0.7rem;
  transition: transform var(--t-slow) var(--ease-spring);
}
.process-card:hover .uz-thumb { transform: rotate(-10deg) translateY(-4px); }
.uz-stack b {
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: #35c75a; color: #06290f; font-size: 0.7rem;
}

/* step 2 — before / after */
.ba-mock { position: relative; flex: 1; display: grid; grid-template-columns: 1fr 1fr; min-height: 190px; }
.ba-side { position: relative; padding: 34px 12px 12px; }
.ba-side.after { background: linear-gradient(180deg, rgba(250, 97, 20, 0.12), transparent); border-radius: 0 10px 10px 0; }
.ba-tag { position: absolute; top: 8px; left: 10px; font-size: 0.64rem; color: var(--muted); background: rgba(0, 0, 0, 0.5); box-shadow: var(--ring); padding: 4px 10px; border-radius: 999px; }
.ba-side.after .ba-tag { left: auto; right: 10px; }
.ba-tag.on { color: #fff; }
.ba-lines { display: grid; gap: 7px; margin-top: 18px; }
.ba-lines i { height: 5px; border-radius: 4px; background: rgba(255, 255, 255, 0.14); }
.ba-lines i:nth-child(2) { width: 80%; }
.ba-lines i:nth-child(3) { width: 55%; }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 1.5px;
  background: rgba(255, 255, 255, 0.35); z-index: 2;
  transition: transform var(--t-slow) var(--ease-spring);
}
.process-card:hover .ba-divider { transform: translateX(-14px); }
.ba-divider b {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--btn-grad); box-shadow: var(--gloss);
  color: #fff; font-size: 0.85rem; font-weight: 400;
}
.hook-pill {
  position: absolute; top: 34px; left: 50%; transform: translateX(6px);
  background: var(--btn-grad); box-shadow: var(--gloss);
  color: #fff; font-size: 0.66rem; font-weight: 600;
  padding: 5px 11px; border-radius: 7px;
  z-index: 3;
}
.ba-caption { display: grid; gap: 6px; margin: 44px 0 14px; }
.ba-caption i { height: 6px; border-radius: 4px; background: rgba(255, 255, 255, 0.75); }
.ba-caption i:nth-child(2) { width: 62%; background: rgba(255, 255, 255, 0.4); }
.ba-wave { display: flex; align-items: flex-end; gap: 3px; height: 26px; }
.ba-wave i { flex: 1; background: linear-gradient(180deg, var(--peach), var(--orange-lo)); border-radius: 2px; animation: wave 1.1s var(--ease-soft) infinite; }
.ba-wave i:nth-child(odd) { animation-delay: 0.18s; }
.ba-wave i:nth-child(3n) { animation-delay: 0.36s; }
@keyframes wave { 0%, 100% { height: 25%; } 50% { height: 100%; } }
.chip-row { display: flex; gap: 8px; justify-content: center; }
.chip-row span { font-family: var(--font-accent); font-size: 0.72rem; color: var(--muted-2); background: rgba(255, 255, 255, 0.06); box-shadow: var(--ring); padding: 5px 13px; border-radius: 999px; }

/* step 3 — posted */
.post-rows { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.post-row { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pr-logo { font-size: 1.7rem; line-height: 1; transition: transform var(--t-med) var(--ease-spring); }
.process-card:hover .pr-logo { transform: scale(1.12); }
.pr-pill { font-size: 0.78rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; }
.pr-pill.green { background: rgba(53, 199, 90, 0.18); color: #6ee08c; box-shadow: inset 0 0 0 1px rgba(53, 199, 90, 0.4); }
.pr-pill.orange { background: rgba(250, 97, 20, 0.18); color: var(--peach); box-shadow: inset 0 0 0 1px rgba(250, 97, 20, 0.45); }
.pr-handle { font-size: 0.74rem; color: var(--muted); }

/* ============ Pricing ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  position: relative;
  background: var(--card-dark);
  box-shadow: var(--ring);
  border-radius: var(--r);
  padding: 32px;
  display: flex; flex-direction: column;
}
.pop-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--btn-grad);
  box-shadow: var(--gloss), 0 10px 26px -10px rgba(242, 60, 5, 0.9);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 999px;
  white-space: nowrap;
  transition: transform var(--t-med) var(--ease-spring);
}
.price-card:hover .pop-badge { transform: translateX(-50%) translateY(-3px) scale(1.05); }

.price-card.featured {
  background:
    radial-gradient(80% 50% at 50% 115%, rgba(250, 97, 20, 0.28), transparent 75%),
    rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 0 0 1px rgba(250, 97, 20, 0.6), 0 30px 90px -30px rgba(242, 60, 5, 0.55);
}
.price-card.featured:hover {
  box-shadow: inset 0 0 0 1px rgba(250, 97, 20, 0.85), 0 40px 100px -28px rgba(242, 60, 5, 0.8);
}
.price-card h3 { font-size: 1.7rem; }
.plan-desc { color: var(--muted); font-size: 0.93rem; margin: 8px 0 0; }
.price { margin: 44px 0 34px; }
.price .amount {
  font-family: var(--font-head);
  font-size: 3.6rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1;
  background: var(--num-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
  transition: transform var(--t-slow) var(--ease-spring);
}
.price-card:hover .amount { transform: scale(1.06); }
.amount-custom { font-size: 3rem; }
.price .per { color: var(--muted); font-size: 1rem; margin-left: 10px; font-weight: 500; }
.feat { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 14px; flex: 1; }
.feat li { position: relative; padding-left: 30px; font-size: 0.96rem; color: var(--muted-2); }
.feat li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 19px; height: 19px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.62rem; font-weight: 700;
  color: #fff; background: var(--btn-grad); box-shadow: var(--gloss);
}

/* ============ FAQ ============ */
.faq-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.faq-left { display: flex; flex-direction: column; align-items: flex-start; }
.faq-left h2 { max-width: 13ch; }
.faq-left p { color: var(--muted); font-size: 1.06rem; line-height: 1.65; margin: 20px 0 0; max-width: 38ch; }

.faq-list { display: grid; gap: 14px; }
.faq-list details {
  background: var(--card-grad);
  box-shadow: var(--ring);
  border-radius: 14px;
  padding: 4px 26px;
  transition: box-shadow var(--t-med) var(--ease-out);
}
.faq-list details:hover { box-shadow: var(--ring-strong); }
.faq-list details[open] { box-shadow: inset 0 0 0 1px rgba(250, 97, 20, 0.4); }
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0;
  font-weight: 500; font-size: 1.08rem;
  transition: color var(--t-fast) var(--ease-soft);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--peach); }
/* slide answers open where supported; snaps gracefully elsewhere */
.faq-list details::details-content {
  block-size: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    block-size var(--t-med) var(--ease-out),
    opacity var(--t-med) var(--ease-soft),
    content-visibility var(--t-med) allow-discrete;
}
.faq-list details[open]::details-content { block-size: auto; opacity: 1; }
.plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--t-med) var(--ease-spring); }
.plus::before, .plus::after { content: ""; position: absolute; background: var(--muted-2); border-radius: 2px; transition: background var(--t-fast) var(--ease-soft); }
.plus::before { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.plus::after { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-list details[open] .plus { transform: rotate(135deg); }
.faq-list details[open] .plus::before, .faq-list details[open] .plus::after { background: var(--orange); }
.faq-list details p { margin: 0 0 22px; color: var(--muted); font-size: 0.96rem; }

/* ============ Platforms ============ */
.plat-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; position: relative; z-index: 1; }
.plat-chip {
  display: inline-flex; align-items: center; gap: 11px;
  height: 54px; padding: 0 28px;
  border-radius: 999px;
  background: var(--card-grad);
  box-shadow: var(--ring);
  font-family: var(--font-accent);
  font-size: 0.98rem;
  transition:
    transform var(--t-med) var(--ease-spring),
    box-shadow var(--t-med) var(--ease-out);
}
.plat-chip:hover { transform: translateY(-6px) scale(1.04); box-shadow: var(--ring-strong), var(--bloom); }
.plat-chip svg { width: 19px; height: 19px; fill: #fff; stroke-width: 0; transition: transform var(--t-med) var(--ease-spring); }
.plat-chip:hover svg { transform: scale(1.16) rotate(-6deg); }

/* ============ Final CTA ============ */
.cta-section { padding-bottom: 80px; }
.cta-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 40px;
  border-radius: 24px;
  background:
    radial-gradient(60% 55% at 50% 0%, rgba(250, 97, 20, 0.2), transparent 70%),
    linear-gradient(180deg, #140a05 0%, #0c0502 100%);
  box-shadow: var(--ring);
}
.cta-box::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(242, 60, 5, 0.35) 0 32px, rgba(242, 60, 5, 0.1) 32px 64px);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 26%, transparent 74%, #000 100%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 26%, transparent 74%, #000 100%);
  opacity: 0.75;
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-logo {
  width: 104px; height: 104px;
  border-radius: 26px;
  margin: 0 auto 26px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 20px 50px -16px rgba(0, 0, 0, 0.8),
    0 0 60px -8px rgba(250, 97, 20, 0.5);
  animation: cta-float 6s var(--ease-soft) infinite;
}
@keyframes cta-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}
.cta-box h2 { max-width: 19ch; margin: 0 auto 20px; }
.cta-box p { color: var(--muted); font-size: 1.08rem; line-height: 1.65; max-width: 54ch; margin: 0 auto 36px; }
.cta-mail { color: var(--peach); font-weight: 500; border-bottom: 1px solid rgba(255, 161, 94, 0.4); transition: border-color var(--t-fast) var(--ease-soft), color var(--t-fast) var(--ease-soft); }
.cta-mail:hover { border-bottom-color: var(--peach); color: #fff; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-tags { display: block; margin-top: 26px; color: var(--muted); font-family: var(--font-accent); font-size: 0.9rem; }

/* ============ Footer ============ */
.site-footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 70px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #120803 100%);
}
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 44px; padding-bottom: 48px; }
.footer-cols { display: flex; gap: 72px; }
.footer-col h4 { font-family: var(--font-head); font-weight: 500; font-size: 1.15rem; margin: 0 0 16px; }
.footer-col a {
  display: block; color: var(--muted); font-size: 0.95rem; padding: 6px 0;
  transition: color var(--t-fast) var(--ease-soft), transform var(--t-med) var(--ease-out);
}
.footer-col a:hover { color: var(--text); transform: translateX(5px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 26px 30px;
  color: var(--muted); font-size: 0.86rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-wordmark {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(5rem, 16.5vw, 15.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(180deg, #ffb066 0%, #f23c05 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.85;
  padding-bottom: 30px;
  /* fade the descenders into the page edge */
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent 97%);
  mask-image: linear-gradient(180deg, #000 62%, transparent 97%);
  user-select: none;
  pointer-events: none;
}

/* ============ Entrance animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(72px) scale(0.94);
  transition:
    opacity var(--t-slow) var(--ease-soft),
    transform var(--t-entrance) var(--ease-spring);
  transition-delay: calc(var(--i, 0) * 110ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* word-by-word blur resolve on headlines */
.blur-title .wi {
  display: inline-block;
  opacity: 0;
  filter: blur(16px);
  transform: translateY(0.42em);
  transition:
    opacity var(--t-slow) var(--ease-soft),
    filter var(--t-slow) var(--ease-soft),
    transform var(--t-entrance) var(--ease-spring);
}
.blur-title.words-in .wi { opacity: 1; filter: blur(0); transform: none; }

/* ============ Responsive ============ */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-right .btn { display: none; }
  .site-header { padding-top: 12px; }
  .site-header[data-scrolled] { padding-top: 8px; }
  .mobile-menu:not([hidden]) { display: flex; }
  .hero { padding-top: 150px; }
  .grid-3 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .section-head.split { grid-template-columns: 1fr; gap: 22px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; }
  .car-card { margin-right: 16px; }
  /* keep entrances snappy on small screens */
  .reveal { transform: translateY(48px) scale(0.96); }
}
@media (max-width: 520px) {
  .section { padding: 72px 0; }
  #problem { padding-top: 68px; }
  .hero { padding: 130px 0 44px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-carousel { margin-top: 46px; padding: 34px 0; }
  .hero-chips { flex-direction: column; gap: 10px; border-radius: 22px; }
  .hero-chips > b { display: none; }
  .grid-4 { grid-template-columns: 1fr; }
  .cta-box { padding: 70px 24px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .footer-cols { gap: 40px; }
  .car-card { width: 152px; height: 270px; }
}
