/* ───────────────────────────────────────
   Sutori landing — hand-rolled stylesheet
   ─────────────────────────────────────── */

/* Fonts */
@font-face { font-family: 'TG Ext'; src: url('fonts/TradeGothicLT-BoldExtended.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-300.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }

/* Tokens */
:root {
  --ink: #0A0A0A;
  --ink2: #141414;
  --ink3: #1A1A1A;
  --bone: #F4EFE6;
  --paper: #FFFFFF;
  --cyan: #5ADCB9;
  --cyan-dim: #3FC8A0;
  --pink: #FF96BE;
  --mute: #8A8A8A;
  --mute-dark: #3A3A3A;
  --hairline: rgba(255,255,255,0.08);
  --hairline-strong: rgba(255,255,255,0.14);
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  background: var(--ink);
  color: var(--paper);
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--cyan); color: var(--ink); }

/* Container */
.container-x { max-width: 1280px; margin-inline: auto; padding-inline: 24px; }
@media (min-width: 768px) { .container-x { padding-inline: 40px; } }

/* Type */
.display-xl {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.display-l {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
}
.display-m {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
}
.display-s {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.mono {
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
}
.body-sm { font-size: 14px; line-height: 1.5; }
.body-xs { font-size: 12px; line-height: 1.45; }

/* Utility colour helpers */
.text-paper  { color: var(--paper); }
.text-mute   { color: var(--mute); }
.text-mute-dark { color: var(--mute-dark); }
.text-cyan   { color: var(--cyan); }
.text-cyan-dim { color: var(--cyan-dim); }
.text-ink    { color: var(--ink); }
.bg-ink      { background: var(--ink); }
.bg-ink2     { background: var(--ink2); }
.bg-bone     { background: var(--bone); }
.bg-cyan     { background: var(--cyan); }

/* Borders */
.hairline-t { border-top: 1px solid var(--hairline); }
.hairline-b { border-bottom: 1px solid var(--hairline); }
.hairline-y { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

/* Dot grid */
.bg-dotgrid {
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ───────────────────────────────────────
   NAVBAR
   ─────────────────────────────────────── */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: 72px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.navbar__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.navbar__logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
}
.navbar__wordmark {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1;
}
.navbar__nav {
  display: none;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) { .navbar__nav { display: flex; } }
.navbar__link {
  color: rgba(255,255,255,0.7);
  transition: color 150ms;
  text-decoration: none;
}
.navbar__link:hover { color: var(--paper); }

.navbar__actions {
  display: flex; align-items: center; gap: 10px;
}

.navbar__contact {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: var(--paper);
  text-decoration: none;
  transition: border-color 150ms, color 150ms;
  white-space: nowrap;
}
.navbar__contact:hover { border-color: var(--paper); }

.navbar__cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 18px;
  background: var(--cyan); color: var(--ink);
  border-radius: 999px;
  text-decoration: none;
  transition: background 150ms;
  white-space: nowrap;
}
.navbar__cta:hover { background: var(--cyan-dim); }

/* ───────────────────────────────────────
   HERO — full-bleed background, content inside container
   ─────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 72px 0 0; /* clear navbar */
}

.hero__bleed {
  position: relative;
  width: 100%;
  /* Full-bleed canvas; height controlled by min-height */
  min-height: 560px;
  overflow: hidden;
}
@media (min-width: 768px) { .hero__bleed { min-height: 680px; } }
@media (min-width: 1280px) { .hero__bleed { min-height: 760px; } }

/* Image stack — hard cut between four images, 1s each (4s loop).
   steps(1) holds each frame, so there is no fade between images. */
.hero__images {
  position: absolute; inset: 0;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 75% center;
  opacity: 0;
  animation: 4s steps(1) infinite;
}
.hero__img--1 { animation-name: heroCut1; }
.hero__img--2 { animation-name: heroCut2; }
.hero__img--3 { animation-name: heroCut3; }
.hero__img--4 { animation-name: heroCut4; }
@keyframes heroCut1 { 0% { opacity: 1; } 25% { opacity: 0; } 100% { opacity: 0; } }
@keyframes heroCut2 { 0% { opacity: 0; } 25% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 0; } }
@keyframes heroCut3 { 0% { opacity: 0; } 50% { opacity: 1; } 75% { opacity: 0; } 100% { opacity: 0; } }
@keyframes heroCut4 { 0% { opacity: 0; } 75% { opacity: 1; } 100% { opacity: 1; } }

/* Respect reduced-motion: hold the first image, no cycling */
@media (prefers-reduced-motion: reduce) {
  .hero__img { animation: none; }
  .hero__img--1 { opacity: 1; }
}

/* Dual gradient overlay: horizontal left fade + vertical bottom darkening */
.hero__fade {
  position: absolute; inset: 0;
  background:
    /* Gentle base vignette so the status pill stays legible */
    linear-gradient(180deg, transparent 58%, rgba(10,10,10,0.30) 84%, rgba(10,10,10,0.55) 100%),
    /* Left scrim for the headline — smooth, even falloff (no hard shelf),
       lighter than before so more of the photo reads across the frame */
    linear-gradient(90deg,
      rgba(10,10,10,0.86) 0%,
      rgba(10,10,10,0.74) 16%,
      rgba(10,10,10,0.56) 30%,
      rgba(10,10,10,0.34) 44%,
      rgba(10,10,10,0.16) 58%,
      rgba(10,10,10,0.04) 72%,
      transparent 84%
    );
}

/* Container that holds content — sits inside the bleed */
.hero__container {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .hero__container { padding-top: 80px; padding-bottom: 80px; }
}

.hero__content {
  max-width: 640px;
}
@media (min-width: 768px) {
  .hero__content { max-width: 640px; }
}

.hero__eyebrow { color: var(--cyan); margin-bottom: 18px; }

/* Override display-xl when inside hero — sized to fit in left column */
.hero h1.display-xl {
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

/* New: bold uppercase subline directly under H1 */
.hero__subline {
  margin-top: 28px;
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--paper);
  max-width: 640px;
}

.hero__divider {
  margin-top: 18px;
  width: 100%;
  max-width: 520px;
  height: 1px;
  background: rgba(255,255,255,0.18);
}

/* Now Booking — status pill anchored to the bottom-right of the hero */
.hero__status {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero__status { bottom: 32px; }
}
.hero__status .now-booking { pointer-events: auto; }

.now-booking {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px 9px 14px;
  background: rgba(20,20,20,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.now-booking__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(90,220,185,0.18);
  animation: nowBookingPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes nowBookingPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(90,220,185,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(90,220,185,0.06); }
}
.now-booking__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  line-height: 1;
}
.now-booking__value { color: var(--cyan); }

.hero__ctas {
  margin-top: 28px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* Sticker — positioned relative to the bleed, not the card */
.hero__sticker {
  position: absolute;
  top: 32px; right: 32px;
  z-index: 3;
  width: 88px; height: 88px;
  display: none;
}
@media (min-width: 768px) { .hero__sticker { display: block; } }
@media (min-width: 1280px) {
  .hero__sticker { top: 48px; right: 48px; width: 100px; height: 100px; }
}
.hero__sticker svg { animation: spin 22s linear infinite; width: 100%; height: 100%; }
.hero__sticker__dot {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero__sticker__dot::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 44px; padding: 0 26px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  transition: all 150ms ease-out;
  cursor: pointer;
  border: 1px solid transparent; background: transparent; color: inherit;
  white-space: nowrap;
  text-decoration: none;
}
.btn--cyan { background: var(--cyan); color: var(--ink); border-color: var(--cyan); }
.btn--cyan:hover { background: var(--cyan-dim); border-color: var(--cyan-dim); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.22);
  color: var(--paper);
}
.btn--outline:hover { border-color: rgba(255,255,255,0.55); transform: translateY(-1px); }
.btn--dark {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.22);
}
.btn--dark:hover {
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-1px);
}
.btn--lg { height: 52px; padding: 0 30px; font-size: 12px; }
.btn__arrow { display: inline-block; line-height: 1; }

/* Rotating sticker */
.hero__sticker {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 3;
  width: 88px; height: 88px;
  display: none;
}
@media (min-width: 768px) { .hero__sticker { display: block; } }
.hero__sticker svg { animation: spin 22s linear infinite; }
.hero__sticker__dot {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero__sticker__dot::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ───────────────────────────────────────
   LOGO STRIP — marquee
   ─────────────────────────────────────── */
.logostrip {
  background: #000;          /* solid pure black for the logo block */
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
}
.logostrip__inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 24px;
}
.logostrip__label { white-space: nowrap; }
.logostrip__divider {
  width: 1px;
  height: 24px;
  background: var(--hairline);
}
.logostrip__marquee {
  position: relative;
  overflow: hidden;
  /* Soft fade-out on the left and right edges */
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.logostrip__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: logostripScroll 45s linear infinite;
}
.logostrip__track:hover { animation-play-state: paused; }
.logostrip__logo {
  flex: 0 0 auto;
  /* Area-normalised footprint: every logo reads at a comparable optical
     size by capping height per aspect ratio (wide wordmarks shorter,
     compact/stacked marks taller). max-width is a safety stop. */
  max-height: 28px;            /* default — medium wordmarks */
  max-width: 150px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 200ms;
}
.logostrip__logo--wide { max-height: 22px; }  /* very wide wordmarks */
.logostrip__logo--tall { max-height: 38px; }  /* compact / square marks */
.logostrip__logo:hover { opacity: 1; }

@keyframes logostripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logostrip__track { animation: none; }
}

/* ───────────────────────────────────────
   GENERIC SECTION
   ─────────────────────────────────────── */
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }

/* ───────────────────────────────────────
   PROBLEM SECTION (accordion)
   ─────────────────────────────────────── */
.problem__head {
  display: block;
  margin-bottom: 56px;
}
.problem__intro {
  margin-top: 32px;
  color: var(--mute);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

.accordion__item {
  border-top: 1px solid var(--hairline);
}
.accordion__item:last-child { border-bottom: 1px solid var(--hairline); }
.accordion__summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}
@media (min-width: 768px) {
  .accordion__summary { gap: 40px; padding: 28px 0; }
}
.accordion__summary::-webkit-details-marker { display: none; }
.accordion__summary:focus { outline: none; }
.accordion__summary:focus-visible { outline: 2px solid rgba(90,220,185,0.5); outline-offset: 4px; border-radius: 4px; }
.accordion__num {
  color: rgba(255,255,255,0.45);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  min-width: 24px;
}
.accordion__title {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--paper);
}
@media (min-width: 768px) {
  .accordion__title { font-size: 21px; }
}
.accordion__title .text-cyan { color: var(--cyan); }

.accordion__icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: transform 200ms, color 200ms, border-color 200ms, background-color 200ms;
  flex-shrink: 0;
}
.accordion__item[open] .accordion__icon {
  color: var(--cyan);
  border-color: var(--cyan);
  transform: rotate(135deg);
}

.accordion__body {
  padding: 0 60px 28px 64px;
  color: var(--paper);
  font-size: 14px;
  line-height: 1.6;
  max-width: 760px;
  margin: 0;
}

/* ───────────────────────────────────────
   BRAND ADVOCATES MOSAIC
   ─────────────────────────────────────── */
.mosaic__head { text-align: center; max-width: 760px; margin: 0 auto; }
.mosaic__eyebrow { color: var(--cyan); margin-bottom: 20px; }
.mosaic__sub { margin-top: 24px; color: var(--mute); font-size: 14px; max-width: 520px; margin-left: auto; margin-right: auto; }

.mosaic__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  /* Wider than the heading container so the wall extends on each side;
     fade left/right edges to black */
  position: relative;
  overflow: hidden;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

/* Mobile: 3 across, masonry brick offset, grid wider than the screen so the
   left/right columns crop off the edges. #work clips the overflow. */
@media (max-width: 767px) {
  #work { overflow: hidden; }
  .mosaic__grid {
    width: 132vw;
    max-width: none;
    margin-left: -16vw;
    margin-right: 0;
    padding: 0;
    gap: 8px;
    /* hard crop at the screen edges, no fade */
    -webkit-mask-image: none;
            mask-image: none;
  }
  /* horizontal brick offset — shift every other row sideways, matching the
     desktop wall's row stagger */
  .mosaic__grid .mosaic__tile:nth-child(6n+4),
  .mosaic__grid .mosaic__tile:nth-child(6n+5),
  .mosaic__grid .mosaic__tile:nth-child(6n+6) { transform: translateX(8vw); }
}

@media (min-width: 768px) {
  .mosaic__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-top: 64px;
  }
}
/* Offset the middle row (tiles 7-12) for asymmetric rhythm */
@media (min-width: 768px) {
  .mosaic__grid .mosaic__tile:nth-child(n+7):nth-child(-n+12) { transform: translateX(36px); }
}
.mosaic__tile {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: var(--ink2);
}
.mosaic__tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms ease-out;
}
.mosaic__tile:hover img { transform: scale(1.05); }

/* ───────────────────────────────────────
   ONE CLEAR PATH FORWARD
   ─────────────────────────────────────── */
.path__head { margin-bottom: 64px; }

.path__eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.path__eyebrow-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #81B2A3;
}
.path__eyebrow-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.path__intro {
  margin-top: 24px;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.55;
  max-width: 580px;
}

.path__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .path__cards { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.path__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink3);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 32px;
  transition: border-color 200ms, box-shadow 250ms, transform 200ms;
}
@media (min-width: 768px) { .path__card { padding: 40px; } }

.path__card-eyebrow {
  color: var(--cyan);
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
/* Path A eyebrow — muted grey to match the rest of the block */
.path__card--invisible .path__card-eyebrow { color: rgba(255,255,255,0.5); }
.path__card-eyebrow-sep {
  opacity: 0.4;
  margin: 0 4px;
}

.path__card-title {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 28px 0;
}
/* Reserve 3 lines so the shorter (2-line) title pads out and both cards'
   intro paragraphs start at the same height when shown side by side. */
@media (min-width: 768px) {
  .path__card-title { min-height: 2.85em; } /* 3 × 0.95 line-height */
}
/* Path A title — muted grey */
.path__card--invisible .path__card-title { color: rgba(255,255,255,0.5); }
/* Path B title — cyan */
.path__card--recommended .path__card-title { color: var(--cyan); }

.path__card-intro {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 28px 0;
  max-width: 420px;
}

.path__card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  /* Push the divider + list to the bottom so both cards' bottom sections align */
  margin: auto 0 24px 0;
}

.path__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.path__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
}
.path__list .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.path__card--recommended .path__list .dot { background: var(--cyan); }

/* Hover glows */
.path__card--invisible:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 0 60px -10px rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.path__card--recommended:hover {
  border-color: rgba(90, 220, 185, 0.4);
  box-shadow: 0 0 60px -10px rgba(90, 220, 185, 0.25);
  transform: translateY(-2px);
}

/* ───────────────────────────────────────
   AMPLIFY METHOD
   ─────────────────────────────────────── */
.method__head {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.method__eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.method__eyebrow-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #81B2A3;
}
.method__eyebrow-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.method__title {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
  color: var(--paper);
}
.method__title-accent { color: #84D6F9; }

.method__sub {
  margin-top: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BB8C9E;
}

.method__cards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .method__cards { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 80px; }
}

.method__card {
  background: var(--ink3);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 32px;
  transition: transform 200ms, border-color 200ms, box-shadow 200ms;
}
@media (min-width: 1024px) { .method__card { padding: 36px; } }

.method__card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.method__card-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.method__card-rule {
  height: 1px;
  background: rgba(255,255,255,0.18);
}

.method__card-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.method__card-title {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 24px 0;
  color: var(--paper);
}

.method__card-body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Per-card colours */
.method__card--pink .method__card-num,
.method__card--pink .method__card-eyebrow { color: #D89AB4; }
.method__card--mint .method__card-num,
.method__card--mint .method__card-eyebrow { color: #72C8AF; }
.method__card--blue .method__card-num,
.method__card--blue .method__card-eyebrow { color: #8AC7D2; }

/* Hover glows per card */
.method__card--pink:hover {
  border-color: rgba(216, 154, 180, 0.35);
  box-shadow: 0 0 60px -16px rgba(216, 154, 180, 0.3);
  transform: translateY(-3px);
}
.method__card--mint:hover {
  border-color: rgba(114, 200, 175, 0.35);
  box-shadow: 0 0 60px -16px rgba(114, 200, 175, 0.3);
  transform: translateY(-3px);
}
.method__card--blue:hover {
  border-color: rgba(132, 214, 249, 0.35);
  box-shadow: 0 0 60px -16px rgba(132, 214, 249, 0.3);
  transform: translateY(-3px);
}

/* ───────────────────────────────────────
   ALL YOU CAN SHOOT
   ─────────────────────────────────────── */
.shoot__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 56px;
  align-items: end;
}
@media (min-width: 900px) {
  .shoot__head { grid-template-columns: 1.4fr 1fr; gap: 64px; }
}

.shoot__eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.shoot__eyebrow-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #81B2A3;
}
.shoot__eyebrow-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.shoot__title {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
  color: var(--paper);
}
.shoot__title-accent { color: var(--cyan); }

.shoot__intro {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  margin: 0;
  padding-bottom: 8px;
}

.shoot__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .shoot__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.shoot__card {
  background: var(--ink3);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  transition: border-color 200ms, box-shadow 200ms, transform 200ms;
}
@media (min-width: 768px) { .shoot__card { padding: 32px; gap: 28px; } }
.shoot__card:hover {
  border-color: rgba(90,220,185,0.25);
  box-shadow: 0 0 50px -18px rgba(90,220,185,0.2);
  transform: translateY(-2px);
}

.shoot__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(90,220,185,0.35);
  background: rgba(90,220,185,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.shoot__body-col { min-width: 0; }

.shoot__card-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}

.shoot__card-title {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 12px 0;
}

.shoot__card-body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ───────────────────────────────────────
   TESTIMONIAL IMAGE (contained, rounded)
   ─────────────────────────────────────── */
.testimonial__wrap {
  max-width: 1100px;
}
/* "Captured on set" tag sitting just below the image */
.testimonial__label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  margin-top: 16px;
}
.testimonial__label-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}
.testimonial__img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
@media (max-width: 767px) {
  .testimonial__img { aspect-ratio: 4 / 3; border-radius: 14px; }
}

/* ───────────────────────────────────────
   INBOX
   ─────────────────────────────────────── */
.inbox__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
  align-items: end;
}
@media (min-width: 900px) {
  .inbox__head { grid-template-columns: 1.5fr 1fr; gap: 64px; }
}

.inbox__eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.inbox__eyebrow-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #81B2A3;
}
.inbox__eyebrow-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.inbox__title {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
  color: var(--paper);
}
.inbox__title-accent { color: var(--cyan); }

.inbox__intro {
  padding-bottom: 24px;
}
.inbox__intro p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 360px;
}
.inbox__intro p + p { margin-top: 6px; }

.inbox__bubbles {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.inbox__row {
  display: flex;
}
.inbox__row--left { justify-content: flex-start; }
.inbox__row--right { justify-content: flex-end; }

.bubble {
  position: relative;
  background: rgba(28,28,28,1);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 16px 22px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  max-width: 56%;
}
.bubble--lg { max-width: 64%; }
.bubble strong { font-weight: 700; color: var(--paper); }

.bubble__reaction {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FF96BE;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bubble__reaction svg { width: 11px; height: 11px; }

/* ───────────────────────────────────────
   PULL QUOTE (cream)
   ─────────────────────────────────────── */
.pullquote { background: var(--bone); color: var(--ink); }
.pullquote__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.pullquote__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.pullquote__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5DD1B7; /* mint */
  flex-shrink: 0;
}
.pullquote__eyebrow-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute-dark);
}

/* Pause-bar quote marker */
.pullquote__mark {
  display: flex;
  gap: 6px;
  margin-bottom: 48px;
}
.pullquote__mark span {
  display: block;
  width: 5px;
  height: 24px;
  background: #5DD1B7;
  border-radius: 1px;
}

.pullquote__quote {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 80px 0;
  max-width: 1000px;
}

/* Mint underline highlight on specific words */
.pullquote__hl {
  position: relative;
  display: inline;
  background-image: linear-gradient(#5DD1B7, #5DD1B7);
  background-repeat: no-repeat;
  background-size: 100% 14px;
  background-position: 0 100%;
  padding-bottom: 2px;
}

.pullquote__divider {
  height: 1px;
  background: rgba(10,10,10,0.15);
  margin-bottom: 24px;
}

.pullquote__attrib {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pullquote__attrib-left,
.pullquote__attrib-right {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute-dark);
}

/* ───────────────────────────────────────
   TRUSTED BY
   ─────────────────────────────────────── */
/* Full section is solid black (the "Turn your culture" CTA below stays lighter) */
#about { background: #000; }
.trusted__head {
  display: block;
  margin-bottom: 56px;
}
.trusted__intro {
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.trusted__eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.trusted__eyebrow-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #81B2A3;
}
.trusted__eyebrow-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.trusted__title {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
  color: var(--paper);
}

.trusted__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-radius: 14px;
  overflow: hidden;
}
@media (min-width: 600px) { .trusted__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .trusted__grid { grid-template-columns: repeat(6, 1fr); } }

.trusted__cell {
  background: #000;
  aspect-ratio: 5 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 30px;
  transition: background 200ms;
}
.trusted__cell:hover { background: var(--ink3); }

.trusted__logo {
  max-height: 32px;
  max-width: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 200ms;
}
/* Square / compact marks get more height so they read at a comparable
   optical size to the wide wordmarks. */
.trusted__logo--tall { max-height: 50px; }
.trusted__cell:hover .trusted__logo { opacity: 1; }

.trusted__cell--more {
  color: rgba(255,255,255,0.55);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.trusted__cell--more span { display: inline-block; }

/* ───────────────────────────────────────
   FINAL CTA
   ─────────────────────────────────────── */
.finalcta {
  position: relative;
  padding: 64px 0;
  /* Lighter black so the "Turn your culture" CTA sits a shade up from the
     solid-black logo block (#000) */
  background: var(--ink2);
  overflow: hidden;
}
@media (min-width: 768px) { .finalcta { padding: 96px 0; } }

.finalcta__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.finalcta__glow > div {
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,220,185,0.18) 0%, rgba(90,220,185,0.04) 35%, transparent 65%);
  filter: blur(30px);
}

.finalcta__inner {
  position: relative;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.finalcta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.finalcta__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}
.finalcta__eyebrow-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
}

.finalcta__title {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
}
.finalcta__title-cream { color: var(--bone); }
.finalcta__title-mint { color: var(--cyan); }

.finalcta__sub {
  margin: 40px auto 0;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.55;
  max-width: 560px;
}

.finalcta__cta-row {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.finalcta__note {
  margin: 28px 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* New rounded pill button variant */
.btn--pill {
  border-radius: 999px;
  height: 52px;
  padding: 0 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
}

/* ───────────────────────────────────────
   FOOTER
   ─────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--hairline);
}
.footer__inner {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .footer__inner { padding-top: 96px; padding-bottom: 96px; }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 80px;
  }
}

.footer__wordmark {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 24px;
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 360px;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 24px 0;
}

.footer__col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__col-list a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  transition: color 150ms;
  text-decoration: none;
}
.footer__col-list a:hover { color: var(--paper); }

/* ───────────────────────────────────────
   MOBILE REFINEMENTS
   ─────────────────────────────────────── */

/* Navbar — drop duplicate Contact pill at narrow widths so the cyan CTA fits */
@media (max-width: 599px) {
  .navbar__inner { gap: 12px; }
  .navbar__contact { display: none; }
  .navbar__cta { padding: 0 14px; }
}

/* Logostrip — stack the label above the marquee so it doesn't squeeze the scroll */
@media (max-width: 767px) {
  .logostrip__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .logostrip__divider { display: none; }
  .logostrip__marquee { width: 100%; }
}

/* Inbox bubbles — desktop max-widths are too narrow on phones */
@media (max-width: 767px) {
  .bubble { max-width: 88%; font-size: 14px; padding: 14px 18px; }
  .bubble--lg { max-width: 92%; }
}

/* Pullquote — tighten vertical rhythm on mobile */
@media (max-width: 767px) {
  .pullquote__mark { margin-bottom: 28px; }
  .pullquote__quote { margin-bottom: 48px; }
}

/* ───────────────────────────────────────
   FIT QUESTIONNAIRE — modal + multi-step form
   ─────────────────────────────────────── */

body[data-fit-open] { overflow: hidden; }

.fit-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: stretch;
  justify-content: center;
}
.fit-modal[aria-hidden="false"] {
  display: flex;
  animation: fitFade 240ms ease-out;
}
@keyframes fitFade { from { opacity: 0; } to { opacity: 1; } }

.fit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.fit-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--ink);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: fitSlideUp 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .fit-modal__panel {
    margin: 32px;
    border-radius: 18px;
    border: 1px solid var(--hairline-strong);
    box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.6);
    max-height: calc(100vh - 64px);
    max-width: 880px;
  }
}
@keyframes fitSlideUp {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.fit-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--hairline);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.fit-modal__close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--paper);
  border-color: var(--hairline-strong);
}
@media (min-width: 768px) {
  .fit-modal__close { top: 24px; right: 24px; }
}

.fit-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .fit-container { padding: 0 48px; }
}

.fit-head { padding: 72px 0 40px; }
@media (min-width: 768px) {
  .fit-head { padding: 88px 0 48px; }
}

.fit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 24px;
}
.fit-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(90, 220, 185, 0.14);
}

.fit-title {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 24px;
}
.fit-title .hl { color: var(--cyan); }

.fit-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

.fit-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}
.fit-progress__block {
  flex: 1;
  height: 3px;
  background: var(--hairline);
  border-radius: 2px;
  transition: background 300ms ease;
}
.fit-progress__block.active { background: var(--cyan); }

.fit-step { display: none; animation: fitStepIn 360ms ease; }
.fit-step.active { display: block; }
@keyframes fitStepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.fit-step__num {
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--mute);
  margin-bottom: 16px;
}
.fit-step__num .of { color: rgba(255,255,255,0.2); }

.fit-step__title {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 40px;
}

.fit-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 48px;
}
.fit-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--ink2);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}
.fit-option:hover {
  border-color: var(--mute);
  background: var(--ink3);
}
.fit-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--mute);
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: border-color 180ms ease;
}
.fit-option input[type="radio"]:checked { border-color: var(--cyan); }
.fit-option input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translate(-50%, -50%);
}
.fit-option.selected {
  border-color: var(--cyan);
  background: rgba(90, 220, 185, 0.04);
}
.fit-option__label {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
  flex: 1;
  line-height: 1.4;
}
.fit-option.selected .fit-option__label { color: var(--paper); }

.fit-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 599px) {
  .fit-fields { grid-template-columns: 1fr; }
}
.fit-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fit-field--full { grid-column: 1 / -1; }
.fit-field__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}
.fit-field__input {
  background: var(--ink2);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--paper);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  transition: border-color 180ms ease, background 180ms ease;
}
.fit-field__input:focus {
  outline: none;
  border-color: var(--cyan);
  background: var(--ink3);
}
.fit-field__input::placeholder {
  color: var(--mute);
  opacity: 0.6;
}

.fit-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 56px;
  border-top: 1px solid var(--hairline);
  gap: 12px;
}

.fit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 180ms ease;
  white-space: nowrap;
  background: none;
  color: inherit;
  text-decoration: none;
}
.fit-btn--primary {
  background: var(--cyan);
  color: var(--ink);
  border-color: var(--cyan);
}
.fit-btn--primary:hover:not(:disabled) {
  background: var(--cyan-dim);
  border-color: var(--cyan-dim);
  transform: translateY(-1px);
}
.fit-btn--primary:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.fit-btn--ghost {
  background: transparent;
  color: var(--mute);
  border-color: var(--hairline);
}
.fit-btn--ghost:hover {
  color: var(--paper);
  border-color: var(--mute);
}
.fit-btn--ghost:disabled { opacity: 0; pointer-events: none; }
.fit-btn--lg { padding: 15px 30px; font-size: 12px; }
.fit-btn.is-loading { pointer-events: none; opacity: 0.7; }
.fit-btn.is-loading::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: fitSpin 700ms linear infinite;
}
@keyframes fitSpin { to { transform: rotate(360deg); } }

.fit-outcome {
  display: none;
  padding: 72px 0 56px;
}
.fit-outcome.active { display: block; animation: fitStepIn 500ms ease; }

.fit-outcome__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.fit-outcome__eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.fit-outcome__eyebrow--pass { color: var(--cyan); }
.fit-outcome__eyebrow--pass .dot {
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(90, 220, 185, 0.14);
}
.fit-outcome__eyebrow--decline { color: #FF96BE; }
.fit-outcome__eyebrow--decline .dot {
  background: #FF96BE;
  box-shadow: 0 0 0 4px rgba(255, 150, 190, 0.14);
}

.fit-outcome__title {
  font-family: 'TG Ext', Impact, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 28px;
}
.fit-outcome__title .hl { color: var(--cyan); }

.fit-outcome__body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 560px;
}
.fit-outcome__body p { margin: 0; }
.fit-outcome__body p + p { margin-top: 18px; }

.fit-outcome__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}

.fit-outcome__footer {
  margin-top: 40px;
  font-size: 12px;
  color: var(--mute);
}
.fit-outcome__footer a { color: var(--cyan); }
.fit-outcome__footer a:hover { text-decoration: underline; }
