/* ======================================================================
   LGN Mentorship — landing page
   Visual DNA: Whoop's layout (clean, dark, full-bleed, big confident type)
                + LGN's brand grunge (yellow brushed circle, splatter,
                  Anton distressed caps, Caveat script accents)
   ====================================================================== */

:root {
  --black: #000000;
  --black-deep: #060606;
  --black-elevated: #111111;
  --white: #ffffff;
  --bone: #f5f1e8;
  --bone-dim: rgba(245, 241, 232, 0.72);
  --bone-faint: rgba(245, 241, 232, 0.42);
  --bone-trace: rgba(245, 241, 232, 0.10);
  --hairline: rgba(245, 241, 232, 0.07);
  --yellow: #FFCD05;
  --yellow-bright: #FFE34A;

  --display: 'Anton', 'Bebas Neue', Impact, sans-serif;
  --script:  'Caveat', 'Brush Script MT', cursive;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container:        min(1280px, calc(100% - 2.5rem));
  --container-tight:  min(1040px, calc(100% - 2.5rem));
  --container-narrow: min(760px,  calc(100% - 2.5rem));
}

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

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--black);
  color: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle film grain — global */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1000;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.container         { width: var(--container);         margin-inline: auto; }
.container-tight   { width: var(--container-tight);   margin-inline: auto; }
.container-narrow  { width: var(--container-narrow);  margin-inline: auto; }

/* ======================================================================
   Typography helpers
   ====================================================================== */

/* The Whoop-style massive confident sans display — for hero + section heads */
.h-massive {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
  color: var(--white);
}
.h-massive em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.01em;
  display: inline-block;
  transform: translateY(0.05em);
  font-size: 1.15em;
}

/* The LGN brand grunge headline — Anton distressed caps */
.h-brand {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.95;
  color: var(--white);
}
.h-brand .yellow { color: var(--yellow); }
.h-brand .script {
  font-family: var(--script);
  font-weight: 700;
  text-transform: none;
  color: var(--white);
  letter-spacing: -0.01em;
  display: inline-block;
}

/* Section-level head */
.h-section {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--white);
}
.h-section .yellow { color: var(--yellow); }
.h-section .script {
  font-family: var(--script);
  font-weight: 700;
  color: var(--yellow);
  font-size: 1.2em;
  letter-spacing: -0.01em;
  display: inline-block;
  transform: translateY(0.06em);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--yellow);
  opacity: 0.7;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.lede {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.55;
  color: var(--bone-dim);
  font-weight: 400;
  max-width: 60ch;
}

.body-text {
  color: var(--bone-dim);
  line-height: 1.65;
}

.tag-yellow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(255, 205, 5, 0.4);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.script-accent {
  font-family: var(--script);
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.4em;
  letter-spacing: -0.01em;
  display: inline-block;
  line-height: 0.85;
  transform: translateY(0.08em);
}

/* ======================================================================
   Buttons
   ====================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.15rem 2.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1),
              background 0.3s ease,
              color 0.3s ease,
              box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(255, 205, 5, 0.45);
}
.btn-primary .arrow { transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--bone-trace);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.link-underline {
  position: relative;
  color: var(--white);
  font-weight: 500;
  padding-bottom: 2px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.link-underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.link-underline:hover::after { transform: scaleX(1); }

/* ======================================================================
   Brand layer — the yellow brushed circle / splatter motif
   Use this as a positioned flourish on key sections for brand cohesion.
   ====================================================================== */

.brand-flourish {
  position: absolute;
  pointer-events: none;
  background-image: url('/assets/brand-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
}
.brand-flourish--right {
  top: 50%;
  right: -15%;
  width: 50%;
  height: 110%;
  transform: translateY(-50%);
  opacity: 0.06;
  mix-blend-mode: screen;
  filter: blur(2px);
}
.brand-flourish--left {
  top: 50%;
  left: -15%;
  width: 45%;
  height: 100%;
  transform: translateY(-50%) scaleX(-1);
  opacity: 0.05;
  mix-blend-mode: screen;
  filter: blur(2px);
}
.brand-flourish--center {
  top: 50%; left: 50%;
  width: 70%; height: 90%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  mix-blend-mode: screen;
  filter: blur(2px);
}

/* ======================================================================
   Distressed grunge text — matches the LGN logo's stamped/weathered feel
   Applied via an SVG mask so the actual text stays selectable & accessible.
   The mask is fractal noise threshold-clamped to mostly-opaque with small
   scattered transparent "chips" — same look as the logo's ink stamp.
   ====================================================================== */

.distressed {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='2' seed='7' stitchTiles='stitch'/><feComponentTransfer><feFuncA type='discrete' tableValues='0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1'/></feComponentTransfer></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='2' seed='7' stitchTiles='stitch'/><feComponentTransfer><feFuncA type='discrete' tableValues='0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1'/></feComponentTransfer></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  -webkit-mask-size: 220px 220px;
          mask-size: 220px 220px;
  -webkit-mask-repeat: repeat;
          mask-repeat: repeat;
  -webkit-mask-mode: alpha;
          mask-mode: alpha;
}

/* Stronger variant — more chipped, for the bold yellow word */
.distressed--heavy {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' seed='2' stitchTiles='stitch'/><feComponentTransfer><feFuncA type='discrete' tableValues='0 0 0 1 1 1 1 1 1 1 1 1 1 1 1'/></feComponentTransfer></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' seed='2' stitchTiles='stitch'/><feComponentTransfer><feFuncA type='discrete' tableValues='0 0 0 1 1 1 1 1 1 1 1 1 1 1 1'/></feComponentTransfer></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  -webkit-mask-size: 280px 280px;
          mask-size: 280px 280px;
  -webkit-mask-repeat: repeat;
          mask-repeat: repeat;
  -webkit-mask-mode: alpha;
          mask-mode: alpha;
}

/* ======================================================================
   Scroll progress bar — thin yellow line at top of viewport
   ====================================================================== */

.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-bright));
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 60;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(255, 205, 5, 0.45);
  will-change: transform;
}

/* ======================================================================
   Refined micro-interactions
   ====================================================================== */

/* Primary button — refined press + glow */
.btn-primary {
  position: relative;
  isolation: isolate;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
              rgba(255, 255, 255, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0) scale(0.98); }

/* Refined link underline — already nice, but bump speed */
.link-underline::after { transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1); }

/* Featured image — subtle scale on entry, slow ken-burns once visible */
.feature-image {
  background-size: cover;
}
.feature-image.is-visible,
.feature-image .reveal.is-visible ~ * {
  /* future hooks */
}

/* Card hover refinement — slightly stronger lift, slower */
.testimonial,
.inclusion,
.proof-card,
.transform-card {
  transition: transform 0.55s cubic-bezier(0.2,0.8,0.2,1),
              border-color 0.45s ease,
              box-shadow 0.55s cubic-bezier(0.2,0.8,0.2,1);
}
.testimonial:hover,
.inclusion:hover {
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.7),
              0 0 0 1px rgba(255, 205, 5, 0.25);
}

/* Counted stat number — smooth font-feature transition */
.stat__num-counted {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #ffffff 0%, #f5f1e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Smoother scroll-cue — invisible by default until scrolled to top */
.scroll-cue { transition: opacity 0.5s ease; }
.site-nav.scrolled ~ .scroll-cue { opacity: 0; }

/* ======================================================================
   Navigation
   ====================================================================== */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom-color: var(--hairline);
  padding: 0.75rem 0;
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-nav__logo img {
  height: 42px;
  width: auto;
  transition: height 0.4s ease;
}
.site-nav.scrolled .site-nav__logo img { height: 34px; }

/* ======================================================================
   Hero — full-bleed, big confident headline (Whoop influence)
   ====================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  overflow: hidden;
  background: var(--black);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 70%, var(--black) 100%);
  z-index: 4;
}
.hero__media .brand-flourish {
  z-index: 3;
  opacity: 0.40;
}

/* Background video (Whoop-style). When a video file is present, this
   takes over the entire hero background. */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Clean dark hero background — fully premium. No brand artwork bleeding
   through. Just deep black with two soft yellow glows that hint at the
   brand colour without ever showing the logo or splatter. */
.hero__bg-clean {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 45% at 15% 115%, rgba(255, 205, 5, 0.13), transparent 70%),
    radial-gradient(ellipse 50% 55% at 100% -5%, rgba(255, 205, 5, 0.05), transparent 70%),
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 0%, rgba(0,0,0,0.5) 100%),
    linear-gradient(180deg, #060606 0%, #000000 100%);
}
/* Slow drifting yellow glow for subtle motion — feels alive without
   distracting from the headline. */
.hero__bg-clean::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 205, 5, 0.10), transparent 65%);
  filter: blur(40px);
  animation: heroGlowDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroGlowDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(15%, -8%) scale(1.15); }
}

/* Auto-rotating crossfade slideshow used when no video is present.
   Drop transformation photos into /assets/transformations/ named
   transformation-1.jpg ... transformation-5.jpg and the rotator below
   will cycle through them automatically. */
.hero__rotator {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero__rotator-slide {
  position: absolute;
  inset: 0;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: rotatorFade 35s infinite;
  /* slow ken burns within each slide */
  transform-origin: center;
  will-change: transform, opacity;
}
.hero__rotator-slide:nth-child(1) { animation-delay:  0s; }
.hero__rotator-slide:nth-child(2) { animation-delay:  7s; }
.hero__rotator-slide:nth-child(3) { animation-delay: 14s; }
.hero__rotator-slide:nth-child(4) { animation-delay: 21s; }
.hero__rotator-slide:nth-child(5) { animation-delay: 28s; }

@keyframes rotatorFade {
  0%   { opacity: 0; transform: scale(1.05); }
  4%   { opacity: 1; }
  20%  { opacity: 1; transform: scale(1.12); }
  24%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 980px;
}
.hero__eyebrow { margin-bottom: 1.75rem; }

.hero__headline {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.5rem, 7.5vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero__headline .yellow { color: var(--yellow); }
.hero__headline .script {
  font-family: var(--script);
  font-weight: 700;
  text-transform: none;
  color: var(--yellow);
  letter-spacing: -0.01em;
  font-size: 1.18em;
  display: inline-block;
  transform: translateY(0.07em);
}
.hero__headline .grunge {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--yellow);
  font-size: 1.05em;
  display: inline-block;
  transform: translateY(0.04em);
}

.hero__sub {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--bone-dim);
  max-width: 56ch;
  margin-bottom: 2.5rem;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.hero__meta {
  font-size: 0.75rem;
  color: var(--bone-faint);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--bone-faint);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--bone-faint), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ======================================================================
   Transformations marquee — auto-scrolling proof
   ====================================================================== */

.marquee-section {
  background: var(--black-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.marquee-section__head {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1.25rem;
}
.marquee-section__head h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.3vw, 1.625rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
}

.marquee {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: marqueeScroll 60s linear infinite;
}
.marquee:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.transform-card {
  flex: 0 0 auto;
  width: 260px;
  aspect-ratio: 1 / 1;
  position: relative;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--hairline);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.4s ease;
}
.transform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 205, 5, 0.5);
}
.transform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(0,0,0,0) 0%,
              rgba(0,0,0,0) 45%,
              rgba(0,0,0,0.55) 78%,
              rgba(0,0,0,0.92) 100%);
  z-index: 0;
}
.transform-card__label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.transform-card__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--yellow);
}
.transform-card__name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.transform-card__result {
  font-size: 0.75rem;
  color: var(--bone-faint);
  letter-spacing: 0.05em;
}

/* When a real image is added: <div class="transform-card" style="background-image:url(...)"></div>
   The before-overlay still adds a subtle grain so it doesn't look bare. */

/* ======================================================================
   Proof wall — grid of testimonial / comment / DM screenshots
   ====================================================================== */

.proof-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.proof-card {
  display: block;
  position: relative;
  background: var(--black-elevated);
  border: 1px solid var(--hairline);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.proof-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 205, 5, 0.45);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.6);
}
.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.proof-card:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .proof-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .proof-wall { grid-template-columns: 1fr; }
}

/* ======================================================================
   Section scaffolding
   ====================================================================== */

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; position: relative; overflow: hidden; }
.section--tight { padding: clamp(4rem, 7vw, 6rem) 0; }
.section--alt { background: var(--black-deep); }

.section__head { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section__head .eyebrow { margin-bottom: 1.25rem; }
.section__head .lede { margin-inline: auto; margin-top: 1.5rem; }

/* ======================================================================
   Why this exists / split content with image
   ====================================================================== */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  overflow: hidden;
}
/* Use this modifier for wider photos (e.g. side-by-side or 3-panel
   transformations) where cropping would cut off arms/heads. */
.split__media--contain {
  background-size: contain !important;
  background-position: center !important;
  background-color: var(--black);
  aspect-ratio: 1 / 1;
  /* Mask the photo so all four edges literally fade to transparent.
     This kills the white-wall-meets-black-page contrast entirely. */
  -webkit-mask-image:
    radial-gradient(ellipse 95% 95% at center, #000 55%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 95% 95% at center, #000 55%, transparent 100%);
}
/* Heavy bottom-fade so the image transitions seamlessly into whatever
   section follows (and a soft top fade so the eye lands on the body copy). */
.split__media::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.40) 0%, transparent 22%, transparent 65%, rgba(0,0,0,0.95) 100%),
    linear-gradient(90deg,  rgba(0,0,0,0.45) 0%, transparent 18%, transparent 82%, rgba(0,0,0,0.45) 100%);
}
.split__body { max-width: 560px; }
.split__body .eyebrow { margin-bottom: 1.5rem; }
.split__body .h-section { margin-bottom: 1.5rem; }

/* Yellow checkmark list — matches Benny's keynote style */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 0.95rem;
}
.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--bone);
  font-size: 1.0625rem;
  line-height: 1.55;
}
.check-list li svg {
  width: 22px; height: 22px;
  color: var(--yellow);
  margin-top: 4px;
}
.check-list li strong {
  color: var(--white);
  font-weight: 700;
}
.check-list--two-col {
  grid-template-columns: 1fr 1fr;
  column-gap: 2rem;
  row-gap: 1rem;
}
.check-list--two-col li { grid-template-columns: 22px 1fr; }

@media (max-width: 700px) {
  .check-list--two-col { grid-template-columns: 1fr; }
}

/* ======================================================================
   Inclusions grid — the 9 deliverables
   ====================================================================== */

.inclusions-section { position: relative; }
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.inclusion {
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--black-elevated) 0%, var(--black-deep) 100%);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.inclusion:hover {
  border-color: rgba(255, 205, 5, 0.45);
  transform: translateY(-3px);
}
.inclusion__num {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--yellow);
  letter-spacing: 0.08em;
}
.inclusion__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.inclusion__desc {
  font-size: 0.875rem;
  color: var(--bone-dim);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .inclusions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .inclusions-grid { grid-template-columns: 1fr; }
}

/* ======================================================================
   Big featured client transformation
   ====================================================================== */

.feature-image {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  background-size: cover;
  background-position: center;
}
.feature-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 60%, var(--black) 100%);
}
.feature-image__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  max-width: 780px;
}
.feature-image__quote {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.feature-image__quote .script {
  font-family: var(--script);
  font-weight: 700;
  color: var(--yellow);
  font-size: 1.2em;
  letter-spacing: -0.01em;
  display: inline-block;
  transform: translateY(0.08em);
}
.feature-image__attr {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
}
.feature-image--client1 {
  background: var(--black);
}

/* ----- Mosaic of small transformation tiles as a feature background ----- */
.feature-image__mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  z-index: 0;
  filter: saturate(0.85) brightness(0.85);
}
.mosaic-tile {
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
/* Subtle vignette on each tile so the mosaic reads as a unified surface */
.mosaic-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* Heavy darkening directly behind the quote so it reads against the mosaic */
.feature-image--client1::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 30% 70%, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.45) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.92) 100%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .feature-image__mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .feature-image__mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }
}

/* ======================================================================
   Stats band
   ====================================================================== */

.stats {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--black-deep);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 3rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--hairline);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.75rem, 4.5vw, 4rem);
  letter-spacing: -0.005em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.stat__num .yellow { color: var(--yellow); }
.stat__label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone-faint);
  font-weight: 600;
}
@media (max-width: 700px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hairline); }
}

/* ======================================================================
   Testimonials
   ====================================================================== */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial {
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--black-elevated), var(--black-deep));
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.testimonial:hover {
  border-color: rgba(255, 205, 5, 0.4);
  transform: translateY(-3px);
}
.testimonial__quote-mark {
  font-family: var(--script);
  font-size: 4.5rem;
  line-height: 0.5;
  color: var(--yellow);
  margin-bottom: -0.5rem;
}
.testimonial__quote {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--bone);
  font-weight: 400;
}
.testimonial__attr {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hairline);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 1px solid var(--hairline);
  flex-shrink: 0;
}
.testimonial__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}
.testimonial__meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-top: 0.15rem;
}
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ======================================================================
   Guarantee section
   ====================================================================== */

.guarantee {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.guarantee__seal {
  width: 130px; height: 130px;
  border-radius: 999px;
  border: 2px solid rgba(255, 205, 5, 0.45);
  background: radial-gradient(circle, rgba(255, 205, 5, 0.12), transparent 70%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}
.guarantee__seal-inner {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  text-align: center;
  line-height: 1.2;
}
.guarantee__seal-inner .big {
  display: block;
  font-size: 2rem;
  letter-spacing: 0;
  margin-bottom: 0.15rem;
}

/* ======================================================================
   Final CTA
   ====================================================================== */

.final-cta {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.95)),
    url('https://images.unsplash.com/photo-1574680096145-d05b474e2155?auto=format&fit=crop&w=2400&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.final-cta > .container-narrow { position: relative; z-index: 2; }

/* ======================================================================
   Footer
   ====================================================================== */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 3rem 0 2.25rem;
  background: var(--black-deep);
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 1.5rem;
}
.site-footer__logo img { height: 38px; width: auto; }
.site-footer__nav {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--bone-dim);
}
.site-footer__nav a:hover { color: var(--white); }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--bone-faint);
  letter-spacing: 0.05em;
}
.site-footer__disclaimer {
  margin-top: 1.5rem;
  font-size: 0.6875rem;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.3);
  max-width: 720px;
}

/* ======================================================================
   Modal
   ====================================================================== */

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 1.25rem 2rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%;
  max-width: 540px;
  background: var(--black-deep);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  position: relative;
  margin: auto;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.2,0.9,0.3,1.05),
              opacity 0.4s ease;
  overflow: hidden;
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal__top {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 205, 5, 0.08), transparent 70%),
    linear-gradient(180deg, var(--black) 0%, var(--black-deep) 100%);
  padding: 2.5rem 2.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.modal__step-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(255, 205, 5, 0.4);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.modal__title {
  font-family: var(--sans);
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
}
.modal__title .script {
  font-family: var(--script);
  font-weight: 700;
  text-transform: none;
  color: var(--yellow);
  font-size: 1.3em;
  letter-spacing: -0.01em;
  display: inline-block;
  transform: translateY(0.06em);
}
.modal__sub {
  font-size: 0.8125rem;
  color: var(--bone-faint);
  margin-top: 0.6rem;
  letter-spacing: 0.06em;
}
.modal__body { padding: 2rem 2.5rem 2.25rem; }
.modal__close {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: background 0.2s ease, transform 0.25s ease;
  border: 1px solid var(--hairline);
}
.modal__close:hover { background: rgba(245, 241, 232, 0.18); transform: rotate(90deg); }

.input-field { margin-bottom: 0.85rem; }
.input-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 0.45rem;
}
.input-field input {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 0.95rem 1rem;
  font-size: 0.9375rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.input-field input::placeholder { color: rgba(245, 241, 232, 0.3); }
.input-field input:focus {
  border-color: var(--yellow);
  background: var(--black-elevated);
}
.modal__error {
  font-size: 0.8125rem;
  color: #ff7d6f;
  padding: 0.6rem 0;
  display: none;
}
.modal__error.is-visible { display: block; }
.modal__cta { width: 100%; margin-top: 0.5rem; }
.modal__privacy {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--bone-faint);
}

body.modal-open { overflow: hidden; }

/* ======================================================================
   Scroll reveal
   ====================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2,0.8,0.2,1),
              transform 0.9s cubic-bezier(0.2,0.8,0.2,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ======================================================================
   Responsive
   ====================================================================== */

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 5 / 4; max-height: 460px; }
  .feature-image { min-height: 70vh; }
  .site-nav { padding: 1rem 0; }
  .site-nav__logo img { height: 36px; }
  .modal__top { padding: 2rem 1.5rem 1.75rem; }
  .modal__body { padding: 1.5rem 1.5rem 1.75rem; }
}
@media (max-width: 600px) {
  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .scroll-cue { display: none; }
  .transform-card { width: 180px; }
}
@media (max-width: 480px) {
  .site-nav__cta { display: none; }
}

.hidden { display: none !important; }
