/* ============================================================
   ZENTUM — Shared Stylesheet
   ============================================================ */

/* Google Fonts — Manrope only */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ── Brand Tokens ─────────────────────────────────────────── */
:root {
  /* Brand primaries */
  --n:   #1F0C51;   /* Navy */
  --p:   #9F4DFF;   /* Purple */
  --lav: #F5F2FA;   /* Lavender */
  /* Grayscale scale */
  --cl:  #EDEFF7;   /* Cloud */
  --sm:  #D3D6E0;   /* Smoke */
  --st:  #BCBFCC;   /* Steel */
  --sp:  #9DA2B3;   /* Space */
  --gr:  #6E7180;   /* Graphite */
  --ar:  #40424D;   /* Arsenic */
  --ph:  #1E1E24;   /* Phantom */
  --bk:  #000000;   /* Black */
  --w:   #FFFFFF;   /* White */

  --radius: 8px;
  --nav-h: 84px;
  --max-w: 1440px;
  --section-py: 140px;
  --rail-w: 160px;
  --trans: 0.15s ease;
  --trans-slow: 0.3s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 14px; }
body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--gr);
  background: var(--w);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Manrope', sans-serif;
  color: var(--n);
  line-height: 1.12;
}
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; letter-spacing: -0.030em; }
h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; letter-spacing: -0.022em; }
h3 { font-size: clamp(17px, 2vw, 21px); font-weight: 700; letter-spacing: -0.01em; }
p { line-height: 1.78; font-size: 15px; }

.label {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 12px;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  padding: 0 48px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Non-hero pages: push content below the fixed nav */
body:not(.hero-page):not(.inner-page) { padding-top: var(--nav-h); }
/* Inner pages start at top-of-viewport — dark hero covers behind the nav */
body.inner-page { padding-top: 0; }

.section { padding: var(--section-py) 0; background: var(--w); position: relative; z-index: 2; isolation: isolate; }
.section--lav { background: var(--lav); }
.section--navy { background: var(--n); }

/* ── Dark purple section (replaces section--lav where animated bg is needed) */
.section--dark {
  background: #0C0420;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 88% at 14% 55%, rgba(125,25,225,.50) 0%, transparent 63%),
    radial-gradient(ellipse 50% 72% at 82% 20%, rgba(155,55,255,.33) 0%, transparent 58%),
    radial-gradient(ellipse 44% 62% at 48% 88%, rgba(165,18,195,.22) 0%, transparent 55%),
    radial-gradient(ellipse 36% 50% at 88% 72%, rgba(88,28,215,.18) 0%, transparent 52%);
  pointer-events: none;
  z-index: 0;
}
.section--dark > .container, .section--dark > * > .container { position: relative; z-index: 1; }
.section--dark .label { color: rgba(199,128,255,.85); }
.section--dark h2 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.52); }
.section--dark .btn-ghost { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.22); }
.section--dark .btn-ghost:hover { background: var(--p); color: #fff; border-color: var(--p); }

/* ── Animated aura modifier for dark sections ───────────────── */
.section--dark.aura-animated::before {
  animation: auraDrift 14s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes auraDrift {
  0%   { transform: scale(1)    translateX(0px)  translateY(0px);  opacity: 0.82; }
  30%  { transform: scale(1.04) translateX(10px) translateY(-6px); opacity: 1;    }
  60%  { transform: scale(1.02) translateX(-8px) translateY(4px);  opacity: 0.9;  }
  100% { transform: scale(1.05) translateX(6px)  translateY(-4px); opacity: 1;    }
}
.section--dark.aura-animated > .container,
.section--dark.aura-animated > * > .container { position: relative; z-index: 1; }

/* Left-rail grid */
.rail-section .container {
  display: grid;
  grid-template-columns: var(--rail-w) 1fr;
  gap: 0 48px;
}
.rail-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--p);
  padding-top: 6px;
  line-height: 1.4;
}

/* ── Page transitions: opacity/transition managed entirely by JS ── */
html { scroll-behavior: smooth; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
}

.nav__inner {
  flex: 1;
  width: 100%;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 0;
  background: transparent;
  transition: background 0.38s ease, border-radius 0.38s ease,
              box-shadow 0.38s ease, padding 0.38s ease,
              margin 0.38s ease, height 0.38s ease;
}

/* Scrolled — floating glassmorphism pill */
.nav.scrolled .nav__inner {
  height: 68px;
  margin: 10px 32px 0;
  padding: 0 32px;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  box-shadow: 0 8px 40px rgba(31,12,81,.18), 0 1px 0 rgba(255,255,255,.9) inset, 0 0 0 1px rgba(255,255,255,.5);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 1;
}
.nav__brand svg {
  width: 44px;
  height: 40px;
  flex-shrink: 0;
}
.nav__wordmark {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--n);
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
  letter-spacing: .01em;
}
.nav__links a, .nav__links > .nav__dropdown-wrap { margin: 0 6px; }
.nav__links a, .nav__links button {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gr);
  padding: 8px 16px;
  border-radius: 6px;
  transition: color var(--trans);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  isolation: isolate;
}
.nav__links a::before, .nav__links button::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: rgba(159,77,255,.07);
  transform: scale(0.65);
  opacity: 0;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.18s ease;
  z-index: -1;
}
.nav__links a:hover, .nav__links button:hover {
  color: var(--n);
  background: transparent;
}
.nav__links a:hover::before, .nav__links button:hover::before {
  transform: scale(1);
  opacity: 1;
}
.nav__links a.active { color: var(--n); font-weight: 600; }

/* Dropdown */
.nav__dropdown-wrap { position: relative; }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  transform: translateY(-4px);
  background: var(--w);
  border: 1px solid var(--cl);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(31,12,81,.12);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans-slow), transform var(--trans-slow), visibility var(--trans-slow);
  pointer-events: none;
}
.nav__dropdown-wrap:hover .nav__dropdown,
.nav__dropdown-wrap.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__dropdown a {
  display: block;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--n);
  border-radius: 6px;
  transition: background var(--trans), color var(--trans);
}
.nav__dropdown a:hover { background: rgba(159,77,255,.09); color: var(--p); }
.nav__dropdown a:hover span { color: rgba(159,77,255,.65); }
.nav__dropdown a span { display: block; font-size: 12px; color: var(--sp); font-weight: 400; margin-top: 3px; }
/* Keep blob visible when dropdown is open — works for both button and a triggers */
.nav__dropdown-wrap.open > button::before,
.nav__dropdown-wrap.open > a::before,
.nav__dropdown-wrap:hover > button::before,
.nav__dropdown-wrap:hover > a::before {
  transform: scale(1);
  opacity: 1;
}
.chevron {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  border-radius: 1px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  transform: rotate(45deg) translate(0, -2px);
  transform-origin: center;
  transition: transform var(--trans);
}
.nav__dropdown-wrap:hover .chevron,
.nav__dropdown-wrap.open .chevron { transform: rotate(-135deg) translate(0, 1px); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}
.nav__login {
  font-size: 13px;
  font-weight: 500;
  color: var(--gr);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--trans);
}
.nav__login:hover { color: var(--n); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  transition: background var(--trans);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-left: auto;
}
.nav__hamburger:hover { background: var(--lav); }
.nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--n);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile overlay */
.nav__overlay {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  z-index: 101;
  background: var(--n);
  padding: 24px 32px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0.25s;
  pointer-events: none;
}
.nav__overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0s;
}
.nav__overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.nav__overlay-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav__overlay-brand span {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--w);
  letter-spacing: -0.03em;
}
.nav__close {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--w);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
  background: none;
  cursor: pointer;
}
.nav__close:hover { background: rgba(255,255,255,.1); }
.nav__overlay-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.nav__overlay-links a {
  font-size: 22px;
  font-weight: 700;
  color: var(--w);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  transition: color var(--trans);
  font-family: 'Manrope', sans-serif;
}
.nav__overlay-links a:hover { color: var(--p); }
.nav__overlay-sub {
  padding-left: 12px;
}
.nav__overlay-sub a {
  display: block;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav__overlay-sub a:hover { color: var(--w); }
.nav__overlay-cta {
  margin-top: 32px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border-radius: 6px;
  padding: 10px 20px;
  transition: opacity var(--trans), transform var(--trans), box-shadow var(--trans);
  cursor: pointer;
  text-decoration: none;
  border: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { opacity: 1; transform: translateY(-1px) scale(1.03); }
.btn:active { transform: translateY(0); }
.btn-dark  { background: var(--n); color: var(--w); }
.btn-dark:hover  { background: var(--p); }
.btn-purple {
  background: linear-gradient(90deg, #9F4DFF 0%, #B86AFF 35%, #C880FF 55%, #9F4DFF 100%);
  background-size: 200%;
  animation: trustShimmer 3s linear infinite;
  color: var(--w);
  box-shadow: 0 4px 20px rgba(159,77,255,.35);
}
.btn-purple:hover {
  background: #B86AFF;
  animation: none;
  box-shadow: 0 8px 32px rgba(159,77,255,.55);
}
.btn-ghost {
  background: transparent;
  color: var(--n);
  border: 1px solid var(--sm);
}
.btn-ghost:hover { background: var(--p); color: var(--w); border-color: var(--p); }
.btn-ghost-white {
  background: transparent;
  color: var(--w);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-ghost-white:hover { background: var(--p); border-color: var(--p); }
.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 14px 28px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* Nav CTA */
.btn-nav-cta {
  background: linear-gradient(90deg, #9F4DFF 0%, #B86AFF 35%, #C880FF 55%, #9F4DFF 100%);
  background-size: 200%;
  animation: trustShimmer 3s linear infinite;
  color: var(--w);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity var(--trans), transform var(--trans);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: #B86AFF; animation: none; opacity: 1; transform: translateY(-1px) scale(1.05); }

/* ── Hero (homepage) ──────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gr);
  border: 1px solid var(--sm);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.hero__tag .dot { color: var(--p); }
.hero h1 { margin: 0 auto 20px; max-width: 580px; }
.hero__sub {
  font-size: 14px;
  color: var(--gr);
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gr);
}
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--w);
  margin-left: -8px;
  background: var(--p);
  overflow: hidden;
}
.avatar:first-child { margin-left: 0; }
.avatar--1 { background: #7C3AED; }
.avatar--2 { background: #9F4DFF; }
.avatar--3 { background: #C084FC; }

/* ── Proof Bar ────────────────────────────────────────────── */
.proof-bar {
  background: var(--lav);
  border-top: 1px solid var(--cl);
  border-bottom: 1px solid var(--cl);
  padding: 28px 0;
}
.proof-bar__inner {
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.proof-bar__item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.proof-bar__item + .proof-bar__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--cl);
}
.proof-bar__num {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--n);
  display: block;
  margin-bottom: 4px;
}
.proof-bar__num em { color: var(--p); font-style: normal; }
.proof-bar__lbl {
  font-size: 12px;
  font-weight: 500;
  color: var(--ar);
  display: block;
  line-height: 1.4;
}

/* ── Meet Jeremy split ────────────────────────────────────── */
.meet-jeremy-split {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  gap: 72px;
  align-items: center;
}
.meet-jeremy-left h2 { margin-top: 0; }

/* ── Process dark section — sticky-scroll card stack ──────── */
.process-dark-section {
  position: relative;
  background: #0C0420;
  /* No overflow:hidden — required for position:sticky inside */
}
/* Sticky aura canvas — pinned to viewport while section scrolls */
.process-aura-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-bottom: -100vh; /* pulls content up so it overlays the canvas */
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.process-dark-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Content layer above the canvas */
.process-stack-outer {
  position: relative;
  z-index: 1;
}
/* Two-column layout: sticky left label + scrolling right cards */
.process-stack-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
  padding: 120px 0 140px;
}
/* Left column — sticks while cards scroll past */
.process-stack-left {
  position: sticky;
  top: 108px;
}
.process-stack-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(200,160,255,.85);
  margin-bottom: 16px;
}
.process-stack-h2 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 800;
  color: var(--w);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.process-stack-intro {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,.55);
  max-width: 34ch;
}
/* Right column — stacking sticky cards */
.process-stack-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-card {
  position: sticky;
  top: calc(96px + var(--i, 0) * 16px);
  z-index: calc(1 + var(--i, 0));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.50);
  border-radius: 24px;
  padding: 44px 48px 52px;
  margin-bottom: 20px;
  box-shadow: 0 6px 40px rgba(31,12,81,.22), inset 0 1px 0 rgba(255,255,255,.70);
}
.process-card:last-child { margin-bottom: 0; }
.process-card-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 18px;
}
.process-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 800;
  color: var(--n);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.process-card-desc {
  font-size: 14px;
  color: var(--gr);
  line-height: 1.85;
  max-width: 54ch;
}

/* ── Video Player ─────────────────────────────────────────── */
.video-player {
  width: 100%;
  background: var(--n);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow: inset 0 0 0 2px rgba(159,77,255,.45), 0 12px 48px rgba(31,12,81,.14);
}
.video-state { display: none; }
.video-state.active { display: flex; }

/* Idle state */
.vs-idle {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 40px;
  text-align: center;
  position: relative;
}
.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--p);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans);
  margin-bottom: 24px;
  animation: playPulse 2s ease-in-out infinite;
  border: none;
  position: relative;
}
.play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(159,77,255,.4);
  animation: playRing 2s ease-in-out infinite;
}
@keyframes playPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(159,77,255,.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(159,77,255,0); }
}
@keyframes playRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.5; }
}
.play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid white;
  margin-left: 4px;
}
.vs-idle__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--w);
  margin-bottom: 8px;
}
.vs-idle__sub {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

/* Playing state */
.vs-playing, .vs-chapter {
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 0;
  position: relative;
}
.video-visual {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2D1070 0%, #1F0C51 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-visual-inner {
  text-align: center;
}
.video-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(159,77,255,.3);
  margin: 0 auto 12px;
  border: 2px solid rgba(159,77,255,.5);
}
.video-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--w);
}
.video-controls {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.video-label-sm { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.6); letter-spacing: .06em; }
.video-restart { font-size: 11px; font-weight: 600; color: var(--p); cursor: pointer; background: none; border: none; padding: 0; font-family: inherit; }
.progress-bar {
  position: relative;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--p);
  border-radius: 2px;
  width: 0%;
  transition: width 0.08s linear;
}
.video-info {
  position: relative;
  z-index: 2;
  padding: 0 20px 14px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
}
.video-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--w);
}
.progress-wrap { padding: 8px 20px 0; background: rgba(0,0,0,.5); backdrop-filter: blur(8px); }

/* Question state */
.vs-question {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 40px 32px;
  text-align: center;
}
.vs-question__q {
  font-family: 'Manrope', sans-serif;
  font-style: italic;
  font-size: 20px;
  color: var(--w);
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.4;
}
.vs-question__opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}
.opt-btn {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 14px 18px;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: background var(--trans), border-color var(--trans), color var(--trans);
  line-height: 1.4;
}
.opt-btn:hover { background: rgba(159,77,255,.2); border-color: rgba(159,77,255,.5); color: var(--w); }

/* End state */
.vs-end {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 40px 32px;
  text-align: center;
}
.vs-end__heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--w);
  margin-bottom: 12px;
}
.vs-end__body {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
  max-width: 320px;
  line-height: 1.6;
}
.vs-end__restart {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--trans);
}
.vs-end__restart:hover { color: rgba(255,255,255,.6); }

/* ── Diff Cards ───────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.diff-card {
  border: 1px solid rgba(159,77,255,.22);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  background: var(--n);
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--p), rgba(200,128,255,.4), transparent);
}
.diff-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(159,77,255,.85);
  margin-bottom: 14px;
  display: block;
}
.diff-card h3 { font-size: 17px; margin-bottom: 12px; color: #fff; }
.diff-card p { font-size: 14px; line-height: 1.78; color: rgba(255,255,255,.88); }

/* ── Animated aura inside diff-cards (on white section) ────── */
.diff-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 90% 75% at 15% 20%, rgba(159,77,255,.22) 0%, transparent 55%),
              radial-gradient(ellipse 60% 60% at 85% 80%, rgba(100,20,200,.14) 0%, transparent 50%);
  animation: cardAuraDrift 11s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
.diff-card > * { position: relative; z-index: 1; }

/* ── Animated aura inside testimonial-cards ──────────────────── */
.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 90% 75% at 10% 15%, rgba(159,77,255,.28) 0%, transparent 55%),
              radial-gradient(ellipse 55% 65% at 88% 85%, rgba(110,25,210,.18) 0%, transparent 50%);
  animation: cardAuraDrift 13s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
.testimonial-card > * { position: relative; z-index: 1; }

@keyframes cardAuraDrift {
  0%   { opacity: 0.65; transform: scale(1)    translateX(0px); }
  50%  { opacity: 1;    transform: scale(1.04) translateX(4px); }
  100% { opacity: 0.75; transform: scale(1.02) translateX(-3px); }
}

/* ── Light variant for diff-cards on dark sections ─────────── */
.diff-card--light {
  background: #fff;
  border-color: rgba(159,77,255,.18);
}
.diff-card--light::before {
  background: linear-gradient(90deg, var(--p), rgba(159,77,255,.3), transparent);
}
.diff-card--light .diff-num { color: var(--p); }
.diff-card--light h3 { color: var(--n); }
.diff-card--light p { color: var(--gr); }

/* ── About rail layout ────────────────────────────────────── */
.about-rail-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}
.about-rail-text h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.28;
}
.about-rail-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.about-rail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(159,77,255,.0);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  pointer-events: none;
}
.about-rail-img:hover::after {
  border-color: rgba(159,77,255,.35);
  box-shadow: 0 20px 60px rgba(159,77,255,.18);
}
.about-rail-img__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.about-rail-img:hover .about-rail-img__photo {
  transform: scale(1.04);
}
.link-accent {
  color: var(--p);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  transition: gap var(--trans);
}
.link-accent:hover { gap: 8px; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.testimonial-card {
  border: 1px solid rgba(159,77,255,.2);
  border-radius: 16px;
  padding: 32px 28px;
  background: var(--n);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--p), rgba(200,128,255,.4), transparent);
}
.tc-stars { color: var(--p); font-size: 14px; margin-bottom: 18px; letter-spacing: 2px; }
.tc-quote {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,.92);
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.tc-name { font-weight: 700; font-size: 13px; color: #fff; }
.tc-role { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 3px; }

/* ── Framework image placeholder ──────────────────────────── */
.framework-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 20px;
  background: var(--lav);
  border: 1px solid var(--cl);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Framework section (legacy) ──────────────────────────── */
.framework-visual {
  background: var(--n);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.framework-visual__header { margin-bottom: 24px; }
.framework-visual__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--p);
  background: rgba(159,77,255,.15);
  border-radius: 100px;
  padding: 5px 14px;
}
.framework-visual__pillars {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.framework-pillar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s ease;
}
.framework-pillar:last-child { border-bottom: none; }
.framework-pillar:hover { background: rgba(159,77,255,.14); }
.framework-pillar__num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--p);
  flex-shrink: 0;
  min-width: 24px;
}
.framework-pillar__name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.framework-pillar__desc {
  font-size: 12px;
  color: rgba(255,255,255,.42);
  line-height: 1.5;
}
.framework-visual__footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--p);
}

/* ── Insights strip dark background ──────────────────────── */
.insights-strip-dark {
  position: relative;
  background: #0C0420 !important;
  overflow: hidden;
}
.insights-strip-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 85% at 12% 55%, rgba(125,25,225,.52) 0%, transparent 65%),
    radial-gradient(ellipse 45% 65% at 40% 12%, rgba(159,77,255,.30) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 80% 75%, rgba(160,22,180,.28) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 92% 28%, rgba(88,28,215,.22) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.insights-strip-dark .container { position: relative; z-index: 1; }
.insights-strip-dark .rail-label { color: rgba(200,160,255,.85); }
.insights-strip-dark h2 { color: var(--w); }
.insights-strip-dark .link-accent {
  color: var(--w);
  background: rgba(159,77,255,.18);
  border: 1px solid rgba(159,77,255,.45);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background 0.25s ease, border-color 0.25s ease;
  margin: 0;
}
.insights-strip-dark .link-accent:hover {
  background: rgba(159,77,255,.36);
  border-color: rgba(159,77,255,.75);
  color: var(--w);
}

/* ── Blog cards ───────────────────────────────────────────── */
.blog-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  border: 1px solid var(--cl);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
  background: var(--w);
}
.blog-card:hover { box-shadow: 0 4px 24px rgba(31,12,81,.08); transform: translateY(-2px); }
.blog-img {
  height: 160px;
  background: var(--lav);
  position: relative;
  overflow: hidden;
}
.blog-img--1 {
  background: linear-gradient(rgba(31,12,81,.45),rgba(31,12,81,.45)),
              url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.blog-img--2 {
  background: linear-gradient(rgba(31,12,81,.35),rgba(31,12,81,.35)),
              url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.blog-img--3 {
  background: linear-gradient(rgba(31,12,81,.4),rgba(31,12,81,.4)),
              url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.blog-img--4 {
  background: linear-gradient(rgba(31,12,81,.4),rgba(31,12,81,.4)),
              url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=800&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.blog-img--5 {
  background: linear-gradient(rgba(31,12,81,.38),rgba(31,12,81,.38)),
              url('https://images.unsplash.com/photo-1573164713988-8665fc963095?w=800&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.blog-img--6 {
  background: linear-gradient(rgba(31,12,81,.42),rgba(31,12,81,.42)),
              url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=800&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.blog-img--7 {
  background: linear-gradient(rgba(31,12,81,.4),rgba(31,12,81,.4)),
              url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=800&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.blog-body { padding: 20px; }
.blog-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--p);
  background: rgba(159,77,255,.08);
  border-radius: 100px;
  padding: 3px 8px;
  margin-bottom: 10px;
}
.blog-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--n);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-meta { font-size: 11px; color: var(--sp); font-weight: 500; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { background: #fff; }
.faq-header { margin-bottom: 56px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.faq-item {
  background: var(--lav);
  border: 1px solid var(--cl);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.faq-item.open {
  background: #fff;
  border-color: rgba(159,77,255,.3);
  box-shadow: 0 4px 32px rgba(159,77,255,.12);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  font-family: 'Manrope', sans-serif;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: color var(--trans);
}
.faq-q__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.faq-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--p);
  letter-spacing: .08em;
  flex-shrink: 0;
  min-width: 24px;
  opacity: .7;
  transition: opacity 0.3s ease;
}
.faq-item.open .faq-num { opacity: 1; }
.faq-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--n);
  line-height: 1.4;
  transition: color var(--trans);
}
.faq-q:hover .faq-text { color: var(--p); }
.faq-item.open .faq-text { color: var(--p); }
.faq-chevron {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--cl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sp);
  transition: transform 0.4s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--p);
  border-color: var(--p);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-a-inner {
  padding: 0 28px 28px 64px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--gr);
}

/* ── Close CTA block ──────────────────────────────────────── */
.close-cta {
  background: var(--n);
  padding: 100px 0;
  text-align: center;
}
.close-cta h2 { color: var(--w); margin-bottom: 16px; }
.close-cta p { color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 36px; }
.close-cta .btn-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact Form ─────────────────────────────────────────── */
.contact-form-wrap {
  max-width: 640px;
  margin: 48px auto 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--n);
  margin-bottom: 6px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--sm);
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--n);
  background: var(--w);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(159,77,255,.1);
}
.form-input.error { border-color: #E53E3E; }
.form-input.valid { border-color: #38A169; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-error {
  font-size: 11px;
  color: #E53E3E;
  margin-top: 4px;
  display: none;
}
.form-error.show { display: block; }
.form-success {
  background: rgba(56,161,105,.1);
  border: 1px solid rgba(56,161,105,.3);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #2F855A;
  display: none;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--n);
  padding: 96px 0 0;
  color: rgba(255,255,255,.5);
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
}
.footer__left .label { color: rgba(159,77,255,.8); }
.footer__heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--w);
  line-height: 1.25;
  margin-bottom: 16px;
  margin-top: 8px;
}
.footer__body { font-size: 13px; line-height: 1.75; margin-bottom: 20px; }
.footer__guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.footer__guarantee::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--p);
  flex-shrink: 0;
}
.footer__right .form-label { color: rgba(255,255,255,.6); }
.footer__right .form-input,
.footer__right .form-textarea {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--w);
}
.footer__right .form-input::placeholder,
.footer__right .form-textarea::placeholder { color: rgba(255,255,255,.25); }
.footer__right .form-input:focus,
.footer__right .form-textarea:focus {
  border-color: var(--p);
  background: rgba(255,255,255,.08);
}
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer__bar-brand span {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: rgba(255,255,255,.5);
  letter-spacing: -0.03em;
}
.footer__bar-links {
  display: flex;
  gap: 20px;
}
.footer__bar-links a {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  transition: color var(--trans);
}
.footer__bar-links a:hover { color: rgba(255,255,255,.7); }
.footer__bar-copy { font-size: 11px; color: rgba(255,255,255,.25); }

/* ── Why Coffee cards ─────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  border: 1px solid var(--cl);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--w);
}
.why-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--p);
  margin-bottom: 8px;
  display: block;
}
.why-card h3 { font-size: 15px; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--gr); line-height: 1.65; }

/* ── Services list ────────────────────────────────────────── */
.services-list { margin-top: 40px; display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 0 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--cl);
  align-items: start;
}
.service-row:last-child { border-bottom: none; }
.service-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--p);
  padding-top: 2px;
}
.service-body {}
.service-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--n);
  margin-bottom: 8px;
}
.service-desc { font-size: 13px; color: var(--gr); line-height: 1.7; max-width: 560px; }
.service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--p);
  background: rgba(159,77,255,.08);
  border-radius: 100px;
  padding: 4px 10px;
  white-space: nowrap;
  margin-top: 4px;
}

/* ── Values grid ──────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  border: 1px solid var(--sm);
  border-radius: 14px;
  padding: 32px 28px;
  background: var(--w);
  box-shadow: 0 2px 12px rgba(31,12,81,.06);
}
.value-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--n); }
.value-card p { font-size: 14px; color: var(--gr); line-height: 1.78; }

/* Value card num label */
.value-card__num {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 16px;
}

/* Dark variant — scoped to .section--dark */
.section--dark .value-card {
  background: #1F0C51;
  border: 1px solid rgba(159,77,255,.25);
  border-radius: 18px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.section--dark .value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #9F4DFF, rgba(200,128,255,.5), rgba(159,77,255,0));
  border-radius: 18px 18px 0 0;
}
.section--dark .value-card h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 12px;
}
.section--dark .value-card p {
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.78;
}
.section--dark .value-card:hover {
  background: #2A1068;
  border-color: rgba(159,77,255,.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(159,77,255,.30);
}

/* Dark section form inputs (contact form) */
.section--dark .form-label { color: rgba(255,255,255,.65); }
.section--dark .form-input,
.section--dark .form-textarea {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}
.section--dark .form-input::placeholder,
.section--dark .form-textarea::placeholder { color: rgba(255,255,255,.22); }
.section--dark .form-input:focus,
.section--dark .form-textarea:focus {
  border-color: var(--p);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 3px rgba(159,77,255,.15);
}

/* ── Journey timeline ─────────────────────────────────────── */
.timeline-section {
  padding: var(--section-py) 0;
  background: var(--w);
  position: relative;
}
.timeline-section .container { max-width: 860px; }
.timeline-list {
  position: relative;
  margin-top: 48px;
  padding-left: 0;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--p), rgba(159,77,255,.18));
}
.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 28px;
  margin-bottom: 48px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
  flex-shrink: 0;
}
.timeline-dot__circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--p);
  border: 3px solid var(--w);
  box-shadow: 0 0 0 2px rgba(159,77,255,.35);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-content {}
.timeline-year {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 6px;
}
.timeline-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--n);
  margin-bottom: 8px;
  line-height: 1.25;
}
.timeline-content p {
  font-size: 14px;
  color: var(--gr);
  line-height: 1.78;
}
@media (max-width: 600px) {
  .timeline-list::before { left: 19px; }
  .timeline-item { grid-template-columns: 40px 1fr; gap: 0 16px; }
  .timeline-dot { width: 40px; }
}

/* ── About hero ───────────────────────────────────────────── */
.about-hero {
  padding: 80px 0;
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-hero__inner--single {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.about-hero__photo {
  background: var(--ph);
  border-radius: 10px;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.about-hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.photo-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gr);
  background: var(--w);
  border-radius: 6px;
  padding: 8px 12px;
}

/* ── 404 Page ─────────────────────────────────────────────── */
.page-404 {
  background: var(--n);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.page-404 .label { color: var(--p); font-size: 14px; margin-bottom: 16px; }
.page-404 h1 {
  color: var(--w);
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 20px;
}
.page-404 p {
  color: rgba(255,255,255,.5);
  font-size: 15px;
  max-width: 420px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.page-404 .btn-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.page-404 .footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.page-404 .footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,.2);
  transition: color var(--trans);
}
.page-404 .footer-links a:hover { color: rgba(255,255,255,.5); }


/* ── Framework content two-column ─────────────────────────── */
.framework-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .framework-content { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Discovery CTA (services) — light ─────────────────────── */
.discovery-cta {
  text-align: center;
  padding: 96px 0 100px;
  background: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--cl);
}
.discovery-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 20% 55%, rgba(159,77,255,.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 60% at 80% 35%, rgba(159,77,255,.05) 0%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}
.discovery-cta .container { position: relative; z-index: 1; }
.discovery-cta h2 { color: var(--n); margin-bottom: 16px; }
.discovery-cta p { font-size: 14px; color: var(--gr); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.discovery-cta .btn-wrap { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Discovery shimmer button ─────────────────────────────── */
.btn-discovery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #9F4DFF 0%, #B86AFF 35%, #C880FF 55%, #9F4DFF 100%);
  background-size: 200%;
  animation: trustShimmer 2.8s linear infinite;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: -.005em;
  white-space: nowrap;
  line-height: 1;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease,
              background 0.2s ease, color 0.2s ease;
}
.btn-discovery:hover {
  background: var(--n);
  animation: none;
  color: #fff;
  transform: scale(1.09);
  box-shadow: 0 20px 56px rgba(31,12,81,.5);
}

/* ── Focus states (accessibility) ────────────────────────── */
:focus-visible {
  outline: 2px solid var(--p);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Card hover interactions (CSS-only, no JS tilt) ──────────── */
.diff-card, .testimonial-card, .blog-card, .value-card,
.why-card, .insights-card {
  will-change: transform;
  transition: transform 0.32s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.32s ease;
}
.diff-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 22px 56px rgba(159,77,255,.38), 0 0 0 2px rgba(159,77,255,.24);
}
.diff-card:hover::after {
  opacity: 1.5;
  animation-duration: 5s;
}
.testimonial-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 22px 56px rgba(159,77,255,.38), 0 0 0 2px rgba(159,77,255,.24);
}
.testimonial-card:hover::after {
  opacity: 1.5;
  animation-duration: 5s;
}
.blog-card:hover, .value-card:hover, .why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(159,77,255,.18);
}
.insights-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(159,77,255,.18);
}

/* ── Divider ──────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--cl); margin: 0; }

/* ── Section heading helpers ──────────────────────────────── */
.section-head { margin-bottom: 40px; }
.section-head h2 { margin-top: 8px; }
.section-head p { font-size: 15px; color: var(--ar); max-width: 560px; margin-top: 14px; line-height: 1.75; }

/* ── Hero variants (inner pages) ─────────────────────────── */
.hero--page {
  padding: 72px 0 64px;
}
.hero--page.hero--lav { background: var(--lav); }
.hero--centered { text-align: center; }
.hero--centered h1 { margin: 0 auto 16px; max-width: 520px; }
.hero--centered .hero__sub { margin: 0 auto 32px; }

/* ── Guarantee line ───────────────────────────────────────── */
.guarantee-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sp);
  margin-top: 20px;
}
.guarantee-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--p);
  flex-shrink: 0;
}

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

/* 900px — 2-col grids → 1-col */
@media (max-width: 900px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .process-stack-layout { grid-template-columns: 1fr; gap: 48px; padding: 80px 0 100px; }
  .process-stack-left { position: static; }
  .process-stack-h2 { font-size: 28px; }
  .about-rail-content { grid-template-columns: 1fr; }
  .about-rail-img { max-width: 380px; }
  .meet-jeremy-split { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .about-hero__inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr !important; }
  .why-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 40px 1fr; }
  .service-tag { grid-column: 2; }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr !important; }
}

/* 1024px — tablet: compress nav before hamburger kicks in */
@media (max-width: 1024px) {
  .nav__inner { padding: 0 32px; }
  .nav.scrolled .nav__inner { padding: 0 24px; margin: 10px 24px 0; }
  .nav__links a, .nav__links button { font-size: 13px; padding: 7px 10px; }
  .nav__links a, .nav__links > .nav__dropdown-wrap { margin: 0 2px; }
  .nav__actions .btn { font-size: 12px; padding: 8px 14px; }
}

/* 768px — mobile nav */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav__inner { padding: 0 24px; }
  .nav.scrolled .nav__inner { margin: 8px 12px 0; padding: 0 20px; height: 56px; }
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .proof-bar__inner {
    padding: 0 24px;
  }
  .hero { padding: 72px 0 56px; }
  .footer__main { grid-template-columns: 1fr; gap: 40px; }
  .footer__bar { flex-direction: column; text-align: center; gap: 10px; padding: 20px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  /* Rail sections collapse */
  .rail-section .container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .rail-label {
    margin-bottom: 8px;
    padding-top: 0;
  }
}

/* 480px — typography scale down */
@media (max-width: 480px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  .hero__sub { font-size: 13px; }
  .proof-bar__num { font-size: 18px; }
  .proof-bar__inner { grid-template-columns: 1fr; gap: 20px 0; }
  .proof-bar__item + .proof-bar__item::before { display: none; }
  .section { padding: 48px 0; }
  .contact-form-wrap { margin-top: 32px; }
  /* Process cards: disable sticky on small screens, just flow naturally */
  .process-card { position: relative; top: auto; z-index: auto; margin-bottom: 16px; }
  .process-aura-wrap { position: relative; height: auto; margin-bottom: 0; }
}

/* ── Insights page ────────────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.insights-card {
  border: 1px solid var(--cl);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--w);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
  cursor: pointer;
}
/* insights-card hover handled by shared rule above */
.insights-img {
  height: 220px;
  position: relative;
  background-color: var(--lav);
  overflow: hidden;
}
.insights-img .blog-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(159,77,255,.92);
  color: #fff;
  backdrop-filter: blur(4px);
}
.insights-body { padding: 24px 22px 22px; }
.insights-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--n);
  line-height: 1.35;
  margin-bottom: 10px;
}
.insights-meta { font-size: 11px; color: var(--sp); font-weight: 500; }

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .insights-grid { grid-template-columns: 1fr; }
  .process-card { padding: 32px 28px 36px; }
  .process-card-title { font-size: 20px; }
}

/* ── Cards used as links ──────────────────────────────────── */
a.insights-card,
a.blog-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ── Blog Post Page ───────────────────────────────────────── */
.post-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--cl);
}
.post-hero .container { max-width: 800px; }
.post-back {
  font-size: 13px;
  font-weight: 600;
  color: var(--p);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  transition: gap var(--trans);
}
.post-back:hover { gap: 10px; }
.post-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--n);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 720px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--sp);
  font-weight: 500;
  flex-wrap: wrap;
}
.post-meta .blog-tag { margin: 0; }
.post-img-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}
.post-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 48px 0;
  display: block;
}
.post-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px 80px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--gr);
}
.post-body h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--n);
  margin: 48px 0 16px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.post-body p { margin-bottom: 22px; }
.post-body strong { color: var(--n); font-weight: 700; }
.post-cta {
  background: var(--n);
  color: #fff;
  padding: 80px 48px;
  text-align: center;
}
.post-cta h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.02em;
}
.post-cta p { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 28px; }
@media (max-width: 768px) {
  .post-img-wrap, .post-body { padding: 0 24px 60px; }
  .post-img { height: 240px; margin: 32px 0; }
  .post-hero { padding: 56px 0 40px; }
  .post-cta { padding: 60px 24px; }
}

/* ── Print styles ─────────────────────────────────────────── */
@media print {
  .nav, .footer, .video-player, .loading-screen { display: none !important; }
  body { color: #000; }
  a { text-decoration: underline; }
}

/* ══════════════════════════════════════════════════════════
   DARK EDITORIAL HERO — aura, transparent nav, dark layout
   ══════════════════════════════════════════════════════════ */

/* ── Logo path colour control ─────────────────────────────── */
.z-primary { fill: #1F0C51; transition: fill 0.3s ease; }
.z-step    { fill: #9F4DFF; opacity: .7; transition: fill 0.3s ease, opacity 0.3s ease; }

/* ── Transparent nav on dark hero ─────────────────────────── */
body.hero-page .nav:not(.scrolled),
body.inner-page .nav:not(.scrolled) {
  background: transparent;
  border-bottom-color: rgba(255,255,255,.06);
  box-shadow: none;
}
body.hero-page .nav:not(.scrolled) .nav__wordmark,
body.inner-page .nav:not(.scrolled) .nav__wordmark { color: #fff; }
body.hero-page .nav:not(.scrolled) .nav__links a,
body.hero-page .nav:not(.scrolled) .nav__links button,
body.inner-page .nav:not(.scrolled) .nav__links a,
body.inner-page .nav:not(.scrolled) .nav__links button {
  color: rgba(255,255,255,.85);
}
body.hero-page .nav:not(.scrolled) .nav__links a::before,
body.hero-page .nav:not(.scrolled) .nav__links button::before,
body.inner-page .nav:not(.scrolled) .nav__links a::before,
body.inner-page .nav:not(.scrolled) .nav__links button::before {
  background: rgba(255,255,255,.13);
}
body.hero-page .nav:not(.scrolled) .nav__links a:hover,
body.hero-page .nav:not(.scrolled) .nav__links button:hover,
body.inner-page .nav:not(.scrolled) .nav__links a:hover,
body.inner-page .nav:not(.scrolled) .nav__links button:hover {
  color: #fff;
  background: transparent;
}
body.hero-page .nav:not(.scrolled) .nav__links a.active,
body.inner-page .nav:not(.scrolled) .nav__links a.active { color: #fff; }
body.hero-page .nav:not(.scrolled) .nav__login,
body.inner-page .nav:not(.scrolled) .nav__login { color: rgba(255,255,255,.65); }
body.hero-page .nav:not(.scrolled) .nav__login:hover,
body.inner-page .nav:not(.scrolled) .nav__login:hover { color: #fff; }
body.hero-page .nav:not(.scrolled) .chevron,
body.inner-page .nav:not(.scrolled) .chevron { border-color: rgba(255,255,255,.65); }
body.hero-page .nav:not(.scrolled) .z-primary,
body.inner-page .nav:not(.scrolled) .z-primary { fill: #fff; }
body.hero-page .nav:not(.scrolled) .z-step,
body.inner-page .nav:not(.scrolled) .z-step    { fill: rgba(255,255,255,.35); opacity: 1; }
body.hero-page .nav:not(.scrolled) .nav__hamburger span,
body.inner-page .nav:not(.scrolled) .nav__hamburger span { background: #fff; }

/* Dropdown items must stay readable even on transparent (dark-bg) nav.
   Needs same specificity as the white-text rule above to win the cascade. */
body.hero-page .nav:not(.scrolled) .nav__dropdown a,
body.inner-page .nav:not(.scrolled) .nav__dropdown a { color: var(--n) !important; }
body.hero-page .nav:not(.scrolled) .nav__dropdown a:hover,
body.inner-page .nav:not(.scrolled) .nav__dropdown a:hover { color: var(--p) !important; background: rgba(159,77,255,.09) !important; }
body.hero-page .nav:not(.scrolled) .nav__dropdown a span,
body.inner-page .nav:not(.scrolled) .nav__dropdown a span { color: var(--sp) !important; }

/* ── Condensed inner-page hero ───────────────────────────── */
.page-hero {
  position: relative;
  background: #0C0420;
  overflow: hidden;
  padding: 160px 0 96px;
  text-align: center;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 130% at 50% 110%, rgba(130,25,235,.60) 0%, transparent 60%),
    radial-gradient(ellipse 65% 80% at 80% 10%, rgba(155,55,255,.38) 0%, transparent 62%),
    radial-gradient(ellipse 50% 60% at 18% 55%, rgba(165,18,195,.28) 0%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.page-hero .label {
  color: rgba(199,128,255,.85);
  letter-spacing: .14em;
}
.page-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: -0.034em;
  line-height: 1.16;
  max-width: 700px;
  margin: 16px auto 0;
}
.page-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  line-height: 1.85;
  max-width: 540px;
  margin: 20px auto 0;
}

/* ── Dark hero section ────────────────────────────────────── */
.hero-dark {
  position: relative;
  min-height: 100vh;
  background: #0C0420;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* subtle static gradient base so left stays readable even before aura loads */
.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(130,25,235,.42) 0%, transparent 70%),
              radial-gradient(ellipse 50% 60% at 90% 20%, rgba(158,50,255,.28) 0%, transparent 60%),
              radial-gradient(ellipse 40% 50% at 70% 80%, rgba(165,18,195,.28) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Aura canvas ──────────────────────────────────────────── */
.aura-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ── Hero dark content ────────────────────────────────────── */
.hero-dark__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 160px 80px 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-dark__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 10px 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.9);
  margin-bottom: 32px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Animated pulsing dot in badge */
.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--p);
  flex-shrink: 0;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(159,77,255,.6); }
  50%       { opacity: .7; box-shadow: 0 0 0 6px rgba(159,77,255,0); }
}

/* Animated separator line between badge and h1 */
.hero-line-anim {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.hero-line-anim__bar {
  display: block;
  height: 2px;
  background: var(--p);
  border-radius: 2px;
  animation: lineGrow 2.4s ease-in-out infinite alternate;
}
@keyframes lineGrow {
  from { width: 28px; opacity: .45; }
  to   { width: 60px; opacity: 1; }
}

.hero-dark h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.45;
  letter-spacing: -0.05em;
  max-width: 980px;
  margin-bottom: 28px;
}

.hero-dark__tagline {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 600;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
  max-width: 580px;
  margin-bottom: 20px;
}
.hero-dark__highlight {
  display: inline;
  background: linear-gradient(90deg, #9F4DFF 0%, #C880FF 50%, #9F4DFF 100%);
  background-size: 200%;
  color: #fff;
  padding: 1px 10px 3px;
  border-radius: 7px;
  font-style: normal;
  animation: trustShimmer 3s linear infinite;
}
@keyframes trustShimmer {
  0%   { background-position: 0%   center; }
  100% { background-position: 200% center; }
}

.hero-dark__sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 44px;
}

/* ── Hero dark CTAs ───────────────────────────────────────── */
.hero-dark__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.btn-coffee {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #9F4DFF 0%, #B86AFF 35%, #C880FF 55%, #9F4DFF 100%);
  background-size: 200%;
  animation: trustShimmer 2.8s linear infinite;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px 12px 12px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity .15s ease, transform .15s ease, box-shadow .15s ease;
  border: none;
  cursor: pointer;
  letter-spacing: -.01em;
}
.btn-coffee:hover {
  opacity: 1;
  background: #B86AFF;
  animation: none;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 40px rgba(159,77,255,.5);
}
.btn-coffee__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: background .15s ease;
  overflow: hidden;
  position: relative;
}
.btn-coffee:hover .btn-coffee__icon { background: rgba(255,255,255,.3); }
.btn-coffee__arrow { display: block; }
.btn-coffee:hover .btn-coffee__arrow {
  animation: arrowShoot 0.55s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes arrowShoot {
  0%   { transform: translateX(0);    opacity: 1; }
  40%  { transform: translateX(160%); opacity: 0; }
  41%  { transform: translateX(-160%);opacity: 0; }
  100% { transform: translateX(0);    opacity: 1; }
}

/* ── Hero dark social proof ───────────────────────────────── */
.hero-dark__proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.58);
}
.hero-dark__proof .avatar-stack .avatar {
  border-color: rgba(255,255,255,.2);
}
.hero-dark__proof strong {
  color: rgba(255,255,255,.92);
  font-weight: 700;
}

/* ── Scroll indicator ─────────────────────────────────────── */
.hero-dark__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.25);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-dark__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Proof bar after dark hero ────────────────────────────── */
.hero-dark + .proof-bar {
  border-top: none;
}

/* ── Responsive dark hero ─────────────────────────────────── */
@media (max-width: 768px) {
  .hero-dark__inner { padding: 120px 28px 80px; }
  .hero-dark h1 { font-size: 38px; line-height: 1.25; max-width: none; }
  .hero-dark__sub { font-size: 15px; max-width: none; }
  .hero-dark__scroll { display: none; }
  .hero-dark__badge { font-size: 12px; padding: 8px 16px; }
  .hero-line-anim { display: none; }
}
@media (max-width: 480px) {
  .hero-dark__inner { padding: 100px 20px 72px; }
  .hero-dark h1 { font-size: 34px; line-height: 1.25; }
  .hero-dark__sub { font-size: 15px; }
  .hero-dark__actions { gap: 10px; flex-direction: column; align-items: flex-start; }
  .btn-coffee { font-size: 14px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 0 64px; }
  .page-hero__inner { padding: 0 24px; }
}
@media (max-width: 480px) {
  .page-hero { padding: 104px 0 56px; }
  .page-hero__inner { padding: 0 20px; }
}


/* Strip baked-in flat overlay when blog-img used on editorial card */
.blog-editorial-card.blog-img--1 { background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&q=85&auto=format&fit=crop') center/cover no-repeat; }
.blog-editorial-card.blog-img--2 { background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&q=80&auto=format&fit=crop') center/cover no-repeat; }
.blog-editorial-card.blog-img--3 { background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&q=80&auto=format&fit=crop') center/cover no-repeat; }

/* ── Blog Editorial Grid (homepage) ──────────────────────── */
.blog-editorial-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 14px;
  height: 520px;
}
.blog-editorial-sidebar {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.blog-editorial-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  transition: transform .35s ease;
}
.blog-editorial-card:hover { transform: scale(.975) rotate(0.2deg); }
.blog-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,1,24,.90) 0%, rgba(8,1,24,.22) 55%, transparent 100%);
  transition: background .4s ease;
}
.blog-editorial-card:hover .blog-editorial-overlay {
  background: linear-gradient(to top, rgba(8,1,24,.96) 0%, rgba(8,1,24,.32) 68%, transparent 100%);
}
.blog-editorial-body {
  position: relative;
  z-index: 1;
  padding: 22px 24px 16px;
}
.blog-editorial-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(200,160,255,.90);
  background: rgba(159,77,255,.25);
  border-radius: 100px;
  padding: 3px 9px;
  margin-bottom: 10px;
}
.blog-editorial-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 8px;
}
.blog-editorial-card--hero .blog-editorial-title {
  font-size: clamp(20px, 2vw, 26px);
}
.blog-editorial-meta {
  font-size: 11px;
  color: rgba(255,255,255,.42);
  font-weight: 500;
}
.blog-editorial-arrow {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 1;
  color: rgba(255,255,255,.45);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.blog-editorial-card:hover .blog-editorial-arrow {
  background: var(--p);
  color: #fff;
  transform: translate(2px, -2px);
}
@media (max-width: 820px) {
  .blog-editorial-grid { grid-template-columns: 1fr; height: auto; gap: 12px; }
  .blog-editorial-card--hero { height: 320px; }
  .blog-editorial-sidebar { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .blog-editorial-sidebar .blog-editorial-card { height: 200px; }
}
@media (max-width: 560px) {
  .blog-editorial-sidebar { grid-template-columns: 1fr; }
  .blog-editorial-sidebar .blog-editorial-card { height: 200px; }
}

/* ── Fees dark pricing section ────────────────────────────── */
.fees-dark-section {
  background: #0C0420;
  position: relative;
  overflow: hidden;
  padding: 108px 0 128px;
}
.fees-dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at 18% 30%, rgba(125,25,225,.52) 0%, transparent 65%),
    radial-gradient(ellipse 50% 65% at 82% 62%, rgba(159,77,255,.38) 0%, transparent 60%),
    radial-gradient(ellipse 42% 55% at 54% 90%, rgba(168,20,185,.28) 0%, transparent 55%),
    radial-gradient(ellipse 36% 50% at 90% 22%, rgba(88,28,215,.22) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.fees-dark-section .container {
  position: relative;
  z-index: 1;
}

/* Header */
.fees-header {
  text-align: center;
  margin-bottom: 64px;
}
.fees-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 20px;
}
.fees-h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.fees-sub {
  font-size: 16px;
  color: rgba(255,255,255,.52);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* Card grid */
.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Card base */
.fees-card {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.fees-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 2px rgba(159,77,255,.35), 0 20px 60px rgba(159,77,255,.22), 0 8px 32px rgba(31,12,81,.18);
}

/* Featured card */
.fees-card--featured {
  border: 2px solid rgba(159,77,255,.55);
  box-shadow: 0 0 0 4px rgba(159,77,255,.10), 0 16px 52px rgba(31,12,81,.22);
}
.fees-card--featured:hover {
  box-shadow: 0 0 0 4px rgba(159,77,255,.18), 0 24px 70px rgba(31,12,81,.34);
}

/* Card sections */
.fees-card__head {
  padding: 36px 36px 28px;
  border-bottom: 1px solid rgba(31,12,81,.08);
}
.fees-card__body {
  padding: 28px 36px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Badge row */
.fees-card__top {
  margin-bottom: 20px;
}
.fees-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gr);
  background: var(--cl);
  border-radius: 100px;
  padding: 5px 12px;
}
.fees-badge--popular {
  color: var(--p);
  background: rgba(159,77,255,.12);
  border: 1px solid rgba(159,77,255,.30);
}

/* Card name + desc */
.fees-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--n);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.fees-desc {
  font-size: 13.5px;
  color: var(--gr);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Price block */
.fees-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.fees-amount {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--n);
  letter-spacing: -.04em;
  line-height: 1;
}
.fees-per {
  font-size: 13px;
  color: var(--sp);
  font-weight: 500;
}

/* CTA buttons */
.fees-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  border-radius: 100px;
  padding: 14px 24px;
  margin-bottom: 28px;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  text-decoration: none;
}
.fees-btn--dark {
  background: var(--n);
  color: #fff;
}
.fees-btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(31,12,81,.30);
}
.fees-btn--purple {
  background: linear-gradient(90deg, #9F4DFF 0%, #C880FF 40%, #9F4DFF 80%);
  background-size: 200%;
  color: #fff;
  box-shadow: 0 4px 20px rgba(159,77,255,.35);
  animation: trustShimmer 3s linear infinite;
  position: relative;
  overflow: hidden;
}
.fees-btn--purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(159,77,255,.52);
  animation-duration: 1.5s;
}

/* Includes label */
.fees-includes-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sp);
  margin-bottom: 16px;
}

/* Feature list */
.fees-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.fees-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ar);
  font-weight: 500;
  line-height: 1.4;
}
.fees-feat-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(31,12,81,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--n);
}
.fees-feat-icon--purple {
  background: rgba(159,77,255,.12);
  color: var(--p);
}

/* Footer note */
.fees-note {
  font-size: 12px;
  color: var(--sp);
  text-align: center;
  margin-top: auto;
}

/* ─────────────────────────────────────────────────────────────
   ═══ FEES VERTICAL STACK LAYOUT ════════════════════════════
   ═══════════════════════════════════════════════════════════ */
.fees-stack-section {
  position: relative;
  background: #0C0420;
  isolation: isolate;
  padding: 100px 0 140px;
}
.fees-stack-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 88% at 14% 55%, rgba(125,25,225,.50) 0%, transparent 63%),
    radial-gradient(ellipse 50% 72% at 82% 20%, rgba(155,55,255,.33) 0%, transparent 58%),
    radial-gradient(ellipse 44% 62% at 48% 88%, rgba(165,18,195,.22) 0%, transparent 55%),
    radial-gradient(ellipse 36% 50% at 88% 72%, rgba(88,28,215,.18) 0%, transparent 52%);
  animation: auraDrift 14s ease-in-out infinite alternate;
  transform-origin: center center;
  pointer-events: none;
  z-index: 0;
}
.fees-stack-section > * { position: relative; z-index: 1; }
.fees-stack-outer { position: relative; z-index: 1; }
.fees-stack-center {
  max-width: 900px;
  margin: 0 auto;
}
.fees-stack-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
  padding: 120px 0 140px;
}
.fees-stack-left {
  position: sticky;
  top: 108px;
}
.fees-stack-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(200,160,255,.85);
  margin-bottom: 16px;
}
.fees-stack-h1 {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.fees-stack-sub {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,.52);
  max-width: 34ch;
  margin-bottom: 36px;
}
.fees-stack-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #9F4DFF, #C880FF, #9F4DFF);
  background-size: 200%;
  animation: trustShimmer 3s linear infinite;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.fees-stack-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(159,77,255,.50);
  animation-duration: 1.5s;
}
.fees-stack-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Services-page bento variant: white card with dark navy frame on light section */
.fees-tier--svc {
  background: #fff;
  border: 1.5px solid rgba(31,12,81,.14);
  box-shadow: 0 4px 28px rgba(31,12,81,.07), inset 0 1px 0 rgba(255,255,255,.9);
}
.fees-tier--svc.fees-tier--featured {
  border: 2px solid rgba(159,77,255,.48);
  box-shadow: 0 0 0 4px rgba(159,77,255,.07), 0 12px 40px rgba(31,12,81,.10);
}
/* Each tier card stacks on scroll */
.fees-tier {
  position: sticky;
  top: calc(96px + var(--i, 0) * 18px);
  z-index: calc(1 + var(--i, 0));
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 50px rgba(31,12,81,.28), inset 0 1px 0 rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.55);
}
.fees-tier--featured {
  border: 2px solid rgba(159,77,255,.55);
  box-shadow: 0 0 0 4px rgba(159,77,255,.10), 0 16px 60px rgba(31,12,81,.32);
}
.fees-tier__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 220px;
}
.fees-tier__left {
  padding: 40px 32px;
  border-right: 1px solid rgba(31,12,81,.08);
  display: flex;
  flex-direction: column;
}
.fees-tier__right {
  padding: 40px 40px;
}
.fees-tier__badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 14px;
  width: fit-content;
}
.fees-tier__badge--free { background: rgba(31,12,81,.07); color: var(--gr); }
.fees-tier__badge--popular { background: rgba(159,77,255,.12); color: var(--p); border: 1px solid rgba(159,77,255,.28); }
.fees-tier__badge--ongoing { background: rgba(31,12,81,.07); color: var(--gr); }
.fees-tier__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--n);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.fees-tier__desc {
  font-size: 13px;
  color: var(--gr);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.fees-tier__amount {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--n);
  letter-spacing: -.04em;
  line-height: 1;
}
.fees-tier__per {
  font-size: 12px;
  color: var(--gr);
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 20px;
}
.fees-tier__cta {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  padding: 12px 20px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.fees-tier__cta--dark { background: var(--n); color: #fff; }
.fees-tier__cta--dark:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(31,12,81,.30); }
.fees-tier__cta--purple {
  background: linear-gradient(90deg, #9F4DFF, #C880FF, #9F4DFF);
  background-size: 200%;
  color: #fff;
  animation: trustShimmer 3s linear infinite;
}
.fees-tier__cta--purple:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(159,77,255,.50); animation-duration: 1.5s; }
.fees-tier__features-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 16px;
}
.fees-tier__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fees-tier__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ar);
  font-weight: 500;
  line-height: 1.4;
}
.fees-tier__item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(31,12,81,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--n);
}
.fees-tier__item-icon--purple { background: rgba(159,77,255,.12); color: var(--p); }
.fees-tier__note {
  font-size: 12px;
  color: var(--gr);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--cl);
}

/* ── About page timeline split layout ───────────────────────── */
.about-timeline-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}
.about-timeline-right {
  position: sticky;
  top: 120px;
}
.about-timeline-right img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

/* ── Fees responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .fees-grid { grid-template-columns: 1fr 1fr; }
  .fees-grid .fees-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
}
@media (max-width: 680px) {
  .fees-dark-section { padding: 80px 0 100px; }
  .fees-grid { grid-template-columns: 1fr; }
  .fees-grid .fees-card:last-child { grid-column: auto; max-width: none; }
  .fees-card__head, .fees-card__body { padding-left: 24px; padding-right: 24px; }
  .fees-header { margin-bottom: 48px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE TABS  (Feature108-style)
   ═══════════════════════════════════════════════════════════ */
.stabs-section {
  background: var(--w);
  position: relative;
  isolation: isolate;
  padding: var(--section-py) 0;
}
.stabs-section > .container { position: relative; z-index: 1; }
.stabs-header  { text-align: center; margin-bottom: 48px; }
.stabs-header h2 { margin-top: 8px; color: var(--n); }
.stabs-header .label { color: var(--p); }

/* ── Dark variant for homepage stabs ─────────────────────── */
.stabs-section.stabs-dark {
  background: #0C0420;
}
.stabs-section.stabs-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 88% at 14% 55%, rgba(125,25,225,.50) 0%, transparent 63%),
    radial-gradient(ellipse 50% 72% at 82% 20%, rgba(155,55,255,.33) 0%, transparent 58%),
    radial-gradient(ellipse 44% 62% at 48% 88%, rgba(165,18,195,.22) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.stabs-dark .stabs-header h2 { color: #fff; }
.stabs-dark .stabs-header .label { color: rgba(199,128,255,.85); }
.stabs-dark .stabs-list {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}
.stabs-dark .stab-btn { color: rgba(255,255,255,.55); }
.stabs-dark .stab-btn.active { background: #fff; color: var(--n); box-shadow: 0 2px 20px rgba(0,0,0,.28); }
.stabs-dark .stab-btn:hover:not(.active) { color: rgba(255,255,255,.88); background: rgba(255,255,255,.08); }
.stabs-dark .stabs-panels {
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 60px rgba(0,0,0,.28);
  border-color: rgba(255,255,255,.6);
}
/* Non-selected tabs: brighter so they're readable on dark bg */
.stabs-dark .stab-btn { color: rgba(255,255,255,.75); }
/* What's included card: white inside the panel */
.stabs-dark .stab-detail-card {
  background: #fff;
  border: 1px solid var(--cl);
  box-shadow: 0 2px 20px rgba(31,12,81,.06);
}
.stabs-dark .stab-detail-card::before { display: none; }
.stabs-dark .stab-detail-tag { color: var(--n); font-size: 11px; }
.stabs-dark .stab-detail-list li { color: var(--ar); }
.stabs-dark .stab-detail-list li svg path { stroke: var(--p); }
.stabs-dark .stab-detail-note { color: var(--gr); border-color: var(--cl); }

/* ── Tab bar ─────────────────────────────────────────────── */
.stabs-list {
  display: flex;
  gap: 6px;
  background: var(--lav);
  border: 1px solid var(--cl);
  border-radius: 16px;
  padding: 6px;
  max-width: 860px;
  margin: 0 auto 28px;
  flex-wrap: wrap;
}
.stab-btn {
  flex: 1;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 18px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sp);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all .22s ease;
  font-family: 'Manrope', sans-serif;
  white-space: nowrap;
}
.stab-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: .45;
  transition: opacity .22s ease, color .22s ease;
}
.stab-btn.active {
  background: var(--n);
  color: #fff;
  box-shadow: 0 2px 16px rgba(31,12,81,.25);
}
.stab-btn.active svg { opacity: 1; color: var(--p); }
.stab-btn:hover:not(.active) { color: var(--n); background: rgba(31,12,81,.06); }

/* ── Panels wrapper ──────────────────────────────────────── */
.stabs-panels {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--w);
  border-radius: 24px;
  padding: 56px 64px;
  box-shadow: 0 4px 40px rgba(31,12,81,.08);
  border: 1px solid var(--cl);
}

/* ── Individual panel ────────────────────────────────────── */
.stab-panel { display: none; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.stab-panel.active {
  display: grid;
  animation: stabFadeIn .28s ease;
}
@keyframes stabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Panel left: text ────────────────────────────────────── */
.stab-badge-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(159,77,255,.28);
  color: var(--p);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(159,77,255,.07);
  margin-bottom: 18px;
}
.stab-panel h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 800;
  color: var(--n);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.stab-text-body {
  font-size: 15px;
  color: var(--gr);
  line-height: 1.82;
  margin-bottom: 32px;
  max-width: 400px;
}

/* ── Panel right: image placeholder ─────────────────────── */
.stab-img-placeholder {
  border-radius: 20px;
  min-height: 340px;
  background: var(--lav);
  border: 1px solid var(--cl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.stab-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 70% 30%, rgba(159,77,255,.12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(130,25,235,.08) 0%, transparent 60%);
}
.stab-img-placeholder svg {
  position: relative;
  z-index: 1;
  opacity: .22;
  stroke: var(--p);
}

/* ── Service detail card — purple "inside" box ───────────── */
.stab-detail-card {
  background: linear-gradient(145deg, #4A18C8 0%, #8235FF 52%, #B360FF 100%);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
}
.stab-detail-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(210,150,255,.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(160,60,255,.40) 0%, transparent 55%);
  pointer-events: none;
}
.stab-detail-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(200,160,255,.85);
  position: relative;
  z-index: 1;
}
.stab-detail-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}
.stab-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
  font-weight: 500;
}
.stab-detail-list li svg { flex-shrink: 0; margin-top: 2px; }
.stab-detail-list li svg path { stroke: #C880FF; }
.stab-detail-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  position: relative;
  z-index: 1;
}
.stab-detail-note__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--p);
  flex-shrink: 0;
}

/* ── Stabs responsive ────────────────────────────────────── */
@media (max-width: 960px) {
  .stab-panel { grid-template-columns: 1fr; gap: 32px; }
  .stab-detail-card { order: -1; }
  .stabs-panels { padding: 40px 36px; }
}
@media (max-width: 640px) {
  .stabs-list { flex-direction: column; max-width: 100%; }
  .stab-btn { justify-content: flex-start; flex: none; min-width: auto; padding: 12px 16px; }
  .stabs-panels { padding: 28px 20px; border-radius: 16px; }
  .stab-text-body { max-width: none; }
}

/* ── Fees stack responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .fees-stack-layout { grid-template-columns: 300px 1fr; gap: 48px; }
  .fees-stack-center { padding: 0 24px; }
}
@media (max-width: 860px) {
  .fees-stack-layout { grid-template-columns: 1fr; padding: 80px 0 100px; gap: 48px; }
  .fees-stack-left { position: static; }
  .fees-tier { position: relative; top: auto; z-index: auto; }
  .fees-tier__inner { grid-template-columns: 1fr; }
  .fees-tier__left { border-right: none; border-bottom: 1px solid rgba(31,12,81,.08); }
}
@media (max-width: 640px) {
  .fees-tier__left, .fees-tier__right { padding: 28px 24px; }
  .fees-stack-h1 { font-size: 26px; }
  .fees-stack-center { padding: 0 16px; }
}

/* ── About timeline split responsive ─────────────────────── */
@media (max-width: 960px) {
  .about-timeline-split { grid-template-columns: 1fr; gap: 48px; }
  .about-timeline-right { position: static; max-width: 440px; }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.anim-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.anim-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .anim-up { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE OVERVIEW — svc-card grid (white cards on dark section)
   ═══════════════════════════════════════════════════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.svc-card {
  background: rgba(255,255,255,.96);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 8px 40px rgba(31,12,81,.28);
}
.svc-card__eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 14px;
}
.svc-card__name {
  font-size: 19px;
  font-weight: 800;
  color: var(--n);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.svc-card__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--gr);
  flex: 1;
  margin-bottom: 20px;
}
.svc-card__feats {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-card__feats li {
  font-size: 12.5px;
  color: var(--ar);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500;
}
.svc-card__feats svg { flex-shrink: 0; margin-top: 2px; }
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--p);
  margin-top: auto;
  transition: gap var(--trans);
}
.svc-card__link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   QUOTE CARDS — testimonials on dark sections
   ═══════════════════════════════════════════════════════════ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.quote-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.quote-card__text {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.92);
  flex: 1;
  font-style: italic;
}
.quote-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-top: 24px;
}
.quote-card__role {
  font-size: 12px;
  color: rgba(200,160,255,.85);
  margin-top: 3px;
}

/* ═══════════════════════════════════════════════════════════
   PRICING OVERVIEW GRID — compact pricing cards (light section)
   ═══════════════════════════════════════════════════════════ */
.pricing-ov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-ov-card {
  background: #fff;
  border: 1px solid var(--cl);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(31,12,81,.05);
}
.pricing-ov-card--featured {
  border: 2px solid rgba(159,77,255,.35);
  box-shadow: 0 0 0 4px rgba(159,77,255,.07), 0 4px 24px rgba(31,12,81,.08);
}
.pricing-ov-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 14px;
  width: fit-content;
}
.pricing-ov-card__badge--free { background: rgba(31,12,81,.07); color: var(--gr); }
.pricing-ov-card__badge--popular { background: rgba(159,77,255,.12); color: var(--p); border: 1px solid rgba(159,77,255,.28); }
.pricing-ov-card__badge--ongoing { background: rgba(31,12,81,.07); color: var(--gr); }
.pricing-ov-card__name { font-size: 16px; font-weight: 800; color: var(--n); letter-spacing: -.018em; margin-bottom: 6px; }
.pricing-ov-card__desc { font-size: 12.5px; color: var(--gr); line-height: 1.65; margin-bottom: 16px; }
.pricing-ov-card__amount { font-size: 28px; font-weight: 800; color: var(--n); letter-spacing: -.04em; line-height: 1; margin-bottom: 4px; }
.pricing-ov-card__per { font-size: 12px; color: var(--sp); margin-bottom: 20px; }
.pricing-ov-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pricing-ov-card__list li {
  font-size: 12.5px;
  color: var(--ar);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-ov-card__cta {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  padding: 12px 20px;
  margin-top: 24px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.pricing-ov-card__cta--dark { background: var(--n); color: #fff; }
.pricing-ov-card__cta--dark:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(31,12,81,.28); }
.pricing-ov-card__cta--purple {
  background: linear-gradient(90deg, #9F4DFF, #C880FF, #9F4DFF);
  background-size: 200%;
  animation: trustShimmer 3s linear infinite;
  color: #fff;
}
.pricing-ov-card__cta--purple:hover { transform: translateY(-2px); animation-duration: 1.5s; }

/* ═══════════════════════════════════════════════════════════
   STEP LIST — vertical numbered process (discovery / BAP)
   ═══════════════════════════════════════════════════════════ */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.step-item:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.step-item__num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: rgba(200,160,255,.85);
  padding-top: 4px;
}
.step-item__body h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.step-item__body p {
  font-size: 14px;
  color: rgba(255,255,255,.58);
  line-height: 1.75;
}

@media (max-width: 860px) {
  .svc-grid, .quote-grid, .pricing-ov-grid { grid-template-columns: 1fr; }
  .step-item { grid-template-columns: 40px 1fr; gap: 16px; }
}

/* ── Left-aligned inner-page hero ────────────────────────── */
.page-hero--left { text-align: left; }
.page-hero--left h1 {
  margin: 16px 0 0;
  max-width: 820px;
  font-size: clamp(44px, 5.8vw, 68px);
}
.page-hero--left .page-hero__sub {
  margin: 20px 0 0;
  max-width: 600px;
}
.page-hero--left .guarantee-line { justify-content: flex-start !important; }

/* ── Light quote card (services page testimonials) ────────── */
.quote-card--light {
  background: #fff;
  border: 1px solid rgba(159,77,255,.15);
  box-shadow: 0 4px 24px rgba(31,12,81,.06);
}
.quote-card--light .quote-card__text { color: var(--ar); }
.quote-card--light .quote-card__name { color: var(--n); }
.quote-card--light .quote-card__role { color: var(--p); font-weight: 600; }

/* ── Non-sticky fees tier ─────────────────────────────────── */
.fees-tier--flat { position: relative !important; top: auto !important; }


/* ================================================================
   RESPONSIVE ENHANCEMENTS
   ================================================================ */

/* ── Large desktop (≥1440px) ─────────────────────────────────── */
@media (min-width: 1440px) {
  :root { --section-py: 160px; }

  /* Slightly wider content at large screens */
  .container { max-width: 1600px; padding: 0 64px; }

  /* Let headings breathe at large resolutions */
  h1 { font-size: clamp(36px, 5vw, 68px); }
  h2 { font-size: clamp(26px, 3vw, 46px); }
  h3 { font-size: clamp(17px, 2vw, 24px); }

  /* Dark hero headline */
  .hero-dark h1 { font-size: clamp(36px, 4.2vw, 72px); }
  .hero-dark__sub { font-size: clamp(15px, 1.15vw, 20px); }

  /* Page hero headline */
  .page-hero--left h1 { font-size: clamp(44px, 5.8vw, 80px); }

  /* Proof bar numbers */
  .proof-bar__num { font-size: 26px; }
}

/* ── Ultra-wide (≥1920px) ────────────────────────────────────── */
@media (min-width: 1920px) {
  :root { --section-py: 180px; }
  .container { max-width: 1800px; padding: 0 80px; }
  h1 { font-size: clamp(36px, 4vw, 80px); }
  h2 { font-size: clamp(26px, 2.8vw, 52px); }
  .hero-dark h1 { font-size: clamp(36px, 3.6vw, 84px); }
}

/* ── Tablet tweaks (768px–1024px) ────────────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {
  .container { padding: 0 40px; }
  :root { --section-py: 100px; }
}

/* ── Mobile (≤768px) extra polish ───────────────────────────── */
@media (max-width: 768px) {
  /* Tighter section padding on mobile */
  :root { --section-py: 72px; }

  /* Insights cards: taller image on small grid */
  .insights-img { height: 180px; }

  /* Nav close button larger touch target */
  .nav__close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile overlay links bigger tap area */
  .nav__overlay-links a { padding: 14px 0; }

  /* Reduce hero-dark badge size */
  .hero-dark__badge { font-size: 12px; padding: 8px 16px; }

  /* Stack the about-hero grid */
  .about-hero__inner { gap: 40px; }

  /* Reduce fees tier padding */
  .fees-tier { padding: 28px 20px; }

  /* Blog editorial bento — tablet */
  .blog-editorial-card--hero { height: 380px; }
  .blog-editorial-sidebar .blog-editorial-card { height: 220px; }

  /* Testimonial card padding */
  .testimonial-card { padding: 24px 20px; }

  /* FAQ spacing */
  .faq-header { margin-bottom: 36px; }
}

/* ── Small mobile (≤480px) ───────────────────────────────────── */
@media (max-width: 480px) {
  /* Already has rules — add remaining gaps */

  /* Tighter nav */
  .nav__wordmark { font-size: 18px; }

  /* Stacked values grid already done at 640px */

  /* Proof bar items padding */
  .proof-bar__item { padding: 0 12px; }

  /* Blog editorial bento — small mobile */
  .blog-editorial-card--hero { height: 280px; }
  .blog-editorial-sidebar .blog-editorial-card { height: 200px; }

  /* Insights card image height */
  .insights-img { height: 160px; }

  /* Process cards: reduce padding */
  .process-card { padding: 28px 20px 32px; }

  /* Fees page: make tiers more compact */
  .fees-tier { padding: 24px 16px; }

  /* Testimonial */
  .testimonial-card { padding: 20px 16px; }
  .tc-quote { font-size: 14px; line-height: 1.7; }

  /* CTA buttons: full width on small screens */
  .hero-dark__actions { flex-direction: column; width: 100%; }
  .hero-dark__actions .btn-coffee,
  .hero-dark__actions .btn { width: 100%; justify-content: center; text-align: center; }

  /* Hide scroll indicator */
  .hero-dark__scroll { display: none; }

  /* Discovery / service page inner headings */
  .faq-q__inner { gap: 10px; }
  .faq-num { font-size: 13px; }
}

/* ── Very small screens (≤380px) ────────────────────────────── */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .nav__inner { padding: 0 16px !important; }
  .proof-bar__inner { padding: 0 16px; }
  h1 { font-size: 26px; }
  h2 { font-size: 20px; }
  .hero-dark h1 { font-size: 26px !important; line-height: 1.25; }
  .hero-dark__inner { padding-left: 16px !important; padding-right: 16px !important; }
  .page-hero--left h1 { font-size: 30px; }
  .btn-coffee { font-size: 13px; padding: 10px 18px; }
  .nav__wordmark { font-size: 16px; }
}

/* ── Bento grids — collapse to 1-col at small mobile ─────────── */
@media (max-width: 560px) {
  .diff-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .diff-card { padding: 24px 20px; }
  .why-card { padding: 22px 18px; }
}

/* ── Why-grid: keep 2-col at medium mobile ───────────────────── */
@media (max-width: 900px) and (min-width: 561px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Our Difference: collapse inline rail grid on mobile ─────── */
@media (max-width: 768px) {
  .diff-rail-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .diff-rail-inner > .rail-label {
    margin-bottom: 16px;
    padding-top: 0;
    font-size: 11px;
  }
}
