/* ═══════════════════════════════════════════
   CRAFTLAB. — Simplified, spacious, editorial
═══════════════════════════════════════════ */

@font-face {
  font-family: 'QanelasHeavy';
  src: url('Fonts/qanelas-vveb-f0nts/OTF/Qanelas-Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kamerik105';
  src: url('Fonts/kamerik/Kamerik105-Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:   #FF6A00;
  --gold:     #D6A14A;
  --white:    #F6F7F8;
  --gray:     #707782;
  --graphite: #1A1A1A;
  --dark:     #111111;
  --black:    #0B0B0E;
  --font-h:   'Barlow Condensed', sans-serif;
  --font-b:   'Montserrat', sans-serif;

  /* Emil Kowalski easing curves */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

/* Native smooth-scroll removed — it fights GSAP ScrollTrigger's scroll
   tracking on direction reversals, desyncing the custom scroll-progress
   carousels and IntersectionObserver-driven sections from the real scroll
   position (the buttons-sometimes-don't-work bug). Anchor-link clicks still
   animate via the explicit scrollTo({behavior:'smooth'}) call in script.js. */

/* ── Global focus ring — keyboard nav visibility ── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }

body {
  font-family: var(--font-b);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-left: 0;
}

h1, h2, h3 {
  font-family: var(--font-h);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}
h1 em, h2 em, h3 em { font-style: normal; }
p           { text-wrap: pretty; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }

/* ── UTILITIES ── */
.text-orange { color: var(--orange); }
.text-gold   { color: var(--gold); }
.dot { color: var(--orange); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 1px;
  flex-shrink: 0;
}
.section-tag--light { color: rgba(246,247,248,0.5); }
.section-tag--light::before { background: rgba(246,247,248,0.4); }
.process .section-tag { color: rgba(0,0,0,0.55); }
.process .section-tag::before { background: rgba(0,0,0,0.55); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: color 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
  letter-spacing: 0.01em;
}
.btn--orange  { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 0 16px rgba(255,106,0,0.45), 0 0 32px rgba(255,106,0,0.2); }
.btn--orange:hover { background: #e05800; border-color: #e05800; box-shadow: 0 0 24px rgba(255,106,0,0.65), 0 0 48px rgba(255,106,0,0.3); }
.btn--white   { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--white:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--ghost   { background: transparent; color: var(--white); border-color: rgba(246,247,248,0.2); }
.btn--ghost:hover { border-color: var(--white); }
.btn--ghost-dark { background: transparent; color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.18); }
.btn--ghost-dark:hover { color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn--lg      { padding: 18px 36px; font-size: 15px; }

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px); }
}
.btn:active { transform: scale(0.97); }

/* ── Reveal hover button ── */
.btn--reveal {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-width: 230px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Shine that leads the wipe edge */
.btn--reveal::before {
  content: '';
  position: absolute;
  top: -5%; left: -18%;
  width: 18%; height: 110%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 235, 170, 0.75),
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-12deg);
  z-index: 6;
  pointer-events: none;
  opacity: 0;
}
.btn--reveal:hover::before {
  opacity: 1;
  animation: shineWipe 0.52s cubic-bezier(0.4, 0, 0.15, 1) forwards;
}
@keyframes shineWipe {
  from { left: -18%; }
  to   { left: 112%; }
}
.btn--reveal span {
  display: block;
  position: relative;
  z-index: 1;
}
/* White wipe from left to right */
.btn--reveal::after {
  content: attr(data-hover);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.01em;
  padding: 0 18px;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.48s cubic-bezier(0.4, 0, 0.15, 1);
  z-index: 2;
}
.btn--reveal:hover::after { clip-path: inset(0 0% 0 0); }
.btn--reveal:hover { border-color: #fff; }

/* ══════════════════════════════════════════
   EXPANDABLE SIDEBAR NAV
══════════════════════════════════════════ */
/* ── HORIZONTAL TOP NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  z-index: 300;
  display: flex;
  align-items: stretch;
  overflow: visible;
}

/* ── Strip — full-width horizontal bar ── */
.nav__strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 0 28px;
  gap: 12px;
  background: rgba(11,11,14,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* C. icon mark — left anchor */
.nav__icon-mark {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.18s;
}
.nav__icon-mark:hover { opacity: 0.88; transform: scale(1.06); }

/* ── Right side nav ── */
.rnav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
}

.rnav__item {
  position: relative;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.28);
  border-radius: 10px;
  text-decoration: none;
  font-size: 24px;
  transition: color 0.18s, background 0.18s, transform 0.18s;
}
@media (hover: hover) {
  .rnav__item:hover {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.06);
    transform: scale(1.35);
  }
  .rnav__item:hover .rnav__tip { opacity: 1; transform: translateX(0); pointer-events: none; }
}
.rnav__item.active {
  color: var(--orange);
  background: none;
}
.rnav__item--logo { color: transparent; }
.rnav__c {
  width: 34px;
  height: 34px;
  background: #FF6A00;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'QanelasHeavy', 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: box-shadow 0.18s;
  flex-shrink: 0;
}
.rnav__item--logo:hover .rnav__c {
  box-shadow: 0 4px 18px rgba(255,106,0,0.5);
}
.rnav__item--logo.active .rnav__c {
  box-shadow: 0 4px 18px rgba(255,106,0,0.5);
}

.rnav__tip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(11,11,14,0.92);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
}

@media (max-width: 768px) { .rnav { display: none; } }

/* Social icons — horizontal row */
.nav__socials {
  display: flex;
  flex-direction: row;
  gap: 6px;
  margin-left: auto;
}
.nav__social {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: background 0.18s, color 0.18s, transform 0.18s;
  text-decoration: none;
}
.nav__social:hover { background: var(--orange); color: #fff; transform: scale(1.06); }

/* Menu toggle — far right */
.nav__toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  padding: 8px 10px;
  margin-left: 8px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
.nav__toggle:hover { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.07); }

.nav__ico--x { display: none; }
.nav--open .nav__ico--bars { display: none; }
.nav--open .nav__ico--x   { display: block; }

.nav__toggle-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

/* Hidden in top bar */
.nav__strip-rule { display: none; }

/* ── Full-width dropdown panel ── */
.nav__panel {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #F6F7F8;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
  padding: 48px 56px 52px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  border-bottom: 3px solid var(--orange);
}
.nav--open .nav__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Logo in panel */
.nav__panel-logo { flex-shrink: 0; }
.nav__panel-logo img {
  width: auto;
  max-width: 140px;
  height: auto;
  display: block;
  filter: brightness(0);
}

/* Nav links — vertical list */
.nav__links {
  list-style: none;
  padding: 0; margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nav__links li a {
  display: block;
  font-family: 'QanelasHeavy', 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(42,42,42,0.35);
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.18s;
  border-bottom: 1px solid transparent;
}
.nav__links li a:hover,
.nav__links li a.active {
  color: var(--orange);
  border-bottom-color: rgba(255,106,0,0.2);
}
.nav__system-btn {
  color: #FF6A00 !important;
  background: none !important;
  border-radius: 0 !important;
  padding: 8px 0 !important;
  font-family: 'QanelasHeavy', 'Barlow Condensed', sans-serif !important;
  letter-spacing: -0.02em !important;
}
.nav__system-btn:hover {
  color: #FF6A00 !important;
  opacity: 0.75;
  border-bottom-color: rgba(255,106,0,0.2) !important;
}

/* Panel footer */
.nav__panel-foot { margin-left: auto; padding-top: 4px; }
.nav__panel-rule { height: 1px; background: rgba(42,42,42,0.12); margin-bottom: 16px; }
.nav__email {
  font-size: 11px;
  color: rgba(42,42,42,0.4);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.18s;
}
.nav__email:hover { color: var(--graphite); }

/* ── Overlay backdrop ── */
.nav__overlay {
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.nav__overlay.active { opacity: 1; pointer-events: auto; }

/* ── Mobile ── */
@media (max-width: 640px) {
  .nav__strip { padding: 0 16px; gap: 8px; }
  .nav__icon-links { gap: 0; }
  .nav__icon-link { width: 36px; height: 36px; font-size: 17px; }
  .nav__socials { display: none; }
  .nav__panel { flex-direction: column; gap: 32px; padding: 32px 24px 40px; }
  .nav__panel-foot { margin-left: 0; }
}

/* ══════════════════════════════════════════
   RIGHT-SIDE SECTION NAV
══════════════════════════════════════════ */
.sidenav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* Thin track line connecting all icons */
.sidenav::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: rgba(255,255,255,0.07);
  transform: translateX(-50%);
  pointer-events: none;
}

.sidenav__item {
  position: relative;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.28);
  border-radius: 10px;
  background: transparent;
  font-size: 19px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  z-index: 1;
  cursor: pointer;
}
.sidenav__item:hover { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.05); }
.sidenav__item.active { color: var(--orange); background: rgba(255,106,0,0.1); }

/* Hover label — appears to the left */
.sidenav__label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(18,18,20,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
}
.sidenav__item:hover .sidenav__label { opacity: 1; }

/* Hide on narrow screens */
@media (max-width: 900px) { .sidenav { display: none; } }

/* ══════════════════════════════════════════
   HERO — Brand Appart style
   Oversized headline IS the visual.
   Sora 800, centered, full-width typography.
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B0B0E;
  padding: 176px 48px 80px;
  overflow: hidden;
  position: relative;
}

/* Pure dark — orange accent lives on glow element below */
.hero {
  background: #0B0B0E;
}

/* Ambient orange breath — atmospheric glow, not dominant */
.hero__glow {
  position: absolute;
  width: 70%;
  height: 55%;
  left: 15%;
  bottom: -15%;
  background: radial-gradient(ellipse at center, rgba(255,106,0,0.13) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  filter: blur(56px);
}

/* 3D logo parallax background */
.hero__plx-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero__plx-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}
.hero__plx-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(400px, 46vw, 700px);
  border-radius: 26%;
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
  will-change: transform;
  filter:
    drop-shadow( 36px  36px 45px rgba(255,120,0,1))
    drop-shadow(-36px  36px 45px rgba(255,120,0,1))
    drop-shadow( 36px -36px 45px rgba(255,120,0,1))
    drop-shadow(-36px -36px 45px rgba(255,120,0,1))
    drop-shadow(0 0 18px rgba(255,80,0,0.35));
}

/* Brand reveal logo — top-center, premium entrance */
.hero__watermark {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}
.hero__watermark-img {
  height: 88px;
  width: auto;
  display: block;
  pointer-events: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
}

/* Centered copy block */
.hero__copy {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Kinetic type headline — Barlow Condensed 900, Afundi-style */
.hero__h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6.8vw, 108px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: none;
  margin-bottom: 60px;
}

/* Force each phrase to its own line */
.hero__line {
  display: block;
}

/* Ghost outline text — connecting words */
.h-ghost {
  -webkit-text-stroke: 2px rgba(246, 247, 248, 0.58);
  color: transparent;
}

/* Solid white — key brand nouns */
.h-solid {
  color: #F6F7F8;
}

/* Orange underline on key nouns */
.h-ul {
  text-decoration: underline;
  text-decoration-color: #FF6A00;
  text-underline-offset: 0.09em;
  text-decoration-thickness: 0.06em;
}

/* Orange fill — final hero noun */
.h-orange {
  color: #FF6A00;
}

/* Short platform badge line */
.hero__tagline {
  font-family: var(--font-b);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

/* Supporting sub-headline */
.hero__sub {
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.48);
  line-height: 1.70;
  max-width: 560px;
  margin: 0 auto 52px;
}

/* CTAs */
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__btn {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 4px;
  transition: all 0.2s;
  min-width: 220px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.hero__btn--solid {
  background: var(--orange);
  color: #fff;
  border: 1px solid rgba(255,140,0,0.5);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 0 18px rgba(255,106,0,0.55),
    0 0 40px rgba(255,80,0,0.3),
    0 4px 20px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.22);
  position: relative;
  overflow: hidden;
}
.hero__btn--solid::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
  transform: skewX(-18deg);
  transition: left 0s;
}
.hero__btn--solid:hover {
  background: #FF7A1A;
  border-color: rgba(255,150,0,0.6);
  box-shadow:
    0 0 24px rgba(255,106,0,0.75),
    0 0 60px rgba(255,80,0,0.4),
    0 6px 24px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.28);
}
.hero__btn--solid:hover::before {
  left: 150%;
  transition: left 0.55s ease;
}
.hero__btn--ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hero__btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 6px 28px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
}

/* Responsive */
@media (max-width: 960px) {
  .hero { padding: 80px 32px; }
  .hero__h1 { font-size: clamp(40px, 7vw, 100px); }
}
@media (max-width: 480px) {
  .hero { padding: 80px 20px 64px; }
  .hero__h1 { font-size: clamp(30px, 8.5vw, 60px); letter-spacing: -0.015em; }
  .h-ghost { -webkit-text-stroke-width: 1.5px; }
  .hero__sub { font-size: 15px; }
  .hero__btn { min-width: 0; width: 100%; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
}


/* ══════════════════════════════════════════
   MARKETS BAR
══════════════════════════════════════════ */
.markets-bar {
  background: var(--graphite);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 16px 0;
}
.markets-bar .container { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.markets-bar__label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(246,247,248,0.3); }
.markets-bar__list { display: flex; gap: 10px; flex-wrap: wrap; }
.markets-bar__list span {
  font-family: var(--font-h); font-size: 12px; font-weight: 600; color: var(--white);
  border: 1px solid rgba(255,255,255,0.1); padding: 4px 14px; border-radius: 100px;
}

/* ══════════════════════════════════════════
   AUTOMATION FLOW STRIP
══════════════════════════════════════════ */
.flow-strip {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 28px 0;
  overflow: hidden;
}
.flow-strip__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.flow-node {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.flow-node__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: color 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}
.flow-node--active .flow-node__dot { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 10px rgba(255,106,0,0.5); }
.flow-node--won    .flow-node__dot { background: #4ade80; border-color: #4ade80; box-shadow: 0 0 10px rgba(74,222,128,0.4); }
.flow-node span {
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(246,247,248,0.4); white-space: nowrap;
}
.flow-node--active span { color: var(--orange); }
.flow-node--won    span { color: #4ade80; }

.flow-line {
  flex: 1; height: 1px; background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden; min-width: 40px; max-width: 120px;
  margin-bottom: 18px;
}
.flow-line__dot {
  position: absolute; top: -3px; left: -8px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
  animation: travelDot 2.2s linear infinite;
  opacity: 0.9;
}
.flow-line:nth-child(4)  .flow-line__dot { animation-delay: 0.6s; }
.flow-line:nth-child(6)  .flow-line__dot { animation-delay: 1.2s; }
.flow-line:nth-child(8)  .flow-line__dot { animation-delay: 1.8s; }
@keyframes travelDot {
  0%   { left: -8px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: calc(100% + 8px); opacity: 0; }
}

/* ══════════════════════════════════════════
   DASHBOARD PREVIEW
══════════════════════════════════════════ */
.preview { background: var(--black); padding: 100px 0; }
.preview__wrap { position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; }

.crm-preview {
  background: rgba(20,20,24,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 680px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,106,0,0.08);
}

.crm-preview__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.crm-bar__dots { display: flex; gap: 5px; }
.crm-bar__dots span { display: block; width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.crm-bar__dots span:nth-child(1){ background:#FF5F57; }
.crm-bar__dots span:nth-child(2){ background:#FEBC2E; }
.crm-bar__dots span:nth-child(3){ background:#28C840; }
.crm-bar__title { flex:1; font-size:12px; font-weight:500; color:rgba(246,247,248,0.4); text-align:center; }
.crm-live { display:flex; align-items:center; gap:5px; font-size:11px; color:#4ade80; font-weight:500; }
.crm-live__dot { width:6px; height:6px; background:#4ade80; border-radius:50%; animation:pulse-g 1.5s ease infinite; }
@keyframes pulse-g{ 0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,0.5)} 50%{box-shadow:0 0 0 5px rgba(74,222,128,0)} }

.crm-preview__stages { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; padding:20px; }
.crm-stage__head {
  font-size:10px; font-weight:600; letter-spacing:0.08em;
  text-transform:uppercase; color:rgba(246,247,248,0.35);
  margin-bottom:10px; display:flex; align-items:center; gap:6px;
}
.crm-badge { background:rgba(255,255,255,0.08); color:rgba(246,247,248,0.5); font-size:10px; padding:1px 6px; border-radius:10px; }
.crm-badge--orange { background:rgba(255,106,0,0.2); color:var(--orange); }
.crm-badge--green  { background:rgba(74,222,128,0.15); color:#4ade80; }

.crm-card {
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.05);
  border-radius:6px; padding:10px; margin-bottom:6px;
  display:flex; align-items:center; gap:8px;
}
.crm-card--lit { border-color:rgba(255,106,0,0.2); background:rgba(255,106,0,0.06); }
.crm-init {
  width:28px; height:28px; border-radius:50%;
  background:rgba(255,255,255,0.08); display:flex; align-items:center;
  justify-content:center; font-size:9px; font-weight:700; color:var(--white); flex-shrink:0;
}
.crm-init--orange { background:var(--orange); }
.crm-card__info { flex:1; min-width:0; }
.crm-card__name { font-size:11px; font-weight:600; color:var(--white); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.crm-card__val  { font-size:10px; color:var(--gold); font-weight:500; }
.crm-tag { font-size:9px; font-weight:600; padding:2px 7px; border-radius:8px; white-space:nowrap; flex-shrink:0; }
.crm-tag--gray   { background:rgba(255,255,255,0.07); color:rgba(246,247,248,0.45); }
.crm-tag--orange { background:rgba(255,106,0,0.15); color:var(--orange); }
.crm-tag--green  { background:rgba(74,222,128,0.15); color:#4ade80; }

.crm-preview__footer {
  display:flex; justify-content:space-around;
  padding:16px 18px; border-top:1px solid rgba(255,255,255,0.05);
  background:rgba(255,255,255,0.02);
}
.crm-stat { display:flex; flex-direction:column; align-items:center; gap:3px; }
.crm-stat__n { font-family:var(--font-h); font-size:20px; font-weight:800; color:var(--orange); }
.crm-stat__l { font-size:9px; color:rgba(246,247,248,0.35); letter-spacing:0.05em; text-align:center; }

.hero-toast {
  display:flex; align-items:center; gap:12px;
  background:rgba(11,11,14,0.92); border:1px solid rgba(74,222,128,0.25);
  border-radius:10px; padding:12px 18px; align-self:flex-end;
  backdrop-filter:blur(12px); max-width:260px;
  animation: slideIn 0.65s cubic-bezier(0.34, 1.4, 0.64, 1) 0.9s both;
}
@keyframes slideIn{ from{opacity:0;transform:translateY(14px) scale(0.96)} to{opacity:1;transform:translateY(0) scale(1)} }
.hero-toast__icon {
  width:28px; height:28px; background:rgba(74,222,128,0.12); color:#4ade80;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700; flex-shrink:0;
}
.hero-toast__body { display:flex; flex-direction:column; gap:2px; }
.hero-toast__body strong { font-size:12px; font-weight:700; color:var(--white); }
.hero-toast__body span  { font-size:11px; color:rgba(246,247,248,0.4); }

/* ══════════════════════════════════════════
   STATEMENT
══════════════════════════════════════════ */
/* Scroll wrapper — gives the sticky section scroll-travel distance */
.stmt-scroll-wrap {
  height: calc(4 * 100vh);
}

.statement {
  background: var(--orange);
  padding: 0;
  text-align: center;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
}
.statement::before {
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(rgba(255,106,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.statement__ghost {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-h);
  font-size: clamp(120px, 20vw, 260px);
  font-weight: 800; letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  pointer-events: none; user-select: none; white-space: nowrap;
  z-index: 0;
  transition: opacity 0.18s ease;
}
.statement__text {
  font-family: 'Barlow Condensed', var(--font-h);
  font-size: clamp(32px, 5vw, 76px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: #fff;
  max-width: 900px; margin: 0 auto;
  position: relative; z-index: 1;
}
.statement__text .text-orange { color: var(--black); }

/* ── Carousel ── */
.stmt-carousel {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.stmt-track {
  flex: 1;
  min-height: 0;
  position: relative;
  perspective: 1400px;
}
.stmt-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(24px, 6vw, 120px);
  transform-origin: top center;
  backface-visibility: hidden;
  /* hidden/entering state — behind */
  opacity: 0;
  pointer-events: none;
  transform: rotateX(60deg);
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
}
.stmt-slide--active {
  opacity: 1;
  pointer-events: auto;
  transform: rotateX(0deg);
}
.stmt-slide--leaving {
  opacity: 0;
  transform: rotateX(-75deg) translateY(-12px);
  transition: transform 0.42s cubic-bezier(0.55, 0, 1, 0.45), opacity 0.28s ease;
  pointer-events: none;
}

/* Offer slide — dark, contrasting with orange problem slides */
.stmt-slide--offer {
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stmt-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 860px;
}

.stmt-offer__eyebrow {
  display: block;
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.stmt-offer__img {
  width: clamp(280px, 42vw, 620px);
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

.stmt-offer__h {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.stmt-offer__sub {
  font-family: var(--font-b);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 40px;
}

.stmt-offer__btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.stmt-offer__btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 18px rgba(255,106,0,0.55),
    0 0 40px rgba(255,80,0,0.28),
    0 4px 16px rgba(0,0,0,0.4);
  transition: box-shadow 0.3s, background 0.3s;
}

.stmt-offer__btn::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0s;
}

.stmt-offer__btn:hover {
  background: #FF7A1A;
  box-shadow:
    0 0 24px rgba(255,106,0,0.75),
    0 0 60px rgba(255,80,0,0.38),
    0 6px 20px rgba(0,0,0,0.45);
}

.stmt-offer__btn:hover::before {
  left: 150%;
  transition: left 0.5s ease;
}

.stmt-offer__btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: none;
}
.stmt-offer__btn--ghost::before { display: none; }
.stmt-offer__btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  box-shadow: none;
}

/* Numbered slides: big number left, text right */
.stmt-slide--numbered {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 72px);
  text-align: left;
}
.stmt-slide--numbered .statement__text {
  text-align: left;
  max-width: 680px;
  margin: 0;
}
.stmt-num {
  font-family: 'Barlow Condensed', var(--font-h);
  font-size: clamp(110px, 18vw, 280px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
  flex-shrink: 0;
  position: relative; z-index: 1;
  user-select: none;
}

/* Progress dots — visual only */
.stmt-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 32px;
  position: relative; z-index: 1;
  flex-shrink: 0;
}
.stmt-dot {
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  pointer-events: none;
  cursor: default;
  transition: background 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.stmt-dot--active {
  background: rgba(255,255,255,0.92);
  transform: scale(1.4);
}

/* ══════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════ */
.problem {
  background: var(--black);
  padding: 140px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.problem__grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.problem__left { display:flex; flex-direction:column; }
.problem__left h2 { font-size:clamp(28px,3.4vw,48px); font-weight:800; color:var(--white); line-height:1.0; margin-bottom:28px; }
.problem__left em { font-style:normal; }
.problem__lead { font-size:15px; color:rgba(246,247,248,0.72); margin-bottom:24px; line-height:1.8; }
.problem__close { font-size:15px; color:rgba(246,247,248,0.68); line-height:1.7; }

/* ── Problem scenario carousel ── */
.prob-carousel { position: sticky; top: 80px; }

.prob-progress {
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  margin-bottom: 20px;
  overflow: hidden;
}
.prob-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 2px;
}

.prob-track {
  display: grid;
  grid-template-areas: 'stack';
}
.prob-card {
  grid-area: stack;
  background: rgba(18,18,22,0.98);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.58s var(--ease-out), transform 0.58s var(--ease-out);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 28px 72px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,106,0,0.04);
}
.prob-card.prob-card--active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 1;
}

.prob-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.prob-card__header-left { display:flex; align-items:center; gap:8px; }

.prob-card__pulse {
  display: block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  animation: probPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.prob-card__pulse--dim { background: rgba(255,255,255,0.18); animation: none; }
.prob-card__pulse--red { background: #ff4b4b; animation: probPulse 1.2s ease-in-out infinite; }
@keyframes probPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,106,0,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(255,106,0,0); }
}

.prob-card__tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.prob-card__time {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.22); letter-spacing: 0.06em;
}

.prob-card__body { flex: 1; padding: 20px 18px; }

.prob-card__foot {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 11px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
}
.prob-foot-dot {
  display: block; width: 6px; height: 6px;
  border-radius: 50%; flex-shrink: 0;
}
.prob-foot-dot--red { background: rgba(255,75,75,0.8); box-shadow: 0 0 6px rgba(255,75,75,0.4); }
.prob-foot-dot--dim { background: rgba(255,255,255,0.18); }

/* ── Card 1: lead row + stats ── */
.prob-lead-row { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.prob-init {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange);
  display:flex; align-items:center; justify-content:center;
  font-size:11px; font-weight:700; color:#fff; flex-shrink:0;
}
.prob-lead-name   { font-size:13px; font-weight:600; color:var(--white); margin-bottom:3px; }
.prob-lead-source { font-size:11px; color:var(--gold); }

.prob-stats {
  display:flex; align-items:center;
  padding:14px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}
.prob-stat { flex:1; display:flex; flex-direction:column; align-items:center; gap:5px; }
.prob-stat-sep { width:1px; height:34px; background:rgba(255,255,255,0.07); flex-shrink:0; }
.prob-stat__val {
  font-family: var(--font-h);
  font-size: 22px; font-weight: 800; line-height: 1;
}
.prob-stat__lbl {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); text-align: center;
}
.prob-stat--warn { color: #ff6b35; }
.prob-stat--dim  { color: rgba(255,255,255,0.2); }

/* ── Card 2: SMS thread ── */
.prob-sms { display:flex; flex-direction:column; gap:10px; }
.prob-sms__msg {
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
  opacity: 0; transform: translateY(6px);
}
.prob-card--active .prob-sms__msg:nth-child(1) { animation: probMsgIn 0.42s var(--ease-out) 0.12s both; }
.prob-card--active .prob-sms__msg:nth-child(2) { animation: probMsgIn 0.42s var(--ease-out) 0.36s both; }
@keyframes probMsgIn {
  from { opacity:0; transform:translateY(6px); }
  to   { opacity:1; transform:translateY(0); }
}
.prob-sms__bubble {
  font-size:12px; color:rgba(255,255,255,0.5);
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius: 0 8px 8px 8px;
  padding:8px 12px; flex:1; line-height:1.55;
}
.prob-sms__day {
  font-size:10px; color:rgba(255,255,255,0.2);
  white-space:nowrap; padding-top:3px; flex-shrink:0;
}
.prob-sms__gap {
  font-size:11px; color:rgba(255,255,255,0.18);
  text-align:center; letter-spacing:0.08em; padding:8px 0;
  opacity: 0;
}
.prob-card--active .prob-sms__gap { animation: probMsgIn 0.4s var(--ease-out) 0.62s both; }

/* ── Card 3: appointment ── */
.prob-appt { display:flex; flex-direction:column; gap:12px; }
.prob-appt__event {
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:12px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06); border-radius:8px;
}
.prob-appt__title { font-size:13px; font-weight:600; color:var(--white); margin-bottom:3px; }
.prob-appt__sub   { font-size:11px; color:var(--gold); }
.prob-badge {
  font-size:9px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  padding:4px 10px; border-radius:4px; flex-shrink:0;
}
.prob-badge--red { background:rgba(255,75,75,0.1); color:#ff6868; border:1px solid rgba(255,75,75,0.2); }

.prob-appt__actions { display:flex; flex-direction:column; gap:0; }
.prob-action {
  display:flex; align-items:center; justify-content:space-between;
  font-size:12px; color:rgba(255,255,255,0.38);
  padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.04);
  opacity: 0;
}
.prob-action:last-child { border-bottom:none; }
.prob-card--active .prob-action:nth-child(1) { animation: probMsgIn 0.32s var(--ease-out) 0.08s both; }
.prob-card--active .prob-action:nth-child(2) { animation: probMsgIn 0.32s var(--ease-out) 0.2s both; }
.prob-card--active .prob-action:nth-child(3) { animation: probMsgIn 0.32s var(--ease-out) 0.32s both; }
.prob-action__val { font-size:11px; font-weight:600; }
.prob-action__val--miss { color:rgba(255,75,75,0.65); }

/* ── Card 4: proposal table ── */
.prob-table { display:flex; flex-direction:column; }
.prob-table__row {
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.05);
  font-size:13px; opacity:0;
}
.prob-table__row:last-child { border-bottom:none; }
.prob-table__row span   { color:rgba(255,255,255,0.42); }
.prob-table__row strong { font-weight:600; color:var(--white); }
.prob-card--active .prob-table__row:nth-child(1) { animation: probMsgIn 0.3s var(--ease-out) 0.04s both; }
.prob-card--active .prob-table__row:nth-child(2) { animation: probMsgIn 0.3s var(--ease-out) 0.14s both; }
.prob-card--active .prob-table__row:nth-child(3) { animation: probMsgIn 0.3s var(--ease-out) 0.24s both; }
.prob-card--active .prob-table__row:nth-child(4) { animation: probMsgIn 0.3s var(--ease-out) 0.34s both; }
.prob-val--dim  { color: rgba(255,255,255,0.2) !important; }
.prob-val--warn { color: #ff6b35 !important; }

/* ── Card 5: pipeline rows ── */
.prob-pipeline { display:flex; flex-direction:column; }
.prob-pipe-row {
  display:flex; align-items:center; gap:14px;
  padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.05);
  opacity:0;
}
.prob-pipe-row:last-child { border-bottom:none; }
.prob-card--active .prob-pipe-row:nth-child(1) { animation: probMsgIn 0.3s var(--ease-out) 0.04s both; }
.prob-card--active .prob-pipe-row:nth-child(2) { animation: probMsgIn 0.3s var(--ease-out) 0.18s both; }
.prob-card--active .prob-pipe-row:nth-child(3) { animation: probMsgIn 0.3s var(--ease-out) 0.32s both; }
.prob-pipe-stage { font-size:12px; color:rgba(255,255,255,0.42); width:80px; flex-shrink:0; }
.prob-pipe-count { font-family:var(--font-h); font-size:20px; font-weight:800; color:var(--white); width:30px; flex-shrink:0; }
.prob-pipe-age { font-size:10px; letter-spacing:0.04em; flex:1; }
.prob-pipe-age--warn { color:rgba(255,106,0,0.65); }
.prob-pipe-age--dim  { color:rgba(255,255,255,0.18); }
.prob-pipeline__note {
  margin-top:14px; font-size:11px; color:rgba(255,255,255,0.22);
  opacity: 0;
}
.prob-card--active .prob-pipeline__note { animation: probMsgIn 0.3s var(--ease-out) 0.48s both; }
.prob-pipeline__note em { font-style:normal; color:rgba(255,106,0,0.55); }

/* ── Dots ── */
.prob-dots { display:flex; align-items:center; gap:7px; margin-top:16px; }
.prob-dot {
  height: 7px; width: 7px; border-radius: 4px;
  background: rgba(255,255,255,0.14);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.25s var(--ease-out), width 0.3s var(--ease-out), transform 0.25s;
  flex-shrink: 0;
}
.prob-dot--active { background: var(--orange); width: 22px; }
.prob-dot:hover:not(.prob-dot--active) { background: rgba(255,255,255,0.35); }

/* ══════════════════════════════════════════
   SYSTEM — STACKING CARDS
══════════════════════════════════════════ */
/* System section — heading + stacking cards */
.system-cards {
  background: var(--black);
  padding: 0;
  isolation: isolate;
}

/* ── Intro black slide ── */
.sc-item--intro {
  background: var(--black) !important;
  border-top: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
.sc-intro__inner {
  max-width: 820px;
  padding: 0 6%;
}
.sc-intro__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  border: 1px solid rgba(255,106,0,0.3);
  padding: 6px 16px;
  border-radius: 100px;
}
.sc-intro__h {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.sc-intro__h .text-orange { color: var(--orange); }
.sc-intro__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(246,247,248,0.5);
  line-height: 1.7;
  max-width: 58ch;
  margin: 0 auto 40px;
}
.sc-intro__scroll {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,247,248,0.3);
}

/* ── System cards — CSS sticky stacking, no GSAP scrub ── */
.sc-track {
  position: relative;
}

.sc-item {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5vw;
  padding: 60px 8%;
  background: var(--white);
  border-top: 1.5px solid rgba(11,11,14,0.07);
  box-sizing: border-box;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity  0.5s ease;
}
.sc-item:nth-child(1) { z-index: 1; }
.sc-item:nth-child(2) { z-index: 2; }
.sc-item:nth-child(3) { z-index: 3; }
.sc-item:nth-child(4) { z-index: 4; }
.sc-item:nth-child(5) { z-index: 5; }

/* Scale-down effect when a newer card covers this one */
.sc-item.sc--behind {
  transform: scale(0.97);
  opacity: 0.85;
}

/* 3D icon — recedes faster/further than the text below for a parallax
   depth cue on the stack transition, instead of both layers moving as one */
.sc-icon {
  width: clamp(300px, 40vw, 580px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.55s ease;
}
.sc-item.sc--behind .sc-icon {
  transform: translateY(-52px) scale(0.88);
  opacity: 0.45;
}

.sc-icon {
  position: relative;
}
.sc-icon::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse at center, rgba(255,106,0,0.38) 0%, rgba(255,106,0,0.12) 45%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.sc-icon__img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.sc-icon svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(255,106,0,0.28));
}

/* Content — moves less and slower than the icon above, so the two
   layers separate visually instead of receding together */
.sc-content {
  max-width: 680px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 20px;
  border-top: 3px solid var(--orange);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
}
.sc-item.sc--behind .sc-content {
  transform: translateY(-14px);
  opacity: 0.8;
}

.sc-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.2rem;
  width: 100%;
}

.sc-desc {
  font-family: var(--font-b);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  color: rgba(11,11,14,0.75);
  max-width: 54ch;
  margin-bottom: 1.4rem;
  text-align: left;
}

.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  margin-bottom: 1.4rem;
  justify-content: flex-start;
}

.sc-tag {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.35em 0.85em;
  border-radius: 99px;
  background: rgba(255,106,0,0.08);
  color: var(--orange);
  border: 1px solid rgba(255,106,0,0.2);
}

.sc-quote {
  font-family: var(--font-b);
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
  color: rgba(11,11,14,0.4);
  margin: 0;
  border: none;
  padding: 0;
}
.sc-quote cite {
  display: block;
  margin-top: 0.4em;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(11,11,14,0.3);
}

/* Mobile — stack back to column */
@media (max-width: 700px) {
  .sc-item  { flex-direction: column; padding: 48px 24px; gap: 1.5rem; text-align: center; }
  .sc-icon  { width: clamp(160px, 50vw, 240px); }
  .sc-title { font-size: clamp(28px, 8vw, 44px); }
  .sc-desc  { font-size: 14px; }
}

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process {
  background: var(--orange);
  padding: 140px 0;
  border-top: none;
}
.process__header { max-width: 600px; margin-bottom: 80px; }
.process__header h2 { font-size:clamp(34px,4.5vw,56px); font-weight:800; color:var(--black); margin-bottom:16px; }
.process__sub { font-size:16px; color:rgba(11,11,14,0.78); line-height:1.7; max-width:60ch; }

.process__steps { display:flex; flex-direction:column; }
.process__step {
  display:grid; grid-template-columns:100px 1fr; gap:40px;
  padding:52px 0; border-top:1px solid rgba(0,0,0,0.12);
  align-items:start;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.process__step:last-child { border-bottom:1px solid rgba(0,0,0,0.12); }
.process__step:hover .step__num { color:rgba(0,0,0,0.55); }
.step__num {
  font-family:var(--font-h); font-size:52px; font-weight:800;
  color:rgba(0,0,0,0.15); line-height:1;
  transition: color 180ms var(--ease-out);
}
.step__body h3 { font-size:22px; font-weight:800; color:var(--black); margin-bottom:12px; line-height:1.0; }
.step__body p  { font-size:15px; color:rgba(11,11,14,0.78); line-height:1.75; max-width:500px; }

/* ══════════════════════════════════════════
   JOURNEY — scrollytelling step sequence
══════════════════════════════════════════ */
.journey { background: var(--black); }

.journey__pin {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

/* Progress bar */
.j-progress-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.06);
  z-index: 10;
}
.j-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--orange);
  transform-origin: left;
}

/* Side nav dots */
.j-nav {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
.j-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  padding: 10px;
  margin: -10px;
  box-sizing: content-box;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
  flex-shrink: 0;
}
.j-dot--active {
  background: var(--orange);
  transform: scale(1.6);
}

/* Stage holds all steps stacked */
.j-stage {
  position: absolute;
  inset: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Individual step */
.j-step {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  padding: 0 48px;
  opacity: 0;
  pointer-events: none;
  /* ⚠️ No CSS transform here — GSAP sets yPercent for centering + animation */
}

/* Ghost number — oversized background watermark */
.j-ghost-num {
  font-family: var(--font-h);
  font-size: clamp(140px, 26vw, 340px);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  position: absolute;
  bottom: -0.12em;
  right: 48px;
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
}

/* Content */
.j-content { position: relative; z-index: 1; max-width: 520px; }

.j-label {
  display: block;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.j-title {
  font-family: var(--font-h);
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.j-title--intro {
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: 14ch;
  color: var(--orange);
}
.j-desc {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(246,247,248,0.65);
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: 40px;
}

/* Pipeline stage badge */
.j-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 99px;
}
.j-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.j-badge--active {
  color: rgba(255,106,0,0.75);
  border-color: rgba(255,106,0,0.2);
}
.j-badge--won {
  color: #4ade80;
  border-color: rgba(74,222,128,0.22);
}
.j-extension {
  margin-top: 28px;
  font-family: var(--font-h);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: rgba(246,247,248,0.55);
  letter-spacing: -0.01em;
}

/* ── Journey CTA step ── */
.j-step--cta {
  left: 0; right: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.j-cta {
  text-align: center;
  max-width: 680px;
  padding: 0 24px;
}
.j-cta__truth {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(246,247,248,0.35);
  line-height: 1.6;
  margin-bottom: 28px;
}
.j-cta__h {
  font-family: var(--font-h);
  font-size: clamp(40px, 6.5vw, 86px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  text-shadow:
    0 0 40px rgba(255,106,0,0.75),
    0 0 80px rgba(255,106,0,0.45),
    0 0 140px rgba(255,80,0,0.30);
}
.j-cta__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(246,247,248,0.5);
  line-height: 1.75;
  max-width: 54ch;
  margin: 0 auto 44px;
}
@keyframes ctaGlowPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255,106,0,0.45),
      0 0 22px rgba(255,106,0,0.55),
      0 0 50px rgba(255,80,0,0.28),
      0 4px 24px rgba(0,0,0,0.4);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255,106,0,0.6),
      0 0 38px rgba(255,106,0,0.85),
      0 0 80px rgba(255,80,0,0.5),
      0 4px 24px rgba(0,0,0,0.4);
  }
}

.j-cta__btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 44px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  animation: ctaGlowPulse 2.4s ease-in-out infinite;
  transition: background 0.2s ease, transform 0.2s ease;
}
.j-cta__btn::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-18deg);
  transition: left 0s;
  pointer-events: none;
}
/* Second pseudo for a slower ambient shimmer */
.j-cta__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 55%, rgba(255,255,255,0.04) 100%);
  pointer-events: none;
}
.j-cta__btn:hover {
  background: #ff7a1a;
  transform: translateY(-2px) scale(1.02);
  animation-play-state: paused;
  box-shadow:
    0 0 0 1px rgba(255,106,0,0.55),
    0 0 50px rgba(255,106,0,1),
    0 0 100px rgba(255,80,0,0.65),
    0 8px 32px rgba(0,0,0,0.45);
}
.j-cta__btn:hover::before { left: 150%; transition: left 0.5s ease; }
@media (prefers-reduced-motion: reduce) {
  .j-cta__btn { animation: none; }
}
.j-cta__fine {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,247,248,0.2);
}

/* ── Journey flow panel ── */
.j-flow-panel {
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 5;
  pointer-events: none;
}

/* Node — full-width block */
.j-fn {
  display: block;
  opacity: 0.25;
  transition: opacity 0.4s ease;
}
.j-fn--active { opacity: 1; }
.j-fn--done   { opacity: 0.5; }

/* Side bullet hidden — connection is center-bottom */
.j-fn__bullet { display: none; }

/* Large card box */
.j-fn__card {
  width: 100%;
  height: 80px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: scaleX(0.96) scaleY(0.94);
  transform-origin: center center;
  transition: background 0.4s ease, border-color 0.4s ease,
              box-shadow 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.j-fn--active .j-fn__card {
  background: rgba(255,255,255,0.97);
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange),
              0 0 32px rgba(255,106,0,0.6),
              0 0 70px rgba(255,106,0,0.25);
  transform: scale(1.04);
}
.j-fn--done .j-fn__card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.18);
  transform: scale(1.0);
}

/* Step number */
.j-fn__num {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: color 0.4s ease;
}
.j-fn--active .j-fn__num { color: var(--orange); }
.j-fn--done   .j-fn__num { color: rgba(255,106,0,0.4); }

/* Name + sub */
.j-fn__info { flex: 1; min-width: 0; }
.j-fn__name {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.4s ease;
}
.j-fn--active .j-fn__name { color: #0B0B0E; }
.j-fn--done   .j-fn__name { color: rgba(255,255,255,0.7); }

.j-fn__sub {
  font-family: var(--font-b);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 3px;
  transition: color 0.4s ease;
}
.j-fn--active .j-fn__sub { color: rgba(11,11,14,0.5); }

/* Status tag */
.j-fn__tag {
  font-family: var(--font-b);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.4s ease;
}
.j-fn--active .j-fn__tag         { color: rgba(255,106,0,0.9); }
.j-fn--done   .j-fn__tag         { color: rgba(255,106,0,0.4); }
.j-fn__tag--lost                  { color: rgba(255,80,80,0.3) !important; }
.j-fn--active .j-fn__tag--lost   { color: rgba(255,80,80,0.75) !important; }
.j-fn__tag--won                   { color: rgba(74,222,128,0.3) !important; }
.j-fn--active .j-fn__tag--won    { color: #4ade80 !important; }
.j-fn--done   .j-fn__tag--won    { color: rgba(74,222,128,0.55) !important; }

/* ── Connector — centered vertical line with glowing dots ── */
.j-fn__connector {
  width: 2px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

/* Top dot */
.j-fn__connector::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
/* Bottom dot */
.j-fn__connector::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Glow state when line is filled */
.j-fn__connector--lit::before,
.j-fn__connector--lit::after {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 10px rgba(255,106,0,0.9), 0 0 20px rgba(255,106,0,0.5);
}

.j-fn__fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(to bottom, var(--orange), rgba(255,106,0,0.6));
  box-shadow: 0 0 6px rgba(255,106,0,0.5);
}

/* Terminal dot at the very bottom */
.j-fn__terminal {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.15);
  margin: 6px auto 0;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.j-fn__terminal--lit {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 16px rgba(255,106,0,0.9), 0 0 40px rgba(255,106,0,0.5);
}

/* ── Journey responsive ── */
@media (max-width: 1100px) {
  .j-flow-panel { width: 280px; left: 52%; }
  .j-fn__sub    { display: none; }
}
@media (max-width: 900px) {
  .j-nav        { right: 20px; }
  .j-stage      { padding: 0 20px; }
  .j-step       { padding: 0 20px; }
  .j-flow-panel { display: none; }
}
@media (max-width: 600px) {
  .j-nav   { display: none; }
  .j-title { letter-spacing: -0.02em; }
  .j-desc  { font-size: 15px; }
  .j-stage, .j-step { padding: 0 16px; }
  .j-label { margin-bottom: 20px; }
}

/* ══════════════════════════════════════════
   HOW IT WORKS — two-column scroll-synced
══════════════════════════════════════════ */

.proc-section {
  background: var(--black);
  padding: 120px 5% 140px;
}

.proc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.proc-hl {
  font-family: var(--font-h);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 12px 0 24px;
}

.proc-sub {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--steel);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 56px;
}

.proc-items { border-top: 1px solid rgba(246,247,248,0.08); }

.proc-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 0 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(246,247,248,0.08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.proc-row.is-visible { opacity: 1; transform: none; }

.proc-row__num {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--orange);
  padding-top: 4px;
}
.proc-row__num--won { color: #4ade80; }

.proc-row__title {
  font-family: var(--font-h);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.3s ease;
}

.proc-row__meta {
  font-family: var(--font-b);
  font-size: 11px;
  color: var(--steel);
  margin-top: 4px;
}

.proc-row__story {
  font-family: var(--font-b);
  font-size: 14px;
  color: rgba(246,247,248,0.38);
  line-height: 1.65;
  margin-top: 10px;
  max-width: 460px;
  transition: color 0.35s ease;
}

.proc-row--active .proc-row__title { color: var(--orange); }
.proc-row--active .proc-row__story { color: rgba(246,247,248,0.72); }

.proc-row__phase {
  font-family: var(--font-b);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,247,248,0.25);
  white-space: nowrap;
  padding-top: 5px;
}
.proc-row__phase--won { color: #4ade80; }

/* Right col: sticky alongside the scrolling step list */
.proc-right {
  position: sticky;
  top: 88px;
  align-self: start;
}

.j-flow-panel--static {
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  width: 100% !important;
  pointer-events: auto !important;
  display: flex !important;
}

.j-fn__fill { transition: height 0.4s ease; }

@media (max-width: 1040px) {
  .proc-inner { grid-template-columns: 1fr 320px; gap: 48px; }
}
@media (max-width: 760px) {
  .proc-section { padding: 80px 5% 100px; }
  .proc-inner   { grid-template-columns: 1fr; }
  .proc-right   { position: static; margin-top: 48px; }
}


/* ══════════════════════════════════════════
   WHO — folder stack scrollytelling
══════════════════════════════════════════ */
.who { background: var(--orange); }

.who__tag { color: rgba(11,11,14,0.5); }

.who__pin {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 100vh;
}

/* ── Left text ── */
.who__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(28px, 5vw, 64px);
}
.who__h {
  font-family: var(--font-h);
  font-size: clamp(52px, 7vw, 108px);
  font-weight: 900;
  color: var(--black);
  line-height: 0.91;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 14px 0 18px;
}
.who__sub {
  font-size: 15px;
  color: rgba(11,11,14,0.78);
  line-height: 1.7;
  max-width: 38ch;
}
.who__counter {
  margin-top: 32px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-h);
  font-weight: 700;
}
.who__counter-cur {
  font-size: 44px;
  color: var(--black);
  line-height: 1;
  transition: none;
}
.who__counter-sep {
  font-size: 16px;
  color: rgba(11,11,14,0.35);
  letter-spacing: 0.04em;
}
.who__h--white { color: var(--white); }
.who__btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: 28px;
  padding: 14px 28px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 1.5px solid transparent;
  transition: background 0.22s var(--ease-out), color 0.22s var(--ease-out), border-color 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}
.who__btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Right folder stack ── */
.who__stack {
  position: relative;
  height: 100vh;
  overflow: visible;
  box-sizing: border-box;
}

/* Folder — real file folder shape */
.who__folder {
  position: absolute;
  top: 70%;
  left: 52%;
  width: min(480px, calc(100% - 48px));
  border-radius: 0 20px 20px 20px;
  background: #2a2a2a;
  overflow: visible;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.65),
    0 10px 28px rgba(0,0,0,0.4);
}

/* Folder tab — the protruding label tab above the body */
.who__folder-tab {
  position: absolute;
  top: -46px;
  left: 0;
  width: 52%;
  height: 46px;
  background: #2a2a2a;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 10px;
}
.who__folder-idx {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.who__folder-tab-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Folder body — main content area */
.who__folder-body {
  padding: 40px 44px 44px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.who__folder-name {
  font-family: var(--font-h);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.who__folder-sub {
  font-family: var(--font-b);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 32ch;
}

/* ══════════════════════════════════════════
   WHO SCROLLY — horizontal slide + folder grid
══════════════════════════════════════════ */
/* ════════════════════════════════════════
   WHO V2 — Expanding accordion panels
   ════════════════════════════════════════ */
.who-v2 {
  background: #F6F7F8;
  padding: 0;
}

.who-v2__header {
  padding: 80px 8% 44px;
}
.who-v2__header-top {
  display: none;
}
.who-v2__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border: 1.5px solid rgba(11,11,14,0.18);
  padding: 10px 20px;
  border-radius: 4px;
  margin-top: 18px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.who-v2__all-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.who-v2__h {
  font-family: var(--font-h);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-top: 0;
  text-transform: uppercase;
}
.who-v2__h .text-orange { color: var(--orange); }

.who-v2__sub {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #555B66;
  text-transform: uppercase;
  margin: 14px 0 0;
}

/* ── Accordion strip ── */
.who-v2__accordion {
  display: flex;
  height: 80vh;
  min-height: 560px;
  max-height: 780px;
  overflow: hidden;
  padding: 0 8%;
  gap: 6px;
}

.who-panel {
  flex: 1;
  position: relative;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  overflow: hidden;
  text-decoration: none;
  border-radius: 10px;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.who-v2__accordion:hover .who-panel { flex: 0.35; }
.who-v2__accordion:hover .who-panel:hover { flex: 4; }

/* Two-tone overlay — industry color + brand orange by default, clears on hover */
.who-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.65) 35%,
    rgba(255,106,0,0.72) 65%,
    rgba(255,106,0,0.62) 100%
  );
  transition: background 0.45s ease;
}
.who-panel:hover .who-panel__overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.10) 100%
  );
}

/* Orange left accent bar */
.who-panel::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}
.who-panel:hover::after { transform: scaleY(1); }

/* Number badge — top left */
.who-panel__num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.4);
  z-index: 2;
}

/* Vertical label — right-side readable text, fades on hover */
.who-panel__tag {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-family: 'Kamerik105', 'Barlow Condensed', var(--font-h), sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: none;
  color: rgba(255,255,255,0.68);
  z-index: 2;
  transition: opacity 0.22s ease;
  pointer-events: none;
  user-select: none;
}
.who-panel:hover .who-panel__tag { opacity: 0; }

/* Expanded content — slides up from bottom */
.who-panel__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 26px 30px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s ease 0.15s, transform 0.28s ease 0.15s;
}
.who-panel:hover .who-panel__body {
  opacity: 1;
  transform: translateY(0);
}

.who-panel__name {
  font-family: var(--font-h);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.who-panel__sub {
  font-family: var(--font-b);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 26ch;
}

.who-panel__btn {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.who-panel__btn:hover { background: #ff7a1a; }

/* Mobile */
@media (max-width: 768px) {
  .who-v2__accordion {
    flex-direction: column;
    height: auto;
    padding: 0 5%;
  }
  .who-panel {
    flex: none !important;
    height: 180px;
    transition: height 0.45s cubic-bezier(0.4,0,0.2,1);
  }
  .who-panel:hover { height: 360px; }
  .who-v2__accordion:hover .who-panel { flex: none; }
  .who-panel__tag {
    font-size: clamp(32px, 6vw, 48px);
    right: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .who-panel,
  .who-panel__body,
  .who-panel__tag,
  .who-panel::after { transition: none; }
}

.who-scrolly { background: var(--white); }

/* ── Part 1: Pinned slide track ── */
.whs__track {
  height: 380vh;
  position: relative;
}

.whs__scene {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

.whs__label {
  position: absolute;
  top: 52px;
  left: 8%;
  color: rgba(11,11,14,0.38);
}

.whs__slide {
  position: absolute;
  width: 84%;
  left: 8%;
  will-change: transform, opacity;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6%;
  align-items: center;
}

.whs__slide-left {}

.whs__slide-count {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.whs__slide-h {
  font-family: var(--font-h);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
}

.whs__slide-sub {
  font-family: var(--font-b);
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(11,11,14,0.5);
  line-height: 1.7;
  max-width: 42ch;
}

/* Right panel — orange branded card */
.whs__slide-right {
  background: var(--orange);
  border-radius: 12px;
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(255,106,0,0.28), 0 8px 24px rgba(0,0,0,0.1);
}
.whs__slide-right::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.whs__pains-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.whs__pains {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.whs__pains li {
  font-size: clamp(14px, 1.2vw, 16px);
  color: #fff;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  font-weight: 500;
}
.whs__pains li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.whs__pains-result {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}
.whs__pains-result span {
  color: #fff;
  font-weight: 700;
}

/* ── Part 2: Folder grid ── */
.wf-section {
  background: #F6F7F8;
  padding: 80px 8% 120px;
}

.wf-section__header {
  margin-bottom: 64px;
}

.wf-section__h {
  font-family: var(--font-h);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.92;
  color: var(--dark);
  margin-top: 12px;
}

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

/* Plain rectangle card */
.wf-card {
  background: var(--dark);
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  overflow: visible;   /* must NOT be hidden — kills 3D transforms */
  transform-style: preserve-3d;
  will-change: transform;
  border: 1px solid rgba(11,11,14,0.08);
  padding: 30px 26px 34px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

/* Orange top accent line */
.wf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 6px 6px 0 0;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.wf-card:hover::before { opacity: 1; }

/* Shine overlay — moves with mouse */
.wf-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
  clip-path: inset(0 round 6px);  /* clips without breaking 3D */
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.11) 0%, transparent 65%);
}
.wf-card:hover .wf-shine { opacity: 1; }

.wf-card__num {
  display: block;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.18);
  margin-bottom: 16px;
}

.wf-card__name {
  font-family: var(--font-h);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 0.92;
  margin-bottom: 14px;
}

.wf-card__desc {
  font-family: var(--font-b);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 22px;
}

.wf-card__cta {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  position: relative;
  z-index: 3;
  transition: opacity 0.2s;
}
.wf-card__cta:hover { opacity: 0.75; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .whs__slide { transition: none !important; }
  .wf-card { transition: none !important; will-change: auto; }
}

/* Responsive */
@media (max-width: 1024px) {
  .wf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wf-grid { grid-template-columns: 1fr; }
  .whs__slide-h { font-size: clamp(52px, 14vw, 80px); }
}

/* ══════════════════════════════════════════
   ABOUT — scrollytelling split
══════════════════════════════════════════ */
.about { background: var(--black); }

.about__scroll {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}

/* LEFT — scrolling steps */
.about__steps {
  max-width: none;
  margin-left: 0;
  padding: 0 clamp(32px, 5vw, 72px);
}

.about__step {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  opacity: 0.15;
  transform: translateY(24px);
  transition: opacity 560ms var(--ease-out), transform 560ms var(--ease-out);
}
.about__step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.about__step-label {
  display: block;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.about__step-h {
  font-family: var(--font-h);
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.about__step-h--orange { color: var(--orange); }
.about__big-h {
  font-family: var(--font-h);
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.about__step-p {
  font-size: 16px;
  color: rgba(246,247,248,0.68);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: 12px;
}
.about__step-name {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

.about__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.about__pillar {
  display: flex; flex-direction: column; gap: 5px;
  padding: 16px; border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  transition: border-color 200ms ease, background 200ms ease;
  cursor: default;
}
.about__pillar:hover { border-color: rgba(255,106,0,0.5); background: rgba(255,106,0,0.07); }
.about__pillar strong { font-family: var(--font-h); font-size: 14px; font-weight: 800; color: var(--white); }
.about__pillar span   { font-size: 13px; color: rgba(246,247,248,0.58); line-height: 1.5; }

.about__cta { display: flex; align-items: center; gap: 20px; margin-top: 32px; }
.about__cta-note { font-size: 13px; color: rgba(255,255,255,0.55); }

/* RIGHT — sticky photo */
.about__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.about__photo {
  position: relative;
  width: 100%;
  height: 100%;
  background: url('images/aboutmeWill.webp') 65% 15% / cover no-repeat;
  filter: grayscale(1);
  transition: filter 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (hover: hover) and (pointer: fine) {
  .about__photo:hover { filter: grayscale(0); }
}
.about__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,11,14,0.55) 0%, rgba(11,11,14,0) 50%);
}
.about__credit {
  position: absolute;
  top: 32px; right: 32px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 900px) {
  .about__scroll { grid-template-columns: 1fr; }
  .about__sticky { display: none; }
  .about__steps  { padding: 0 24px; }
  .about__step   { min-height: auto; padding: 64px 0; opacity: 1; transform: none; }
  .about__pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .about__steps { padding: 0 16px; }
  .about__pillars { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════
   CTA 1 — Hero headline
══════════════════════════════════════════ */
.cta-hero {
  background: #0B0B0E;
  padding: 40px 0 36px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.cta-hero__inner {
  padding: 0 8%;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════
   CTA 2 — Stats band
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   CTA 3 — Deliverables + Booking
══════════════════════════════════════════ */
.cta-block {
  background: #0B0B0E;
  position: relative;
  overflow: hidden;
  padding: 0 7%;
}
.cta-block::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   TOOLS BLOCK — keychains section
══════════════════════════════════════════ */
.cl-bg-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  grid-column: 1 / -1;
  font-family: 'Barlow Condensed', var(--font-h);
  font-size: clamp(60px, 14vw, 220px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 3px #000000;
  paint-order: stroke fill;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.tools-block {
  background: #FFD4A8;
  height: 140vh;
  position: relative;
  overflow: visible;
}
.tools-block__inner {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  isolation: isolate;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
  padding: 60px 6% 80px;
  gap: 0;
  overflow: visible;
  background: transparent;
}
.tools-block__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tools-block__center {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: visible;
  margin-left: -60px;
  margin-top: -80px;
}
.tools-block__h {
  font-family: var(--font-h);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0;
}
.tools-block__sub {
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--steel);
  line-height: 1.7;
  max-width: 38ch;
}
.tools-block__names {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Active tool label */
.kc-active-label {
  display: block;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  position: relative;
  z-index: 5;
}

/* Active tool description — single element, GSAP crossfade */
.kc-active-desc {
  font-family: var(--font-b);
  font-size: 22px;
  line-height: 1.7;
  color: rgba(42,42,42,0.78);
  max-width: 36ch;
  margin: 0;
  position: relative;
  z-index: 5;
}
.kc-name {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(42,42,42,0.28);
  padding: 7px 14px;
  border: 1.5px solid rgba(42,42,42,0.12);
  border-radius: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.kc-name--active {
  color: var(--orange);
  border-color: var(--orange);
}
.tools-block__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0;
  margin-left: -80px;
  padding-top: 180px;
  position: relative;
  z-index: 5;
}
.tools-block__right::before {
  content: '';
  position: absolute;
  inset: -60% -40%;
  background: radial-gradient(ellipse at center, rgba(255,106,0,0.18) 0%, rgba(255,106,0,0.07) 45%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

/* Circular orbit carousel */
.kc-wheel {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
  overflow: visible;
}
.keychain-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  margin: -130px 0 0 -130px;
  object-fit: contain;
  pointer-events: none;
  will-change: transform, opacity;
}
.tools-block__scroll-hint {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(42,42,42,0.35);
  margin-top: 8px;
}

/* Mobile keychain showcase — hidden on desktop, real document flow only */
.tools-mobile { display: none; }

@media (max-width: 1100px) {
  .tools-block__inner { grid-template-columns: 1fr 1fr; }
  .tools-block__right { grid-column: 1 / -1; padding-left: 0; margin-left: 0; padding-top: 40px; }
  .tools-block__center { margin-left: 0; margin-top: 0; }
}
@media (max-width: 700px) {
  .tools-block__inner { grid-template-columns: 1fr; }
  .kc-wheel { width: 280px; height: 280px; }
  .keychain-item { width: 130px; height: 130px; margin: -65px 0 0 -65px; }
}

/* — Eyebrow — */
.cta-block__eyebrow {
  display: block;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.cta-block__h {
  font-family: 'Barlow Condensed', var(--font-h);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 0;
}
.cta-h--white { color: #fff; }
.cta-h--black { color: var(--orange); }

/* — Stats bar — */
.cta-block__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 48px 7%;
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* — Two-column body — */
.cta-block__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-block__col-label {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

/* Left: deliverables */
.cta-block__left {
  padding: 36px 7% 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.cta-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cta-block__list li {
  font-family: 'Barlow Condensed', var(--font-h);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}
.cta-block__list li::before {
  content: '✓';
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

/* Right: CTA + guarantee */
.cta-block__right {
  padding: 36px 7% 40px;
}
.cta-block__offer-desc {
  font-family: var(--font-b);
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 46ch;
}
.cta-block__btn {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  font-family: 'Barlow Condensed', var(--font-h);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 18px 42px;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 36px;
}
.cta-block__btn:hover {
  background: transparent;
  color: var(--orange);
}
.cta-block__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.cta-guarantee__icon {
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.cta-guarantee__title {
  font-family: 'Barlow Condensed', var(--font-h);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 4px;
}
.cta-guarantee__text {
  font-family: var(--font-b);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0;
}
.cta-block__scarcity {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-block__hero { padding: 60px 24px 0; }
  .cta-block__stats { flex-direction: column; align-items: flex-start; padding: 36px 24px; gap: 28px; }
  .cta-block__body { grid-template-columns: 1fr; }
  .cta-block__left { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); padding: 36px 24px; }
  .cta-block__right { padding: 36px 24px 60px; }
}

/* ══════════════════════════════════════════
   DELIVERABLES — redesigned "What Gets Built"
══════════════════════════════════════════ */
.dlv-section {
  background: #0B0B0E;
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dlv-section__inner {
  padding: 0 7%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.dlv-tag {
  display: block;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.dlv-h {
  font-family: 'Barlow Condensed', var(--font-h);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.0;
  margin: 0 0 40px;
}
.dlv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.dlv-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dlv-item:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.dlv-item:nth-child(even) {
  padding-left: 28px;
}
.dlv-num {
  font-family: 'Barlow Condensed', var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  padding-top: 2px;
}
.dlv-name {
  font-family: 'Barlow Condensed', var(--font-h);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.dlv-all-works {
  display: inline-block;
  margin-top: 32px;
  font-family: 'Barlow Condensed', var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  transition: opacity 0.2s;
}
.dlv-all-works:hover { opacity: 0.7; }

/* Right: CTA panel */
.dlv-right {
  position: sticky;
  top: 80px;
}
.dlv-right-label {
  display: block;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.dlv-right-desc {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  max-width: 44ch;
  margin: 0 0 32px;
}
.dlv-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 16px 36px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--orange);
  transition: background 0.2s, color 0.2s;
  margin-bottom: 40px;
}
.dlv-btn:hover { background: transparent; color: var(--orange); }
.dlv-scarcity {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.back-to-top {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'QanelasHeavy', var(--font-h);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FF6A00;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.3s, transform 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.back-to-top:hover { opacity: 0.7; }
.back-to-top svg { transition: transform 0.2s; }
.back-to-top:hover svg { transform: translateY(-3px); }
@media (max-width: 900px) {
  .dlv-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .dlv-right { position: static; }
}
@media (max-width: 560px) {
  .dlv-grid { grid-template-columns: 1fr; }
  .dlv-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .dlv-item:nth-child(even) { padding-left: 0; }
}

/* Legacy — keep .cta-block__note in case used elsewhere */
.cta-block__note { margin-top:16px !important; margin-bottom:0 !important; font-size:13px !important; color:rgba(255,255,255,0.45) !important; }

/* TEMP — old scarcity still referenced in responsive overrides */
.old-cta-scarcity {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55) !important;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.port-foot {
  background: #0B0B0E;
  padding: 28px 5%;
  display: flex;
  align-items: center;
}
.port-foot__copy {
  font-family: 'QanelasHeavy', 'Barlow Condensed', sans-serif;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: rgba(246,247,248,0.22);
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
.fade-up { opacity:0; transform:translateY(22px); transition:opacity 640ms var(--ease-out), transform 640ms var(--ease-out); }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ══════════════════════════════════════════
   STAGGER DELAYS (Emil: 30–80ms between items)
══════════════════════════════════════════ */
/* Stagger only while revealing — cleared after visible so hover is instant */
.process__step:not(.visible):nth-child(1) { transition-delay: 0ms; }
.process__step:not(.visible):nth-child(2) { transition-delay: 70ms; }
.process__step:not(.visible):nth-child(3) { transition-delay: 140ms; }
.process__step:not(.visible):nth-child(4) { transition-delay: 210ms; }
.process__step:not(.visible):nth-child(5) { transition-delay: 280ms; }
.process__step:not(.visible):nth-child(6) { transition-delay: 350ms; }

@keyframes itemSlideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   HOVER: guard touch devices (Emil)
══════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  .nav__icon-mark:hover { transform: scale(0.96); }
}
.nav__icon-mark:active { transform: scale(0.93) !important; }

/* ══════════════════════════════════════════
   PREFERS REDUCED MOTION (Emil: fewer, gentler)
══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { transform: none; }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* ── Tablet ≤900px ── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }

  /* Reduce section vertical padding */
  .problem, .process,
  .who, .cta-block { padding: 88px 0; }
  .preview { padding: 72px 0; }
  /* Stack numbered slides vertically on tablet */
  .stmt-slide--numbered { flex-direction: column; text-align: center; gap: 12px; }
  .stmt-slide--numbered .statement__text { text-align: center; }
  .stmt-num { font-size: clamp(72px, 14vw, 140px); }
  .footer  { padding: 48px 0 32px; }

  /* Single-column layouts */
  .problem__grid  { grid-template-columns: 1fr; gap: 52px; }
  .prob-carousel  { position: static; }

  /* Stacking cards — GSAP active on tablet */
  .system-cards { padding: 64px 0 0; }

  .about__pillars { grid-template-columns: 1fr 1fr; }

  /* Process */
  .process__step { grid-template-columns: 72px 1fr; gap: 24px; }
  .step__num     { font-size: 40px; }
}

/* ── Mobile ≤600px ── */
@media (max-width: 600px) {
  .container { padding: 0 16px; }

  /* Sections */
  .problem, .process,
  .who, .cta-block { padding: 64px 0; }
  /* Stacking cards — GSAP active on mobile, narrow card layout */
  .system-cards { padding: 48px 0 0; }
  .sticky-cards   { padding: 0; }
  .sticky-card    { left: 12px; right: 12px; aspect-ratio: auto; min-height: 360px; padding: 1.5em 1.4em; border-radius: 12px; font-size: 14px; }
  .card-top       { max-width: 100%; }
  .card-bottom    { flex-direction: column; align-items: flex-start; gap: 1em; }
  .card-quote     { max-width: 100%; font-size: 12px; }
  .card-tags      { max-width: 100%; justify-content: flex-start; }
  .card-title     { font-size: clamp(17px, 5.2vw, 22px); }
  .card-desc      { font-size: 13px; }
  .card-num       { font-size: 12px; }
  .stmt-num { font-size: clamp(56px, 14vw, 100px); }
  .preview   { padding: 52px 0; }
  .footer    { padding: 40px 0 24px; }

  /* Footer */
  .footer__top    { flex-direction: column; gap: 20px; }
  .footer__bottom { flex-direction: column; gap: 10px; }
  .footer__nav    { gap: 14px; flex-wrap: wrap; }

  /* Flow strip — horizontal scroll on small screens */
  .flow-strip__inner {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px;
    scrollbar-width: none;
    gap: 0;
  }
  .flow-strip__inner::-webkit-scrollbar { display: none; }

  /* CRM preview — collapse to 1 column */
  .crm-preview__stages { grid-template-columns: 1fr; gap: 8px; }

  /* Process */
  .process__step { grid-template-columns: 1fr; gap: 6px; padding: 36px 0; }
  .step__num     { font-size: 26px; color: rgba(255,255,255,0.06); }

  /* Who */
  .who__list { grid-template-columns: 1fr; }

  /* About */
  .about__parallax { min-height: 100vh; }
  .about__parallax-img {
    background-position: center 10%;
    inset: -15% 0;
  }
  .about__parallax-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.35) 40%,
      rgba(0,0,0,0.80) 68%,
      rgba(11,11,14,0.97) 100%
    );
  }
  .about__content { width: auto; max-width: calc(100% - 32px); margin-left: 16px; padding-bottom: 40px; }
  .about__parallax-credit { right: 16px; top: 20px; }
  .about__pillars  { grid-template-columns: 1fr 1fr; }
  .about__cta { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Outcomes */
  .outcome { padding: 32px 18px; }

  /* CTA button full width */
  .cta-block__inner .btn--lg { display: block; text-align: center; }

  /* Nav: bigger touch targets for social icons */
  .nav__social { width: 40px; height: 40px; }
}

/* ── Small phones ≤400px ── */
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .who__list { grid-template-columns: 1fr; }
  .about__pillars { grid-template-columns: 1fr; }
  .process__step { padding: 28px 0; }
}


/* ══════════════════════════════════════════
   MOBILE OVERRIDES — global responsive pass
   Breakpoints: 768px tablet, 560px phone, 400px small phone
══════════════════════════════════════════ */

/* ── Hero: clamp plx-icon so it never exceeds viewport width ── */
@media (max-width: 480px) {
  .hero__plx-icon { width: clamp(260px, 80vw, 400px); }
  .hero__watermark { top: 48px; }
}

/* ── Who section: collapse 42/58 grid to single column ── */
@media (max-width: 768px) {
  .who__pin {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .who__folders { display: none; }
  .who__text { padding: 64px 6% 48px; min-height: auto; }
  .who__h { font-size: clamp(40px, 10vw, 72px); }
}

/* ── How It Works slides: collapse 2-col to 1-col, fix heading scale ── */
@media (max-width: 768px) {
  .whs__track { height: auto; }
  .whs__scene { position: relative; height: auto; overflow: visible; padding: 60px 0 80px; flex-direction: column; align-items: stretch; }
  .whs__slide {
    position: relative;
    width: 88%;
    left: 6%;
    grid-template-columns: 1fr;
    gap: 32px;
    opacity: 1 !important;
    transform: none !important;
  }
  .whs__slide-h { font-size: clamp(36px, 9vw, 60px); }
  .whs__slide + .whs__slide { margin-top: 64px; }
  .whs__label { position: relative; top: auto; left: auto; padding: 40px 6% 0; }
}

/* ── Stats / CTA band: hide dividers when stacking vertically ── */
@media (max-width: 768px) {
  .cta-block__stat-divider { display: none; }
}

/* ── Nav panel: max-height + scroll so content is reachable on short phones ── */
@media (max-width: 640px) {
  .nav__panel {
    max-height: calc(100svh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ══════════════════════════════════════════
   PORTFOLIO PAGE — mobile
══════════════════════════════════════════ */

/* ── Portfolio header mark: hide on mobile to prevent overflow ── */
@media (max-width: 900px) {
  .port-header__mark { display: none; }
}

/* ── Filter nav: allow horizontal scroll on small screens ── */
@media (max-width: 640px) {
  .port-filter {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 20px;
    gap: 8px;
    scrollbar-width: none;
  }
  .port-filter::-webkit-scrollbar { display: none; }
  .port-filter__all { flex-shrink: 0; }
  .port-filter__btn { flex-shrink: 0; }
}

/* ── Portfolio cards: show bar expanded on touch (no hover on mobile) ── */
@media (hover: none) {
  .port-card__bar { width: calc(100% - 24px) !important; }
  .port-card__bar-body { height: auto !important; }
  .port-card__discover { transform: none !important; }
  .port-card__bar-body-inner { overflow: visible; }
}

/* ── Portfolio grid: single column on small phones ── */
@media (max-width: 480px) {
  .port-grid { gap: 12px; padding: 24px 4% 48px; }
  .port-header { padding: 100px 4% 40px; }
  .port-filter { padding-left: 4%; padding-right: 4%; }
}

/* ── Site modal: full screen on mobile, close bar stays usable ── */
@media (max-width: 640px) {
  .site-modal__url { display: none; }
  .site-modal__title { font-size: 11px; }
}

/* ── Tools block: collapse to static on mobile/tablet — orbit disabled via JS ── */
@media (max-width: 900px) {
  .tools-block__center { display: none; }
  .tools-block { height: auto !important; overflow: hidden; }
  .tools-block__inner {
    position: relative !important;
    top: auto !important;
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto !important;
    padding: 64px 6% 32px;
    overflow: hidden;
  }
  .tools-block__left { padding-right: 0; }
  .cl-bg-text { display: none; }
  .tools-block__right { display: none; }

  /* Mobile keychain showcase — horizontal scroll-snap, normal flow, no orbit math */
  .tools-mobile {
    display: block;
    padding: 0 6% 56px;
  }
  .tools-mobile__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 4px 8px;
  }
  .tools-mobile__track::-webkit-scrollbar { display: none; }
  .tools-mobile__card {
    flex: 0 0 auto;
    width: 74vw;
    max-width: 260px;
    scroll-snap-align: center;
    background: rgba(255,255,255,0.22);
    border-radius: 18px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  .tools-mobile__img {
    width: 108px;
    height: 108px;
    object-fit: contain;
    margin-bottom: 6px;
  }
  .tools-mobile__name {
    font-family: var(--font-h);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
  }
  .tools-mobile__desc {
    font-family: var(--font-b);
    font-size: 13px;
    line-height: 1.55;
    color: rgba(42,42,42,0.7);
    margin: 0;
  }
}

/* ── Hard clip: clip horizontal overflow without breaking ScrollTrigger ── */
/* overflow-x: clip does NOT create a scroll container (unlike hidden),   */
/* so GSAP ScrollTrigger keeps listening to window scroll correctly.       */
/* Both html AND body need clip — body alone doesn't prevent html scroll. */
@media (max-width: 768px) {
  html { overflow-x: clip; }
  body { overflow-x: clip; }
  .tools-block { overflow: hidden; }
  .who-panel__tag { font-size: clamp(18px, 4vw, 28px); }
}

/* ══════════════════════════════════════════
   BOOKING MODAL — real GHL calendar, on-page.
   Iframe content is isolated from this stylesheet by the browser;
   only the frame around it (this CSS) is ours.
══════════════════════════════════════════ */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,11,14,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  padding: 24px;
}
.booking-modal.open { opacity: 1; pointer-events: auto; }
.booking-modal__panel {
  position: relative;
  width: min(900px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transform: translateY(14px);
  transition: transform 0.28s ease;
}
.booking-modal.open .booking-modal__panel { transform: translateY(0); }
.booking-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,11,14,0.06);
  border: none;
  border-radius: 8px;
  color: #0B0B0E;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: background 0.18s;
}
.booking-modal__close:hover { background: rgba(11,11,14,0.12); }
/* GHL's own form_embed.js sets pointer-events:auto as an INLINE style on
   this iframe once the widget finishes loading in the background — an
   inline style beats any external stylesheet rule regardless of
   specificity, so !important is required here to keep it non-interactive
   while the modal is closed (it was intercepting clicks across the whole
   fixed, full-viewport modal backdrop otherwise). */
.booking-modal__frame { width: 100%; border: none; display: block; pointer-events: none !important; }
.booking-modal.open .booking-modal__frame { pointer-events: auto !important; }
.booking-modal__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.booking-modal__loading.hide { opacity: 0; pointer-events: none; }
.booking-modal__spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid rgba(11,11,14,0.12);
  border-top-color: var(--orange);
  animation: bookingSpin 0.8s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .booking-modal__spinner { animation: none; }
}
@keyframes bookingSpin { to { transform: rotate(360deg); } }
