/* ==========================================================================
   SPARK UGC - v3 (per Style Guide)
   Modern creative-performance studio. Off-white, soft shadows, rounded.
   ========================================================================== */

:root {
  --orange:        #FF4A14;
  --orange-soft:   rgba(255, 74, 20, 0.18);
  --orange-tint:   #FFE8DA;
  --black:         #050505;
  --ink-2:         #1A1A1A;
  --white:         #FFFFFF;
  --off-white:     #FAF7F3;
  --off-white-2:   #F8F5F1;
  --peach:         #FFE8DA;
  --border-soft:   #EEE5DF;
  --border-line:   #E8E2DC;
  --text-mute:     #5C5650;
  --tp-green:      #00B67A;
  --verified:      #1A8CFF;

  --shadow-soft:   0 18px 46px rgba(0,0,0,0.08);
  --shadow-card:   0 24px 60px rgba(0,0,0,0.14);
  --shadow-orange: 0 18px 38px rgba(255,74,20,0.24);
  --shadow-quote:  0 8px 24px rgba(0,0,0,0.10);
  --radius-sm:     12px;
  --radius-md:     18px;
  --radius-lg:     26px;
  --radius-xl:     30px;
  --radius-pill:   999px;

  --max:           1480px;

  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --fast:          180ms;
  --base:          260ms;

  --font-display:  'Archivo Black', 'Archivo', sans-serif;
  --font-body:     'Archivo', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:     'DM Mono', 'Space Mono', 'Menlo', monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--off-white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* === Layout === */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: clamp(24px, 4vw, 72px);
  padding-right: clamp(24px, 4vw, 72px);
}

/* === Typography defaults === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;        /* Archivo Black is single-weight */
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--black);
  margin: 0;
}

/* ============================================================
   NAV  (minimal - concept shows logo-only header,
        we keep nav links small/right for multi-page site)
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(250, 247, 243, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px clamp(24px, 4vw, 72px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}
@media (min-width: 900px) { .nav-links { display: flex; flex: 1; } }
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color var(--fast) var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  display: none;
}
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border-soft);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; width: 18px; height: 2px;
  background: var(--black); border-radius: 1px;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.mobile-panel {
  display: none;
  position: fixed; inset: 78px 0 0 0;
  z-index: 70;
  background: var(--off-white);
  padding: 24px;
  flex-direction: column;
  border-top: 1px solid var(--border-soft);
}
.mobile-panel.open { display: flex; }
.mobile-panel a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.03em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--black);
}
.mobile-panel a.active { color: var(--orange); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
  letter-spacing: -0.005em;
  border-radius: var(--radius-sm);
  padding: 18px 22px 18px 26px;
  white-space: nowrap;
  transition: transform var(--fast) var(--ease),
              box-shadow var(--fast) var(--ease),
              background var(--fast) var(--ease);
}
.btn .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  transition: transform var(--fast) var(--ease);
}
.btn .btn-icon svg { width: 16px; height: 16px; }

.btn.primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn.primary .btn-icon { background: var(--black); color: var(--orange); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(255,74,20,0.32); }
.btn.primary:hover .btn-icon { transform: translateX(3px); }

.btn.secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}
.btn.secondary .btn-icon { background: var(--black); color: var(--white); }
.btn.secondary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,0.08); }

.btn.dark {
  background: var(--black);
  color: var(--white);
}
.btn.dark .btn-icon { background: var(--orange); color: var(--black); }
.btn.dark:hover { transform: translateY(-2px); }
.btn.dark:hover .btn-icon { transform: translateX(3px); }

.btn.sm {
  font-size: 14px;
  padding: 12px 14px 12px 18px;
  gap: 10px;
}
.btn.sm .btn-icon { width: 28px; height: 28px; }
.btn.sm .btn-icon svg { width: 12px; height: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 36px 0 72px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255, 74, 20, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--off-white) 0%, var(--off-white) 70%, var(--off-white-2) 100%);
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero { padding: 24px 0 80px; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 920px) {
  .hero-grid {
    grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
    gap: 40px;
    align-items: center;
  }
  .hero-copy {
    position: relative;
    z-index: 3;
  }
  .hero-stage {
    position: relative;
    z-index: 1;
  }
}

/* --- HERO LEFT --- */
.hero-copy { position: relative; z-index: 3; }

.trust-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.trust-row img {
  height: 30px;
  width: auto;
  display: block;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--black);
  margin: 0 0 28px;
}
.hero-heading .line {
  display: block;
}
.hero-heading .line:first-child {
  transform: translateY(3px);
}
.hero-heading .headline-block {
  position: relative;
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 6px 24px 12px;
  margin-top: 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.hero-heading .headline-block .check {
  position: absolute;
  top: -19px;
  right: -21px;
  width: 50px;
  height: 50px;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 4px 14px rgba(26, 140, 255, 0.30));
  pointer-events: none;
}

.hero-subcopy {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  color: var(--black);
  max-width: 30ch;
  margin: 0 0 52px;
}
.hero-subcopy .underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding-bottom: 8px;
}
.hero-subcopy .underline-stroke {
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -2px;
  width: calc(100% + 8px);
  height: 14px;
  overflow: visible;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-actions .btn {
  min-width: 210px;
  justify-content: center;
}

.hero-creators {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-creators .avatars { display: flex; }
.hero-creators .avatars .av {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  border: 2.5px solid var(--off-white);
  margin-left: -10px;
  display: inline-block;
  background: var(--border-soft);
}
.hero-creators .avatars .av:first-child { margin-left: 0; }
.hero-creators .avatars .av img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-creators .copy {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.35;
  color: var(--black);
}
.hero-creators .copy b { font-weight: 800; }

/* --- HERO RIGHT (collage) --- */
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: clamp(400px, 78vw, 560px);
  margin-inline: auto;
  background: url("../mpjstb4o-Spark-UGC-Website_Background-Graphic.webp") center 46% / 118% auto no-repeat;
}
@media (min-width: 900px) {
  .hero-stage {
    height: clamp(585px, 48vw, 690px);
    max-width: 760px;
  }
}

/* Supplied Spark graphic sits as the stage backdrop, one layer above the page background. */
.hero-stage .spray {
  display: none;
}
.hero-stage .spray-2 {
  display: none;
}

/* Video card */
.vcard {
  position: absolute;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border-soft);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
  z-index: 2;
  transform-origin: 50% 50%;
}
.vcard:hover {
  transform: translateY(-6px) rotate(0deg) !important;
  box-shadow: 0 30px 70px rgba(0,0,0,0.20);
  z-index: 9;
}
.vcard .ph {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
}
.vcard .ph img,
.vcard .ph video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* View pill (bottom-left of card) */
.vcard .views {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  z-index: 3;
}
.vcard .views svg { width: 12px; height: 12px; fill: #fff; }

/* Quote overlay */
.vcard .quote {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 14%;
  background: var(--white);
  color: var(--black);
  border-radius: 12px;
  padding: 8px 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(11px, 0.85vw, 14.5px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  box-shadow: var(--shadow-quote);
  z-index: 2;
  text-wrap: balance;
}
.vcard .quote.dark {
  background: var(--black);
  color: var(--white);
}
.vcard .quote .hi {
  background: var(--orange);
  color: var(--white);
  padding: 1px 6px;
  border-radius: 5px;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Card positions - asymmetric fan matching the supplied prototype. */
.vcard.c1 { left: 12%;   top: 8%;    width: 31%; transform: rotate(-5deg); z-index: 5; }
.vcard.c2 { left: 43.5%; top: 1%;    width: 34%; transform: rotate(1.5deg); z-index: 6; }
.vcard.c3 { right: 0%;   top: 24%;   width: 28%; transform: rotate(5deg);  z-index: 4; }
.vcard.c4 { left: 30%;   bottom: 15%; width: 28%; transform: rotate(-6deg); z-index: 7; }

/* === Stat / metric badges === */
.metric-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 13px 18px 14px;
  box-shadow: 0 16px 38px rgba(0,0,0,0.13);
  z-index: 10;
  text-align: center;
}
.metric-badge .label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 2px;
  display: block;
}
.metric-badge .num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--orange);
}
.metric-badge.roas { left: 2%;   top: 6%;    transform: rotate(-4deg); }
.metric-badge.cpa  { left: 71%;  top: calc(-5% + 15px);   transform: rotate(3deg); }
.metric-badge.ctr  { right: calc(1% - 20px);  top: calc(49% + 70px);   transform: rotate(5deg); }

/* === Built for performance callout === */
.callout-perf {
  position: absolute;
  left: 1%;
  bottom: calc(2% + 30px);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px 16px 16px;
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  z-index: 9;
  transform: rotate(-1.5deg);
  min-width: 270px;
}
.callout-perf .icon {
  width: 46px; height: 46px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.callout-perf .icon svg { width: 22px; height: 22px; }
.callout-perf .txt {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.callout-perf .txt .or { color: var(--orange); display: block; }

/* ============================================================
   BRAND STRIP (bottom of hero)
   ============================================================ */
.brand-strip-wrap {
  margin-top: 4px;
  padding: 0 clamp(24px, 4vw, 72px);
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
}
.brand-strip {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 26px 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  border: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: auto 1px 1fr auto;
  gap: 28px;
  align-items: center;
}
/* "Blend" variant — strip uses the page background so it floats inline */
.brand-strip--blend {
  background: var(--off-white);
  box-shadow: none;
  border: 0;
}
/* "Dark" variant — black strip with inverted text + logos for emphasis */
.brand-strip--dark {
  background: var(--black);
  box-shadow: none;
  border: 0;
}
.brand-strip.brand-strip--dark .label,
.brand-strip.brand-strip--dark .more {
  color: var(--white);
}
.brand-strip.brand-strip--dark .divider {
  background: rgba(255, 255, 255, 0.18);
}
.brand-strip--dark .logos {
  /* Re-tint the fade mask so it blends with the black bg, not white */
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.brand-strip--dark .logos img {
  filter: brightness(0) invert(1);
}
@media (max-width: 900px) {
  .brand-strip { grid-template-columns: 1fr; text-align: center; gap: 16px; padding: 22px; }
  .brand-strip .divider { display: none; }
}
.brand-strip .label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  white-space: nowrap;
}
.brand-strip .divider {
  width: 1px; height: 28px;
  background: var(--border-soft);
}
.brand-strip .logos {
  position: relative;
  flex: 1;
  overflow: hidden;
  /* fade edges so logos enter/exit cleanly */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.brand-strip .logos-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  width: max-content;
  animation: brand-scroll 40s linear infinite;
}
.brand-strip .logos:hover .logos-track { animation-play-state: paused; }
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-strip .logos img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 1;
  flex-shrink: 0;
}
.brand-strip .logos img.tall { height: 46px; }
.brand-strip .logos img.x-tall { height: 52px; }
.brand-strip .more {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-mute);
  white-space: nowrap;
}

/* ============================================================
   Sections - shared
   ============================================================ */
.section { padding: clamp(80px, 9vw, 140px) 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--orange);
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--black);
  margin: 0;
}
.section-heading .or { color: var(--orange); }
.section-heading .black { color: var(--black); }
.section-lead {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 42ch;
}
.shead-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 56px;
}
@media (min-width: 900px) {
  .shead-row { grid-template-columns: 1.2fr 0.8fr; gap: 56px; }
}

/* ============================================================
   PAID TEAMS - feature cards
   ============================================================ */
.paid-teams { background: var(--off-white); }
.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px)  { .feature-cards { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 30px 36px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature-card .icon-bubble {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--black);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-card .icon-bubble svg { width: 28px; height: 28px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--black);
}
.feature-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text-mute);
}
.feature-card.featured {
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}
.feature-card.featured h3,
.feature-card.featured p { color: var(--white); }
.feature-card.featured p { color: rgba(255,255,255,0.85); }
.feature-card.featured .icon-bubble {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

/* ============================================================
   SPRINT - 4 step cards (data-led process)
   ============================================================ */
.sprint .feature-cards { grid-template-columns: 1fr; }
@media (min-width: 700px)  { .sprint .feature-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .sprint .feature-cards { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 26px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.step-card .num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--orange);
}
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--black);
}
.step-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-mute);
}
.step-card .icon-bubble {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.step-card .icon-bubble svg { width: 24px; height: 24px; }

/* ============================================================
   PROCESS FLOW - 4-step horizontal with arrow connectors
   ============================================================ */
.process { background: var(--off-white); position: relative; }
.process .container { position: relative; }
.process .container > .shead-row,
.process .container > .process-flow { position: relative; z-index: 1; }
.process-collage {
  position: absolute;
  top: clamp(-220px, -8vw, -180px);
  left: 5px;
  width: 64%;
  max-width: 1100px;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 899px) {
  .process-collage {
    position: relative;
    display: block;
    margin: 0 auto 24px;
    width: min(560px, 92%);
    top: auto; left: auto;
  }
}
.process-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
.process-arrow { display: none; }
@media (min-width: 700px) and (max-width: 1099px) {
  .process-flow {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (min-width: 1100px) {
  .process-flow {
    grid-template-columns: 1fr 56px 1fr 56px 1fr 56px 1fr;
    column-gap: 8px;
    row-gap: 0;
  }
  .process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
  }
  .process-arrow svg {
    width: 56px;
    height: 22px;
    display: block;
  }
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 30px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.process-step .step-bubble {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.process-step .step-bubble svg { width: 26px; height: 26px; }
.process-step .step-mark {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--black);
  margin: 0;
}
.process-step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-mute);
}

/* ============================================================
   WORK grid
   ============================================================ */
.work-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 900px) { .work-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }
.work-tile {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.work-tile:hover { transform: translateY(-4px); box-shadow: 0 30px 70px rgba(0,0,0,0.20); }
.work-tile video, .work-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.work-tile .thumb {
  z-index: 2;
  transition: opacity 0.25s var(--ease);
}
.work-tile:hover .thumb { opacity: 0; }
.work-tile .play { z-index: 3; }
.work-tile .meta {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.work-tile .meta .right { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }
.work-tile::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none; z-index: 1;
}
.work-tile .play {
  position: absolute;
  top: 14px; left: 14px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.work-tile .play svg { width: 12px; height: 12px; }

/* ============================================================
   STATS - dark
   ============================================================ */
.stats {
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 10vw, 140px) 0;
}
.stats .section-heading { color: var(--white); }
.stats .section-heading .or { color: var(--orange); }
.stats .section-lead { color: rgba(255,255,255,0.7); }
.stats .section-eyebrow { color: var(--orange); }
.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 8px;
}
@media (min-width: 800px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat-row .stat {
  padding: 48px 24px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
@media (min-width: 800px) {
  .stat-row .stat { border-bottom: 0; }
  .stat-row .stat + .stat { border-left: 1px solid rgba(255,255,255,0.14); padding-left: 40px; }
  .stat-row .stat:first-child { padding-left: 0; }
  .stat-row .stat:last-child  { padding-right: 0; }
}
.stat-row .label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.stat-row .value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(60px, 8vw, 116px);
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: var(--white);
}
.stat-row .value .or { color: var(--orange); }
.stat-row .caption {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
  max-width: 30ch;
}

/* Centered variant: horizontally centres each stat's contents */
.stats--centered .stat-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
@media (min-width: 800px) {
  .stats--centered .stat-row {
    flex-wrap: nowrap;
    gap: clamp(24px, 4vw, 64px);
  }
}
.stats--centered .stat-row .stat {
  align-items: center;
  text-align: center;
  padding: 48px 0 40px;
  border: 0;
}
.stats--centered .stat-row .stat + .stat {
  border-left: 0;
  padding-left: 0;
}
.stats--centered .stat-row .caption {
  margin-inline: auto;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--off-white); padding: clamp(80px, 10vw, 140px) 0; position: relative; overflow: hidden; }
.testimonials .container { position: relative; z-index: 1; }
.testimonials-megaphone {
  position: absolute;
  top: clamp(-105px, 4vw, -55px);
  right: clamp(105px, 9vw, 125px);
  width: 58%;
  max-width: 1040px;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 899px) {
  .testimonials-megaphone {
    position: relative;
    display: block;
    margin: 0 auto 24px;
    width: min(520px, 90%);
    right: auto; top: auto;
  }
}
.t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .t-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.t-card .stars {
  display: inline-flex; gap: 4px; color: var(--orange);
}
.t-card .stars svg { width: 16px; height: 16px; fill: currentColor; }
.t-card .stars img { height: 22px; width: auto; display: block; }
.t-card .t-headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--black);
}
.t-card blockquote {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.45;
  color: var(--black);
}
.t-card .who {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.t-card .who-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
}
.t-card .who-co {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.t-card .who img {
  max-height: 26px;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.95;
}

/* ============================================================
   FAQ - off-white accordion
   ============================================================ */
.faq { background: var(--black); color: var(--white); padding: clamp(80px, 10vw, 140px) 0; }
.faq .section-heading { color: var(--orange); }
.faq .section-lead { color: var(--white); }
.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 920px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 4px;
  cursor: pointer;
  font-family: 'Archivo', var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.7vw, 24px);
  letter-spacing: -0.025em;
  list-style: none;
  color: var(--white);
  transition: color var(--fast) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange); }
.faq-item .plus {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: 24px;
  transition: transform var(--base) var(--ease), background var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.faq-item .plus::before,
.faq-item .plus::after {
  content: ''; display: block; background: var(--white);
  position: absolute; top: 50%; left: 50%;
}
.faq-item .plus::before { width: 12px; height: 2px; margin: -1px 0 0 -6px; }
.faq-item .plus::after  { width: 2px; height: 12px; margin: -6px 0 0 -1px; }
.faq-item[open] .plus { background: var(--orange); border-color: var(--orange); transform: rotate(45deg); }
.faq-item[open] .plus::before,
.faq-item[open] .plus::after { background: var(--white); }
.faq-item .body {
  padding: 0 4px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  max-width: 80ch;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: var(--off-white); padding: 0 0 80px; }
.final-cta-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(56px, 7vw, 88px);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
.final-cta-inner::before {
  content: '';
  position: absolute;
  right: -10%; top: -20%;
  width: 50%; height: 140%;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0.10;
  pointer-events: none;
}
.final-cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}
@media (min-width: 900px) { .final-cta-grid { grid-template-columns: 1.4fr 1fr; gap: 56px; } }
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 78px);
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--black);
}
.final-cta h2 .or { color: var(--orange); }
.final-cta .cta-side p {
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 36ch;
}
.final-cta .cta-side .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--black);
  color: var(--off-white);
  padding: 72px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; } }
.foot .brand {
  display: block;
  width: 132px;
  height: auto;
  margin-bottom: 22px;
}
.foot .brand img { display: block; width: 100%; height: auto; }
.foot .blurb {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  max-width: 32ch;
}
.foot h4 {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.foot ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.foot ul a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--fast) var(--ease);
}
.foot ul a:hover { color: var(--orange); }
.foot-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 919px) {
  .hero-grid { gap: 32px; }
  .hero-stage { height: clamp(360px, 78vw, 540px); max-width: 640px; margin: 0 auto; }
  .hero-heading { font-size: clamp(44px, 11vw, 64px); }
  .nav-cta { display: none; }
}
@media (max-width: 700px) {
  .hero-stage { height: clamp(430px, 104vw, 600px); }
  .vcard { border-width: 4px; border-radius: 18px; }
  .vcard.c1 { left: 13%; top: 12%; width: 31%; }
  .vcard.c2 { left: 43%; top: 5%; width: 35%; }
  .vcard.c3 { right: 0%; top: 28%; width: 29%; }
  .vcard.c4 { left: 16%; bottom: 16%; width: 31%; }
  .metric-badge.roas { left: 0%; top: 1%; }
  .metric-badge.cpa { left: auto; right: 2%; top: calc(-6% + 15px); }
  .metric-badge.ctr { right: calc(0% - 20px); top: calc(50% + 70px); }
  .vcard .quote { font-size: 11.5px; padding: 7px 9px; border-radius: 10px; }
  .metric-badge { padding: 8px 12px; }
  .metric-badge .num { font-size: 20px; }
  .callout-perf { left: 0%; right: auto; bottom: calc(2% + 30px); min-width: 0; max-width: 190px; padding: 10px 14px; }
  .callout-perf .icon { width: 38px; height: 38px; }
  .callout-perf .txt { font-size: 13px; }
  .hero-heading .headline-block { padding: 6px 18px 10px; }
  .hero-heading .headline-block .check { width: 38px; height: 38px; top: -15px; right: -15px; }
}

/* ============================================================
   PAGE HERO (used on inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 104px);
  background:
    radial-gradient(ellipse 70% 55% at 90% 50%, rgba(255, 74, 20, 0.07) 0%, transparent 60%),
    var(--off-white);
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.page-hero .eyebrow::before {
  content: ''; width: 8px; height: 8px;
  border-radius: 999px; background: var(--orange);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 7.5vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--black);
  margin: 0 0 24px;
  max-width: 12ch;
}
.page-hero h1 .or { color: var(--orange); }
.page-hero h1 .block {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 4px 22px 10px;
  border-radius: 6px;
  margin-top: 6px;
}
.page-hero p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.4;
  color: var(--text-mute);
  max-width: 56ch;
  margin: 0;
}

/* ============================================================
   PILLAR CARDS (what we do)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .pillars > article:nth-child(2) { margin-top: 32px; }
}
.pillar {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 32px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pillar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pillar .icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--black);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar .icon svg { width: 26px; height: 26px; }
.pillar .pill-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--black);
  margin: 4px 0 0;
}
.pillar .lede {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0;
}
.pillar ul {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar li {
  display: flex; gap: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--black);
}
.pillar li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 8px;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 999px;
}
.pillar.featured {
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}
.pillar.featured h3,
.pillar.featured li { color: var(--white); }
.pillar.featured .lede { color: rgba(255,255,255,0.88); }
.pillar.featured .pill-num { color: rgba(255,255,255,0.7); }
.pillar.featured ul { border-color: rgba(255,255,255,0.22); }
.pillar.featured li::before { background: var(--white); }
.pillar.featured .icon { background: rgba(255,255,255,0.16); color: var(--white); }

/* ============================================================
   WHY-SPARK / 2-col card grid
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 800px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.why-card .icon {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--black);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-card .icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}
.why-card p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-mute);
}

/* ============================================================
   WHAT WE DO - dedicated service page
   ============================================================ */
.what-hero {
  overflow: hidden;
  padding-bottom: clamp(62px, 8vw, 96px);
}
.what-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
@media (min-width: 980px) {
  .what-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
  }
}
.what-hero-copy {
  position: relative;
  z-index: 2;
}
.what-hero-copy h1 {
  max-width: 11ch;
}
.what-hero-copy p {
  max-width: 50ch;
}
.what-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.what-hero-board {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255,74,20,0.14), transparent 44%),
    var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
}
.what-hero-board::before {
  content: '';
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(var(--orange) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  -webkit-mask-image: radial-gradient(circle, black 0%, transparent 72%);
          mask-image: radial-gradient(circle, black 0%, transparent 72%);
  opacity: 0.2;
  pointer-events: none;
}
.board-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.board-top b {
  color: var(--orange);
}
.board-video-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 0.74fr 0.86fr;
  gap: clamp(10px, 1.4vw, 16px);
  align-items: end;
}
.mini-video {
  position: relative;
  aspect-ratio: 9 / 13;
  border: 5px solid var(--white);
  border-radius: 22px;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow-soft);
}
.mini-video.tall {
  aspect-ratio: 9 / 16;
}
.mini-video:nth-child(2) {
  margin-bottom: 28px;
  transform: rotate(-2deg);
}
.mini-video:nth-child(3) {
  transform: rotate(3deg);
}
.mini-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.board-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.board-metrics div {
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  padding: 14px 12px 13px;
}
.board-metrics span {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.board-metrics b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.what-pillars-section {
  padding-top: clamp(70px, 8vw, 120px);
}
.output-system {
  background: var(--black);
  color: var(--white);
}
.output-system .section-heading,
.output-system h2,
.output-system h3 {
  color: var(--white);
}
.output-system .section-lead {
  color: rgba(255,255,255,0.66);
}
.output-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (min-width: 980px) {
  .output-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.8fr);
    gap: clamp(48px, 7vw, 96px);
  }
}
.output-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.output-tab {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.output-tab:hover,
.output-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.output-panel {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-card);
  min-height: 420px;
}
.output-panel .panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.output-panel .panel-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}
.output-panel h3 {
  color: var(--black);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  max-width: 11ch;
  margin-bottom: 20px;
}
.output-panel p {
  margin: 0 0 28px;
  max-width: 44ch;
  color: var(--text-mute);
  font-weight: 600;
  line-height: 1.48;
}
.output-panel ul {
  list-style: none;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--border-soft);
  display: grid;
  gap: 14px;
}
.output-panel li {
  display: flex;
  gap: 12px;
  color: var(--black);
  font-weight: 700;
}
.output-panel li::before {
  content: '';
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--orange);
}
.what-proof {
  background: var(--off-white);
}
.compact-work-grid {
  max-width: 1160px;
  margin: 0 auto;
}
.included-system {
  background: var(--white);
}
.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 980px) {
  .included-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
    gap: clamp(52px, 7vw, 92px);
    align-items: start;
  }
}
.included-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border-soft);
}
.included-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-soft);
}
.included-list span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--orange);
}
.included-list h3 {
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1;
  margin-bottom: 9px;
}
.included-list p {
  margin: 0;
  max-width: 48ch;
  color: var(--text-mute);
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .what-hero-actions .btn,
  .cta-slab .btn {
    width: 100%;
    justify-content: center;
  }
  .board-metrics {
    grid-template-columns: 1fr;
  }
  .output-panel {
    min-height: 0;
  }
  .included-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }
}

/* ============================================================
   SPRINT TIMELINE (how it works)
   ============================================================ */
.sprint-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(56px, 7vw, 80px) 0;
  border-bottom: 1px solid var(--border-soft);
}
.sprint-row:last-child { border-bottom: 0; }
@media (min-width: 900px) {
  .sprint-row { grid-template-columns: 5fr 7fr; gap: 56px; }
  .sprint-row.reverse { grid-template-columns: 7fr 5fr; }
  .sprint-row.reverse .sprint-text { order: 2; }
  .sprint-row.reverse .sprint-detail { order: 1; }
}
.sprint-text .num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 8vw, 124px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--orange);
}
.sprint-text .stage-label {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.sprint-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--black);
  margin: 16px 0 18px;
  max-width: 14ch;
}
.sprint-text p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--text-mute);
  margin: 0;
  max-width: 44ch;
}
.sprint-detail {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 32px 32px 32px;
}
.sprint-detail.dark { background: var(--black); color: var(--white); border-color: transparent; box-shadow: var(--shadow-card); }
.sprint-detail.orange { background: var(--orange); color: var(--white); border-color: transparent; box-shadow: var(--shadow-orange); }
.sprint-detail ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sprint-detail li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.45;
  color: inherit;
}
.sprint-detail li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 9px;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 999px;
}
.sprint-detail.orange li::before { background: var(--white); }
.sprint-detail li b {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ============================================================
   TIMELINE WEEK GRID
   ============================================================ */
.week-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px)  { .week-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .week-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.week-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 26px 24px 30px;
  transition: transform var(--base) var(--ease);
}
.week-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.week-card .label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.week-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.week-card p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-mute);
}
.week-card.featured {
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}
.week-card.featured .label { color: rgba(255,255,255,0.85); }
.week-card.featured p { color: rgba(255,255,255,0.92); }

/* ============================================================
   OUR ADS - filter chips + grid
   ============================================================ */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.92);
}
.filter-bar .row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 72px);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-bar .lbl {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-right: 8px;
}
.f-chip {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--border-soft);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.f-chip:hover { background: var(--peach); color: var(--black); border-color: var(--peach); }
.f-chip.active { background: var(--black); color: var(--white); border-color: var(--black); }

.reel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 700px)  { .reel-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
@media (min-width: 1100px) { .reel-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.reel-grid .reel-tile {
  position: relative;
  /* Padding-top intrinsic-ratio: 16/9 * 100% = 177.78% — more reliable than
     aspect-ratio in CSS Grid when children are all position:absolute (grid
     can't infer height from content, causing ratio to collapse during load). */
  height: 0;
  padding-top: 177.78%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.reel-grid .reel-tile:hover { transform: translateY(-4px); box-shadow: 0 30px 70px rgba(0,0,0,0.2); }
.reel-grid .reel-tile video,
.reel-grid .reel-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.reel-grid .reel-tile video { display: none; }
.reel-grid .reel-tile:hover video { display: block; }
.reel-grid .reel-tile .badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  z-index: 2;
}

/* ============================================================
   PRICING TIERS
   ============================================================ */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 900px) { .tier-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.tier-card .eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.tier-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}
.tier-card .desc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-mute);
  margin: 0 0 22px;
}
.tier-card .price {
  border-top: 1px solid var(--border-soft);
  padding-top: 22px;
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 4px;
}
.tier-card .price .from {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.tier-card .price .num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--black);
}
.tier-card .price .unit {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.tier-card .meta {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.tier-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.tier-card li {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.45;
}
.tier-card li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 6px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--peach) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%23FF4A14' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 7.5'/></svg>") center / 70% no-repeat;
}
.tier-card .cta { margin-top: auto; }

.tier-card.featured {
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
  transform: translateY(-12px);
}
.tier-card.featured:hover { transform: translateY(-16px); }
@media (max-width: 899px) { .tier-card.featured, .tier-card.featured:hover { transform: none; } }
.tier-card.featured .eyebrow,
.tier-card.featured .meta { color: rgba(255,255,255,0.85); }
.tier-card.featured .desc { color: rgba(255,255,255,0.9); }
.tier-card.featured .price { border-top-color: rgba(255,255,255,0.22); }
.tier-card.featured .price .num { color: var(--black); }
.tier-card.featured .price .from,
.tier-card.featured .price .unit { color: rgba(255,255,255,0.85); }
.tier-card.featured li::before {
  background: var(--white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%23FF4A14' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 7.5'/></svg>") center / 70% no-repeat;
}
.tier-card.featured .badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.tier-card.dark {
  background: var(--black);
  color: var(--white);
  border-color: transparent;
}
.tier-card.dark .eyebrow,
.tier-card.dark .meta { color: rgba(255,255,255,0.7); }
.tier-card.dark h3 { color: var(--orange); }
.tier-card.dark .desc { color: rgba(255,255,255,0.75); }
.tier-card.dark .price { border-top-color: rgba(255,255,255,0.18); }
.tier-card.dark .price .num { color: var(--white); }
.tier-card.dark .price .from,
.tier-card.dark .price .unit { color: rgba(255,255,255,0.7); }
.tier-card.dark li::before {
  background: rgba(255,255,255,0.1) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%23FF4A14' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 7.5'/></svg>") center / 70% no-repeat;
}

/* ============================================================
   PRICING - flexible packages
   ============================================================ */
.pricing-split-hero {
  padding: clamp(52px, 7vw, 96px) 0 clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 10% 12%, rgba(255,74,20,0.08), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(255,74,20,0.07), transparent 32%),
    var(--off-white);
}
.pricing-hero-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
@media (min-width: 980px) {
  .pricing-hero-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1fr);
    min-height: 560px;
  }
}
.pricing-hero-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  padding: clamp(36px, 6vw, 82px);
}
.pricing-hero-main::after {
  content: '';
  position: absolute;
  right: -18%;
  bottom: -42%;
  width: min(620px, 82vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,74,20,0.32) 0 1.5px, transparent 1.8px);
  background-size: 18px 18px;
  opacity: 0.36;
  transform: rotate(-8deg);
  z-index: -1;
}
.pricing-kicker {
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 15px;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.pricing-hero-main h1 {
  color: var(--white);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  max-width: 13ch;
}
.pricing-hero-main p {
  max-width: 42ch;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.45;
}
.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.pricing-range-note {
  font-family: var(--font-mono);
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: rgba(255,255,255,0.54) !important;
  letter-spacing: 0.02em;
  max-width: 48ch !important;
}
.pricing-include-panel {
  background: var(--white);
  padding: clamp(24px, 4vw, 46px);
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 980px) {
  .pricing-include-panel { border-top: 0; border-left: 1px solid var(--border-soft); }
}
.pricing-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--black);
}
.pricing-panel-head strong {
  display: inline-flex;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 7px 12px 9px;
  transform: rotate(-1deg);
  font-weight: inherit;
}
.pricing-includes-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 620px) {
  .pricing-includes-mini { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 980px) {
  .pricing-includes-mini { grid-template-columns: 1fr; }
}
@media (min-width: 1220px) {
  .pricing-includes-mini { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.pricing-mini-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 60px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.045);
  color: var(--black);
}
.pricing-mini-item span:last-child {
  font-weight: 800;
  font-size: 13.5px;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.pricing-mini-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color: var(--white);
}
.pricing-mini-icon svg {
  width: 18px;
  height: 18px;
}
.pricing-cta-section {
  padding: clamp(32px, 5vw, 62px) 0 clamp(64px, 8vw, 108px);
  background: var(--off-white);
}
.pricing-cta-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,74,20,0.11), transparent 54%),
    var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: clamp(44px, 7vw, 84px);
}
.pricing-cta-card h2 {
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  max-width: 11ch;
  margin: 0 auto;
}
.pricing-cta-card p {
  max-width: 62ch;
  margin: 22px auto 34px;
  color: var(--text-mute);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5;
}
@media (max-width: 620px) {
  .pricing-hero-card,
  .pricing-cta-card {
    border-radius: var(--radius-lg);
  }
  .pricing-hero-main,
  .pricing-include-panel {
    padding: 30px 24px;
  }
  .pricing-hero-main h1 {
    font-size: clamp(32px, 11vw, 44px);
    max-width: 12ch;
  }
}

/* ============================================================
   MARQUEE - pricing strap
   ============================================================ */
.marquee {
  background: var(--orange);
  color: var(--white);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee .item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -0.025em;
}
.marquee .star {
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--white);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================================
   FORM (start-project)
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) { .form-grid { grid-template-columns: 1.6fr 1fr; gap: 36px; } }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 36px clamp(24px, 4vw, 44px);
}
.form-step {
  padding-top: 0;
  border-top: 0;
  margin-top: 0;
}
.form-step + .form-step {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}
.form-step .step-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  display: block;
}
.form-step h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--off-white-2);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast) var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(0,0,0,0.4); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,74,20,0.10);
}
.chip-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.chip-pill {
  background: var(--off-white-2);
  color: var(--black);
  border: 1.5px solid var(--border-soft);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.chip-pill:hover { background: var(--peach); border-color: var(--peach); }
.chip-pill.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.form-submit-meta {
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.form-success {
  display: none;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  text-align: center;
  box-shadow: var(--shadow-orange);
}
.form-success.open { display: block; }
.form-success .icon-circle {
  width: 64px; height: 64px;
  background: var(--white);
  color: var(--orange);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.form-success h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: var(--white);
}
.form-success p {
  margin: 0 auto;
  max-width: 36ch;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}

.aside-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 28px 28px 30px;
}
.aside-card + .aside-card { margin-top: 18px; }
.aside-card.dark {
  background: var(--black);
  color: var(--white);
  border-color: transparent;
}
.aside-card .eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.aside-card ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.aside-card ol li {
  display: flex; gap: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.45;
}
.aside-card ol li .n {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--orange);
  flex-shrink: 0;
}
.aside-card .big-email {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--black);
  word-break: break-word;
  transition: color var(--fast) var(--ease);
}
.aside-card .big-email:hover { color: var(--orange); }
.aside-card .small-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 4px;
}
.aside-card .small-logos img {
  max-height: 26px; max-width: 100%;
  object-fit: contain;
  opacity: 0.9;
}

/* ============================================================
   SHARED CTA SLAB (used on inner pages)
   ============================================================ */
.cta-slab-wrap { padding: clamp(64px, 8vw, 100px) 0 100px; background: var(--off-white); }
.cta-slab {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
}
.cta-slab.orange { background: var(--orange); }
.cta-slab::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto auto;
  width: 50%; height: 200%;
  background: radial-gradient(circle, var(--orange) 0%, transparent 65%);
  opacity: 0.15;
  pointer-events: none;
}
.cta-slab h2 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin: 0 auto 28px;
  max-width: 20ch;
}
.cta-slab h2 .or { color: var(--orange); }
.cta-slab .actions {
  position: relative;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   HOW IT WORKS - Cyclical Sprint
   ============================================================ */
.sprint-cycle {
  background: var(--off-white);
  padding: clamp(54px, 6vw, 70px) 0 24px;
  position: relative;
  overflow: hidden;
}
.sprint-cycle::before,
.sprint-cycle::after {
  /* Halftone-like orange spray accents in the corners */
  content: '';
  position: absolute;
  width: 330px; height: 330px;
  background-image: radial-gradient(var(--orange) 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  -webkit-mask-image: radial-gradient(circle, black 0%, transparent 70%);
          mask-image: radial-gradient(circle, black 0%, transparent 70%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.sprint-cycle::before { left: -150px; top: 190px; }
.sprint-cycle::after  { right: -135px; bottom: 82px; }

.cycle-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 8px;
}
.cycle-intro { order: 1; padding-top: 8px; }
.cycle-card.pos-01 { order: 2; }
.cycle-card.pos-02 { order: 3; }
.cycle-card.pos-03 { order: 4; }
.cycle-card.pos-04 { order: 5; }
.cycle-centre { order: 6; }

@media (min-width: 900px) {
  .cycle-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr) minmax(0, 1.02fr);
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "intro card1 ."
      "card4 dial  card2"
      ".     card3 .";
    column-gap: clamp(28px, 3.4vw, 64px);
    row-gap: clamp(34px, 3.6vw, 58px);
    padding-top: 64px;
    padding-bottom: 48px;
    align-items: stretch;
  }
  .cycle-intro     { grid-area: intro; order: 0; padding-top: 0; align-self: start; }
  .cycle-card.pos-01 { grid-area: card1; order: 0; }
  .cycle-card.pos-02 { grid-area: card2; order: 0; align-self: center; }
  .cycle-card.pos-03 { grid-area: card3; order: 0; }
  .cycle-card.pos-04 { grid-area: card4; order: 0; align-self: center; }
  .cycle-centre {
    grid-area: dial;
    order: 0;
    align-self: center;
    justify-self: center;
    min-height: 0;
  }
}

.cycle-intro .kicker {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 7px 14px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cycle-intro h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(54px, 7.05vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.045em;
  margin: 0 0 20px;
  color: var(--black);
}
.cycle-intro h2 .or { color: var(--orange); display: block; }
.cycle-intro p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  max-width: 30ch;
}

/* CYCLE CARDS */
.cycle-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 26px 30px;
  border: 1px solid rgba(5,5,5,0.055);
  box-shadow: 0 16px 38px rgba(0,0,0,0.075);
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .cycle-grid > .cycle-card {
    position: relative;
  }
}
.cycle-card .card-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 10px;
}
.cycle-card .icon-box {
  width: 54px;
  height: 54px;
  background: #DFFF00;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}
.cycle-card .icon-box svg { width: 28px; height: 28px; }
.cycle-card .head {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cycle-card .step-no {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.03em;
}
.cycle-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--black);
  margin: 0;
}
.cycle-card .subtitle {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
  color: var(--orange);
  margin: 6px 0 14px;
  letter-spacing: -0.01em;
}
.cycle-card .body {
  margin: 0 0 17px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  line-height: 1.52;
  color: var(--black);
}
.cycle-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cycle-card ul li {
  display: flex;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  line-height: 1.43;
  color: var(--black);
}
.cycle-card ul li::before {
  content: '✦';
  flex-shrink: 0;
  color: var(--orange);
  font-size: 13px;
  line-height: 1.15;
}
.cycle-card ul li b { font-weight: 700; }

/* CENTRE */
.cycle-centre {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .cycle-centre {
    position: relative;
  }
}
.cycle-centre .ring {
  width: 124px;
  height: 124px;
  border-radius: 999px;
  background: radial-gradient(circle at 45% 38%, #fff0e8 0%, var(--peach) 64%, #ffd9ca 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  position: relative;
  z-index: 2;
}
.cycle-centre .ring svg { width: 60px; height: 60px; }
.cycle-centre .spokes {
  position: absolute;
  inset: 8px 18px 30px;
  pointer-events: none;
}
.cycle-centre .spokes svg { width: 100%; height: 100%; overflow: visible; }
.cycle-centre .spokes line {
  stroke: var(--orange);
  stroke-width: 2.2;
  stroke-linecap: round;
}

/* CYCLICAL ORBIT - dashed clockwise ring around the central dial */
.cycle-arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(44%, 480px);
  aspect-ratio: 1 / 1;
  height: auto;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  display: none;
}
@media (min-width: 900px) {
  .cycle-arrows { display: block; }
}
.cycle-orbit {
  fill: none;
  stroke: #FF4A14;
  stroke-width: 3;
  stroke-dasharray: 1 9;
  stroke-linecap: round;
}

/* ============================================================
   HOW IT WORKS - Timeline strip (bottom)
   ============================================================ */
.timeline-bar-wrap {
  background: var(--off-white);
  padding: 0 0 clamp(72px, 8vw, 96px);
}
.timeline-bar {
  background: var(--white);
  border: 1px solid rgba(5,5,5,0.055);
  border-radius: 8px;
  padding: clamp(30px, 3.4vw, 42px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.07);
  max-width: 1024px;
  margin: 0 auto;
}
.timeline-bar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 1000px) {
  .timeline-bar-grid {
    grid-template-columns: minmax(240px, 0.92fr) 2.6fr;
    gap: clamp(24px, 2.7vw, 38px);
    align-items: stretch;
  }
}
.tb-intro .kicker {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 7px 14px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tb-intro h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4.15vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--black);
  margin: 0 0 18px;
}
.tb-intro h3 .or { color: var(--orange); display: block; }
.tb-intro p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-mute);
  max-width: 32ch;
}
.tb-intro p .u {
  position: relative;
  white-space: nowrap;
  color: var(--black);
}
.tb-intro p .u::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'><path d='M2 6 C30 1, 70 1, 98 6' fill='none' stroke='%23FF4A14' stroke-width='2.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.tb-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
  position: relative;
}
@media (min-width: 900px) {
  .tb-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: start;
  }
}
.tb-step {
  position: relative;
}
@media (min-width: 900px) {
  .tb-step {
    min-height: 258px;
    padding: 0 clamp(16px, 1.8vw, 28px);
    border-left: 1px solid var(--border-line);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .tb-step:first-child {
    border-left: 0;
  }
}
.tb-step .ic-circle {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: radial-gradient(circle at 45% 35%, #fff3ec 0%, var(--peach) 70%, #ffd9ca 100%);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.tb-step .ic-circle svg { width: 34px; height: 34px; }
.tb-step .pill {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 5px 12px 4px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tb-step h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--black);
  margin: 0 0 10px;
}
.tb-step p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--black);
}
/* solid connector line behind icons (desktop only) */
@media (min-width: 900px) {
  .tb-steps {
    position: relative;
  }
  .tb-steps::before {
    content: '';
    position: absolute;
    top: 39px;
    /* Span from horizontal centre of first step to centre of last step
       (4 equally-sized columns => centres at 12.5% and 87.5%). */
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: var(--orange);
    z-index: 0;
    pointer-events: none;
  }
  .tb-step .ic-circle {
    position: relative;
    z-index: 1;
  }
  .tb-step + .tb-step::before,
  .tb-step:not(:last-child)::after,
  .tb-step:last-child::after {
    content: none !important;
    display: none !important;
  }
}


/* ============================================================
   HOW IT WORKS - Stages Detail (vertical 4-row deep-dive)
   ============================================================ */
.stages-detail {
  background: var(--off-white);
  padding: clamp(72px, 8vw, 110px) 0 clamp(40px, 5vw, 64px);
}
.stages-detail-head {
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}
.stages-detail-head .kicker {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 22px;
}
.stages-detail-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 0 18px;
}
.stages-detail-head h2 .or { color: var(--orange); }
.stages-detail-head p {
  margin: 0 auto;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(5,5,5,0.62);
  max-width: 56ch;
  text-wrap: pretty;
}

.stage-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.stage-list .stage-row {
  width: 100%;
}
@media (min-width: 900px) {
  .stage-list .stage-row {
    width: 60%;
  }
  .stage-list .stage-row.left  { align-self: flex-start; }
  .stage-list .stage-row.right { align-self: flex-end; }
}

/* L-shaped connector arrow between snake rows */
.stage-arrow { display: none; }
@media (min-width: 900px) {
  .stage-arrow {
    display: block;
    position: relative;
    width: 100%;
    height: clamp(80px, 9vw, 140px);
    margin: 4px 0;
  }
  .stage-arrow svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    display: block;
  }
  .stage-arrow .arrow-head {
    position: absolute;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 12px solid #FF4A14;
  }
}

/* Card inner layout (restored) */
.stage-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: var(--shadow-soft);
}

/* Snake-row wrapper that pairs a card with a media element on the right */
.stage-snake-row {
  width: 100%;
}
.stage-snake-row-with-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stage-snake-row-with-media > .stage-row {
  width: 100%;
}
.stage-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  background: #000;
}
@media (min-width: 900px) {
  .stage-snake-row-with-media {
    flex-direction: row;
    align-items: stretch;
    gap: 28px;
    /* Allow the row to overflow the normal stage-list column so the card
       can stay the same 60% width as the others AND the video can match it. */
    width: calc(120% + 28px);
    margin-left: calc(-10% - 14px);
    margin-right: calc(-10% - 14px);
  }
  .stage-snake-row-with-media > .stage-row {
    flex: 1 1 0;
    width: auto !important;
    align-self: auto !important;
    min-width: 0;
  }
  .stage-snake-row-with-media > .stage-media {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    background: #000;
  }
  .stage-snake-row-with-media > .stage-media img,
  .stage-snake-row-with-media > .stage-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
.stage-row .stage-mark {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.stage-row .stage-mark .step-meta {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 18px;
}
.stage-row .stage-mark .num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--orange);
}
.stage-row .stage-mark h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
  color: var(--black);
}
.stage-row .stage-body .lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--black);
}
.stage-row .stage-body > p:not(.lede) {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 0 18px;
  color: rgba(5,5,5,0.78);
  max-width: 62ch;
}
.stage-row .stage-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 720px) and (max-width: 899px) {
  .stage-row .stage-body ul {
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }
}
.stage-row .stage-body ul li {
  position: relative;
  padding-left: 26px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(5,5,5,0.78);
}
.stage-row .stage-body ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--orange);
}
.stage-row .stage-body ul li b {
  color: var(--black);
  font-weight: 700;
}

   come into view. Controlled by load-animations.js + body[data-anim].
   `.anim-entry-item` is the initial hidden state, `.anim-in` plays the
   transition. Using transitions (not keyframes) so the observer can
   trigger them at the right moment without timing race conditions.
   ============================================================ */
.anim-entry-item {
  will-change: opacity, transform, filter;
  transition-property: opacity, transform, filter;
  transition-duration: var(--anim-dur, 720ms);
  transition-timing-function: cubic-bezier(.16, 1, .3, 1);
}

body[data-anim="fade-up"] .anim-entry-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}
body[data-anim="fade-up"] .anim-entry-item.anim-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body[data-anim="fade"] .anim-entry-item {
  opacity: 0;
}
body[data-anim="fade"] .anim-entry-item.anim-in {
  opacity: 1;
}

body[data-anim="blur"] .anim-entry-item {
  opacity: 0;
  filter: blur(10px);
  transform: scale(0.992);
}
body[data-anim="blur"] .anim-entry-item.anim-in {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

body[data-anim="rise"] .anim-entry-item {
  opacity: 0;
  transform: translate3d(0, 36px, 0) scale(0.99);
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}
body[data-anim="rise"] .anim-entry-item.anim-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body[data-anim="none"] .anim-entry-item {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .anim-entry-item,
  .anim-entry-item.anim-in {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}


/* ============================================================
   UNIFIED SUBHEADING STYLE - orange-filled pill, mono caps.
   All section eyebrows, kickers and intro tags use this look so
   subheadings read the same across every page.
   ============================================================ */
.section-eyebrow,
.page-hero .eyebrow,
.aside-card .eyebrow,
.tier-card .eyebrow,
.cycle-intro .kicker,
.tb-intro .kicker,
.pricing-kicker {
  display: inline-block !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  border: 0 !important;
  border-radius: 4px !important;
  padding: 7px 14px 6px !important;
  font-family: var(--font-mono) !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
  line-height: 1.2 !important;
  width: auto !important;
  transform: none !important;
  vertical-align: middle;
}

/* Remove the legacy dot decoration on eyebrows that had one. */
.section-eyebrow::before,
.page-hero .eyebrow::before {
  content: none !important;
}

/* On the inverted Stats section the orange pill still works against the
   dark surface - keep it on brand rather than swapping to outline. */
.stats .section-eyebrow {
  background: var(--orange) !important;
  color: var(--white) !important;
}


/* ============================================================
   PAID TEAMS - Growth Engine layout (Spark)
   ============================================================ */
.spark-growth-engine-section {
  position: relative;
  background: var(--off-white);
  overflow: hidden;
}
.spark-growth-engine-section.paid-teams { background: var(--off-white); }

/* Halftone dot pattern accents - PNG images on left & right edges */
.spark-growth-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(130px, 14vw, 200px);
  background-repeat: no-repeat;
  background-size: auto 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
.spark-growth-bg-left  { left: 0;  background-image: url('paid-teams-bg-left.png');  background-position: left center; }
.spark-growth-bg-right { right: 0; background-image: url('paid-teams-bg-right.png'); background-position: right center; }

.spark-growth-container {
  position: relative;
  z-index: 1;
}

/* ---- Header row ---- */
.spark-growth-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: clamp(36px, 4vw, 56px);
}
@media (min-width: 900px) {
  .spark-growth-header {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: clamp(36px, 4vw, 72px);
    align-items: end;
  }
}

.spark-growth-kicker {
  display: inline-flex !important;
  align-items: center;
  gap: 10px !important;
  background: transparent !important;
  color: var(--black) !important;
  padding: 0 !important;
  margin-bottom: 22px !important;
  border-radius: 0 !important;
  font-family: var(--font-mono) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
}
.spark-growth-kicker > span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  flex-shrink: 0;
}

.spark-growth-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.8vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--black);
  margin: 0;
}
.spark-growth-heading span {
  color: var(--orange);
  display: inline-block;
}

.spark-growth-copy {
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding-bottom: 8px;
}
.spark-growth-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(5, 5, 5, 0.18);
  flex-shrink: 0;
  display: none;
}
@media (min-width: 900px) {
  .spark-growth-divider { display: block; }
}
.spark-growth-copy p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
  color: var(--black);
  max-width: 36ch;
}
.spark-growth-copy p .u {
  position: relative;
  white-space: nowrap;
}
.spark-growth-copy p .u::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ---- 3 feature cards ---- */
.spark-growth-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
@media (min-width: 760px) {
  .spark-growth-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.spark-growth-card {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  padding: 26px 28px 24px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 34px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.spark-growth-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.spark-card-icon {
  width: 52px;
  height: 52px;
  background: #DFFF00;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: clamp(20px, 2.4vw, 32px);
}
.spark-card-icon svg { width: 26px; height: 26px; }

.spark-growth-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 1.85vw, 26px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 12px;
}

.spark-growth-card p {
  margin: 0 0 auto;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
}

.spark-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 32px;
  color: var(--orange);
  margin-top: 20px;
  text-decoration: none;
  transition: transform var(--fast) var(--ease);
}
.spark-card-arrow svg { width: 30px; height: 30px; display: block; }
.spark-card-arrow:hover { transform: translateX(4px); }

/* Featured (centre) card */
.spark-growth-card.spark-growth-card-featured {
  background: var(--orange);
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(0,0,0,0.05);
}
.spark-growth-card.spark-growth-card-featured:hover { box-shadow: var(--shadow-card); }
.spark-growth-card.spark-growth-card-featured h3,
.spark-growth-card.spark-growth-card-featured p {
  color: var(--white);
}
.spark-card-icon.spark-card-icon-featured {
  background: var(--black);
  color: var(--white);
}
.spark-growth-card.spark-growth-card-featured .spark-card-arrow {
  color: #DFFF00;
}

/* ---- Proof strip ---- */
.spark-growth-proof-strip {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 28px rgba(0,0,0,0.045);
  padding: clamp(20px, 2.4vw, 30px) clamp(22px, 3vw, 38px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 18px;
}
@media (min-width: 720px) {
  .spark-growth-proof-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: clamp(16px, 2.4vw, 32px);
    row-gap: 0;
  }
}

.spark-proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.spark-proof-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spark-proof-icon svg { width: 26px; height: 26px; }
.spark-proof-item h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--black);
  margin: 0 0 4px;
}
.spark-proof-item p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: var(--black);
}
.spark-proof-star {
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
  text-align: center;
  user-select: none;
}
@media (max-width: 719px) {
  .spark-proof-star { display: none; }
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cc-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  width: min(390px, calc(100vw - 40px));
  background: var(--white);
  border: 1.5px solid var(--black);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(5,5,5,0.20);
  padding: 20px 20px 18px;
  font-family: var(--font-body);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 480ms cubic-bezier(0.4,0,0.2,1), opacity 320ms ease;
  will-change: transform, opacity;
}
.cc-banner.cc-show { transform: translateY(0); opacity: 1; }
.cc-banner h4 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0 0 7px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cc-banner h4 .cc-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.cc-banner p {
  margin: 0 0 15px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.cc-banner p a { color: var(--black); text-decoration: underline; text-underline-offset: 2px; }
.cc-actions { display: flex; flex-direction: column; gap: 9px; }
.cc-actions-row { display: flex; gap: 9px; }
.cc-btn {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  border-radius: 999px;
  padding: 11px 18px;
  cursor: pointer;
  border: 1.5px solid var(--black);
  transition: background 180ms ease, color 180ms ease, transform 120ms ease;
  white-space: nowrap;
}
.cc-btn:active { transform: translateY(1px); }
.cc-btn-accept {
  flex: 1;
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.cc-btn-accept:hover { background: #e63e0c; border-color: #e63e0c; }
.cc-btn-reject {
  flex: 1;
  background: var(--white);
  color: var(--black);
}
.cc-btn-reject:hover { background: var(--off-white); }
.cc-btn-prefs {
  background: none;
  border: none;
  color: var(--ink-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 4px;
  align-self: center;
}
.cc-btn-prefs:hover { color: var(--black); }

/* Preferences modal */
.cc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5,5,5,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.cc-modal-overlay.cc-show { opacity: 1; pointer-events: auto; }
.cc-modal {
  background: var(--white);
  border: 1.5px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(5,5,5,0.30);
  width: min(480px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: 28px 28px 24px;
  font-family: var(--font-body);
  transform: scale(0.96);
  transition: transform 240ms cubic-bezier(0.4,0,0.2,1);
}
.cc-modal-overlay.cc-show .cc-modal { transform: scale(1); }
.cc-modal h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--black);
}
.cc-modal > p {
  margin: 0 0 20px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.cc-pref-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border-soft);
}
.cc-pref-row:last-of-type { border-bottom: 1px solid var(--border-soft); }
.cc-pref-text h5 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  margin: 0 0 4px;
  color: var(--black);
}
.cc-pref-text p { margin: 0; font-size: 12.5px; line-height: 1.5; color: var(--ink-2); }
/* Toggle */
.cc-switch { position: relative; flex-shrink: 0; width: 46px; height: 26px; margin-top: 2px; }
.cc-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.cc-slider {
  position: absolute; inset: 0; cursor: pointer;
  background: #cdc8c1; border-radius: 999px;
  transition: background 200ms ease;
}
.cc-slider::before {
  content: ""; position: absolute;
  height: 20px; width: 20px; left: 3px; top: 3px;
  background: var(--white); border-radius: 50%;
  transition: transform 200ms ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.cc-switch input:checked + .cc-slider { background: var(--orange); }
.cc-switch input:checked + .cc-slider::before { transform: translateX(20px); }
.cc-switch input:disabled + .cc-slider { background: var(--black); cursor: not-allowed; opacity: 0.55; }
.cc-modal-actions { display: flex; gap: 10px; margin-top: 22px; }
.cc-modal-actions .cc-btn { flex: 1; }
@media (max-width: 520px) {
  .cc-actions-row { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .cc-banner, .cc-modal-overlay, .cc-modal { transition: opacity 200ms ease; }
  .cc-banner { transform: none; }
}

/* SR-only utility for SEO-only semantic headings — do not remove. */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* WebP <picture> wrappers generate no box, so the <img> lays out exactly as
   it did before wrapping (preserves flex/grid/fill behaviour). */
picture { display: contents; }
