/* ==========================================================================
   Kshitij Swarup — Portfolio
   Design tokens + layout system. Designed at 1440px.
   ========================================================================== */

:root {
  /* Palette */
  --navy-deep: #263f75;
  --navy-mid: #3a4c62;
  --navy-muted: #536e8f;
  --blue-light: #759bc8;
  --blue-dim: rgba(135, 178, 228, 0.4);
  --off-white: #f5f5f5;
  --gray-light: #cbcbcb;
  --dark-bg: #0a0d17;
  --dark-bg-2: #06080f;

  /* Tweakable accent (default = blue-light) */
  --accent: #759bc8;
  --accent-deep: #263f75;
  --accent-soft: rgba(135, 178, 228, 0.4);

  /* Type scale (1440px-tuned, multiplied by --font-scale tweak) */
  --font-scale: 1;
  --fs-brand: calc(16px * var(--font-scale));
  --fs-nav: calc(15px * var(--font-scale));
  --fs-hero: calc(68px * var(--font-scale));
  --fs-section: calc(52px * var(--font-scale));
  --fs-about: calc(48px * var(--font-scale));
  --fs-svc-num: calc(64px * var(--font-scale));
  --fs-svc-title: calc(38px * var(--font-scale));
  --fs-body: calc(18px * var(--font-scale));
  --fs-body-lg: calc(20px * var(--font-scale));
  --fs-pill: calc(15px * var(--font-scale));
  --fs-stat-n: calc(40px * var(--font-scale));
  --fs-stat-l: calc(13px * var(--font-scale));

  /* Layout */
  --gutter: 120px;
  --max-w: 1440px;
  --section-y: 160px;

  /* Radii */
  --r-pill: 100px;
  --r-card-sm: 24px;
  --r-card: 32px;
  --r-card-lg: 44px;

  /* Borders */
  --hairline: 1px solid rgba(255, 255, 255, 0.08);
  --hairline-strong: 1px solid rgba(255, 255, 255, 0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark-bg);
  color: var(--off-white);
  font-family: "Afacad Flux", system-ui, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Cosmic background ─────────────────────────────────────────────────── */
.cosmos {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(38, 63, 117, 0.45), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 60%, rgba(117, 155, 200, 0.18), transparent 65%),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(58, 76, 98, 0.35), transparent 70%),
    linear-gradient(180deg, var(--dark-bg-2) 0%, var(--dark-bg) 30%, var(--dark-bg) 70%, var(--dark-bg-2) 100%);
}

.stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.9), transparent 50%),
    radial-gradient(1px 1px at 27% 62%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1.2px 1.2px at 43% 12%, rgba(255,255,255,0.8), transparent 50%),
    radial-gradient(1px 1px at 56% 88%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(1px 1px at 71% 33%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(1.5px 1.5px at 83% 71%, rgba(255,255,255,0.85), transparent 50%),
    radial-gradient(1px 1px at 92% 24%, rgba(255,255,255,0.55), transparent 50%),
    radial-gradient(1px 1px at 8% 78%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(1px 1px at 35% 38%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(1px 1px at 49% 52%, rgba(255,255,255,0.7), transparent 50%),
    radial-gradient(1px 1px at 64% 18%, rgba(255,255,255,0.45), transparent 50%),
    radial-gradient(1.2px 1.2px at 76% 47%, rgba(255,255,255,0.7), transparent 50%),
    radial-gradient(1px 1px at 22% 92%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1px 1px at 4% 44%, rgba(255,255,255,0.65), transparent 50%),
    radial-gradient(1px 1px at 96% 8%, rgba(255,255,255,0.7), transparent 50%);
  background-size: 1400px 1400px;
  background-repeat: repeat;
  opacity: 0.7;
}

.stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 31% 71%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1.5px 1.5px at 58% 9%, rgba(255,255,255,0.85), transparent 50%),
    radial-gradient(1px 1px at 87% 53%, rgba(255,255,255,0.55), transparent 50%),
    radial-gradient(1px 1px at 14% 36%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(1px 1px at 79% 88%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1px 1px at 41% 28%, rgba(255,255,255,0.4), transparent 50%);
  background-size: 900px 900px;
  background-repeat: repeat;
  opacity: 0.6;
}

/* ── Typography ────────────────────────────────────────────────────────── */
.h-display {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-variation-settings: 'opsz' 14, 'wdth' 100;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0;
}
.h-display b, .h-display strong { font-weight: 500; color: var(--off-white); }
.h-display .accent { color: var(--accent); font-weight: 400; }

.h-section {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-variation-settings: 'opsz' 14, 'wdth' 100;
  font-weight: 500;
  font-size: var(--fs-section);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--off-white);
}
.h-section .accent { color: var(--accent); }

.eyebrow {
  font-family: "Afacad Flux", system-ui, sans-serif;
  font-size: var(--fs-body);
  letter-spacing: 0.02em;
  color: var(--off-white);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.body-lg {
  font-family: "Afacad Flux", system-ui, sans-serif;
  font-weight: 400;
  font-size: calc(20px * var(--font-scale));
  line-height: 1.55;
  color: var(--gray-light);
}

/* ── Layout ────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 1280px) { :root { --gutter: 64px; } }
@media (max-width: 900px)  { :root { --gutter: 28px; } }

section {
  position: relative;
  padding: var(--section-y) 0;
}

/* ── Nav ───────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  pointer-events: none;
}
.nav > .container { display: flex; align-items: center; justify-content: space-between; pointer-events: auto; }
.brand {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 600;
  font-size: var(--fs-brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--off-white);
}
.brand .dot { color: var(--accent); }
.nav-pill {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 13, 23, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-pill a {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 300;
  font-size: var(--fs-nav);
  text-transform: capitalize;
  letter-spacing: 0.01em;
  color: var(--off-white);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-pill a:hover { opacity: 1; color: var(--accent); }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 400;
  font-size: calc(16px * var(--font-scale));
  color: var(--off-white);
  background: linear-gradient(91.37deg, var(--accent-deep) 0%, var(--accent) 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 8px 32px -12px rgba(117, 155, 200, 0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.08); box-shadow: 0 14px 40px -10px rgba(117, 155, 200, 0.65), inset 0 1px 0 rgba(255,255,255,0.25); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  max-height: 980px;
  padding-top: 96px;
  padding-bottom: 28px;
  overflow: hidden;
  display: flex;
}
.hero > .container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Hero variant A — Centered focal stage with orbits (reference-driven) */
.hero-a {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.hero-headline {
  font-size: calc(58px * var(--font-scale));
  text-align: center;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--off-white);
}
.hero-headline .accent { color: var(--accent); }

.hero-stage {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: 32px;
  min-height: 200px;
}

/* Orbit rings centered on the stage */
.hero-orbits {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 1px;
  z-index: 0;
  pointer-events: none;
}
.orbit-ring {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.orbit-ring.r1 { width: 380px;  height: 380px;  }
.orbit-ring.r2 { width: 620px;  height: 620px;  border-style: dashed; border-color: rgba(255, 255, 255, 0.08); }
.orbit-ring.r3 { width: 900px;  height: 900px;  border-color: rgba(255, 255, 255, 0.05); }
.orbit-ring.r4 { width: 1240px; height: 1240px; border-color: rgba(255, 255, 255, 0.04); border-style: dashed; }

.orbit-trace {
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: center;
  width: 620px;
  height: 620px;
  margin-left: -310px;
  margin-top: -310px;
  border-radius: 50%;
  animation: spin 24s linear infinite;
}
.orbit-trace.t2 {
  width: 900px;
  height: 900px;
  margin-left: -450px;
  margin-top: -450px;
  animation: spin-rev 38s linear infinite;
}
.orbit-trace .trace-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}
.orbit-trace .trace-dot.small {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 10px rgba(255,255,255,0.6);
}
@keyframes spin     { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin-rev { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

.hero-portrait {
  position: relative;
  width: 210px;
  height: 260px;
  border-radius: 32px;
  overflow: visible;
  z-index: 3;
}
.hero-portrait image-slot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--navy-mid) 100%);
  overflow: hidden;
}
.portrait-glow {
  position: absolute;
  inset: -40px;
  border-radius: 60px;
  background: radial-gradient(circle, rgba(117, 155, 200, 0.35) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.portrait-tag {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(10, 13, 23, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--off-white);
}
.portrait-tag .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #5fffa3;
  box-shadow: 0 0 8px #5fffa3;
}

/* Flanking satellite cards */
.flank-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.6s ease;
}
.flank-card.icon-card {
  flex-direction: column;
  width: 96px;
  height: 96px;
  justify-content: center;
  color: var(--accent);
  justify-self: end;
  margin-right: -40px;
  animation: float-a 6s ease-in-out infinite;
}
.flank-card.icon-card .card-tag {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.flank-card.mini-profile {
  justify-self: start;
  margin-left: -40px;
  animation: float-b 7s ease-in-out infinite;
}
.flank-card .mini-photo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--accent), var(--navy-mid));
  flex-shrink: 0;
}
.flank-card .mini-photo image-slot { width: 100%; height: 100%; display: block; border-radius: 14px; }
.flank-card .mini-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--off-white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.flank-card .mini-role {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}
@keyframes float-a {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-10px) rotate(-2deg); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}

/* Comet streak */
.hero-comet {
  position: absolute;
  top: 140px;
  right: 8%;
  width: 220px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent) 70%, white);
  transform: rotate(-22deg);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.hero-comet::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 14px white, 0 0 24px var(--accent);
}

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  justify-content: center;
  align-items: start;
  max-width: 640px;
  margin: 0 auto;
  padding: 4px 0 0;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 16px;
  position: relative;
}
.hstat:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.hstat-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(32px * var(--font-scale));
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hstat-lbl {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Hero foot — bottom row */
.hero-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-tagline {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(18px * var(--font-scale));
  color: var(--off-white);
  line-height: 1.3;
  max-width: 380px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.foot-caption {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(14px * var(--font-scale));
  color: rgba(245, 245, 245, 0.7);
  max-width: 380px;
  margin: 0 0 12px;
  margin-left: auto;
  text-align: right;
  line-height: 1.45;
}
.foot-ctas {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* role-pill kept for foot-left */
.role-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: linear-gradient(91.37deg, var(--accent-deep) 0%, var(--accent) 100%);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: var(--fs-pill);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.role-pill .sep { width: 5px; height: 5px; border-radius: 50%; background: white; opacity: 0.85; }

/* Shared bottom row used by Hero C */
.hero-bottom {
  display: grid;
  grid-template-columns: 1.4fr auto 1fr;
  align-items: end;
  gap: 64px;
  margin-top: 96px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stats { display: flex; gap: 56px; flex-wrap: wrap; }
.stat .num {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 500;
  font-size: var(--fs-stat-n);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .lbl {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 300;
  font-size: var(--fs-stat-l);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  max-width: 130px;
  line-height: 1.3;
}
.vrule { width: 1px; height: 80px; background: rgba(255, 255, 255, 0.18); }
.aside-quote {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: var(--fs-pill);
  color: var(--accent);
  max-width: 320px;
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}
.aside-quote::before {
  content: "";
  position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 2px; background: var(--accent);
}

/* Hero variant B — Constellation (novel) */
.hero-b { position: relative; min-height: 720px; }
.hero-b .h-display { font-size: calc(82px * var(--font-scale)); max-width: 820px; }
.hero-b .head { max-width: 820px; }
.hero-b .constellation {
  position: relative;
  width: 100%;
  height: 380px;
  margin-top: 80px;
}
.hero-b .orbit {
  position: absolute;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 50%;
}
.hero-b .orbit.o1 { left: 50%; top: 50%; width: 700px; height: 700px; transform: translate(-50%, -50%); }
.hero-b .orbit.o2 { left: 50%; top: 50%; width: 460px; height: 460px; transform: translate(-50%, -50%); }
.hero-b .orbit.o3 { left: 50%; top: 50%; width: 260px; height: 260px; transform: translate(-50%, -50%); }
.hero-b .planet {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.hero-b .planet .num {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 500;
  font-size: calc(60px * var(--font-scale));
  color: var(--accent);
  line-height: 1;
}
.hero-b .planet .lbl {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--fs-stat-l);
  color: rgba(255,255,255,0.7);
  max-width: 130px;
}
.hero-b .core {
  position: absolute; left: 50%; top: 50%;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px var(--accent), 0 0 60px rgba(117,155,200,0.4);
}
.hero-b .core::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.8); opacity: 0; }
}
.hero-b .roles-row {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px;
}
.role-chip {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--fs-pill);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}
.role-chip.solid { background: linear-gradient(91deg, var(--accent-deep), var(--accent)); border-color: transparent; }

/* Hero variant C — Marquee (novel) */
.hero-c { display: flex; flex-direction: column; gap: 56px; }
.hero-c .h-display { font-size: calc(76px * var(--font-scale)); max-width: 920px; }
.marquee {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 26px 0;
  background: rgba(255,255,255,0.02);
}
.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scroll 36s linear infinite;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 300;
  font-size: calc(40px * var(--font-scale));
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.marquee-track span { white-space: nowrap; display: inline-flex; align-items: center; gap: 80px; }
.marquee-track .dot {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; background: var(--accent);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Hero D — Split (asymmetric editorial) ─────────────────────────────── */
.hero-d {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-d .d-left { display: flex; flex-direction: column; gap: 12px; max-width: 580px; }
.hero-d .d-headline {
  font-size: calc(56px * var(--font-scale));
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
}
.hero-d .d-body {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(16px * var(--font-scale));
  color: rgba(245, 245, 245, 0.72);
  margin: 0;
  max-width: 480px;
}
.hero-d .d-stats {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-d .d-stats > div:not(.div) {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-d .d-stats .div {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.hero-d .d-stats .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(30px * var(--font-scale));
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-d .d-stats .lbl {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero-d .d-ctas { display: flex; gap: 12px; margin-top: 4px; }

.hero-d .d-right {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-d .d-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-d .d-orbit .ring {
  position: absolute;
  left: 0; top: 0;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
}
.hero-d .d-orbit .ring.r2 {
  width: 700px; height: 700px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.06);
}
.hero-d .d-orbit .trace {
  position: absolute;
  left: 0; top: 0;
  width: 460px; height: 460px;
  margin-left: -230px; margin-top: -230px;
  border-radius: 50%;
  animation: spin 22s linear infinite;
}
.hero-d .d-orbit .trace .dot {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}
.hero-d .d-portrait {
  position: relative;
  width: 320px;
  height: 420px;
  border-radius: 32px;
  overflow: hidden;
  z-index: 2;
  background: linear-gradient(180deg, var(--accent), var(--navy-mid));
  box-shadow: 0 30px 80px -30px rgba(38, 63, 117, 0.7);
}
.hero-d .d-portrait image-slot {
  width: 100%; height: 100%; display: block;
  border-radius: 32px;
}
.hero-d .d-badge {
  position: absolute;
  right: 16px;
  top: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(10, 13, 23, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--off-white);
  animation: float-a 7s ease-in-out infinite;
}
.hero-d .d-badge .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #5fffa3; box-shadow: 0 0 8px #5fffa3;
}
.hero-d .d-mini-card {
  position: absolute;
  left: 8px;
  bottom: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(10, 13, 23, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  animation: float-b 6s ease-in-out infinite;
}
.hero-d .d-mini-card .mini-photo {
  width: 44px; height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--accent), var(--navy-mid));
  flex-shrink: 0;
}
.hero-d .d-mini-card .mini-photo image-slot { width: 100%; height: 100%; display: block; border-radius: 12px; }
.hero-d .d-mini-card .mini-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--off-white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hero-d .d-mini-card .mini-role {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* ── Hero E — Mission Control (bento dashboard) ────────────────────────── */
.hero-e {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto;
  gap: 14px;
  align-content: stretch;
}
.hero-e .bento {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 20px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s;
}
.hero-e .bento:hover { border-color: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }
.hero-e .b-head {
  grid-column: 1 / span 8;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 28px;
}
.hero-e .b-headline {
  font-size: calc(48px * var(--font-scale));
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}
.hero-e .b-body {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(16px * var(--font-scale));
  color: rgba(245, 245, 245, 0.7);
  max-width: 480px;
  margin: 0;
}
.hero-e .b-portrait {
  grid-column: 9 / span 4;
  grid-row: 1 / span 2;
  padding: 0;
  background: linear-gradient(180deg, var(--accent), var(--navy-mid));
  min-height: 260px;
}
.hero-e .b-portrait image-slot {
  width: 100%; height: 100%; display: block;
  border-radius: 22px;
}
.hero-e .b-portrait-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(10, 13, 23, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: var(--off-white);
}
.hero-e .b-portrait-tag .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #5fffa3; box-shadow: 0 0 8px #5fffa3;
}
.hero-e .b-stat {
  grid-row: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  min-height: 88px;
}
.hero-e .b-stat.s1 { grid-column: 1 / span 3; }
.hero-e .b-stat.s2 { grid-column: 4 / span 2; }
.hero-e .b-stat.s3 { grid-column: 6 / span 2; }
.hero-e .b-stat-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(36px * var(--font-scale));
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-e .b-stat-lbl {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero-e .b-spark {
  width: 100%;
  height: 28px;
  color: var(--accent);
  opacity: 0.7;
  margin-top: 4px;
}
.hero-e .b-roles {
  grid-column: 1 / span 7;
  grid-row: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 22px;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}
.hero-e .b-cta {
  grid-column: 8 / span 5;
  grid-row: 3 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(117, 155, 200, 0.35), transparent 70%),
    linear-gradient(160deg, var(--accent-deep), #0e1730);
  border-color: rgba(255, 255, 255, 0.15);
}
.hero-e .b-cta p {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(22px * var(--font-scale));
  color: var(--off-white);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* ── Hero F — Magazine masthead ────────────────────────────────────────── */
.hero-f {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-f .f-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.hero-f .f-vol { font-weight: 500; color: var(--off-white); }
.hero-f .f-date { color: rgba(255, 255, 255, 0.55); margin-top: 4px; }
.hero-f .f-meta-r { display: inline-flex; align-items: center; gap: 8px; }
.hero-f .f-meta-r .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #5fffa3; box-shadow: 0 0 8px #5fffa3;
}

.hero-f .f-headline {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: clamp(54px, 7.4vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  color: var(--off-white);
  flex: 1;
  justify-content: center;
}
.hero-f .f-headline .line {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-f .f-headline .line.italic {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.03em;
}
.hero-f .f-headline .accent { color: var(--accent); }
.hero-f .f-portrait {
  display: inline-block;
  width: clamp(70px, 6.4vw, 92px);
  height: clamp(54px, 5vw, 72px);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--accent), var(--navy-mid));
  vertical-align: middle;
  transform: translateY(-4px);
}
.hero-f .f-portrait image-slot { width: 100%; height: 100%; display: block; border-radius: 14px; }

.hero-f .f-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-f .f-stats { display: flex; gap: 32px; }
.hero-f .f-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-f .f-stats .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(24px * var(--font-scale));
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-f .f-stats .lbl {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero-f .f-ctas { display: flex; gap: 10px; }

/* ── Hero G — Magazine masthead w/ side portrait ───────────────────────── */
.hero-g {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* reuse meta strip */

.g-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
}

.g-headline {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 0;
  text-transform: uppercase;
  color: var(--off-white);
  display: flex;
  flex-direction: column;
}
.g-headline .line { display: block; }
.g-headline .line.italic {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.03em;
}
.g-headline .accent { color: var(--accent); }

.g-portrait-wrap {
  position: relative;
  width: 240px;
  height: 300px;
  align-self: center;
}
.g-arc {
  position: absolute;
  left: -120px;
  bottom: 40px;
  width: 180px;
  height: 280px;
  color: var(--accent);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.g-portrait {
  position: relative;
  width: 240px;
  height: 300px;
  border-radius: 22px;
  transform: rotate(-3deg);
  background: linear-gradient(180deg, var(--accent), var(--navy-mid));
  box-shadow: 0 30px 80px -30px rgba(38, 63, 117, 0.7);
  z-index: 2;
}
.g-portrait image-slot {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 22px;
  overflow: hidden;
}
.g-tag {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 13px;
  background: rgba(10, 13, 23, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  z-index: 4;
  white-space: nowrap;
}
.g-tag .k {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.g-tag .v {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.g-tag.g-tag-top { top: 24px; left: -40px; transform: rotate(-3deg); animation: float-a 6s ease-in-out infinite; }
.g-tag.g-tag-bot { bottom: 32px; right: -32px; transform: rotate(-3deg); animation: float-b 7s ease-in-out infinite; }

.g-stamp {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(10, 13, 23, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  overflow: hidden;
}
.g-stamp svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
}
.g-stamp-core {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

/* ── Hero H — New headline + role pills + eye-catching stats ─────────── */
.hero-h-section {
  height: 100vh;
  min-height: 760px;
  max-height: 1040px;
  padding-top: 120px;
  padding-bottom: 48px;
}
.hero-h {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.hero-h .h-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 13, 23, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.hero-h .h-eyebrow .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5fffa3;
  box-shadow: 0 0 10px #5fffa3;
}

.hero-h-headline {
  font-size: calc(72px * var(--font-scale));
  text-align: center;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 300;
  color: var(--off-white);
  max-width: 1180px;
  margin: 0 auto;
  text-wrap: balance;
}

/* Role pills — prominent, rounded; first is the gradient hero pill */
.h-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 4px auto 0;
}

/* Combined single pill — all 3 roles inline with bullet separators.
   Static label (not a button) — glass blur + stroke only, no gradient fill. */
.h-pill-combo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 36px;
  border-radius: 999px;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 400;
  font-size: calc(20px * var(--font-scale));
  letter-spacing: -0.005em;
  color: var(--off-white);
  white-space: nowrap;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: none;
  cursor: default;
}
.h-pill-combo:hover {
  transform: none;
  box-shadow: none;
}
.h-pill-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.85;
  flex-shrink: 0;
}
.h-pill {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  border-radius: 999px;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 400;
  font-size: calc(20px * var(--font-scale));
  letter-spacing: -0.005em;
  color: var(--off-white);
  background: rgba(10, 13, 23, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.h-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
}
.h-pill-solid {
  background:
    radial-gradient(ellipse 80% 100% at 30% 20%, rgba(255, 255, 255, 0.22), transparent 70%),
    linear-gradient(91deg, var(--accent-deep) 0%, var(--accent) 100%);
  border-color: transparent;
  box-shadow:
    0 12px 32px -10px rgba(117, 155, 200, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* Eye-catching but restrained stats row */
.h-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
}
.h-stats-big {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 64px;
}
.h-bigstat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.h-bigstat-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(56px * var(--font-scale));
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--accent) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.h-bigstat-lbl {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.h-ctas {
  display: flex;
  gap: 12px;
  padding-bottom: 4px;
  flex-shrink: 0;
}
.h-ctas .btn { white-space: nowrap; }

/* Hero I — left-aligned variant of H */
.hero-i .h-eyebrow { align-self: flex-start; }
.hero-i .hero-h-headline { text-align: left; margin: 0; max-width: 1080px; }
.hero-i .h-pills { justify-content: flex-start; margin: 4px 0 0; }

/* ── Hero J — Aurora spotlight ──────────────────────────────────────────
   A concentrated, accent-tinted aurora wash sits behind the hero only,
   isolating it from the rest of the cosmic page. A soft horizon at the
   bottom transitions back into the site background. */
.hero-j-section { isolation: isolate; }
.hero-j-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-j-bg::before {
  /* base wash — slightly lighter & warmer than page */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 85% 70% at 50% 35%, rgba(117, 155, 200, 0.20), transparent 70%),
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(38, 63, 117, 0.55), transparent 60%),
    linear-gradient(180deg, rgba(20, 28, 56, 0.55) 0%, rgba(10, 13, 23, 0) 80%);
}
.hj-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0.55;
}
.hj-aurora.a1 {
  width: 900px; height: 900px;
  left: -120px; top: -200px;
  background: radial-gradient(circle at 40% 40%, var(--accent) 0%, transparent 60%);
  opacity: 0.45;
}
.hj-aurora.a2 {
  width: 760px; height: 760px;
  right: -160px; top: -120px;
  background: radial-gradient(circle at 50% 50%, var(--accent-deep) 0%, transparent 60%);
  opacity: 0.7;
}
.hj-aurora.a3 {
  width: 1100px; height: 520px;
  left: 50%; top: 35%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(117, 155, 200, 0.35) 0%, transparent 70%);
  opacity: 0.55;
}
.hj-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.18;
  mix-blend-mode: overlay;
}
.hj-horizon {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent 0%, var(--dark-bg) 95%);
  pointer-events: none;
}
.hero-j-section > .container { position: relative; z-index: 2; }

/* ── Hero K — Framed vault ─────────────────────────────────────────────
   Hero content sits inside a giant rounded glass panel with a subtle
   gradient border, animated grid texture, and corner brackets — clearly
   "carded" from the rest of the page. */
.hero-k-section {
  padding-top: 120px;
  padding-bottom: 60px;
}
.hero-k-section > .container {
  height: 100%;
  display: flex;
  align-items: stretch;
}
.hero-k-frame {
  position: relative;
  flex: 1;
  border-radius: 40px;
  padding: 56px 72px 48px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(117, 155, 200, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(28, 38, 70, 0.55) 0%, rgba(10, 13, 23, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 40px 120px -40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}
.hero-k-frame > .hero-h {
  position: relative;
  z-index: 2;
  gap: 36px;
}
.hk-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.hk-glow {
  position: absolute;
  width: 800px; height: 800px;
  left: 50%; top: -40%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  opacity: 0.18;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hk-corner {
  position: absolute;
  width: 36px; height: 36px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
  z-index: 3;
  opacity: 0.7;
}
.hk-corner.tl { top: 18px; left: 18px; border-top-width: 1.5px; border-left-width: 1.5px; border-top-left-radius: 12px; }
.hk-corner.tr { top: 18px; right: 18px; border-top-width: 1.5px; border-right-width: 1.5px; border-top-right-radius: 12px; }
.hk-corner.bl { bottom: 18px; left: 18px; border-bottom-width: 1.5px; border-left-width: 1.5px; border-bottom-left-radius: 12px; }
.hk-corner.br { bottom: 18px; right: 18px; border-bottom-width: 1.5px; border-right-width: 1.5px; border-bottom-right-radius: 12px; }
.hk-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}
.hk-meta-l { display: inline-flex; align-items: center; gap: 10px; }
.hk-meta .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5fffa3;
  box-shadow: 0 0 10px #5fffa3;
}
.hero-k-frame .hero-h-headline { max-width: 1060px; }

/* ── Hero L — Mesh horizon (sci-fi observation deck) ───────────────────
   A perspective grid floor anchored at the hero bottom, a glowing horizon
   line, distant sun, faint scanlines. Layout is unchanged. */
.hero-l-section { isolation: isolate; }
.hero-l-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hl-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 60%, rgba(117, 155, 200, 0.18), transparent 70%),
    linear-gradient(180deg,
      rgba(8, 10, 22, 1) 0%,
      rgba(14, 22, 48, 1) 45%,
      rgba(40, 58, 102, 0.9) 65%,
      rgba(117, 155, 200, 0.35) 72%,
      rgba(10, 13, 23, 1) 78%,
      rgba(10, 13, 23, 1) 100%);
}
.hl-sun {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 620px;
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%, #fff 0%, var(--accent) 22%, rgba(117, 155, 200, 0.55) 45%, transparent 70%);
  filter: blur(10px);
  opacity: 0.95;
}
.hl-sun::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 260px;
  height: 120px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%, #fff 0%, var(--accent) 40%, transparent 75%);
  filter: blur(6px);
}
.hl-scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: overlay;
  opacity: 0.6;
}
.hl-floor {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 17%;
  perspective: 600px;
  perspective-origin: 50% 0%;
  overflow: hidden;
}
.hl-floor-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(117, 155, 200, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 155, 200, 0.45) 1px, transparent 1px);
  background-size: 80px 60px;
  transform: rotateX(62deg);
  transform-origin: 50% 0%;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
}
.hl-horizon-line {
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(117, 155, 200, 0.45) 30%, rgba(255,255,255,0.55) 50%, rgba(117, 155, 200, 0.45) 70%, transparent 100%);
  box-shadow:
    0 0 12px rgba(117, 155, 200, 0.35);
  opacity: 0.7;
}
.hl-floor-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, var(--dark-bg) 90%);
}
.hero-l-section > .container { position: relative; z-index: 2; }
/* Hide the stats divider since the horizon line takes its place */
.hero-l-section .h-bottom { border-top-color: transparent; }
/* Lift stats slightly above the bright bottom glow for readability */
.hero-l-section .hero-h { padding-bottom: 8px; }
.hero-l-section .h-bigstat-num,
.hero-l-section .h-bigstat-lbl { position: relative; z-index: 1; }
/* Ensure stat text stays legible against the bottom glow */
.hero-l-section .h-bigstat-num {
  text-shadow: 0 2px 30px rgba(10, 13, 23, 0.7), 0 0 14px rgba(10, 13, 23, 0.5);
}
.hero-l-section .h-bigstat-lbl {
  text-shadow: 0 1px 12px rgba(10, 13, 23, 0.7);
  color: rgba(255, 255, 255, 0.75);
}
/* ── Hero R — same composition as L but without the bottom horizon glow.
   Override the sky gradient to remove the bright accent band the sun
   used to meet, and dim the floor lines so nothing reads as "lit". */
.hero-r-section .hl-sky {
  background:
    radial-gradient(ellipse 75% 65% at 50% 42%, rgba(117, 155, 200, 0.14), transparent 76%),
    linear-gradient(180deg,
      rgba(12, 16, 32, 1) 0%,
      rgba(16, 22, 44, 1) 50%,
      rgba(20, 28, 56, 1) 80%,
      rgba(12, 16, 30, 1) 100%);
}
.hero-r-section .hl-floor-grid {
  background-image:
    linear-gradient(rgba(135, 170, 215, 0.36) 1px, transparent 1px),
    linear-gradient(90deg, rgba(135, 170, 215, 0.28) 1px, transparent 1px);
  opacity: 0.75;
}
.hero-r-section .hl-floor-fade {
  background: linear-gradient(180deg, transparent 0%, var(--dark-bg) 85%);
}
/* Inline glow line — sits in flex flow between role pill and stats */
.hl-glow-line {
  position: relative;
  height: 1px;
  margin: 6px 0 -4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(117, 155, 200, 0.18) 18%,
    rgba(117, 155, 200, 0.55) 48%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(117, 155, 200, 0.55) 52%,
    rgba(117, 155, 200, 0.18) 82%,
    transparent 100%
  );
  box-shadow: 0 0 14px rgba(117, 155, 200, 0.28);
  opacity: 0.85;
}
.hl-glow-line::before,
.hl-glow-line::after {
  /* soft halo glow strip above and below the line */
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  height: 24px;
  pointer-events: none;
}
.hl-glow-line::before {
  top: -24px;
  background: linear-gradient(180deg, transparent 0%, rgba(117, 155, 200, 0.06) 100%);
  filter: blur(6px);
}
.hl-glow-line::after {
  bottom: -24px;
  background: linear-gradient(180deg, rgba(117, 155, 200, 0.06) 0%, transparent 100%);
  filter: blur(6px);
}
.hl-glow-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px var(--accent), 0 0 22px rgba(117, 155, 200, 0.55);
}

/* ── Hero M — Retrowave dual horizon ────────────────────────────────────
   Twin accent suns with mountain silhouettes against a graduated sky.
   Horizon line sits well above the stats. */
.hero-m-section { isolation: isolate; }
.hero-m-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hm-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 40% at 50% 58%, rgba(200, 117, 182, 0.18), transparent 70%),
    linear-gradient(180deg,
      rgba(8, 10, 22, 1) 0%,
      rgba(22, 18, 50, 1) 35%,
      rgba(60, 38, 90, 0.9) 55%,
      rgba(120, 80, 160, 0.45) 62%,
      rgba(40, 26, 70, 0.6) 68%,
      rgba(10, 13, 23, 1) 75%,
      rgba(10, 13, 23, 1) 100%);
}
.hm-stars {
  position: absolute;
  inset: 0 0 50% 0;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,0.7), transparent 50%),
    radial-gradient(1.2px 1.2px at 38% 12%, rgba(255,255,255,0.85), transparent 50%),
    radial-gradient(1px 1px at 66% 30%, rgba(255,255,255,0.55), transparent 50%),
    radial-gradient(1.4px 1.4px at 82% 18%, rgba(255,255,255,0.9), transparent 50%),
    radial-gradient(1px 1px at 24% 40%, rgba(255,255,255,0.45), transparent 50%),
    radial-gradient(1px 1px at 56% 8%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(1px 1px at 92% 36%, rgba(255,255,255,0.5), transparent 50%);
  opacity: 0.85;
}
.hm-sun-a, .hm-sun-b {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.hm-sun-a {
  left: 28%; bottom: 35%;
  width: 200px; height: 200px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0%, var(--accent) 22%, rgba(117, 155, 200, 0.4) 50%, transparent 72%);
  box-shadow: 0 0 80px var(--accent), 0 0 140px rgba(117,155,200,0.5);
  clip-path: inset(0 0 50% 0);
}
.hm-sun-b {
  right: 22%; bottom: 38%;
  width: 110px; height: 110px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0%, #c875b6 28%, rgba(200, 117, 182, 0.35) 55%, transparent 75%);
  box-shadow: 0 0 50px #c875b6, 0 0 90px rgba(200, 117, 182, 0.45);
  opacity: 0.9;
}
.hm-mtns {
  position: absolute;
  left: -5%; right: -5%;
  bottom: 16%;
  height: 22%;
  pointer-events: none;
}
.hm-mtns svg { width: 100%; height: 100%; display: block; }
.hm-horizon {
  position: absolute;
  left: 0; right: 0;
  bottom: 38%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, #fff 50%, var(--accent) 75%, transparent 100%);
  box-shadow: 0 0 18px var(--accent), 0 0 48px rgba(117,155,200,0.55);
  opacity: 0.9;
}
.hm-floor-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 22%;
  background: linear-gradient(180deg, transparent 0%, var(--dark-bg) 90%);
}
.hm-scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: overlay;
  opacity: 0.5;
}
.hero-m-section > .container { position: relative; z-index: 2; }
.hero-m-section .h-bottom { border-top-color: rgba(255, 255, 255, 0.16); }

/* ── Hero N — Wireframe observatory ────────────────────────────────────
   A large wireframe sphere sits centered behind the hero with orbital
   rings, soft accent glow, and faint star field. Stats sit below. */
.hero-n-section { isolation: isolate; }
.hero-n-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hn-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 45%, rgba(38, 63, 117, 0.55), transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(8, 10, 20, 1), transparent 70%),
    linear-gradient(180deg, #060812 0%, #0a0e1c 100%);
}
.hn-glow {
  position: absolute;
  left: 50%; top: 48%;
  width: 760px; height: 760px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent) 0%, transparent 55%);
  opacity: 0.22;
  filter: blur(40px);
}
.hn-sphere {
  position: absolute;
  left: 50%; top: 48%;
  width: 720px; height: 720px;
  transform: translate(-50%, -50%);
  color: rgba(117, 155, 200, 0.5);
  animation: spin 240s linear infinite;
}
.hn-sphere svg { width: 100%; height: 100%; display: block; overflow: visible; }
.hn-orbit {
  position: absolute;
  left: 50%; top: 48%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(117, 155, 200, 0.18);
}
.hn-orbit.r1 { width: 900px; height: 900px; animation: spin 180s linear infinite; }
.hn-orbit.r2 { width: 1140px; height: 1140px; animation: spin-rev 220s linear infinite; }
.hn-orbit-dot {
  position: absolute;
  left: 50%; top: 48%;
  width: 1px; height: 1px;
  transform: translate(-50%, -50%);
  animation: spin 28s linear infinite;
}
.hn-orbit-dot::after {
  content: "";
  position: absolute;
  left: 0; top: -450px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent), 0 0 32px rgba(117,155,200,0.7);
}
.hn-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 8% 18%, rgba(255,255,255,0.55), transparent 50%),
    radial-gradient(1.2px 1.2px at 22% 76%, rgba(255,255,255,0.7), transparent 50%),
    radial-gradient(1px 1px at 44% 30%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(1.4px 1.4px at 68% 14%, rgba(255,255,255,0.85), transparent 50%),
    radial-gradient(1px 1px at 82% 62%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1px 1px at 92% 28%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(1px 1px at 14% 88%, rgba(255,255,255,0.45), transparent 50%);
  opacity: 0.7;
}
.hn-equator {
  position: absolute;
  left: 0; right: 0;
  bottom: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(117,155,200,0.5) 30%, rgba(255,255,255,0.65) 50%, rgba(117,155,200,0.5) 70%, transparent 100%);
  box-shadow: 0 0 14px rgba(117,155,200,0.4);
}
.hn-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 40%, rgba(10,13,23,0.7) 100%);
}
.hero-n-section > .container { position: relative; z-index: 2; }

/* ── Hero O — Eclipse ──────────────────────────────────────────────────
   A dark planet silhouette rises at the bottom with a bright corona ring.
   Subtle grid floor behind, stars above, inline glow line preserved. */
.hero-o-section { isolation: isolate; }
.hero-o-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ho-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 110%, rgba(38, 63, 117, 0.55), transparent 65%),
    linear-gradient(180deg, #060812 0%, #0a0e1c 60%, #0a0e1c 100%);
}
.ho-stars {
  position: absolute;
  inset: 0 0 30% 0;
  background-image:
    radial-gradient(1px 1px at 8% 18%, rgba(255,255,255,0.55), transparent 50%),
    radial-gradient(1.2px 1.2px at 22% 76%, rgba(255,255,255,0.7), transparent 50%),
    radial-gradient(1px 1px at 44% 30%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(1.4px 1.4px at 68% 14%, rgba(255,255,255,0.85), transparent 50%),
    radial-gradient(1px 1px at 82% 62%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1px 1px at 92% 28%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(1px 1px at 14% 88%, rgba(255,255,255,0.45), transparent 50%);
  opacity: 0.65;
}
.ho-corona {
  position: absolute;
  left: 50%;
  bottom: -280px;
  width: 920px;
  height: 920px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    transparent 0%,
    transparent 40%,
    rgba(117, 155, 200, 0.05) 41%,
    rgba(255, 255, 255, 0.55) 43%,
    var(--accent) 44%,
    rgba(117, 155, 200, 0.45) 47%,
    rgba(117, 155, 200, 0.18) 55%,
    transparent 70%);
  filter: blur(2px);
  opacity: 0.95;
}
.ho-corona::after {
  /* outer halo */
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 45%, rgba(117, 155, 200, 0.15) 55%, transparent 75%);
  filter: blur(20px);
}
.ho-eclipse {
  position: absolute;
  left: 50%;
  bottom: -240px;
  width: 800px;
  height: 800px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #11182b 0%, #060812 60%, #04060e 100%);
  box-shadow: inset 0 24px 60px rgba(0, 0, 0, 0.7);
  z-index: 2;
}
.ho-floor {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 14%;
  perspective: 600px;
  perspective-origin: 50% 0%;
  overflow: hidden;
  z-index: 1;
}
.ho-floor-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(117, 155, 200, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 155, 200, 0.32) 1px, transparent 1px);
  background-size: 80px 60px;
  transform: rotateX(62deg);
  transform-origin: 50% 0%;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}
.ho-floor-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, var(--dark-bg) 90%);
}
.hero-o-section > .container { position: relative; z-index: 2; }
.hero-o-section .h-bottom { border-top-color: transparent; }
.hero-o-section .h-bigstat-num,
.hero-o-section .h-bigstat-lbl { position: relative; z-index: 1; }
.hero-o-section .h-bigstat-num { text-shadow: 0 2px 30px rgba(10, 13, 23, 0.7); }
.hero-o-section .h-bigstat-lbl { color: rgba(255, 255, 255, 0.72); text-shadow: 0 1px 12px rgba(10, 13, 23, 0.7); }

/* ── Hero P — Lightspeed ───────────────────────────────────────────────
   Radial speed rays warping out from a focal point at the bottom center,
   evoking hyperspace / motion. */
.hero-p-section { isolation: isolate; }
.hero-p-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hp-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(117, 155, 200, 0.32), transparent 65%),
    radial-gradient(ellipse 110% 60% at 50% 110%, rgba(38, 63, 117, 0.55), transparent 60%),
    linear-gradient(180deg, #07091a 0%, #0a0e1c 60%, #0a0e1c 100%);
}
.hp-rays {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0;
}
.hp-ray {
  position: absolute;
  left: -1px;
  bottom: 0;
  width: 2px;
  height: 1400px;
  transform-origin: 50% 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(117, 155, 200, 0.0) 30%,
    rgba(117, 155, 200, 0.35) 65%,
    rgba(255, 255, 255, 0.85) 95%,
    #fff 100%);
  filter: blur(0.6px);
  opacity: 0.85;
}
.hp-ray:nth-child(odd) { opacity: 0.55; width: 1px; }
.hp-ray:nth-child(3n) {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(200, 117, 182, 0.2) 60%,
    rgba(255, 255, 255, 0.75) 96%,
    #fff 100%);
  opacity: 0.45;
}
.hp-core {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 420px;
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%,
    #fff 0%,
    var(--accent) 15%,
    rgba(117, 155, 200, 0.55) 35%,
    transparent 65%);
  filter: blur(10px);
  opacity: 0.95;
}
.hp-core::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 180px;
  height: 90px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%, #fff 0%, var(--accent) 45%, transparent 75%);
  filter: blur(4px);
}
.hp-floor-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 13, 23, 0.55) 70%, var(--dark-bg) 100%);
}
.hero-p-section > .container { position: relative; z-index: 2; }
.hero-p-section .h-bottom { border-top-color: transparent; }
.hero-p-section .h-bigstat-num,
.hero-p-section .h-bigstat-lbl { position: relative; z-index: 1; }
.hero-p-section .h-bigstat-num { text-shadow: 0 2px 30px rgba(10, 13, 23, 0.7), 0 0 14px rgba(10, 13, 23, 0.5); }
.hero-p-section .h-bigstat-lbl { color: rgba(255, 255, 255, 0.75); text-shadow: 0 1px 12px rgba(10, 13, 23, 0.7); }

/* ── Hero Q — Nebula clouds ────────────────────────────────────────────
   Painterly accent + violet cloud formations rising from the bottom,
   constellation stars above, soft grain. No grid. */
.hero-q-section { isolation: isolate; }
.hero-q-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hq-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #060812 0%, #0a0e1c 60%, #0e1428 100%);
}
.hq-stars {
  position: absolute;
  inset: 0 0 50% 0;
  background-image:
    radial-gradient(1px 1px at 6% 14%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(1.2px 1.2px at 26% 28%, rgba(255,255,255,0.85), transparent 50%),
    radial-gradient(1px 1px at 42% 8%, rgba(255,255,255,0.45), transparent 50%),
    radial-gradient(1.4px 1.4px at 58% 22%, rgba(255,255,255,0.7), transparent 50%),
    radial-gradient(1px 1px at 74% 12%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1px 1px at 88% 30%, rgba(255,255,255,0.6), transparent 50%),
    radial-gradient(1px 1px at 18% 40%, rgba(255,255,255,0.4), transparent 50%);
  opacity: 0.7;
}
.hq-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  mix-blend-mode: screen;
}
.hq-cloud.c1 {
  /* large accent blue cloud, bottom-left */
  width: 900px; height: 600px;
  left: -120px; bottom: -180px;
  background: radial-gradient(ellipse at center, var(--accent) 0%, rgba(117, 155, 200, 0.5) 35%, transparent 70%);
  opacity: 0.7;
}
.hq-cloud.c2 {
  /* violet cloud, bottom-right */
  width: 820px; height: 560px;
  right: -160px; bottom: -120px;
  background: radial-gradient(ellipse at center, #c875b6 0%, rgba(200, 117, 182, 0.4) 35%, transparent 70%);
  opacity: 0.55;
}
.hq-cloud.c3 {
  /* small bright core, center-bottom */
  width: 520px; height: 280px;
  left: 50%; bottom: -60px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, #fff 0%, var(--accent) 25%, transparent 65%);
  opacity: 0.45;
  filter: blur(50px);
}
.hq-cloud.c4 {
  /* deep navy cloud, upper-center for depth */
  width: 1000px; height: 420px;
  left: 50%; top: -120px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(38, 63, 117, 0.7) 0%, transparent 70%);
  opacity: 0.7;
  mix-blend-mode: normal;
  filter: blur(80px);
}
.hq-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.16;
  mix-blend-mode: overlay;
}
.hq-bottom-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 25%;
  background: linear-gradient(180deg, transparent 0%, var(--dark-bg) 95%);
}
.hero-q-section > .container { position: relative; z-index: 2; }
.hero-q-section .h-bottom { border-top-color: transparent; }
.hero-q-section .h-bigstat-num,
.hero-q-section .h-bigstat-lbl { position: relative; z-index: 1; }
.hero-q-section .h-bigstat-num { text-shadow: 0 2px 30px rgba(10, 13, 23, 0.65); }
.hero-q-section .h-bigstat-lbl { color: rgba(255, 255, 255, 0.75); text-shadow: 0 1px 12px rgba(10, 13, 23, 0.7); }

/* Site-wide orbital backdrop (matches Hero F's framing) */
.site-orbits {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 1px;
  z-index: -1;
  pointer-events: none;
}
.site-orbits .orbit-ring {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.site-orbits .orbit-ring.r1 { width: 520px;  height: 520px;  border: 1px solid rgba(255, 255, 255, 0.14); }
.site-orbits .orbit-ring.r2 { width: 820px;  height: 820px;  border: 1px dashed rgba(255, 255, 255, 0.12); animation: spin 120s linear infinite; }
.site-orbits .orbit-ring.r3 { width: 1180px; height: 1180px; border: 1px solid rgba(117, 155, 200, 0.12); }
.site-orbits .orbit-ring.r4 { width: 1620px; height: 1620px; border: 1px dashed rgba(117, 155, 200, 0.14); animation: spin-rev 180s linear infinite; }
.site-orbits .orbit-ring.r5,
.site-orbits .orbit-ring.r6,
.site-orbits .orbit-ring.r7 { display: none; }
/* By default (variant A), only the first two traces are visible. */
.site-orbits .orbit-trace.t3,
.site-orbits .orbit-trace.t4,
.site-orbits .orbit-trace.t5,
.site-orbits .orbit-trace.t6 { display: none; }

/* Orbits variant B — many quiet rings, no traveling traces. */
body[data-orbits="B"] .site-orbits .orbit-trace { display: none; }
body[data-orbits="B"] .site-orbits .orbit-ring { border-style: solid; }
body[data-orbits="B"] .site-orbits .orbit-ring.r1 { width: 360px;  height: 360px;  border: 1px solid rgba(255, 255, 255, 0.06); animation: none; }
body[data-orbits="B"] .site-orbits .orbit-ring.r2 { width: 600px;  height: 600px;  border: 1px solid rgba(255, 255, 255, 0.055); animation: none; }
body[data-orbits="B"] .site-orbits .orbit-ring.r3 { width: 880px;  height: 880px;  border: 1px solid rgba(117, 155, 200, 0.06); animation: none; }
body[data-orbits="B"] .site-orbits .orbit-ring.r4 { width: 1180px; height: 1180px; border: 1px solid rgba(117, 155, 200, 0.055); animation: none; }
body[data-orbits="B"] .site-orbits .orbit-ring.r5 { display: block; width: 1480px; height: 1480px; border: 1px solid rgba(117, 155, 200, 0.05); }
body[data-orbits="B"] .site-orbits .orbit-ring.r6 { display: block; width: 1800px; height: 1800px; border: 1px solid rgba(255, 255, 255, 0.045); }
body[data-orbits="B"] .site-orbits .orbit-ring.r7 { display: block; width: 2160px; height: 2160px; border: 1px solid rgba(255, 255, 255, 0.035); }

/* Orbits variant C — more rings + more eclipse dots traveling at varied speeds. */
body[data-orbits="C"] .site-orbits .orbit-ring.r1 { width: 460px;  height: 460px;  border: 1px solid rgba(255, 255, 255, 0.14); }
body[data-orbits="C"] .site-orbits .orbit-ring.r2 { width: 700px;  height: 700px;  border: 1px dashed rgba(255, 255, 255, 0.11); animation: spin 140s linear infinite; }
body[data-orbits="C"] .site-orbits .orbit-ring.r3 { width: 960px;  height: 960px;  border: 1px solid rgba(117, 155, 200, 0.12); }
body[data-orbits="C"] .site-orbits .orbit-ring.r4 { width: 1240px; height: 1240px; border: 1px dashed rgba(117, 155, 200, 0.13); animation: spin-rev 200s linear infinite; }
body[data-orbits="C"] .site-orbits .orbit-ring.r5 { display: block; width: 1540px; height: 1540px; border: 1px solid rgba(117, 155, 200, 0.10); }
body[data-orbits="C"] .site-orbits .orbit-ring.r6 { display: block; width: 1860px; height: 1860px; border: 1px dashed rgba(255, 255, 255, 0.09); animation: spin 240s linear infinite; }
body[data-orbits="C"] .site-orbits .orbit-ring.r7 { display: block; width: 2200px; height: 2200px; border: 1px solid rgba(117, 155, 200, 0.07); }
/* All six trace orbits visible in C, each on a different ring at a different speed. */
body[data-orbits="C"] .site-orbits .orbit-trace.t1 { display: block; width: 460px;  height: 460px;  margin-left: -230px;  margin-top: -230px;  animation: spin 22s linear infinite; }
body[data-orbits="C"] .site-orbits .orbit-trace.t2 { display: block; width: 700px;  height: 700px;  margin-left: -350px;  margin-top: -350px;  animation: spin-rev 30s linear infinite; }
body[data-orbits="C"] .site-orbits .orbit-trace.t3 { display: block; width: 960px;  height: 960px;  margin-left: -480px;  margin-top: -480px;  animation: spin 38s linear infinite; }
body[data-orbits="C"] .site-orbits .orbit-trace.t4 { display: block; width: 1240px; height: 1240px; margin-left: -620px;  margin-top: -620px;  animation: spin-rev 52s linear infinite; }
body[data-orbits="C"] .site-orbits .orbit-trace.t5 { display: block; width: 1540px; height: 1540px; margin-left: -770px;  margin-top: -770px;  animation: spin 68s linear infinite; }
body[data-orbits="C"] .site-orbits .orbit-trace.t6 { display: block; width: 1860px; height: 1860px; margin-left: -930px;  margin-top: -930px;  animation: spin-rev 86s linear infinite; }
/* Brighten the eclipse bloom in C and give it a slow pulse so the activity feels alive. */
body[data-orbits="C"] .site-orbits-eclipse {
  animation: site-orbits-eclipse-pulse 7s ease-in-out infinite;
  filter: blur(2px);
}
@keyframes site-orbits-eclipse-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.08); }
}
.site-orbits .orbit-trace {
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: center;
  border-radius: 50%;
}
.site-orbits .orbit-trace.t1 {
  width: 820px; height: 820px;
  margin-left: -410px; margin-top: -410px;
  animation: spin 28s linear infinite;
}
.site-orbits .orbit-trace.t2 {
  width: 1180px; height: 1180px;
  margin-left: -590px; margin-top: -590px;
  animation: spin-rev 42s linear infinite;
}
.site-orbits .orbit-trace .trace-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent), 0 0 36px rgba(117, 155, 200, 0.6);
  opacity: 1;
}
.site-orbits .orbit-trace .trace-dot.small {
  width: 6px; height: 6px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7), 0 0 24px rgba(255, 255, 255, 0.4);
  opacity: 0.9;
}
/* Eclipse glow — pulsing radial bloom behind the rings */
.site-orbits-eclipse {
  position: absolute;
  left: 0;
  top: 0;
  width: 1100px;
  height: 1100px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 155, 200, 0.28) 0%, rgba(38, 63, 117, 0.1) 35%, transparent 65%);
  filter: blur(20px);
  animation: eclipse-pulse 8s ease-in-out infinite;
}
@keyframes eclipse-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.85; }
  50%      { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }
}

/* ── About ───────────────────────────────────────────────────────────── */
.about { padding-top: 40px; }

/* About A — Photo right (spec) */
.about-a {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.about-a .copy .h-section { font-size: var(--fs-about); }
.about-a .copy p { color: var(--gray-light); font-size: var(--fs-body-lg); max-width: 580px; margin: 32px 0 40px; }
.about-a .photo-wrap {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, var(--accent) 0%, var(--navy-mid) 100%);
  box-shadow: 0 40px 80px -30px rgba(38,63,117,0.6);
}
.about-a image-slot { display: block; width: 100%; height: 100%; }
.about-a .name-plate {
  position: absolute;
  left: 24px; bottom: 24px;
  padding: 14px 22px;
  background: rgba(10,13,23,0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--fs-pill);
  display: flex; align-items: center; gap: 10px;
}
.name-plate .live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #5fffa3;
  box-shadow: 0 0 10px #5fffa3;
}

/* About B — Photo left + outline */
.about-b {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: stretch;
}
.about-b .photo-wrap {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, var(--accent) 0%, var(--navy-mid) 100%);
}
.about-b .frame-tick {
  position: absolute;
  top: 20px; right: 20px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.about-b .copy { display: flex; flex-direction: column; justify-content: center; }
.about-b .h-section { font-size: var(--fs-about); }
.about-b .lede { font-family: "Afacad Flux", sans-serif; font-size: var(--fs-body-lg); color: var(--gray-light); margin: 28px 0 40px; max-width: 580px; }
.about-b .pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.about-b .pillar {
  padding: 24px 0 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.about-b .pillar:nth-child(odd) { border-left: 0; padding-left: 0; }
.about-b .pillar .idx {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}
.about-b .pillar .name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(22px * var(--font-scale));
  color: var(--off-white);
}
.about-b .pillar .desc { font-size: calc(15px * var(--font-scale)); color: var(--gray-light); margin-top: 4px; }
.about-b .actions { margin-top: 40px; display: flex; gap: 16px; }

/* About C — Editorial split, text-dominant, 100vh */
.about-c-section {
  height: 100vh;
  min-height: 720px;
  max-height: 980px;
  padding-top: 80px;
  padding-bottom: 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-c-section > .container { width: 100%; }

.about-c {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-c .c-photo {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  justify-self: start;
}
.about-c .c-photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--accent), var(--navy-mid));
  box-shadow: 0 40px 90px -30px rgba(38, 63, 117, 0.7);
  z-index: 2;
}
.about-c .c-photo-frame image-slot {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 28px;
}
.about-c .c-photo-tag {
  position: absolute;
  bottom: -28px;
  right: -20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 20px;
  background: rgba(10, 13, 23, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}
.about-c .c-photo-tag .k {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.about-c .c-photo-tag .v {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.about-c .c-ring {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.about-c .c-ring-1 {
  width: 480px;
  height: 480px;
  left: -60px;
  top: -30px;
}
.about-c .c-ring-2 {
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -60px;
  border-color: rgba(117, 155, 200, 0.18);
}

.about-c .c-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}
.about-c .c-headline {
  font-size: calc(56px * var(--font-scale));
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}
.about-c .c-lede {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(15px * var(--font-scale));
  color: var(--gray-light);
  line-height: 1.55;
  margin: 0;
  max-width: 580px;
}

.about-c .c-meta {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.about-c .c-meta-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about-c .c-meta-k {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.about-c .c-meta-v {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(16px * var(--font-scale));
  color: var(--off-white);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.about-c .c-meta-v .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5fffa3;
  box-shadow: 0 0 10px #5fffa3;
}
.about-c .c-actions {
  display: flex;
  gap: 12px;
}

/* ─── About D — Editorial 3-column ─────────────────────────────────── */
.about-d-section { padding: 140px 0; }
.about-d {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr 0.7fr;
  gap: 56px;
  align-items: center;
}

/* Left column */
.about-d .d-left { display: flex; flex-direction: column; gap: 22px; }
.about-d .d-greet {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(18px * var(--font-scale));
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.01em;
}
.about-d .d-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(82px * var(--font-scale));
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--off-white);
  text-transform: uppercase;
}
.about-d .d-highlight { margin: 8px 0 4px; font-size: 0; }
.about-d .d-mark {
  display: inline;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(22px * var(--font-scale));
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--off-white);
  background-image: linear-gradient(180deg, transparent 50%, rgba(117, 155, 200, 0.4) 50%, rgba(117, 155, 200, 0.4) 92%, transparent 92%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 2px 6px;
  margin: 0 -2px;
}
.about-d .d-body {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(16px * var(--font-scale));
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.72);
  max-width: 460px;
  margin: 0;
}
.about-d .d-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 12px 12px 12px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0d17;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(16px * var(--font-scale));
  letter-spacing: -0.005em;
  transition: transform 0.25s, filter 0.25s, box-shadow 0.25s;
  box-shadow: 0 14px 36px -10px rgba(117, 155, 200, 0.6);
}
.about-d .d-cta:hover { transform: translateY(-2px); filter: brightness(1.05); }
.about-d .d-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #0a0d17;
  color: var(--accent);
  transition: transform 0.25s;
}
.about-d .d-cta:hover .d-cta-arrow { transform: rotate(-12deg); }

/* Center — portrait card (textured backdrop replaces gradient) */
.about-d .d-center {
  position: relative;
  align-self: center;
}
.about-d .d-photo-wrap {
  position: relative;
  padding: 22px;
  border-radius: 32px;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(117, 155, 200, 0.14), transparent 70%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), border-color 0.5s, box-shadow 0.5s;
  isolation: isolate;
}
.about-d .d-photo-wrap::before {
  /* accent halo behind the card — scales up on hover */
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 34px;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(117, 155, 200, 0.55), transparent 65%);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: -1;
  pointer-events: none;
}
.about-d .d-photo-bg {
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1.5px);
  background-size: 14px 14px;
  background-position: center;
  pointer-events: none;
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1), background-size 0.8s ease, opacity 0.6s ease;
  opacity: 0.7;
}
.about-d .d-photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(10, 13, 23, 0.5);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1), box-shadow 0.6s ease;
}
.about-d .d-photo image-slot { width: 100%; height: 100%; display: block; border-radius: 22px; }
.about-d .d-photo::after {
  /* diagonal shine that sweeps across on hover */
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left 0.9s cubic-bezier(.2,.7,.2,1);
  z-index: 2;
}
.about-d .d-photo-tag {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(10, 13, 23, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--off-white);
  white-space: nowrap;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), border-color 0.5s;
}
.about-d .d-side-stack {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.about-d .d-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10, 13, 23, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), background 0.4s ease, color 0.4s ease;
}

/* ── Hover state ── */
.about-d .d-photo-wrap:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
}
.about-d .d-photo-wrap:hover::before { opacity: 1; transform: scale(1.04); }
.about-d .d-photo-wrap:hover .d-photo {
  transform: scale(1.02);
  box-shadow: 0 50px 100px -30px rgba(38, 63, 117, 0.85);
}
.about-d .d-photo-wrap:hover .d-photo::after { left: 160%; }
.about-d .d-photo-wrap:hover .d-photo-bg {
  transform: rotate(8deg);
  background-size: 18px 18px;
  opacity: 0.95;
}
.about-d .d-photo-wrap:hover .d-photo-tag {
  transform: translateX(-50%) translateY(-4px);
  border-color: var(--accent);
}
.about-d .d-photo-wrap:hover .d-side-stack {
  transform: translateY(-50%) translateX(8px);
}
.about-d .d-photo-wrap:hover .d-icon:nth-child(1) {
  transform: translateX(8px) rotate(-12deg);
  background: var(--accent); color: #0a0d17;
}
.about-d .d-photo-wrap:hover .d-icon:nth-child(2) {
  transform: translateX(14px);
  background: var(--accent); color: #0a0d17;
  transition-delay: 0.06s;
}
.about-d .d-photo-wrap:hover .d-icon:nth-child(3) {
  transform: translateX(8px) rotate(12deg);
  background: var(--accent); color: #0a0d17;
  transition-delay: 0.12s;
}

/* Right — masthead + clients */
.about-d .d-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about-d .d-meta-line {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
}
.about-d .d-role {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(34px * var(--font-scale));
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--off-white);
  text-transform: uppercase;
  text-align: right;
}
.about-d .d-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.about-d .d-clients { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.about-d .d-clients-row { display: flex; gap: 0; }
.about-d .d-cthumb {
  width: 56px; height: 56px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--dark-bg);
  background: rgba(255, 255, 255, 0.06);
  margin-left: -10px;
}
.about-d .d-cthumb:first-child { margin-left: 0; }
.about-d .d-cthumb image-slot { width: 100%; height: 100%; display: block; }
.about-d .d-clients-cap {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(14px * var(--font-scale));
  color: rgba(255, 255, 255, 0.65);
  text-align: right;
}

/* ─── About E — Highlight-first / marker stroke ────────────────────── */
.about-e-section { padding: 140px 0; }
.about-e {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-e .e-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.about-e .e-eyebrow::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.about-e .e-highlight {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(56px * var(--font-scale));
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 1100px;
}
.about-e .e-mark {
  background-image: linear-gradient(180deg, transparent 55%, rgba(117, 155, 200, 0.45) 55%, rgba(117, 155, 200, 0.45) 92%, transparent 92%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 2px 8px;
  margin: 0 -4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--off-white);
}

.about-e .e-body-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 80px;
  align-items: start;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.about-e .e-body {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(18px * var(--font-scale));
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.78);
  margin: 0;
  max-width: 560px;
  padding-top: 32px;
}

.about-e .e-photo-wrap {
  position: relative;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.about-e .e-photo-bg {
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.about-e .e-photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(10, 13, 23, 0.5);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.65);
}
.about-e .e-photo image-slot { width: 100%; height: 100%; display: block; border-radius: 20px; }
.about-e .e-photo-stamp {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 2;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(10, 13, 23, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-e .e-photo-stamp svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 22s linear infinite;
}
.about-e .e-stamp-core {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.about-e .e-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  color: var(--off-white);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(18px * var(--font-scale));
  letter-spacing: -0.005em;
}
.about-e .e-cta-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0d17;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 30px -8px rgba(117, 155, 200, 0.55);
}
.about-e .e-cta:hover .e-cta-circle { transform: translateX(4px) rotate(-6deg); box-shadow: 0 18px 40px -8px rgba(117, 155, 200, 0.75); }
.about-e .e-cta-text { line-height: 1.1; }

/* ─── About F — Tilted polaroid + service chips ────────────────────── */
.about-f-section { padding: 140px 0; }
.about-f {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 96px;
  align-items: center;
}
.about-f .f-photo-col {
  position: relative;
  padding: 40px;
}
.about-f .f-polaroid {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 18px 18px 64px;
  background: #f2efe6;
  border-radius: 4px;
  transform: rotate(-3deg);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease;
}
.about-f .f-polaroid:hover { transform: rotate(-1deg) translateY(-4px); }
.about-f .f-polaroid-bg {
  position: absolute;
  inset: 18px 18px 64px;
  background-image:
    radial-gradient(circle, rgba(0, 0, 0, 0.08) 1px, transparent 1.5px);
  background-size: 8px 8px;
  pointer-events: none;
  z-index: 0;
}
.about-f .f-photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: #d6d2c5;
}
.about-f .f-photo image-slot { width: 100%; height: 100%; display: block; }
.about-f .f-polaroid-cap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 6px 2px;
  color: #29261b;
}
.about-f .f-pcap-k {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(41, 38, 27, 0.55);
}
.about-f .f-pcap-v {
  font-family: "Covered By Your Grace", "Bricolage Grotesque", sans-serif;
  font-size: 24px;
  color: #29261b;
}
.about-f .f-polaroid-stamp {
  position: absolute;
  bottom: 16px;
  right: 18px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent-deep);
  border: 1.5px solid var(--accent-deep);
  border-radius: 4px;
  padding: 4px 10px;
  transform: rotate(-6deg);
  opacity: 0.85;
}
.about-f .f-clip {
  position: absolute;
  width: 28px; height: 60px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  pointer-events: none;
  z-index: 3;
}
.about-f .f-clip-tl {
  top: 8px; left: 50%;
  transform: translateX(-60%) rotate(-12deg);
}
.about-f .f-clip-br { display: none; }

.about-f .f-text-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about-f .f-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(64px * var(--font-scale));
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 6px 0 0;
}
.about-f .f-name .accent { color: var(--accent); font-style: italic; font-weight: 400; }
.about-f .f-highlight { margin: 4px 0 0; }
.about-f .f-mark {
  display: inline;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(24px * var(--font-scale));
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--off-white);
  background-image:
    linear-gradient(180deg, transparent 60%, rgba(117, 155, 200, 0.45) 60%, rgba(117, 155, 200, 0.45) 96%, transparent 96%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 2px 6px;
  margin: 0 -3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.about-f .f-body {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(16px * var(--font-scale));
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.7);
  margin: 0;
  max-width: 540px;
}
.about-f .f-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.about-f .f-chip {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}
.about-f .f-chip-on {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0d17;
}
.about-f .f-cta {
  align-self: flex-start;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 14px 24px;
  border-radius: 16px;
  background: var(--off-white);
  color: #0a0d17;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(16px * var(--font-scale));
  transition: transform 0.25s, background 0.25s, color 0.25s;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.about-f .f-cta:hover { background: var(--accent); color: #0a0d17; transform: translateY(-2px); }
.about-f .f-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0d17;
  transition: transform 0.25s;
}
.about-f .f-cta:hover .f-cta-icon { background: #0a0d17; color: var(--off-white); transform: rotate(-12deg); }

/* ── Clients ───────────────────────────────────────────────────────────── */
.clients .head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.clients .head .h-section { font-size: var(--fs-section); }
.clients .sub { font-family: "Afacad Flux", sans-serif; font-size: var(--fs-body-lg); color: var(--accent); max-width: 340px; text-align: right; }

/* Clients A — 3-up cards (spec) */
.clients-a {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.client-card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column;
}
.client-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, var(--accent) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  box-shadow: 0 24px 60px -20px rgba(117,155,200,0.45);
}
.client-card .tag { transition: color 0.35s ease; }
.client-card:hover .tag { color: rgba(255,255,255,0.85); }
.client-card .photo {
  aspect-ratio: 1.16 / 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card) var(--r-card) 0 0;
}
.client-card image-slot { width: 100%; height: 100%; display: block; }
.client-card .body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.client-card .name {
  font-family: "Afacad Flux", sans-serif;
  font-weight: 500;
  font-size: calc(26px * var(--font-scale));
  color: var(--off-white);
  line-height: 1.1;
}
.client-card .quote {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(15px * var(--font-scale));
  color: rgba(245,245,245,0.78);
  line-height: 1.55;
}
.client-card .tag {
  margin-top: auto;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.client-card.featured .tag { color: rgba(255,255,255,0.85); }

/* Clients B — Editorial ledger */
.clients-b { display: flex; flex-direction: column; }
.client-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 200px;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  transition: padding 0.3s ease;
}
.client-row:hover { padding-left: 12px; }
.client-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.client-row .idx { font-family: "Inter", sans-serif; font-size: 13px; color: var(--accent); letter-spacing: 0.16em; }
.client-row .name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(36px * var(--font-scale));
  color: var(--off-white);
  letter-spacing: -0.02em;
}
.client-row .quote { color: var(--gray-light); font-size: calc(16px * var(--font-scale)); }
.client-row .thumb {
  width: 100%; aspect-ratio: 1.2/1;
  border-radius: 14px; overflow: hidden;
  background: linear-gradient(180deg, var(--accent), var(--navy-mid));
}
.client-row image-slot { width: 100%; height: 100%; display: block; }

/* Clients C — Horizontal marquee */
.clients-c { width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; }
.clients-c .track {
  display: flex; gap: 24px; padding: 0 var(--gutter);
  animation: scroll-clients 48s linear infinite;
  width: max-content;
}
.clients-c .mini-card {
  flex: 0 0 380px;
  border-radius: var(--r-card);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.clients-c .mini-card .photo { aspect-ratio: 1.3/1; }
.clients-c .mini-card image-slot { width: 100%; height: 100%; display: block; }
.clients-c .mini-card .body { padding: 22px; }
.clients-c .mini-card .name { font-family: "Bricolage Grotesque", sans-serif; font-size: calc(26px * var(--font-scale)); margin-bottom: 8px; }
.clients-c .mini-card .quote { color: var(--gray-light); font-size: calc(15px * var(--font-scale)); }
@keyframes scroll-clients {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Featured Testimonial ──────────────────────────────────────────────── */
.featured-t {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 560px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transform: rotate(-0.4deg);
}
.featured-t .photo-side {
  position: relative;
  background: linear-gradient(180deg, var(--accent) 0%, var(--navy-mid) 100%);
}
.featured-t image-slot { width: 100%; height: 100%; display: block; }
.featured-t .quote-side {
  padding: 64px 56px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  gap: 48px;
}
.featured-t .mark {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(110px * var(--font-scale));
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.4;
}
.featured-t .quote-text {
  font-family: "Afacad Flux", sans-serif;
  font-weight: 400;
  font-size: calc(28px * var(--font-scale));
  line-height: 1.35;
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.featured-t .attribution { display: flex; flex-direction: column; gap: 4px; }
.featured-t .who { font-family: "Bricolage Grotesque", sans-serif; font-size: calc(26px * var(--font-scale)); color: var(--off-white); }
.featured-t .role { font-family: "Afacad Flux", sans-serif; font-size: calc(16px * var(--font-scale)); color: var(--accent); }

/* ── Services / Work ───────────────────────────────────────────────────── */
.services .head { margin-bottom: 64px; }
.services .head .h-section { font-size: var(--fs-section); max-width: 800px; }
.svc-list { display: flex; flex-direction: column; }
.svc-item {
  display: grid;
  grid-template-columns: 120px 1fr 1.2fr auto;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  cursor: default;
  transition: padding 0.3s ease;
}
.svc-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.svc-item:hover { padding-left: 16px; }
.svc-item {
  position: relative;
}
.svc-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.svc-item:hover::after { width: 100%; }
.svc-item .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: var(--fs-svc-num);
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(135, 178, 228, 0.75);
  transition: color 0.3s ease, transform 0.3s ease;
}
.svc-item:hover .num {
  color: var(--accent);
  transform: translateX(-4px);
}
.svc-item .title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: var(--fs-svc-title);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: rgba(235, 240, 250, 0.92);
  transition: color 0.3s ease;
}
.svc-item:hover .title { color: var(--off-white); }
.svc-item .desc {
  font-family: "Afacad Flux", sans-serif;
  font-size: var(--fs-body);
  color: rgba(245,245,245,0.78);
  max-width: 440px;
  transition: color 0.3s ease;
}
.svc-item:hover .desc { color: var(--off-white); }
.svc-item .cta {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(135, 178, 228, 0.45);
  background: rgba(135, 178, 228, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--off-white);
  transition: background 0.3s, border-color 0.3s, transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s;
  flex-shrink: 0;
}
.svc-item:hover .cta {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg) scale(1.05);
  box-shadow: 0 0 0 6px rgba(117,155,200,0.18);
}

/* ── Contact / CTA ─────────────────────────────────────────────────────── */
.contact .card {
  position: relative;
  border-radius: var(--r-card-lg);
  background:
    radial-gradient(ellipse 70% 80% at 30% 0%, rgba(117,155,200,0.5), transparent 60%),
    linear-gradient(160deg, var(--accent-deep) 0%, #0e1730 100%);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 80px 72px;
  overflow: hidden;
}
.contact .card::before {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117,155,200,0.45), transparent 65%);
  pointer-events: none;
}
.contact .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
}
.contact .h-section { font-size: var(--fs-section); }
.contact .sub {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(22px * var(--font-scale));
  color: var(--accent);
  margin-top: 12px;
  font-weight: 500;
}
.contact .body {
  font-family: "Afacad Flux", sans-serif;
  font-size: var(--fs-body);
  color: rgba(245,245,245,0.78);
  margin-top: 24px;
  max-width: 480px;
}
.contact .links { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.contact .link-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: "Afacad Flux", sans-serif;
  font-size: var(--fs-body);
  transition: padding 0.3s ease, color 0.3s ease;
}
.contact .link-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact .link-row:hover { padding-left: 12px; color: var(--accent); }
.contact .link-row .k { color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }

.form { display: flex; flex-direction: column; gap: 28px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form .field { display: flex; flex-direction: column; gap: 8px; }
.form .field label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form .field input,
.form .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 8px 0;
  font-family: "Afacad Flux", sans-serif;
  font-weight: 300;
  font-size: calc(20px * var(--font-scale));
  color: var(--off-white);
  outline: none;
  width: 100%;
  resize: none;
  transition: border-color 0.25s;
}
.form .field input::placeholder,
.form .field textarea::placeholder { color: rgba(245,245,245,0.39); }
.form .field input:focus,
.form .field textarea:focus { border-bottom-color: var(--accent); }
.form .field textarea { min-height: 60px; }
.form .submit { margin-top: 12px; align-self: flex-start; }

/* ── Contact B — Mission Brief Terminal ──────────────────────────────── */
.contact-b-section {
  padding: 120px 0;
}
.cb-shell {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10, 13, 23, 0.92) 0%, rgba(6, 10, 22, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.6);
}
.cb-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(117, 155, 200, 0.04) 1px, transparent 1px);
  background-size: 100% 28px;
  pointer-events: none;
  opacity: 0.6;
}
.cb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}
.cb-bar-l { display: flex; align-items: center; gap: 8px; }
.cb-bar-l .cb-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.cb-bar-l .cb-dot.red { background: #ff6058; }
.cb-bar-l .cb-dot.amber { background: #ffbd2e; }
.cb-bar-l .cb-dot.green { background: #28ca41; }
.cb-bar-title {
  margin-left: 14px;
  font-family: "JetBrains Mono", "Inter", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}
.cb-bar-r {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5fffa3;
}
.cb-bar-r .live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5fffa3;
  box-shadow: 0 0 10px #5fffa3;
}

.cb-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  padding: 48px 56px 56px;
}
.cb-left { display: flex; flex-direction: column; gap: 20px; }
.cb-left .h-section { font-size: calc(48px * var(--font-scale)); }
.cb-prose {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(16px * var(--font-scale));
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 380px;
  line-height: 1.55;
}
.cb-status {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cb-status-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "Inter", sans-serif;
  font-size: 12px;
}
.cb-status-row .cb-k {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}
.cb-status-row .cb-v {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14px;
  color: var(--off-white);
}

.cb-form { display: flex; flex-direction: column; gap: 16px; }
.cb-line {
  display: grid;
  grid-template-columns: 100px auto 1fr auto;
  grid-template-areas: "k bl input br";
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: border-color 0.25s, background 0.25s;
}
.cb-line:hover, .cb-line:focus-within {
  border-color: rgba(117, 155, 200, 0.5);
  background: rgba(117, 155, 200, 0.04);
}
.cb-line-k {
  grid-area: k;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.cb-line-bracket {
  font-family: "JetBrains Mono", monospace;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  user-select: none;
}
.cb-input {
  flex: 1;
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--off-white);
  font-family: "JetBrains Mono", "Inter", monospace;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 6px 0;
}
.cb-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.cb-line .cb-input { min-width: 0; }
/* keep grid */
.cb-line:not(.cb-line-block) .cb-input + .cb-input {
  border-left: 1px dashed rgba(255, 255, 255, 0.12);
  padding-left: 14px;
  margin-left: 14px;
}
.cb-line-block {
  grid-template-columns: 100px auto 1fr auto;
  align-items: start;
}
.cb-line-block .cb-line-bracket { padding-top: 6px; }
.cb-textarea {
  min-height: 70px;
  resize: vertical;
  line-height: 1.5;
}

.cb-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: linear-gradient(91deg, var(--accent-deep), var(--accent));
  border: 0;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: white;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.25s, filter 0.25s, box-shadow 0.25s;
  box-shadow: 0 12px 30px -10px rgba(117, 155, 200, 0.6);
}
.cb-submit:hover { transform: translateY(-1px); filter: brightness(1.1); }
.cb-submit-chevron {
  color: white;
  font-size: 16px;
  line-height: 1;
}

/* ── Contact C — Inline narrative ──────────────────────────────────────── */
.contact-c-section { padding: 140px 0; }
.cc-wrap {
  max-width: 980px;
  margin: 0 auto;
}
.cc-narrative {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(28px * var(--font-scale));
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--off-white);
}
.cc-narrative p {
  margin: 0 0 18px;
}
.cc-narrative .cc-final { margin-bottom: 36px; }
.cc-input {
  display: inline-block;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--accent);
  outline: none;
  font: inherit;
  color: var(--accent);
  padding: 0 8px 4px;
  margin: 0 2px;
  transition: border-color 0.25s, background 0.25s;
}
.cc-input::placeholder {
  color: rgba(117, 155, 200, 0.55);
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px * var(--font-scale));
  letter-spacing: 0.02em;
}
.cc-input:focus {
  background: rgba(117, 155, 200, 0.06);
  border-bottom-color: var(--off-white);
  border-radius: 4px 4px 0 0;
}
.cc-input-sm { width: 180px; }
.cc-input-md { width: 260px; }
.cc-input-lg { width: 380px; max-width: 100%; }
.cc-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

/* ── Contact D — Asymmetric editorial ──────────────────────────────────── */
.contact-d-section { padding: 140px 0; }
.cd-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: start;
}
.cd-left { display: flex; flex-direction: column; gap: 36px; }
.cd-headline {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(96px * var(--font-scale));
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--off-white);
  margin: 0;
}
.cd-info {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cd-info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Inter", sans-serif;
  font-size: 14px;
}
.cd-info-k {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.cd-info-v {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
a.cd-info-v:hover { color: var(--accent); }
.cd-info-v .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5fffa3;
  box-shadow: 0 0 10px #5fffa3;
}

.cd-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cd-field { display: flex; flex-direction: column; gap: 8px; }
.cd-field label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.cd-field input,
.cd-field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 0 10px;
  font-family: "Afacad Flux", sans-serif;
  font-weight: 300;
  font-size: calc(18px * var(--font-scale));
  color: var(--off-white);
  outline: none;
  resize: none;
  transition: border-color 0.25s;
}
.cd-field input::placeholder,
.cd-field textarea::placeholder { color: rgba(245, 245, 245, 0.4); }
.cd-field input:focus,
.cd-field textarea:focus { border-bottom-color: var(--accent); }
.cd-field textarea { min-height: 64px; }
.cd-submit { align-self: flex-start; margin-top: 8px; }

/* ── Contact E — Minimal one-liner ─────────────────────────────────── */
.contact-e-section { padding: 140px 0; }
.ce-wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 72px 64px;
  border-radius: var(--r-card-lg);
  background:
    radial-gradient(ellipse 70% 80% at 30% 0%, rgba(117,155,200,0.5), transparent 60%),
    linear-gradient(160deg, var(--accent-deep) 0%, #0e1730 100%);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.ce-wrap::before {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117,155,200,0.45), transparent 65%);
  pointer-events: none;
}
.ce-wrap > * { position: relative; z-index: 1; }
.ce-headline {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(56px * var(--font-scale));
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
}
.ce-headline .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}
.ce-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.ce-field { display: flex; flex-direction: column; gap: 8px; }
.ce-field label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.ce-field input,
.ce-field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 0 12px;
  font-family: "Afacad Flux", sans-serif;
  font-weight: 300;
  font-size: calc(20px * var(--font-scale));
  color: var(--off-white);
  outline: none;
  resize: none;
  transition: border-color 0.25s;
}
.ce-field input::placeholder,
.ce-field textarea::placeholder { color: rgba(245, 245, 245, 0.32); }
.ce-field input:focus,
.ce-field textarea:focus { border-bottom-color: var(--accent); }
.ce-field textarea { min-height: 72px; }
.ce-submit { align-self: flex-start; margin-top: 8px; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.footer-big {
  position: relative;
  margin-top: 80px;
  padding: 56px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.footer-big::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -200px;
  transform: translateX(-50%);
  width: 1400px;
  height: 1400px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.04);
  pointer-events: none;
}
.footer-big::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(117,155,200,0.06);
  pointer-events: none;
}
.footer-big > .container { position: relative; z-index: 1; }

.ft-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding-bottom: 56px;
}
.ft-top-l { display: flex; flex-direction: column; gap: 14px; }
.ft-cta-head {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(56px * var(--font-scale));
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin: 0;
}
.ft-cta-head .accent { color: var(--accent); font-weight: 400; font-style: italic; }
.ft-top-r {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.ft-top-r .btn { white-space: nowrap; }

.ft-wordmark {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ft-word {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: clamp(72px, 11vw, 165px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--off-white);
  text-transform: uppercase;
}
.ft-word.ft-word-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.ft-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  padding: 56px 0 64px;
}
.ft-col { display: flex; flex-direction: column; gap: 14px; }
.ft-col-h {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 6px;
}
.ft-col a {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(16px * var(--font-scale));
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  width: max-content;
}
.ft-col a:hover { color: var(--accent); transform: translateX(4px); }
.ft-meta {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(16px * var(--font-scale));
  color: rgba(255,255,255,0.75);
}
.ft-meta .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5fffa3;
  box-shadow: 0 0 10px #5fffa3;
}

.ft-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.ft-legal { letter-spacing: 0.04em; }
.ft-version {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.ft-fine {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}
.ft-fine a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-fine a:hover { color: var(--accent); }
.ft-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

/* legacy minimal footer */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 80px;
}
.footer .row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer .legal {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.footer .links-inline { display: flex; gap: 28px; }
.footer .links-inline a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer .links-inline a:hover { color: var(--accent); }

/* image-slot overrides */
image-slot {
  --slot-bg: transparent;
  --slot-border: transparent;
  border-radius: inherit;
}


/* ============================================================================
   ABOUT PAGE STYLES
   Loaded by About.html. Reuses tokens + nav/btn/footer from styles.css.
============================================================================ */

/* ── Distinct cosmic backdrop (no orbital rings on About) ─────────────── */
.ab-cosmos {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 70% 50% at 20% 10%, rgba(38, 63, 117, 0.5), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(117, 155, 200, 0.18), transparent 65%),
    linear-gradient(180deg, var(--dark-bg-2) 0%, var(--dark-bg) 25%, var(--dark-bg) 75%, var(--dark-bg-2) 100%);
}
.ab-blobs {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.ab-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  animation: ab-blob-float 18s ease-in-out infinite;
}
.ab-blob.ab-b1 {
  width: 520px; height: 520px;
  left: 5%; top: 8%;
  background: radial-gradient(circle, rgba(117, 155, 200, 0.45), transparent 65%);
}
.ab-blob.ab-b2 {
  width: 620px; height: 620px;
  right: -8%; top: 45%;
  background: radial-gradient(circle, rgba(38, 63, 117, 0.5), transparent 65%);
  animation-duration: 24s;
  animation-direction: reverse;
}
.ab-blob.ab-b3 {
  width: 440px; height: 440px;
  left: 38%; bottom: 6%;
  background: radial-gradient(circle, rgba(117, 155, 200, 0.28), transparent 65%);
  animation-duration: 20s;
}
@keyframes ab-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.08); }
}
.ab-deco {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.ab-arc-tl {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  opacity: 0.6;
}
.ab-arc-br {
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  opacity: 0.5;
}
.ab-star {
  position: absolute;
  color: var(--accent);
  font-size: 20px;
  opacity: 0.4;
  animation: ab-twinkle 4s ease-in-out infinite;
}
.ab-star.ab-s1 { top: 12%;  left: 18%; font-size: 14px; animation-delay: 0s; }
.ab-star.ab-s2 { top: 24%;  right: 24%; font-size: 18px; opacity: 0.5; animation-delay: 1.2s; }
.ab-star.ab-s3 { top: 56%;  left: 8%;  font-size: 22px; opacity: 0.35; animation-delay: 0.6s; }
.ab-star.ab-s4 { top: 70%;  right: 12%; font-size: 16px; animation-delay: 1.8s; }
.ab-star.ab-s5 { bottom: 18%; left: 42%; font-size: 12px; opacity: 0.4; animation-delay: 2.4s; }
.ab-star.ab-s6 { top: 42%;  left: 56%; font-size: 14px; opacity: 0.5; animation-delay: 0.3s; }
@keyframes ab-twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.85); }
  50%      { opacity: 0.7; transform: scale(1.1); }
}
.ab-cursive-bg {
  position: absolute;
  bottom: 12%;
  right: 4%;
  font-family: "Covered By Your Grace", cursive;
  font-size: 96px;
  color: rgba(117, 155, 200, 0.06);
  pointer-events: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transform: rotate(-6deg);
}

/* ── Shared section bits ──────────────────────────────────────────────── */
.ab-eyebrow {
  font-family: "Covered By Your Grace", cursive;
  font-size: calc(28px * var(--font-scale));
  color: var(--accent);
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}
.ab-h-section {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(56px * var(--font-scale));
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin: 0;
}
.ab-mark {
  font-style: italic;
  color: var(--off-white);
  background-image: linear-gradient(180deg, transparent 60%, rgba(117, 155, 200, 0.4) 60%, rgba(117, 155, 200, 0.4) 92%, transparent 92%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 6px;
  margin: 0 -3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.ab-btn-grad { letter-spacing: 0.06em; text-transform: uppercase; font-size: 13px !important; padding: 0 22px; height: 48px; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.ab-hero {
  position: relative;
  padding: 160px 0 100px;
}
.ab-hero-a {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.ab-hero-left { display: flex; flex-direction: column; gap: 18px; max-width: 560px; }
.ab-greet {
  font-family: "Covered By Your Grace", cursive;
  font-size: calc(34px * var(--font-scale));
  color: var(--accent);
  letter-spacing: 0;
  line-height: 1;
}
.ab-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(88px * var(--font-scale));
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--off-white);
  margin: 0;
}
.ab-name .ab-name-accent {
  background: linear-gradient(180deg, var(--accent) 0%, rgba(117, 155, 200, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ab-aka {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(28px * var(--font-scale));
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.ab-aka-cursive {
  font-family: "Covered By Your Grace", cursive;
  color: var(--accent);
  font-size: 1.2em;
  margin-left: 4px;
}
.ab-hero-body {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(16px * var(--font-scale));
  line-height: 1.65;
  color: rgba(245, 245, 245, 0.72);
  margin: 8px 0 4px;
  max-width: 460px;
}
.ab-hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* Instagram-frame card */
.ab-hero-right { position: relative; justify-self: center; }
.ab-insta {
  width: 360px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
  color: #1a1a1a;
}
.ab-insta:hover { transform: rotate(0) translateY(-4px); }
.ab-insta-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}
.ab-insta-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  position: relative;
}
.ab-insta-av::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
}
.ab-insta-name {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
}
.ab-insta-more {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
  transform: rotate(90deg);
  letter-spacing: -2px;
}
.ab-insta-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #e5e5e5, #c0c0c0);
}
.ab-insta-photo image-slot { width: 100%; height: 100%; display: block; }
.ab-insta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 4px;
  color: #1a1a1a;
}
.ab-ig { width: 24px; height: 24px; }
.ab-ig-spacer { flex: 1; }
.ab-insta-meta { padding: 4px 14px 16px; color: #1a1a1a; }
.ab-insta-likes {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}
.ab-insta-cap {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.ab-insta-cap b { font-weight: 600; }
.ab-insta-tag { color: #1c4b8a; }

.ab-hero-stamp {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(10, 13, 23, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.ab-hero-stamp svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 22s linear infinite;
}
.ab-hero-stamp-core {
  font-size: 22px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

/* Hero B — Centered */
.ab-hero-b-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.ab-name-big { font-size: calc(108px * var(--font-scale)); }
.ab-portrait-cutout {
  width: 240px;
  height: 320px;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  margin: 16px 0 4px;
  background: linear-gradient(180deg, var(--accent), var(--navy-mid));
  box-shadow: 0 40px 80px -30px rgba(38, 63, 117, 0.7);
}
.ab-portrait-cutout image-slot { width: 100%; height: 100%; display: block; }
.ab-aka-center { text-align: center; }

/* ── Pics section ─────────────────────────────────────────────────────── */
.ab-pics {
  position: relative;
  padding: 80px 0 140px;
}
.ab-pics-head {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
  max-width: 680px;
}

/* Pics A — scattered polaroids */
.ab-pics-a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 80px 20px 100px;
  min-height: 540px;
}
.ab-poly {
  position: relative;
  background: #f4f1ea;
  padding: 14px 14px 56px;
  border-radius: 4px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  width: 280px;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease, z-index 0s 0.2s;
  z-index: 1;
}
.ab-poly:hover {
  transform: translateY(-12px) rotate(0) scale(1.04) !important;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
  z-index: 5;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease, z-index 0s;
}
.ab-poly-photo {
  aspect-ratio: 4 / 5;
  background: #d6d2c5;
  border-radius: 2px;
  overflow: hidden;
}
.ab-poly-photo image-slot { width: 100%; height: 100%; display: block; }
.ab-poly-cap {
  font-family: "Covered By Your Grace", cursive;
  font-size: 22px;
  color: #29261b;
  margin-top: 12px;
  text-align: center;
}
.ab-poly-note {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: rgba(41, 38, 27, 0.6);
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.ab-poly-1 { transform: rotate(-6deg) translateX(20px); }
.ab-poly-2 { transform: rotate(2deg);  z-index: 2; }
.ab-poly-3 { transform: rotate(5deg) translateX(-20px); }
.ab-pics-scribble {
  position: absolute;
  bottom: 20px;
  right: 8%;
  font-family: "Covered By Your Grace", cursive;
  font-size: 22px;
  color: var(--accent);
  opacity: 0.7;
  transform: rotate(-4deg);
}

/* Pics B — 3-up creative */
.ab-pics-b {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}
.ab-pic-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 5 / 4;
}
.ab-pic-card image-slot { width: 100%; height: 100%; display: block; border-radius: 24px; }
.ab-pic-tall { aspect-ratio: 4 / 5; height: 100%; }
.ab-pic-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  background: rgba(10, 13, 23, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}
.ab-pic-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--off-white);
}
.ab-pic-note {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.ab-pic-stack { display: grid; gap: 28px; }

/* ── Honest version ───────────────────────────────────────────────────── */
.ab-honest {
  position: relative;
  padding: 100px 0;
}
.ab-honest-cursive {
  font-family: "Covered By Your Grace", cursive;
  font-size: calc(42px * var(--font-scale));
  color: var(--accent);
  margin-bottom: 32px;
  text-align: right;
}
.ab-honest-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ab-honest-quote p {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(40px * var(--font-scale));
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0;
}
.ab-uline {
  position: relative;
  white-space: nowrap;
}
.ab-uline::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.9;
}
.ab-honest-quote b {
  font-weight: 500;
  background: linear-gradient(180deg, transparent 65%, rgba(117, 155, 200, 0.35) 65%, rgba(117, 155, 200, 0.35) 95%, transparent 95%);
  padding: 0 6px;
  margin: 0 -3px;
}
.ab-honest-body p {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(16px * var(--font-scale));
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.78);
  margin: 0 0 18px;
}
.ab-honest-body p:last-child { margin-bottom: 0; }

/* Honest B — single col, fully centered stack */
.ab-honest-b {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.ab-honest-lead {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(44px * var(--font-scale));
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--off-white);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.ab-honest-lead b {
  font-weight: 500;
  color: var(--accent);
}
.ab-mark-soft {
  background-image: linear-gradient(180deg, transparent 60%, rgba(117, 155, 200, 0.45) 60%, rgba(117, 155, 200, 0.45) 94%, transparent 94%);
  background-repeat: no-repeat;
  padding: 0 6px;
  margin: 0 -3px;
  color: var(--off-white);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.ab-honest-cols {
  column-count: 1;
  width: 100%;
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
}
.ab-honest-cols p {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(16px * var(--font-scale));
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.78);
  margin: 0 0 16px;
  text-wrap: pretty;
}

/* ── Calendar (More things) ──────────────────────────────────────────── */
.ab-cal {
  position: relative;
  padding: 100px 0 140px;
}
.ab-cal-head {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(46px * var(--font-scale));
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0 0 64px;
  text-align: center;
}
.ab-cal-head .ab-aka-cursive {
  font-size: 1.05em;
}

/* Cal A — taped sticky notes */
.ab-cal-a {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.ab-stick {
  position: relative;
  background: linear-gradient(160deg, rgba(38, 63, 117, 0.55), rgba(10, 13, 23, 0.85));
  border: 1px solid rgba(117, 155, 200, 0.2);
  border-radius: 12px;
  padding: 36px 26px 32px;
  min-height: 260px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), border-color 0.4s;
}
.ab-stick:hover {
  transform: rotate(0) translateY(-8px) !important;
  border-color: rgba(117, 155, 200, 0.45);
}
.ab-tape {
  position: absolute;
  width: 84px;
  height: 24px;
  background: rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ab-tape-1 {
  top: -12px;
  left: 50%;
  transform: translateX(-60%) rotate(-6deg);
}
.ab-tape-2 {
  top: -12px;
  left: 50%;
  transform: translateX(-40%) rotate(7deg);
}
.ab-stick-t {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--accent);
  margin-bottom: 14px;
}
.ab-stick-b {
  font-family: "Afacad Flux", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.78);
}

/* Cal B — Bento */
.ab-cal-b {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.ab-bento {
  position: relative;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s, transform 0.4s;
}
.ab-bento:hover { border-color: rgba(117, 155, 200, 0.4); transform: translateY(-3px); }
.ab-bento-idx {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.ab-bento-t {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--off-white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.ab-bento-b {
  font-family: "Afacad Flux", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.7);
  margin-top: auto;
}
.ab-bento-1 { grid-column: span 3; }
.ab-bento-2 { grid-column: span 3; }
.ab-bento-3 { grid-column: span 2; }
.ab-bento-4 { grid-column: span 2; }
.ab-bento-5 { grid-column: span 2; }
.ab-bento-6 { grid-column: span 6; }

/* ── Fun pictures ─────────────────────────────────────────────────────── */
.ab-fun {
  position: relative;
  padding: 100px 0 0;
}
.ab-fun-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}
.ab-fun-cursive {
  font-family: "Covered By Your Grace", cursive;
  font-size: 32px;
  color: var(--accent);
  transform: rotate(-4deg);
}

/* Fun A — Scatter that pops up */
.ab-fun-strip {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  padding: 60px var(--gutter) 0;
  min-height: 360px;
  overflow: visible;
}
.ab-fun-card {
  position: relative;
  background: #f4f1ea;
  padding: 12px 12px 12px;
  border-radius: 4px;
  width: 240px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.55s cubic-bezier(.2,.7,.2,1),
    box-shadow 0.55s ease;
  transform-origin: bottom center;
}
.ab-fun-card:hover {
  transform: translateY(-50px) rotate(0) scale(1.05) !important;
  box-shadow: 0 70px 120px -20px rgba(0, 0, 0, 0.75);
  z-index: 5;
}
.ab-fun-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #d6d2c5;
  overflow: hidden;
  border-radius: 2px;
}
.ab-fun-photo image-slot { width: 100%; height: 100%; display: block; }
.ab-fun-cap {
  font-family: "Covered By Your Grace", cursive;
  font-size: 18px;
  color: #29261b;
  text-align: center;
  margin-top: 10px;
  padding: 0 4px;
}
.ab-fun-card-1 { transform: translateY(40px) rotate(-8deg); margin-right: -40px; }
.ab-fun-card-2 { transform: translateY(0)  rotate(4deg);  margin-right: -40px; z-index: 2; }
.ab-fun-card-3 { transform: translateY(20px) rotate(-3deg); margin-right: -40px; }
.ab-fun-card-4 { transform: translateY(60px) rotate(6deg); }
.ab-fun-bird {
  position: absolute;
  top: 20px;
  right: 14%;
  width: 80px;
  height: 80px;
  pointer-events: none;
}

/* Fun B — filmstrip */
.ab-fun-film {
  display: flex;
  gap: 6px;
  padding: 40px 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background: linear-gradient(180deg, rgba(10, 13, 23, 0.6), rgba(10, 13, 23, 0.3));
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  justify-content: center;
}
.ab-film-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 10px;
  background: #0a0d17;
  flex: 0 0 260px;
}
.ab-film-perf {
  height: 14px;
  background-image: radial-gradient(circle, #f4f1ea 35%, transparent 36%);
  background-size: 22px 14px;
  background-position: 0 0;
  background-repeat: repeat-x;
  opacity: 0.7;
}
.ab-film-frame .ab-fun-photo { background: #1a1a1a; }
.ab-film-cap {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* ── About footer adjustments ────────────────────────────────────────── */
.ab-footer { margin-top: 0; padding-top: 80px; }


/* ============================================================
   About — New variants & animated backdrop additions
   ============================================================ */

/* ── Animated backdrop layers ──────────────────────────────── */
.ab-aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0.55;
}
.ab-aurora > div {
  position: absolute;
  filter: blur(80px);
  border-radius: 50%;
  will-change: transform;
}
.ab-aurora .ab-aurora-a {
  width: 760px; height: 760px;
  left: -10%; top: -12%;
  background: radial-gradient(circle, rgba(117,155,200,0.42), transparent 65%);
  animation: ab-aurora-drift-a 32s ease-in-out infinite;
}
.ab-aurora .ab-aurora-b {
  width: 880px; height: 880px;
  right: -14%; top: 30%;
  background: radial-gradient(circle, rgba(38,63,117,0.55), transparent 65%);
  animation: ab-aurora-drift-b 44s ease-in-out infinite;
}
.ab-aurora .ab-aurora-c {
  width: 620px; height: 620px;
  left: 35%; bottom: -18%;
  background: radial-gradient(circle, rgba(89,128,178,0.4), transparent 65%);
  animation: ab-aurora-drift-c 38s ease-in-out infinite;
}
@keyframes ab-aurora-drift-a {
  0%, 100% { transform: translate(0, 0)      scale(1);    }
  50%      { transform: translate(80px, 60px) scale(1.1); }
}
@keyframes ab-aurora-drift-b {
  0%, 100% { transform: translate(0, 0)        scale(1);    }
  50%      { transform: translate(-90px, 40px) scale(1.08); }
}
@keyframes ab-aurora-drift-c {
  0%, 100% { transform: translate(0, 0)        scale(1);    }
  50%      { transform: translate(40px, -60px) scale(1.12); }
}

/* Subtle slow-shooting stars */
.ab-shoot {
  position: absolute;
  display: block;
  width: 140px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85) 70%, white);
  transform: rotate(-22deg);
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(117,155,200,0.6));
}
.ab-shoot::after {
  content: "";
  position: absolute;
  right: -3px; top: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 12px white, 0 0 22px var(--accent);
}
.ab-shoot-1 { top: 22%; left: 10%; animation: ab-shoot 9s ease-out infinite; animation-delay: 2s; }
.ab-shoot-2 { top: 60%; left: 55%; animation: ab-shoot 11s ease-out infinite; animation-delay: 6s; transform: rotate(-14deg); }
@keyframes ab-shoot {
  0%   { opacity: 0; transform: translate(0,0) rotate(-22deg); }
  6%   { opacity: 0.9; }
  18%  { opacity: 0; transform: translate(420px, 160px) rotate(-22deg); }
  100% { opacity: 0; transform: translate(420px, 160px) rotate(-22deg); }
}

/* Cursive bg gentle drift */
.ab-cursive-bg { animation: ab-cursive-drift 22s ease-in-out infinite; }
@keyframes ab-cursive-drift {
  0%, 100% { transform: translate(0,0); opacity: 0.10; }
  50%      { transform: translate(-30px,-12px); opacity: 0.16; }
}

/* ── Hero C — Orbital portrait ─────────────────────────────── */
.ab-hero-c { padding: 150px 0 110px; }
.ab-hero-c-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 600px;
}
.ab-hero-c-left {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 580px;
}
.ab-greet-c { font-size: calc(38px * var(--font-scale)); color: rgba(245,245,245,0.85); }
.ab-name-c {
  display: flex;
  flex-direction: column;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: clamp(70px, 7.6vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--off-white);
  text-transform: capitalize;
  margin: 0;
}
.ab-name-c span:first-child { font-weight: 300; }
.ab-name-c .ab-name-accent {
  background: linear-gradient(180deg, var(--accent) 0%, rgba(117,155,200,0.55) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  display: inline-flex; align-items: baseline;
}
.ab-name-c .ab-name-dot {
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
  margin-left: 4px;
}
.ab-aka-c {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: calc(20px * var(--font-scale));
  color: rgba(245,245,245,0.78);
  letter-spacing: -0.01em;
}
.ab-aka-tail {
  font-family: "Afacad Flux", sans-serif;
  color: rgba(245,245,245,0.55);
  font-style: italic;
  margin-left: 6px;
}
.ab-hero-body-c {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(17px * var(--font-scale));
  line-height: 1.6;
  color: rgba(245,245,245,0.78);
  max-width: 520px;
  margin: 6px 0 6px;
}
.ab-btn-ghost { letter-spacing: 0.06em; text-transform: uppercase; font-size: 13px !important; padding: 0 22px; height: 48px; }
.ab-hero-c-meta {
  display: flex;
  gap: 36px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ab-hero-c-meta-row { display: flex; flex-direction: column; gap: 4px; }
.ab-hero-c-meta-k {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ab-hero-c-meta-v {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  color: var(--off-white);
  display: inline-flex; align-items: center; gap: 8px;
}

/* Orbit canvas */
.ab-hero-c-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}
.ab-orb {
  position: relative;
  width: 540px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-orb-ring {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.ab-orb-r1 { width: 320px; height: 320px; border: 1px solid rgba(255,255,255,0.16); }
.ab-orb-r2 { width: 420px; height: 420px; border: 1px dashed rgba(117,155,200,0.32); }
.ab-orb-r3 { width: 520px; height: 520px; border: 1px solid rgba(255,255,255,0.07); }
.ab-orb-r4 { width: 640px; height: 640px; border: 1px dashed rgba(117,155,200,0.16); }

.ab-orb-track {
  position: absolute;
  left: 50%; top: 50%;
  border-radius: 50%;
  transform-origin: center;
  pointer-events: none;
}
.ab-orb-track-1 {
  width: 320px; height: 320px;
  margin-left: -160px; margin-top: -160px;
  animation: spin 18s linear infinite;
}
.ab-orb-track-2 {
  width: 420px; height: 420px;
  margin-left: -210px; margin-top: -210px;
  animation: spin-rev 26s linear infinite;
}
.ab-orb-track-3 {
  width: 520px; height: 520px;
  margin-left: -260px; margin-top: -260px;
  animation: spin 38s linear infinite;
}
.ab-orb-track-4 {
  width: 640px; height: 640px;
  margin-left: -320px; margin-top: -320px;
  animation: spin-rev 52s linear infinite;
}
.ab-orb-planet {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent), 0 0 28px rgba(117,155,200,0.6);
}
.ab-orb-planet-big   { width: 12px; height: 12px; top: -7px; }
.ab-orb-planet-mid   { width: 9px;  height: 9px;  background: #fff; box-shadow: 0 0 10px #fff, 0 0 22px var(--accent); }
.ab-orb-planet-small { width: 6px;  height: 6px;  background: rgba(255,255,255,0.9); box-shadow: 0 0 8px rgba(255,255,255,0.7); }
.ab-orb-planet-glow  {
  width: 14px; height: 14px; top: -8px;
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--accent) 50%, var(--accent-deep) 100%);
  box-shadow: 0 0 18px var(--accent), 0 0 36px rgba(117,155,200,0.55);
}

/* Floating asterisks */
.ab-orb-aster {
  position: absolute;
  color: var(--accent);
  opacity: 0.7;
  font-size: 22px;
  animation: ab-twinkle 4s ease-in-out infinite;
  pointer-events: none;
}
.ab-orb-aster-1 { top: 4%;   left: 12%;  font-size: 18px; }
.ab-orb-aster-2 { top: 70%;  right: 6%;  font-size: 24px; animation-delay: 1.4s; }
.ab-orb-aster-3 { bottom: 10%; left: 4%; font-size: 16px; animation-delay: 0.6s; opacity: 0.5; }

/* Stat tags around orbit */
.ab-orb-stat {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: rgba(10,13,23,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 4;
}
.ab-orb-stat-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ab-orb-stat-lbl {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.ab-orb-stat-tl { top: 6%;   left: -6%; transform: rotate(-3deg); animation: float-a 7s ease-in-out infinite; }
.ab-orb-stat-br { bottom: 6%; right: -4%; transform: rotate(3deg); animation: float-b 8s ease-in-out infinite; }

/* Center portrait disc */
.ab-orb-portrait {
  position: relative;
  width: 280px;
  height: 280px;
  z-index: 3;
}
.ab-orb-portrait-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 55%),
    linear-gradient(180deg, var(--accent) 0%, var(--navy-mid) 100%);
  box-shadow:
    0 30px 80px -20px rgba(38,63,117,0.65),
    inset 0 0 0 2px rgba(255,255,255,0.08);
}
.ab-orb-portrait-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(10,13,23,0.45), transparent 70%);
}
.ab-orb-portrait-img-inner {
  position: absolute;
  left: 50%;
  bottom: -34%;
  transform: translateX(-50%);
  width: 82%;
  height: auto;
  pointer-events: none;
  z-index: 2;
}
.ab-orb-portrait-disc image-slot {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}
.ab-orb-portrait::before {
  content: "";
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117,155,200,0.4) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}
.ab-orb-stamp {
  position: absolute;
  inset: -38px;
  width: calc(100% + 76px);
  height: calc(100% + 76px);
  color: rgba(255,255,255,0.45);
  animation: spin 28s linear infinite;
}

/* ── Pics C — Typographic rooms list ──────────────────────── */
.ab-rooms {
  position: relative;
  display: flex;
  flex-direction: column;
}
.ab-rooms-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  margin-bottom: 4px;
}
.ab-room-row {
  display: grid;
  grid-template-columns: 56px 1.7fr 1.2fr 0.9fr 1fr 48px;
  align-items: baseline;
  gap: 24px;
  padding: 26px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: padding 0.35s ease, background 0.35s ease;
  position: relative;
}
.ab-room-row::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.ab-room-row:hover {
  padding-left: 20px;
  background: linear-gradient(90deg, rgba(117,155,200,0.05), transparent 70%);
}
.ab-room-row:hover::before { transform: scaleX(1); }
.ab-room-row:hover .ab-room-arrow { color: var(--accent); transform: translateX(4px); }

.ab-room-idx {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
}
.ab-room-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(40px * var(--font-scale));
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--off-white);
}
.ab-room-role {
  font-family: "Afacad Flux", sans-serif;
  font-size: 16px;
  color: rgba(245,245,245,0.75);
  line-height: 1.4;
}
.ab-room-handle {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.ab-room-stat {
  font-family: "Afacad Flux", sans-serif;
  font-size: 14px;
  color: rgba(245,245,245,0.6);
  text-align: right;
}
.ab-room-arrow {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s, transform 0.3s;
  justify-self: end;
}
.ab-room-arrow svg { width: 22px; height: 22px; }

/* ── Pics D — Signal cards ─────────────────────────────────── */
.ab-pics-head-c { margin-bottom: 56px; }
.ab-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ab-signal {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(ellipse 110% 60% at 0% 0%, rgba(117,155,200,0.12), transparent 60%),
    rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s, border-color 0.3s, background 0.3s;
  min-height: 320px;
}
.ab-signal:hover {
  transform: translateY(-4px);
  border-color: rgba(117,155,200,0.4);
}
.ab-signal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ab-signal-mono {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 8px 24px -10px rgba(38,63,117,0.6);
}
.ab-signal-idx {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
}
.ab-signal-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--off-white);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-top: 4px;
}
.ab-signal-ctx {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.ab-signal-quote {
  position: relative;
  font-family: "Afacad Flux", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(245,245,245,0.78);
  margin: 6px 0 0;
}
.ab-signal-mark {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  color: var(--accent);
  margin-right: 4px;
  line-height: 0;
  vertical-align: -2px;
}
.ab-signal-foot {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ab-signal-tag { color: rgba(255,255,255,0.7); }
.ab-signal-line { flex: 1; height: 1px; background: rgba(255,255,255,0.12); }

/* ── Honest C — animated aurora ───────────────────────────── */
.ab-honest-c-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 720px;
  max-height: 960px;
  padding: 96px 0 48px;
  display: flex;
  align-items: center;
}
.ab-honest-c-section > .container { width: 100%; }
.ab-honest-c-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.ab-honest-c-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.65;
}
.ab-honest-c-aurora.a1 {
  width: 620px; height: 620px;
  left: -8%; top: -20%;
  background: radial-gradient(circle, rgba(117,155,200,0.45), transparent 65%);
  animation: ab-honest-drift-1 28s ease-in-out infinite;
}
.ab-honest-c-aurora.a2 {
  width: 740px; height: 740px;
  right: -12%; top: 20%;
  background: radial-gradient(circle, rgba(38,63,117,0.6), transparent 65%);
  animation: ab-honest-drift-2 36s ease-in-out infinite;
}
.ab-honest-c-aurora.a3 {
  width: 520px; height: 520px;
  left: 40%; bottom: -10%;
  background: radial-gradient(circle, rgba(89,128,178,0.45), transparent 65%);
  animation: ab-honest-drift-3 32s ease-in-out infinite;
}
@keyframes ab-honest-drift-1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(60px, 40px) scale(1.1); }
}
@keyframes ab-honest-drift-2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-70px, 50px) scale(1.08); }
}
@keyframes ab-honest-drift-3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px, -50px) scale(1.12); }
}
.ab-honest-c-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.5;
}
.ab-honest-c-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.ab-honest-c {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.ab-honest-c-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Covered By Your Grace", cursive;
  font-size: calc(26px * var(--font-scale));
  color: var(--accent);
  align-self: flex-start;
}
.ab-honest-c-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.ab-honest-c-lede {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ab-honest-c-line { display: block; }
.ab-honest-c-lede .ab-w {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: ab-word-in 0.7s cubic-bezier(.2,.7,.2,1) forwards;
}
.ab-honest-c-lede b {
  font-weight: 500;
  color: var(--accent);
}
@keyframes ab-word-in {
  to { opacity: 1; transform: translateY(0); }
}
.ab-honest-c-body {
  text-align: center;
  width: 100%;
  max-width: 620px;
  margin: 4px auto 0;
  columns: 1;
}
.ab-honest-c-body p {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(15px * var(--font-scale));
  line-height: 1.6;
  color: rgba(245,245,245,0.78);
  margin: 0 0 12px;
  text-wrap: pretty;
}
.ab-honest-c-body p:last-child { margin-bottom: 0; }
.ab-honest-c-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ab-honest-c-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.ab-honest-c-meta .k {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ab-honest-c-meta .v {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  color: var(--off-white);
  letter-spacing: -0.01em;
}


/* ── Calendar C — Staircase cascade ───────────────────────── */
.ab-cal-c-section .ab-cal-head { margin-bottom: 56px; }
.ab-cal-c {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.ab-cas {
  position: relative;
  grid-column: span 4;
}
/* Stair-step placement: each row shifts +1 column */
.ab-cas-1 { grid-column: 1 / span 4; }
.ab-cas-2 { grid-column: 2 / span 4; }
.ab-cas-3 { grid-column: 3 / span 4; }
.ab-cas-4 { grid-column: 2 / span 4; }
.ab-cas-5 { grid-column: 1 / span 4; }
.ab-cas-6 { grid-column: 2 / span 4; }

.ab-cas-card {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: 18px 22px 18px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(ellipse 120% 80% at 0% 0%, rgba(117,155,200,0.12), transparent 60%),
    rgba(10,13,23,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.3s, box-shadow 0.4s;
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.55);
}
.ab-cas-card:hover {
  transform: translateY(-4px);
  border-color: rgba(117,155,200,0.45);
  box-shadow: 0 36px 80px -28px rgba(38,63,117,0.6);
}

.ab-cas-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--accent-deep), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.ab-cas-tag span {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 14px 0;
  white-space: nowrap;
}

.ab-cas-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ab-cas-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}
.ab-cas-ico {
  display: inline-flex;
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.ab-cas-ico svg { width: 100%; height: 100%; }
.ab-cas-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--off-white);
  line-height: 1.15;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}
.ab-cas-title::first-letter { color: var(--off-white); }
.ab-cas-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent);
  background: rgba(117, 155, 200, 0.14);
  border: 1px solid rgba(117, 155, 200, 0.35);
  border-radius: 8px;
  padding: 3px 9px;
  line-height: 1;
  flex-shrink: 0;
  align-self: center;
}
.ab-cas-title-text {
  background-image: linear-gradient(180deg, transparent 72%, rgba(117, 155, 200, 0.38) 72%, rgba(117, 155, 200, 0.38) 96%, transparent 96%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 4px;
  margin: 0 -2px;
}
.ab-cas-desc {
  font-family: "Afacad Flux", sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(245,245,245,0.74);
  margin: 4px 0 0;
}

/* Dashed connector — positioned between each card and the next */
.ab-cas-link {
  position: absolute;
  width: 120px;
  height: 80px;
  color: rgba(117,155,200,0.55);
  pointer-events: none;
  z-index: 0;
}
/* Card 1 → 2: bottom-right corner curves down to next card's top-left */
.ab-cas-1 .ab-cas-link { right: -20px; bottom: -60px; }
.ab-cas-2 .ab-cas-link { right: -20px; bottom: -60px; }
.ab-cas-3 .ab-cas-link { left:  -20px; bottom: -60px; transform: scaleX(-1); }
.ab-cas-4 .ab-cas-link { left:  -20px; bottom: -60px; transform: scaleX(-1); }
.ab-cas-5 .ab-cas-link { right: -20px; bottom: -60px; }


/* ── Honest C — Gradient rectangle backdrop + boxed content ── */
.ab-honest-c-square {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1100px, 88vw);
  height: min(640px, 75vh);
  transform: translate(-50%, -50%) rotate(-3deg);
  border-radius: 40px;
  background:
    linear-gradient(135deg,
      rgba(117, 155, 200, 0.55) 0%,
      rgba(38, 63, 117, 0.7) 50%,
      rgba(10, 13, 23, 0.4) 100%);
  filter: blur(2px);
  opacity: 0.85;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 60px 120px -30px rgba(38, 63, 117, 0.5);
  animation: ab-square-drift 24s ease-in-out infinite;
  z-index: 0;
}
.ab-honest-c-square::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background:
    radial-gradient(ellipse 90% 70% at 15% 15%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 80% 60% at 85% 85%, rgba(117, 155, 200, 0.35), transparent 60%);
  mix-blend-mode: screen;
}
@keyframes ab-square-drift {
  0%, 100% { transform: translate(-50%, -50%) rotate(-3deg) scale(1);    }
  50%      { transform: translate(-49%, -51%) rotate(-1.5deg) scale(1.02); }
}

/* Boxed content — rectangle, vertical stacking */
.ab-honest-c-box {
  position: relative;
  padding: 40px 56px 36px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(117, 155, 200, 0.14), transparent 60%),
    rgba(10, 13, 23, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}
.ab-honest-c-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(117,155,200,0.45), transparent 35%, transparent 65%, rgba(117,155,200,0.3));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
          mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}


/* ── Honest B — Gradient backdrop + aurora ─────────────────── */
.ab-honest-b-section {
  position: relative;
  overflow: hidden;
}
.ab-honest-b-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.ab-honest-b-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.ab-honest-b-aurora.b1 {
  width: 640px; height: 640px;
  left: -10%; top: -12%;
  background: radial-gradient(circle, rgba(117, 155, 200, 0.5), transparent 65%);
  animation: ab-honest-drift-1 30s ease-in-out infinite;
}
.ab-honest-b-aurora.b2 {
  width: 720px; height: 720px;
  right: -12%; bottom: -14%;
  background: radial-gradient(circle, rgba(38, 63, 117, 0.6), transparent 65%);
  animation: ab-honest-drift-2 38s ease-in-out infinite;
}
.ab-honest-b-square {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1100px, 88vw);
  height: min(620px, 78vh);
  transform: translate(-50%, -50%) rotate(-2deg);
  border-radius: 40px;
  background:
    linear-gradient(135deg,
      rgba(117, 155, 200, 0.42) 0%,
      rgba(38, 63, 117, 0.55) 50%,
      rgba(10, 13, 23, 0.3) 100%);
  filter: blur(2px);
  opacity: 0.75;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 60px 120px -30px rgba(38, 63, 117, 0.5);
  animation: ab-square-drift 26s ease-in-out infinite;
}
.ab-honest-b-square::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background:
    radial-gradient(ellipse 90% 70% at 15% 15%, rgba(255, 255, 255, 0.16), transparent 55%),
    radial-gradient(ellipse 80% 60% at 85% 85%, rgba(117, 155, 200, 0.32), transparent 60%);
  mix-blend-mode: screen;
}
.ab-honest-b-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.4;
}

.ab-honest-b-section .ab-honest-b {
  position: relative;
  z-index: 2;
}


/* ============================================================
   Work page styles
   ============================================================ */

/* ── Backdrop ──────────────────────────────────────────────── */
.wk-cosmos {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 60% 50% at 12% 14%, rgba(38, 63, 117, 0.42), transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 70%, rgba(117, 155, 200, 0.2), transparent 65%),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(58, 76, 98, 0.32), transparent 70%),
    linear-gradient(180deg, var(--dark-bg-2) 0%, var(--dark-bg) 25%, var(--dark-bg) 75%, var(--dark-bg-2) 100%);
}
.wk-aurora {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  overflow: hidden; mix-blend-mode: screen; opacity: 0.5;
}
.wk-aurora > div {
  position: absolute; filter: blur(80px); border-radius: 50%; will-change: transform;
}
.wk-aurora-a {
  width: 720px; height: 720px; left: -8%; top: -10%;
  background: radial-gradient(circle, rgba(117,155,200,0.42), transparent 65%);
  animation: ab-aurora-drift-a 34s ease-in-out infinite;
}
.wk-aurora-b {
  width: 820px; height: 820px; right: -12%; top: 36%;
  background: radial-gradient(circle, rgba(38,63,117,0.55), transparent 65%);
  animation: ab-aurora-drift-b 46s ease-in-out infinite;
}
.wk-aurora-c {
  width: 600px; height: 600px; left: 38%; bottom: -16%;
  background: radial-gradient(circle, rgba(89,128,178,0.4), transparent 65%);
  animation: ab-aurora-drift-c 40s ease-in-out infinite;
}
.wk-deco { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.wk-star {
  position: absolute; color: var(--accent); opacity: 0.55;
  font-size: 14px; animation: ab-twinkle 5s ease-in-out infinite;
}
.wk-s1 { top: 10%; left: 16%; }
.wk-s2 { top: 22%; right: 20%; font-size: 18px; animation-delay: 1.4s; }
.wk-s3 { bottom: 18%; left: 8%; font-size: 16px; animation-delay: 0.8s; opacity: 0.45; }
.wk-s4 { top: 56%; right: 8%; font-size: 12px; animation-delay: 2.4s; }
.wk-s5 { top: 70%; left: 48%; font-size: 14px; animation-delay: 0.3s; opacity: 0.4; }
.wk-arc-tr {
  position: absolute; top: -60px; right: -60px; width: 420px; height: 420px;
  transform: scaleX(-1); opacity: 0.6;
}
.wk-arc-bl {
  position: absolute; bottom: -80px; left: -60px; width: 420px; height: 420px;
  transform: rotate(180deg) scaleX(-1); opacity: 0.5;
}
.wk-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.5;
  display: block;
}

/* ── Shared typography ─────────────────────────────────────── */
.wk-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.wk-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.wk-h-section {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--off-white);
  margin: 12px 0 0;
  text-wrap: balance;
}
.wk-h-section-stack { display: flex; flex-direction: column; gap: 4px; }
.wk-h-lede {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(17px * var(--font-scale));
  line-height: 1.55;
  color: rgba(245,245,245,0.74);
  max-width: 720px;
  margin: 18px 0 0;
}
.wk-h-lede-tight { margin-top: 12px; }
.wk-h-lede-c { max-width: 700px; margin-left: auto; margin-right: auto; text-align: center; }
.wk-cursive {
  font-family: "Covered By Your Grace", cursive;
  color: var(--accent);
  font-weight: 400;
}
.wk-mark {
  font-style: italic;
  background-image: linear-gradient(180deg, transparent 60%, rgba(117,155,200,0.4) 60%, rgba(117,155,200,0.4) 95%, transparent 95%);
  background-repeat: no-repeat;
  padding: 0 4px;
  margin: 0 -2px;
}
.wk-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.wk-link-ghost {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.wk-link-ghost:hover { color: var(--accent); border-color: var(--accent); }
.wk-btn-pill { letter-spacing: 0.04em; text-transform: uppercase; font-size: 12px; }

/* ── Section spacing ───────────────────────────────────────── */
.wk-hero, .wk-fit, .wk-svc, .wk-proc, .wk-del {
  position: relative;
  padding: 110px 0;
}
.wk-hero { padding-top: 160px; }
.wk-del { padding-bottom: 140px; }

/* ── HERO A ────────────────────────────────────────────────── */
.wk-hero-a {
  display: flex; flex-direction: column; gap: 22px;
  max-width: 1080px;
}
.wk-hero-a-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.wk-hero-a-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: clamp(64px, 8vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--off-white);
  margin: 0;
  display: flex; flex-direction: column;
}
.wk-hero-a-line { display: block; }
.wk-hero-a-line-2 { margin-left: 80px; }
.wk-hero-a-body {
  font-family: "Afacad Flux", sans-serif;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.5;
  color: rgba(245,245,245,0.78);
  max-width: 760px;
  margin: 8px 0 0;
}
.wk-hero-a-sign {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: "Covered By Your Grace", cursive;
  font-size: 22px;
  color: var(--accent);
  margin-top: 8px;
}
.wk-sign-line { width: 60px; height: 1px; background: rgba(117,155,200,0.5); }
.wk-hero-a-ctas {
  display: flex; align-items: center; gap: 22px; margin-top: 16px;
}

/* ── HERO B ────────────────────────────────────────────────── */
.wk-hero-b {
  position: relative;
  text-align: center;
  padding: 40px 80px;
}
.wk-q-mark {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: clamp(180px, 18vw, 280px);
  line-height: 0.7;
  color: rgba(117,155,200,0.18);
  position: absolute;
  pointer-events: none;
  user-select: none;
}
.wk-q-mark-l { top: -10px; left: -20px; }
.wk-q-mark-r { bottom: -120px; right: -20px; }
.wk-hero-b-inner {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  position: relative; z-index: 1;
  max-width: 880px; margin: 0 auto;
}
.wk-hero-b-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 6.4vw, 92px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
}
.wk-hero-b-body {
  font-family: "Afacad Flux", sans-serif;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: rgba(245,245,245,0.78);
  margin: 0;
  max-width: 720px;
}
.wk-hero-b-meta {
  display: inline-flex; gap: 10px; align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.wk-pip { color: var(--accent); }

/* ── HERO C ────────────────────────────────────────────────── */
.wk-hero-c-section { padding-top: 120px; padding-bottom: 80px; }
.wk-marq {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  padding: 28px 0;
  margin-bottom: 80px;
}
.wk-marq-track {
  display: flex; gap: 56px; align-items: center;
  width: max-content;
  animation: scroll 38s linear infinite;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--off-white);
  letter-spacing: -0.02em;
}
.wk-marq-track i {
  color: var(--accent);
  font-style: italic;
  font-family: "Covered By Your Grace", cursive;
  font-weight: 400;
}
.wk-marq-dot {
  color: var(--accent);
  font-size: 20px;
}
.wk-hero-c {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
}
.wk-hero-c-card {
  padding: 36px 40px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(117,155,200,0.14), transparent 60%),
    rgba(10,13,23,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; flex-direction: column; gap: 18px;
}
.wk-hero-c-body {
  font-family: "Afacad Flux", sans-serif;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.5;
  color: var(--off-white);
  margin: 0;
}
.wk-hero-c-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.wk-hero-c-hand {
  font-family: "Covered By Your Grace", cursive;
  font-size: 22px;
  color: var(--accent);
}
.wk-hero-c-aside { display: flex; flex-direction: column; gap: 14px; }
.wk-hero-c-tag {
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px dashed rgba(117,155,200,0.4);
  background: rgba(117,155,200,0.05);
  display: flex; flex-direction: column; gap: 4px;
}
.wk-hero-c-tag-2 {
  align-self: flex-end;
  margin-right: -10px;
  transform: rotate(1.5deg);
}
.wk-hero-c-tag-k {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.wk-hero-c-tag-v {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  color: var(--off-white);
}

/* ── FIT A — Cards ─────────────────────────────────────────── */
.wk-fit-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.wk-fit-head .wk-h-lede { text-align: center; margin-top: 14px; }
.wk-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.wk-fit-card {
  position: relative;
  padding: 32px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(ellipse 100% 60% at 0% 0%, rgba(117,155,200,0.12), transparent 60%),
    rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 320px;
  transition: transform 0.4s, border-color 0.3s;
}
.wk-fit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(117,155,200,0.4);
}
.wk-fit-card-ico {
  display: inline-flex;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(117,155,200,0.22), rgba(38,63,117,0.3));
  align-items: center; justify-content: center;
  color: var(--accent);
}
.wk-fit-card-ico svg { width: 30px; height: 30px; }
.wk-fit-card-t {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--off-white);
  margin: 0;
  line-height: 1.2;
}
.wk-fit-card-b {
  font-family: "Afacad Flux", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245,245,245,0.74);
  margin: 0;
}
.wk-fit-card-foot {
  margin-top: auto;
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
}
.wk-fit-tag {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.wk-fit-line { flex: 1; height: 1px; background: rgba(255,255,255,0.12); }
.wk-fit-thread {
  margin-top: 56px;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
  display: flex; align-items: flex-start; gap: 18px;
  padding: 26px 32px;
  border-radius: 20px;
  border-left: 3px solid var(--accent);
  background: rgba(117,155,200,0.06);
}
.wk-fit-thread p {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--off-white);
  margin: 0;
}
.wk-thread-mark {
  color: var(--accent);
  font-size: 22px;
  margin-top: 2px;
}

/* ── FIT B — Asymmetric ────────────────────────────────────── */
.wk-fit-b {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.wk-fit-b-left { display: flex; flex-direction: column; gap: 18px; }
.wk-fit-b-thread {
  margin-top: 12px;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(117,155,200,0.06);
  border: 1px solid rgba(117,155,200,0.18);
}
.wk-fit-b-thread p {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: var(--off-white);
  margin: 0;
}
.wk-thread-sign {
  display: inline-block;
  margin-top: 12px;
  font-family: "Covered By Your Grace", cursive;
  color: var(--accent);
  font-size: 20px;
}
.wk-fit-b-right { display: flex; flex-direction: column; gap: 16px; }
.wk-fit-b-row {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr 56px;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 100% 60% at 100% 0%, rgba(117,155,200,0.1), transparent 60%),
    rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.1);
  align-items: center;
  transition: transform 0.35s, border-color 0.3s;
}
.wk-fit-b-row-2 { margin-left: 40px; }
.wk-fit-b-row-3 { margin-left: 80px; }
.wk-fit-b-row:hover {
  transform: translateX(-4px);
  border-color: rgba(117,155,200,0.4);
}
.wk-fit-b-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.wk-fit-b-t {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin: 0 0 4px;
}
.wk-fit-b-d {
  font-family: "Afacad Flux", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245,245,245,0.74);
  margin: 0;
}
.wk-fit-b-ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(117,155,200,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.wk-fit-b-ico svg { width: 26px; height: 26px; }

/* ── FIT C — Boxed with stamp ──────────────────────────────── */
.wk-fit-c {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 56px 48px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(117,155,200,0.12), transparent 60%),
    rgba(10,13,23,0.55);
  text-align: center;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.wk-fit-c-stamp {
  position: absolute;
  top: -36px; right: -36px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(10,13,23,0.85);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.wk-fit-c-stamp svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: spin 22s linear infinite;
}
.wk-fit-c-stamp-core { font-size: 22px; color: var(--accent); }
.wk-h-section-c { margin-top: 4px; }
.wk-fit-c-rows {
  width: 100%;
  display: flex; flex-direction: column;
  margin-top: 24px;
}
.wk-fit-c-row {
  display: grid;
  grid-template-columns: 56px 56px 1.2fr 1.4fr;
  gap: 24px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  transition: padding 0.35s ease, background 0.35s ease;
}
.wk-fit-c-row:last-child { border-bottom: none; }
.wk-fit-c-row:hover {
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(117,155,200,0.06), transparent 70%);
}
.wk-fit-c-idx {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.wk-fit-c-ico {
  color: var(--accent);
  width: 32px; height: 32px;
}
.wk-fit-c-ico svg { width: 100%; height: 100%; }
.wk-fit-c-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--off-white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.wk-fit-c-desc {
  font-family: "Afacad Flux", sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(245,245,245,0.7);
}
.wk-fit-c-thread {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(117,155,200,0.08);
  border-left: 3px solid var(--accent);
  text-align: left;
}
.wk-fit-c-thread p {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--off-white);
  margin: 0;
}


/* ── SERVICES A — Bento ────────────────────────────────────── */
.wk-svc-head {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.wk-svc-head .wk-h-lede { text-align: center; }
.wk-svc-head-c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
  align-items: end;
  gap: 40px;
  max-width: none;
  margin-bottom: 48px;
}
.wk-svc-head-c .wk-h-lede { text-align: left; margin-top: 0; }

.wk-svc-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.wk-svc-card {
  position: relative;
  padding: 32px 32px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(117,155,200,0.14), transparent 60%),
    rgba(10,13,23,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s, border-color 0.3s, box-shadow 0.4s;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 320px;
  overflow: hidden;
}
.wk-svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(117,155,200,0.4);
  box-shadow: 0 30px 70px -28px rgba(38,63,117,0.55);
}
.wk-svc-card-coo { grid-column: span 2; }
.wk-svc-card-top {
  display: flex; align-items: center; justify-content: space-between;
}
.wk-svc-card-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(180deg, var(--accent), rgba(117,155,200,0.4));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.wk-svc-card-tag {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid rgba(117,155,200,0.4);
  border-radius: 999px;
  background: rgba(117,155,200,0.08);
}
.wk-svc-card-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(117,155,200,0.22), rgba(38,63,117,0.3));
  color: var(--accent);
}
.wk-svc-card-ico svg { width: 30px; height: 30px; }
.wk-svc-card-t {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--off-white);
  margin: 0;
}
.wk-svc-card-b {
  font-family: "Afacad Flux", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245,245,245,0.74);
  margin: 0;
}
.wk-svc-card-list {
  list-style: none; padding: 0; margin: auto 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.wk-svc-card-list li {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(245,245,245,0.8);
  display: flex; align-items: baseline; gap: 8px;
}
.wk-svc-card-bullet { color: var(--accent); font-weight: 500; }

/* ── SERVICES B — Editorial list + side panel ──────────────── */
.wk-svc-ed {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}
.wk-svc-ed-list {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.wk-svc-ed-row {
  display: grid;
  grid-template-columns: 60px 1fr auto 40px;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  border-left: 0; border-right: 0; border-top: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: padding 0.35s, background 0.35s;
  font-family: inherit;
}
.wk-svc-ed-row:hover, .wk-svc-ed-row.is-active {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(117,155,200,0.06), transparent 80%);
}
.wk-svc-ed-row.is-active .wk-svc-ed-name { color: var(--accent); }
.wk-svc-ed-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.wk-svc-ed-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.015em;
  color: var(--off-white);
  line-height: 1.15;
}
.wk-svc-ed-tag {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.wk-svc-ed-arrow {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s, transform 0.3s;
}
.wk-svc-ed-row:hover .wk-svc-ed-arrow,
.wk-svc-ed-row.is-active .wk-svc-ed-arrow {
  color: var(--accent); transform: translateX(4px);
}
.wk-svc-ed-panel {
  position: sticky; top: 100px;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(117,155,200,0.25);
  background:
    radial-gradient(ellipse 90% 80% at 0% 0%, rgba(117,155,200,0.18), transparent 60%),
    rgba(10,13,23,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; flex-direction: column; gap: 16px;
}
.wk-svc-ed-panel-top {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.wk-svc-ed-panel-ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(117,155,200,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.wk-svc-ed-panel-ico svg { width: 28px; height: 28px; }
.wk-svc-ed-panel-meta {
  display: flex; flex-direction: column; gap: 4px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.wk-svc-ed-panel-meta span:first-child { color: var(--accent); font-weight: 500; }
.wk-svc-ed-panel-meta span:last-child { color: rgba(255,255,255,0.6); }
.wk-svc-ed-panel-t {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--off-white);
  margin: 0;
  line-height: 1.15;
}
.wk-svc-ed-panel-b {
  font-family: "Afacad Flux", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245,245,245,0.78);
  margin: 0;
}
.wk-svc-ed-panel ul {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}
.wk-svc-ed-panel ul li {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(245,245,245,0.82);
  display: flex; align-items: baseline; gap: 8px;
}
.wk-svc-ed-panel ul li::before {
  content: "+";
  color: var(--accent); font-weight: 500;
}

/* ── SERVICES C — Ribbons ──────────────────────────────────── */
.wk-svc-rib {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.wk-svc-rib-card {
  display: grid;
  grid-template-columns: 100px 1fr 180px;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(117,155,200,0.15), transparent 50%),
    rgba(10,13,23,0.55);
  transition: transform 0.4s, border-color 0.3s;
}
.wk-svc-rib-card:hover {
  transform: translateX(6px);
  border-color: rgba(117,155,200,0.4);
}
.wk-svc-rib-card-2 { margin-left: 40px; }
.wk-svc-rib-card-3 { margin-left: 80px; }
.wk-svc-rib-card-4 { margin-left: 0; }
.wk-svc-rib-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--accent), rgba(117,155,200,0.3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.wk-svc-rib-body { display: flex; flex-direction: column; gap: 10px; }
.wk-svc-rib-ico {
  color: var(--accent);
  width: 28px; height: 28px;
}
.wk-svc-rib-ico svg { width: 100%; height: 100%; }
.wk-svc-rib-t {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--off-white);
  margin: 0;
  line-height: 1.15;
}
.wk-svc-rib-b {
  font-family: "Afacad Flux", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245,245,245,0.74);
  margin: 0;
}
.wk-svc-rib-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.wk-chip {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: rgba(245,245,245,0.78);
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}
.wk-svc-rib-tag {
  text-align: right;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: start;
  padding-top: 6px;
}

/* ── PROCESS A — Timeline ──────────────────────────────────── */
.wk-proc-head {
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.wk-proc-head-c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
  align-items: end;
  gap: 40px;
  max-width: none;
}
.wk-proc-head-c .wk-h-lede { text-align: left; }
.wk-proc-timeline {
  position: relative;
  list-style: none;
  margin: 0; padding: 0;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
  display: flex; flex-direction: column; gap: 36px;
}
.wk-proc-line {
  position: absolute;
  left: 32px; top: 30px; bottom: 30px;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), rgba(117,155,200,0.2));
  z-index: 0;
}
.wk-proc-step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  z-index: 1;
}
.wk-proc-node {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(10,13,23,0.95);
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(10,13,23,0.7), 0 0 24px rgba(117,155,200,0.4);
}
.wk-proc-node-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--accent);
}
.wk-proc-step-body {
  padding: 14px 26px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.wk-proc-step-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 6px;
}
.wk-proc-step-head h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--off-white);
  margin: 0;
}
.wk-proc-meta {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.wk-proc-step-body p {
  font-family: "Afacad Flux", sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(245,245,245,0.78);
  margin: 0;
}

/* ── PROCESS B — Subway route ──────────────────────────────── */
.wk-proc-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
  padding: 60px 0 0;
}
.wk-proc-route-svg {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%; height: 180px;
  z-index: 0;
}
.wk-proc-stop {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 0 12px;
  text-align: center;
  z-index: 1;
}
.wk-proc-stop-pin {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(117,155,200,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
}
.wk-proc-stop-pin span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.04em;
}
.wk-proc-stop-t {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--off-white);
  margin: 6px 0 0;
  line-height: 1.2;
}
.wk-proc-stop-b {
  font-family: "Afacad Flux", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245,245,245,0.7);
  margin: 0;
  max-width: 260px;
}
.wk-proc-stop-meta {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

/* ── PROCESS C — 2x2 cards with corner ticks ───────────────── */
.wk-proc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.wk-proc-card {
  position: relative;
  padding: 32px 34px;
  border-radius: 22px;
  background: rgba(10,13,23,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s, transform 0.4s;
}
.wk-proc-card:hover {
  border-color: rgba(117,155,200,0.4);
  transform: translateY(-3px);
}
.wk-proc-card-corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid var(--accent);
}
.wk-proc-card-corner-tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.wk-proc-card-corner-tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.wk-proc-card-corner-bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.wk-proc-card-corner-br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }
.wk-proc-card-top {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 16px;
}
.wk-proc-card-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 40px;
  background: linear-gradient(180deg, var(--accent), rgba(117,155,200,0.4));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}
.wk-proc-card-meta {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(117,155,200,0.3);
  background: rgba(117,155,200,0.06);
}
.wk-proc-card-t {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--off-white);
  margin: 0 0 8px;
}
.wk-proc-card-b {
  font-family: "Afacad Flux", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245,245,245,0.74);
  margin: 0;
}

/* ── DELIVERABLES + Form ──────────────────────────────────── */
.wk-del-head {
  margin-bottom: 56px;
  display: flex; flex-direction: column; gap: 12px;
}
.wk-del-head-center {
  text-align: center;
  align-items: center;
}
.wk-del-head-center .wk-h-lede { text-align: center; }

.wk-del-a {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.wk-del-a-left { display: flex; flex-direction: column; gap: 20px; }
.wk-del-list {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}
.wk-del-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 15.5px;
  color: var(--off-white);
  letter-spacing: -0.005em;
  transition: border-color 0.3s, transform 0.3s;
}
.wk-del-list li:hover {
  border-color: rgba(117,155,200,0.4);
  transform: translateX(3px);
}
.wk-del-bullet {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(117,155,200,0.12);
  padding: 4px 9px;
  border-radius: 8px;
}
.wk-del-foot {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--off-white);
  font-style: italic;
  margin: 18px 0 0;
  padding: 18px 22px;
  border-radius: 16px;
  border-left: 3px solid var(--accent);
  background: rgba(117,155,200,0.06);
}
.wk-del-foot-center {
  text-align: center; max-width: 700px;
  margin: 32px auto;
  font-style: normal;
}

/* Cloud (Deliver B) */
.wk-del-cloud {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px;
  max-width: 1080px; margin: 32px auto 0;
}
.wk-del-pill {
  display: inline-flex; align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  color: var(--off-white);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.wk-del-pill:hover {
  border-color: var(--accent);
  background: rgba(117,155,200,0.12);
  transform: translateY(-2px);
}
.wk-del-pill-1 { color: var(--accent); border-color: rgba(117,155,200,0.4); }
.wk-del-pill-2 { background: rgba(117,155,200,0.1); }
.wk-del-b-form { max-width: 640px; margin: 16px auto 0; }

/* Deliver C */
.wk-del-c {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.wk-del-c-left { display: flex; flex-direction: column; gap: 20px; }
.wk-del-c-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin: 8px 0 0;
}
.wk-del-c-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: "Afacad Flux", sans-serif;
  font-size: 15.5px;
  color: rgba(245,245,245,0.85);
}
.wk-del-c-tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(117,155,200,0.18);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.wk-del-c-right {
  position: relative;
  padding-top: 40px;
}
.wk-del-c-stamp {
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(10,13,23,0.85);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.wk-del-c-stamp svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: spin 22s linear infinite;
}
.wk-del-c-stamp-core { font-size: 20px; color: var(--accent); }

/* ── FORM ─────────────────────────────────────────────────── */
.wk-form {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(117,155,200,0.16), transparent 60%),
    rgba(10,13,23,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.wk-form-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.wk-form-tag {
  font-family: "Covered By Your Grace", cursive;
  font-size: 22px;
  color: var(--accent);
}
.wk-form-meta {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.wk-form-row {
  display: flex; flex-direction: column; gap: 6px;
}
.wk-form-row > span {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.wk-form input, .wk-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--off-white);
  font-family: "Afacad Flux", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.wk-form input::placeholder, .wk-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.wk-form input:focus, .wk-form textarea:focus {
  border-color: var(--accent);
  background: rgba(117,155,200,0.08);
}
.wk-form-btn { margin-top: 6px; align-self: flex-start; }

/* Footer adjust */
.wk-footer { margin-top: 60px; padding-top: 80px; }


/* ============================================================
   Work — D variants
   ============================================================ */

/* Hero D — meta strip under body (open-letter voice) */
.wk-hero-a-meta {
  display: inline-flex; gap: 10px; align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 14px 22px;
  border: 1px dashed rgba(117,155,200,0.32);
  border-radius: 999px;
  background: rgba(117,155,200,0.05);
  align-self: flex-start;
  margin-top: 4px;
}
.wk-hero-a-meta .wk-pip { color: var(--accent); }

/* Fit D — signed thread */
.wk-fit-thread-d { display: flex; align-items: flex-start; gap: 18px; }
.wk-fit-thread-d-body {
  flex: 1;
  display: flex; flex-direction: column; gap: 16px;
}
.wk-fit-thread-d-body p { margin: 0; }
.wk-fit-thread-d-sign {
  display: flex; align-items: center; gap: 14px;
}
.wk-fit-thread-d-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117,155,200,0.4), transparent);
}
.wk-fit-thread-d-name {
  font-family: "Covered By Your Grace", cursive;
  font-size: 32px;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(117,155,200,0.4);
}

/* Work D — tighter editorial, fixed-height right panel */
.wk-svc-ed-d {
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.wk-svc-ed-d .wk-svc-ed-list {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.wk-svc-ed-d .wk-svc-ed-row {
  flex: 1;
}
.wk-svc-ed-panel-d {
  position: static;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wk-svc-ed-panel-d ul {
  margin-top: auto;
}

/* Deliver D — short form, polished, with orbital lines */
.wk-form-short {
  position: relative;
}
.wk-form-orbits {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.wk-form-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(117,155,200,0.22);
  transform-origin: center;
  pointer-events: none;
}
.wk-form-orbit-1 {
  width: 460px; height: 460px;
  right: -240px; top: -180px;
  animation: spin 40s linear infinite;
}
.wk-form-orbit-2 {
  width: 720px; height: 720px;
  right: -360px; top: -300px;
  border-color: rgba(117,155,200,0.12);
  border-style: solid;
  animation: spin-rev 70s linear infinite;
}
.wk-form-orbit-dot {
  position: absolute;
  right: -10px; top: 50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117,155,200,0.4), transparent 65%);
  filter: blur(40px);
  animation: wk-form-pulse 6s ease-in-out infinite;
}
@keyframes wk-form-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}
.wk-form-short > *:not(.wk-form-orbits) { position: relative; z-index: 1; }
.wk-form-short {
  padding: 32px 34px 28px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(117,155,200,0.18), transparent 60%),
    rgba(10,13,23,0.78);
}
.wk-form-short .wk-form-row > span {
  color: var(--accent);
  opacity: 0.85;
}
.wk-form-short textarea {
  min-height: 100px;
}
.wk-form-btn-block {
  width: 100%;
  margin-top: 10px;
}
.wk-form-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
}
.wk-form-foot > * { min-width: 0; }
.wk-form-foot a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(117,155,200,0.4);
  transition: color 0.2s, text-decoration-color 0.2s;
  word-break: break-all;
}
.wk-form-foot a:hover {
  text-decoration-color: var(--accent);
}


/* ============================================================
   Work — site-wide orbital backdrop (NEW)
   ============================================================ */
.wk-orbits {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

/* Eclipses — large soft glowing discs */
.wk-eclipse {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(117,155,200,0.35), transparent 55%),
    radial-gradient(circle at 65% 65%, rgba(38,63,117,0.6), transparent 65%);
  filter: blur(2px);
  opacity: 0.5;
  box-shadow:
    inset 0 0 0 1px rgba(117,155,200,0.18),
    inset 40px 40px 100px rgba(10,13,23,0.85);
  animation: wk-eclipse-drift 28s ease-in-out infinite;
}
.wk-eclipse-1 {
  width: 540px; height: 540px;
  right: -120px; top: -160px;
}
.wk-eclipse-2 {
  width: 700px; height: 700px;
  left: -260px; bottom: -200px;
  animation-duration: 36s;
  animation-direction: reverse;
  opacity: 0.4;
}
@keyframes wk-eclipse-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,-30px) scale(1.05); }
}

/* Orbit groups — concentric rings + rotating planet */
.wk-orb-group {
  position: absolute;
  width: 1px; height: 1px;
}
.wk-orb-group-tr {
  right: 8%;
  top: 14%;
}
.wk-orb-group-bl {
  left: 6%;
  bottom: 18%;
}
.wk-orb {
  position: absolute;
  left: 0; top: 0;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  pointer-events: none;
}
.wk-orb-1 { width: 240px; height: 240px; border: 1px solid rgba(117,155,200,0.22); }
.wk-orb-2 { width: 360px; height: 360px; border: 1px dashed rgba(117,155,200,0.18); }
.wk-orb-3 { width: 520px; height: 520px; border: 1px solid rgba(117,155,200,0.1); }
.wk-orb-4 { width: 300px; height: 300px; border: 1px dashed rgba(117,155,200,0.22); }
.wk-orb-5 { width: 460px; height: 460px; border: 1px solid rgba(117,155,200,0.12); }

.wk-orb-track {
  position: absolute;
  left: 0; top: 0;
  border-radius: 50%;
  transform-origin: center;
  pointer-events: none;
}
.wk-orb-track-1 {
  width: 240px; height: 240px;
  margin-left: -120px; margin-top: -120px;
  animation: spin 28s linear infinite;
}
.wk-orb-track-2 {
  width: 360px; height: 360px;
  margin-left: -180px; margin-top: -180px;
  animation: spin-rev 44s linear infinite;
}
.wk-orb-track-3 {
  width: 460px; height: 460px;
  margin-left: -230px; margin-top: -230px;
  animation: spin 60s linear infinite;
}
.wk-orb-planet {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent), 0 0 28px rgba(117,155,200,0.6);
}
.wk-orb-planet-sm {
  width: 6px; height: 6px;
  top: -3px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 10px rgba(255,255,255,0.7);
}
.wk-orb-planet-white {
  width: 8px; height: 8px;
  background: #fff;
  box-shadow: 0 0 12px #fff, 0 0 24px var(--accent);
}


/* ════════════════════════════════════════════════════════════════════════
   Featured Testimonial — Variants B / C / D
   ════════════════════════════════════════════════════════════════════════ */

/* ── Variant B: Handwritten correspondence ─────────────────────────────── */
.ft-b-section { padding: 80px 0; }
.ft-b-stage {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 8px 60px;
}
.ft-b-eyebrow {
  position: absolute;
  top: 0; left: 8px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}
.ft-b-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  animation: ft-b-pulse 2s ease-in-out infinite;
}
@keyframes ft-b-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.ft-b-paper {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(255,255,255,0.06), transparent 70%),
    linear-gradient(170deg, #f3ead7 0%, #e8dcc1 100%);
  color: #2b2616;
  border-radius: 4px;
  padding: 64px 72px 56px 96px;
  transform: rotate(-1.2deg);
  box-shadow:
    0 30px 70px -20px rgba(0,0,0,0.6),
    0 8px 20px -8px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(120, 90, 40, 0.08);
  min-height: 520px;
  overflow: hidden;
}
.ft-b-grain {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(80, 60, 30, 0.08) 38px 39px),
    radial-gradient(circle at 80% 90%, rgba(80, 50, 20, 0.18), transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(80, 50, 20, 0.12), transparent 55%);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.ft-b-postmark {
  position: absolute;
  top: 22px; right: 28px;
  width: 130px; height: 130px;
  border: 2px solid #8a3a2a;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #8a3a2a;
  font-family: "Inter", sans-serif;
  text-align: center;
  transform: rotate(8deg);
  opacity: 0.78;
  pointer-events: none;
}
.ft-b-stamp-ring {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
  display: flex; gap: 4px;
  margin-bottom: 4px;
}
.ft-b-stamp-ring .sep { opacity: 0.6; }
.ft-b-stamp-date {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-top: 1.5px solid #8a3a2a;
  border-bottom: 1.5px solid #8a3a2a;
}

.ft-b-note { position: relative; z-index: 1; }
.ft-b-greet {
  font-family: "Covered By Your Grace", cursive;
  font-size: calc(34px * var(--font-scale));
  color: #2b2616;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.ft-b-script {
  font-family: "Covered By Your Grace", cursive;
  font-size: calc(36px * var(--font-scale));
  line-height: 1.35;
  color: #2b2616;
  margin: 0 0 16px;
  letter-spacing: 0.005em;
  text-wrap: pretty;
}
.ft-b-script em {
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: #8a3a2a;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.ft-b-script-sm {
  font-size: calc(26px * var(--font-scale));
  color: #4a3f25;
  line-height: 1.4;
}

.ft-b-sign {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
}
.ft-b-signature {
  font-family: "Covered By Your Grace", cursive;
  font-size: calc(58px * var(--font-scale));
  color: #1a3a78;
  letter-spacing: 0.01em;
  transform: rotate(-3deg);
  line-height: 1;
}
.ft-b-signoff {
  display: flex; flex-direction: column;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #4a3f25;
  text-align: right;
  letter-spacing: 0.04em;
}
.ft-b-signoff > span:first-child { font-weight: 600; color: #2b2616; }
.ft-b-signoff-role { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; margin-top: 2px; }

.ft-b-hole {
  position: absolute;
  left: 36px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #0a0d17 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.6);
}
.ft-b-hole.h1 { top: 14%; }
.ft-b-hole.h2 { top: 50%; }
.ft-b-hole.h3 { top: 86%; }

.ft-b-tape {
  position: absolute;
  width: 110px; height: 26px;
  background: rgba(220, 200, 150, 0.45);
  border: 1px solid rgba(140, 110, 60, 0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.ft-b-tape::before, .ft-b-tape::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 5px;
  background-image: linear-gradient(to bottom, transparent 25%, rgba(140,110,60,0.25) 25%, rgba(140,110,60,0.25) 50%, transparent 50%, transparent 75%, rgba(140,110,60,0.25) 75%);
  background-size: 100% 8px;
}
.ft-b-tape::before { left: 0; }
.ft-b-tape::after { right: 0; }
.ft-b-tape.t1 { top: -12px; left: 18%; transform: rotate(-4deg); }
.ft-b-tape.t2 { top: -10px; right: 20%; transform: rotate(3deg); }

/* Polaroid */
.ft-b-polaroid {
  position: relative;
  justify-self: center;
  width: 280px;
  background: #fafaf3;
  padding: 16px 16px 56px;
  box-shadow:
    0 28px 60px -20px rgba(0,0,0,0.6),
    0 6px 14px -6px rgba(0,0,0,0.4);
  transform: rotate(4.5deg);
  z-index: 2;
}
.ft-b-polaroid-photo {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  background: linear-gradient(180deg, var(--accent), var(--navy-mid));
  overflow: hidden;
}
.ft-b-polaroid-photo image-slot { width: 100%; height: 100%; display: block; }
.ft-b-polaroid-caption {
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  text-align: center;
  font-family: "Covered By Your Grace", cursive;
  font-size: 22px;
  color: #2b2616;
}
.ft-b-polaroid::after {
  content: "";
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%) rotate(2deg);
  width: 100px; height: 26px;
  background: rgba(220, 200, 150, 0.55);
  border: 1px solid rgba(140, 110, 60, 0.2);
}

/* Receipt */
.ft-b-receipt {
  position: absolute;
  bottom: -10px; right: 4%;
  width: 220px;
  background: #fafaf3;
  color: #2b2616;
  padding: 16px 18px 6px;
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  transform: rotate(-2deg);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.6);
  clip-path: polygon(
    0 0, 100% 0, 100% calc(100% - 6px),
    96% 100%, 90% calc(100% - 6px), 84% 100%, 78% calc(100% - 6px),
    72% 100%, 66% calc(100% - 6px), 60% 100%, 54% calc(100% - 6px),
    48% 100%, 42% calc(100% - 6px), 36% 100%, 30% calc(100% - 6px),
    24% 100%, 18% calc(100% - 6px), 12% 100%, 6% calc(100% - 6px),
    0 100%);
  z-index: 3;
}
.ft-b-receipt-row {
  display: flex; justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(43, 38, 22, 0.25);
}
.ft-b-receipt-row span { opacity: 0.55; text-transform: uppercase; }
.ft-b-receipt-row b { font-weight: 600; }
.ft-b-receipt-row .ok { color: #2f6a3a; }
.ft-b-receipt-barcode {
  margin-top: 10px;
  display: flex; gap: 1.5px; align-items: flex-end;
  height: 30px;
}
.ft-b-receipt-barcode span { background: #2b2616; height: 100%; display: inline-block; }


/* ── Variant C: Cosmic transmission ────────────────────────────────────── */
.ft-c-section { padding: 60px 0; }
.ft-c-shell {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 20% 0%, rgba(117,155,200,0.18), transparent 65%),
    linear-gradient(170deg, #0c1426 0%, #060912 100%);
  border: 1px solid rgba(117,155,200,0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.ft-c-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(117,155,200,0.18);
  font-family: "Inter", "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.ft-c-bar-l { display: flex; align-items: center; gap: 8px; }
.ft-c-bar-r { display: flex; align-items: center; gap: 20px; color: rgba(255,255,255,0.55); }
.ft-c-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.ft-c-dot.red { background: #ff5f57; }
.ft-c-dot.amber { background: #ffbd2e; }
.ft-c-dot.green { background: #28c93f; }
.ft-c-bar-title { margin-left: 14px; color: rgba(255,255,255,0.7); text-transform: lowercase; letter-spacing: 0.05em; }
.ft-c-live { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); }
.ft-c-live .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: ft-c-pulse 1.4s ease-in-out infinite;
}
@keyframes ft-c-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.ft-c-body {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  padding: 52px 56px 56px;
}

.ft-c-portal-col {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.ft-c-portal {
  position: relative;
  width: 280px; height: 280px;
  display: grid; place-items: center;
}
.ft-c-portal .ring {
  position: absolute; inset: 0;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.25;
}
.ft-c-portal .ring.r1 { transform: scale(1.0); animation: ft-c-ring 4s ease-in-out infinite; }
.ft-c-portal .ring.r2 { transform: scale(1.18); opacity: 0.18; animation: ft-c-ring 4s ease-in-out infinite 1.3s; }
.ft-c-portal .ring.r3 { transform: scale(1.36); opacity: 0.1; animation: ft-c-ring 4s ease-in-out infinite 2.6s; }
@keyframes ft-c-ring {
  0% { opacity: 0; transform: scale(1.0); }
  20% { opacity: 0.35; }
  100% { opacity: 0; transform: scale(1.55); }
}
.ft-c-portal-inner {
  width: 220px; height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(180deg, var(--accent) 0%, var(--navy-mid) 100%);
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.08),
    0 0 0 4px rgba(0,0,0,0.4),
    0 0 60px var(--accent),
    inset 0 0 30px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
}
.ft-c-portal-inner image-slot { width: 100%; height: 100%; display: block; border-radius: 50%; }
.ft-c-cross {
  position: absolute;
  background: var(--accent);
  opacity: 0.5;
  z-index: 3;
  pointer-events: none;
}
.ft-c-cross.v { left: 50%; top: -8px; bottom: -8px; width: 1px; transform: translateX(-0.5px); }
.ft-c-cross.h { top: 50%; left: -8px; right: -8px; height: 1px; transform: translateY(-0.5px); }
.ft-c-corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid var(--accent);
  z-index: 3;
}
.ft-c-corner.tl { top: -4px; left: -4px; border-right: none; border-bottom: none; }
.ft-c-corner.tr { top: -4px; right: -4px; border-left: none; border-bottom: none; }
.ft-c-corner.bl { bottom: -4px; left: -4px; border-right: none; border-top: none; }
.ft-c-corner.br { bottom: -4px; right: -4px; border-left: none; border-top: none; }

.ft-c-id {
  width: 100%;
  background: rgba(117,155,200,0.05);
  border: 1px solid rgba(117,155,200,0.18);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.ft-c-id-row {
  display: flex; justify-content: space-between;
  padding: 4px 0;
}
.ft-c-id-row + .ft-c-id-row { border-top: 1px dashed rgba(117,155,200,0.15); }
.ft-c-id-row span { color: rgba(255,255,255,0.45); }
.ft-c-id-row b { color: var(--off-white); font-weight: 500; }

.ft-c-msg { position: relative; z-index: 2; }
.ft-c-meta {
  display: flex; align-items: center; gap: 14px;
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 28px;
}
.ft-c-meta-k { white-space: nowrap; }
.ft-c-meta-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0.5;
}
.ft-c-mark {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(120px * var(--font-scale));
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.45;
  margin-bottom: 8px;
}
.ft-c-quote {
  font-family: "Afacad Flux", sans-serif;
  font-weight: 300;
  font-size: calc(32px * var(--font-scale));
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin: 0 0 36px;
  text-wrap: pretty;
}
.ft-c-hi {
  color: var(--accent);
  background: linear-gradient(transparent 70%, rgba(117,155,200,0.18) 70%);
  padding: 0 2px;
}
.ft-c-attr { display: flex; flex-direction: column; gap: 4px; margin-bottom: 36px; }
.ft-c-attr-name { font-family: "Bricolage Grotesque", sans-serif; font-size: calc(24px * var(--font-scale)); color: var(--off-white); }
.ft-c-attr-role { font-family: "Inter", sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); opacity: 0.8; }

.ft-c-wave {
  display: flex; align-items: center; gap: 3px;
  height: 48px;
  padding: 6px 0;
  border-top: 1px solid rgba(117,155,200,0.15);
  border-bottom: 1px solid rgba(117,155,200,0.15);
}
.ft-c-wave span {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), rgba(117,155,200,0.4));
  border-radius: 1px;
  opacity: 0.85;
  animation: ft-c-bar 1.6s ease-in-out infinite;
}
.ft-c-wave span:nth-child(3n) { animation-delay: 0.1s; }
.ft-c-wave span:nth-child(4n) { animation-delay: 0.3s; }
.ft-c-wave span:nth-child(5n) { animation-delay: 0.6s; opacity: 0.55; }
.ft-c-wave span:nth-child(7n) { animation-delay: 0.9s; opacity: 0.7; }
@keyframes ft-c-bar {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}
.ft-c-wave-meta {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-family: "Inter", monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}
.ft-c-wave-meta .play { color: var(--accent); }

.ft-c-scan {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(117,155,200,0.04) 3px 4px);
  mix-blend-mode: screen;
  opacity: 0.6;
}


/* ── Variant D: Editorial pull-quote ───────────────────────────────────── */
.ft-d-section { padding: 60px 0; }
.ft-d-stage {
  position: relative;
  background: linear-gradient(180deg, #f3ead7 0%, #e8dcc1 100%);
  color: #1a1408;
  border-radius: 6px;
  padding: 56px 80px 64px;
  min-height: 620px;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}
.ft-d-trim {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid #1a1408;
  opacity: 0.35;
}
.ft-d-trim.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.ft-d-trim.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.ft-d-trim.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.ft-d-trim.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.ft-d-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 18px;
  border-bottom: 1.5px solid #1a1408;
  margin-bottom: 60px;
}
.ft-d-top-l { display: flex; align-items: baseline; gap: 16px; }
.ft-d-issue {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: calc(34px * var(--font-scale));
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #1a1408;
}
.ft-d-issue-n {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a4a28;
}
.ft-d-top-r {
  display: flex; gap: 8px;
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #5a4a28;
}

.ft-d-pull {
  position: relative;
  flex: 1;
  display: flex; align-items: center;
  padding: 0 40px;
}
.ft-d-openmark, .ft-d-closemark {
  position: absolute;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(220px * var(--font-scale));
  line-height: 0.6;
  color: #8a3a2a;
  opacity: 0.55;
}
.ft-d-openmark { top: -18px; left: -20px; }
.ft-d-closemark { bottom: -100px; right: -16px; }
.ft-d-quote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(72px * var(--font-scale));
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #1a1408;
  margin: 0;
  text-wrap: balance;
}
.ft-d-accent {
  font-style: italic;
  font-weight: 300;
  color: #8a3a2a;
}
.ft-d-underline {
  text-decoration: underline;
  text-decoration-color: #8a3a2a;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.ft-d-foot {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 40px;
  align-items: flex-end;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 20, 8, 0.25);
}
.ft-d-polaroid {
  position: relative;
  width: 180px;
  background: #fafaf3;
  padding: 10px 10px 28px;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,0.45);
  transform: rotate(-3deg);
}
.ft-d-polaroid-photo {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  background: linear-gradient(180deg, var(--accent), var(--navy-mid));
  overflow: hidden;
}
.ft-d-polaroid-photo image-slot { width: 100%; height: 100%; display: block; }
.ft-d-polaroid-cap {
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  text-align: center;
  font-family: "Covered By Your Grace", cursive;
  font-size: 16px;
  color: #1a1408;
}
.ft-d-byline { display: flex; flex-direction: column; gap: 6px; }
.ft-d-by-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a4a28;
}
.ft-d-by-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: calc(32px * var(--font-scale));
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #1a1408;
  line-height: 1;
}
.ft-d-by-role {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(14px * var(--font-scale));
  letter-spacing: 0.04em;
  color: #5a4a28;
}
.ft-d-by-context {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a3a2a;
}
.ft-d-by-context .sep { opacity: 0.4; }

.ft-d-marks {
  display: flex; flex-direction: column; gap: 6px;
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #1a1408;
}
.ft-d-marks-row {
  display: flex; justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(26, 20, 8, 0.25);
}
.ft-d-marks-row span { opacity: 0.55; text-transform: uppercase; }
.ft-d-marks-row b { font-weight: 600; }


/* ── Variant C (simplified): vertical video + minimal message ───────────── */
.ft-c-body-min {
  grid-template-columns: 360px 1fr;
  gap: 64px;
  padding: 56px 64px;
  align-items: center;
}
.ft-c-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 520px;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--accent) 0%, var(--navy-mid) 100%);
  box-shadow:
    0 0 0 1px rgba(117,155,200,0.25),
    0 30px 60px -20px rgba(0,0,0,0.6),
    0 0 60px rgba(117,155,200,0.15);
}
.ft-c-video-inner { position: absolute; inset: 0; }
.ft-c-video-inner image-slot { width: 100%; height: 100%; display: block; }
.ft-c-rec {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 10px;
  border-radius: 3px;
  background: rgba(10, 13, 23, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: "Inter", monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--off-white);
  z-index: 3;
}
.ft-c-rec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 0 0 10px #ff5f57;
  animation: ft-c-pulse 1.4s ease-in-out infinite;
}
.ft-c-video .ft-c-corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1.5px solid var(--accent);
  z-index: 3;
}
.ft-c-video .ft-c-corner.tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.ft-c-video .ft-c-corner.tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.ft-c-video .ft-c-corner.bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.ft-c-video .ft-c-corner.br { bottom: 8px; right: 8px; border-left: none; border-top: none; }

.ft-c-msg-min { display: flex; flex-direction: column; gap: 28px; }
.ft-c-msg-min .ft-c-attr { margin-bottom: 0; }
.ft-c-msg-min .ft-c-attr-name { font-size: calc(40px * var(--font-scale)); letter-spacing: -0.02em; }
.ft-c-msg-min .ft-c-wave { height: 64px; }

/* Typed line above attribution (variant C) — mirrors F's caption style */
.ft-c-typed-line {
  display: flex;
  align-items: baseline;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(56px * var(--font-scale));
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--off-white);
  text-wrap: pretty;
  min-height: calc(56px * var(--font-scale) * 1.12);
  margin-bottom: 8px;
}
.ft-c-typed-text { display: inline; }
.ft-c-typed-cursor {
  display: inline-block;
  margin-left: 4px;
  color: var(--accent);
  animation: ft-f-blink 0.9s steps(2) infinite;
}


/* ── Variant C — final pass: remove background, bigger video, bottom-align ─ */
.ft-c-section .ft-c-shell {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.ft-c-section .ft-c-body-min {
  grid-template-columns: 460px 1fr;
  gap: 80px;
  padding: 0;
  align-items: stretch;
  min-height: 818px;
}
.ft-c-section .ft-c-video {
  max-height: none;
  height: 100%;
  width: 460px;
  aspect-ratio: 9 / 16;
  min-height: 818px;
}
.ft-c-section .ft-c-msg-min {
  justify-content: flex-end;
  padding-bottom: 8px;
  gap: 24px;
}


/* ════════════════════════════════════════════════════════════════════════
   Featured Testimonial — Variants E / F / G (share .ft-c-video sizing)
   ════════════════════════════════════════════════════════════════════════ */

/* ── Variant E — Now Playing (music-player card) ────────────────────────── */
.ft-e-section .ft-c-body-min,
.ft-f-section .ft-c-body-min,
.ft-g-section .ft-c-body-min {
  grid-template-columns: 460px 1fr;
  gap: 80px;
  padding: 0;
  align-items: stretch;
  min-height: 818px;
}

.ft-e-np {
  display: flex; flex-direction: column;
  justify-content: flex-end;
  gap: 22px;
  padding-bottom: 8px;
}
.ft-e-chip {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  padding: 6px 12px;
  border: 1px solid rgba(117,155,200,0.35);
  border-radius: 999px;
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(117,155,200,0.05);
}
.ft-e-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(68px * var(--font-scale));
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin: 0;
}
.ft-e-sub {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(16px * var(--font-scale));
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}
.ft-e-eq {
  display: flex; align-items: flex-end; gap: 5px;
  height: 28px;
  margin-top: 8px;
}
.ft-e-eq span {
  width: 4px; border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: ft-e-eq 0.9s ease-in-out infinite;
}
.ft-e-eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.ft-e-eq span:nth-child(2) { height: 80%; animation-delay: 0.15s; }
.ft-e-eq span:nth-child(3) { height: 60%; animation-delay: 0.3s; }
.ft-e-eq span:nth-child(4) { height: 100%; animation-delay: 0.45s; }
.ft-e-eq span:nth-child(5) { height: 55%; animation-delay: 0.6s; }
@keyframes ft-e-eq {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(0.35); }
}

.ft-e-controls {
  display: flex; align-items: center; gap: 18px;
  margin-top: 8px;
}
.ft-e-btn {
  appearance: none; -webkit-appearance: none;
  background: none; border: none;
  cursor: pointer;
  color: var(--off-white);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, color 0.2s ease;
}
.ft-e-btn:hover { color: var(--accent); transform: scale(1.05); }
.ft-e-btn-sm { font-size: 15px; opacity: 0.7; }
.ft-e-btn-lg {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(91deg, var(--accent-deep), var(--accent));
  box-shadow: 0 8px 24px -8px rgba(117,155,200,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
  display: grid; place-items: center;
}
.ft-e-btn-lg:hover { color: var(--off-white); }
.ft-e-pause { font-size: 14px; letter-spacing: -2px; line-height: 1; }

.ft-e-progress { margin-top: 4px; }
.ft-e-progress-bar {
  position: relative;
  height: 3px; width: 100%;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.ft-e-progress-bar > span {
  display: block; height: 100%;
  width: 28%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent);
  animation: ft-e-prog 30s linear infinite;
}
@keyframes ft-e-prog {
  0% { width: 28%; } 100% { width: 100%; }
}
.ft-e-time {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}

/* ── Variant F — Live captions (typewriter) ─────────────────────────────── */
.ft-f-col {
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 8px 0;
  gap: 24px;
}
.ft-f-head {
  display: flex; align-items: center; gap: 12px;
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
}
.ft-f-cc {
  padding: 4px 8px;
  background: var(--off-white);
  color: #0a0d17;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.ft-f-lang { color: var(--accent); }
.ft-f-time { margin-left: auto; }

.ft-f-caption {
  flex: 1;
  display: flex; align-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(44px * var(--font-scale));
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--off-white);
  text-wrap: pretty;
  min-height: 0;
}
.ft-f-caption > span:first-child { display: inline; }
.ft-f-cursor {
  display: inline-block;
  margin-left: 4px;
  color: var(--accent);
  animation: ft-f-blink 0.9s steps(2) infinite;
}
@keyframes ft-f-blink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }

.ft-f-foot {
  display: flex; flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ft-f-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: calc(28px * var(--font-scale));
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.ft-f-role {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}

/* ── Variant G — Cinema reel ────────────────────────────────────────────── */
.ft-g-section .ft-c-body-min {
  grid-template-columns: 520px 1fr;
  gap: 72px;
}
.ft-g-reel {
  display: grid;
  grid-template-columns: 24px 460px 24px;
  gap: 6px;
  min-height: 818px;
}
.ft-g-perfs {
  display: flex; flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  background: #0a0d17;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}
.ft-g-perfs span {
  width: 12px; height: 16px;
  background: var(--dark-bg);
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.6);
}
.ft-g-video {
  width: 100%;
  min-height: 818px;
  position: relative;
  border-radius: 4px;
}
.ft-g-slate {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; flex-direction: column;
  background: rgba(10, 13, 23, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 4;
  min-width: 180px;
}
.ft-g-slate-bars { display: flex; height: 14px; }
.ft-g-slate-bars span {
  flex: 1;
  height: 100%;
}
.ft-g-slate-bars span:nth-child(odd) { background: var(--off-white); }
.ft-g-slate-bars span:nth-child(even) { background: #0a0d17; }
.ft-g-slate-rows {
  padding: 10px 14px;
  display: flex; flex-direction: column;
  gap: 4px;
  font-family: "Inter", monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
}
.ft-g-slate-rows > div { display: flex; justify-content: space-between; gap: 18px; }
.ft-g-slate-rows span { color: rgba(255,255,255,0.5); }
.ft-g-slate-rows b { color: var(--off-white); font-weight: 600; }

.ft-g-col {
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 4px 0 8px;
  gap: 28px;
}
.ft-g-top { display: flex; flex-direction: column; gap: 12px; }
.ft-g-eyebrow {
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.ft-g-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(88px * var(--font-scale));
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--off-white);
  margin: 0;
  text-transform: uppercase;
}
.ft-g-role {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.ft-g-sheet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ft-g-frame {
  display: flex; flex-direction: column; gap: 4px;
}
.ft-g-frame-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, var(--accent), var(--navy-mid));
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.ft-g-frame-img image-slot { width: 100%; height: 100%; display: block; }
.ft-g-frame-meta {
  display: flex; justify-content: space-between;
  font-family: "Inter", monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}

.ft-g-stripe {
  display: flex; gap: 10px; align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
}
.ft-g-stripe span:nth-child(even) { color: rgba(255,255,255,0.3); }


/* ── Center the C/E/F/G testimonial cluster as a unit ───────────────────── */
.ft-c-section .ft-c-body-min,
.ft-e-section .ft-c-body-min,
.ft-f-section .ft-c-body-min,
.ft-g-section .ft-c-body-min {
  max-width: 1100px;
  margin: 0 auto;
}
.ft-g-section .ft-c-body-min {
  max-width: 1180px;
}


/* ── Testimonial C/E/F/G — breathing room + tighter centered cluster ──── */
.ft-c-section.ft-c-section,
.ft-e-section.ft-e-section,
.ft-f-section.ft-f-section,
.ft-g-section.ft-g-section {
  padding-top: 180px;
  padding-bottom: 120px;
}

.ft-c-section .ft-c-body-min,
.ft-e-section .ft-c-body-min,
.ft-f-section .ft-c-body-min {
  max-width: 1180px;
  gap: 80px;
}
.ft-g-section .ft-c-body-min {
  max-width: 1080px;
  gap: 56px;
}

/* ── Services B — scroll-pinned color reveal (all rows visible) ────────── */
.services-pinned-b {
  position: relative;
  /* height set inline = (N+1) * 100vh */
}
.services-pinned-b .svc-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.services-pinned-b .container {
  width: 100%;
}
.services-pinned-b .head { margin-bottom: 64px; }

/* All three rows in normal column flow — same as variant A */
.svc-list-b {
  display: flex;
  flex-direction: column;
}
/* Default (un-revealed): blue tint across all text */
.svc-item-b { transition: padding 0.3s ease; }
.svc-item-b .num,
.svc-item-b .title,
.svc-item-b .desc {
  color: var(--accent);
  transition: color 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-item-b .cta {
  color: var(--accent);
  border-color: rgba(117,155,200,0.4);
  transition: color 0.7s ease, border-color 0.7s ease, background 0.7s ease;
}
/* Revealed (after that row's swipe): turns white */
.svc-item-b.revealed .num   { color: rgba(255,255,255,0.55); }
.svc-item-b.revealed .title { color: var(--off-white); }
.svc-item-b.revealed .desc  { color: rgba(255,255,255,0.75); }
.svc-item-b.revealed .cta   {
  color: var(--off-white);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}
/* Disable hover indent inside pinned mode so nothing fights the swipe state */
.services-pinned-b .svc-item:hover { padding-left: 0; }
.services-pinned-b .svc-item:hover::after { width: 0; }


/* ── Services B — emphasize the row being swiped ────────────────────────── */
.svc-item-b {
  position: relative;
  padding-left: 0;
  transition:
    padding 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-item-b::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: center;
  box-shadow: 0 0 18px var(--accent), 0 0 36px rgba(117,155,200,0.45);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  opacity: 0;
}
.svc-item-b.focusing {
  padding-left: 28px;
  background:
    linear-gradient(90deg, rgba(117,155,200,0.10) 0%, rgba(117,155,200,0) 60%);
}
.svc-item-b.focusing::before {
  transform: scaleY(1);
  opacity: 1;
}
.svc-item-b.focusing .num {
  transform: scale(1.08);
  text-shadow: 0 0 24px rgba(117,155,200,0.55);
}
.svc-item-b.focusing .title {
  letter-spacing: -0.005em;
}
.svc-item-b.focusing .cta {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--off-white);
  transform: scale(1.06);
  box-shadow: 0 12px 36px -8px rgba(117,155,200,0.7);
}
.svc-item-b .num,
.svc-item-b .title,
.svc-item-b .cta {
  transition:
    color 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    text-shadow 0.5s ease;
}


/* ── Services C — scroll-pinned, rows appear turn by turn ──────────────── */
.services-pinned-c {
  position: relative;
}
.services-pinned-c .svc-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.services-pinned-c .container { width: 100%; }
.services-pinned-c .head { margin-bottom: 64px; }

.svc-list-c {
  display: flex;
  flex-direction: column;
}

/* Rows: hidden by default, then slide+fade in when .in is added */
.svc-item-c {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}
.svc-item-c.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* Stagger each row's transition origin so the eye gets a beat */
.svc-item-c:nth-child(1) { transition-delay: 0s; }
.svc-item-c:nth-child(2) { transition-delay: 0.04s; }
.svc-item-c:nth-child(3) { transition-delay: 0.08s; }

/* Make sure base svc-item hover indent doesn't fight the entrance */
.services-pinned-c .svc-item:hover { padding-left: 0; }
.services-pinned-c .svc-item:hover::after { width: 0; }


/* ════════════════════════════════════════════════════════════════════════
   Contact F / G / H — compact variants
   ════════════════════════════════════════════════════════════════════════ */

/* ── Variant F — Inline pill ────────────────────────────────────────────── */
.contact-f-section { padding: 100px 0; }
.cf-wrap {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 64px 80px;
  border-radius: var(--r-card-lg);
  background:
    radial-gradient(ellipse 70% 80% at 30% 0%, rgba(117,155,200,0.5), transparent 60%),
    linear-gradient(160deg, var(--accent-deep) 0%, #0e1730 100%);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.cf-wrap::before {
  content: "";
  position: absolute;
  right: -90px; top: -90px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117,155,200,0.45), transparent 65%);
  pointer-events: none;
}
.cf-wrap > * { position: relative; z-index: 1; }
.cf-headline { max-width: 900px; }
.cf-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.cf-headline {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(48px * var(--font-scale));
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
}
.cf-pill {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 6px 6px 24px;
  width: 100%;
  max-width: 560px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.cf-pill:focus-within {
  border-color: var(--accent);
  background: rgba(117,155,200,0.06);
}
.cf-pill input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--off-white);
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(17px * var(--font-scale));
  padding: 14px 0;
}
.cf-pill input::placeholder { color: rgba(255,255,255,0.4); }
.cf-btn {
  appearance: none; -webkit-appearance: none;
  border: none; cursor: pointer;
  background: linear-gradient(91deg, var(--accent-deep) 0%, var(--accent) 100%);
  color: var(--off-white);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px -8px rgba(117,155,200,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cf-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 32px -10px rgba(117,155,200,0.65), inset 0 1px 0 rgba(255,255,255,0.22); }
.cf-btn svg { width: 16px; height: 16px; }
.cf-reply {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.62);
}
.cf-reply-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: cf-reply-pulse 2.4s ease-in-out infinite;
  flex: none;
}
@keyframes cf-reply-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
.cf-meta {
  display: flex; align-items: center; gap: 14px;
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  justify-content: center;
}
.cf-meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

/* ── Variant G — Direct channels (no form) ─────────────────────────────── */
.contact-g-section { padding: 110px 0; }
.cg-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}
.cg-head .eyebrow { margin-bottom: 16px; }
.cg-headline {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(54px * var(--font-scale));
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin: 0;
}
.cg-list {
  display: flex; flex-direction: column;
}
.cg-row {
  display: grid;
  grid-template-columns: 110px 1.2fr 1fr 56px;
  align-items: center;
  gap: 24px;
  padding: 20px 0 20px 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: var(--off-white);
  position: relative;
  transition: padding 0.3s ease, background 0.3s ease;
}
.cg-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.cg-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.35s ease;
}
.cg-row:hover { padding-left: 28px; }
.cg-row:hover::before { transform: scaleY(1); }
.cg-k {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.cg-v {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: calc(22px * var(--font-scale));
  letter-spacing: -0.01em;
  color: var(--off-white);
}
.cg-hint {
  font-family: "Afacad Flux", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.cg-arrow {
  justify-self: end;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center;
  color: var(--off-white);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.cg-arrow svg { width: 16px; height: 16px; }
.cg-row:hover .cg-arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateX(4px);
}

/* ── Variant H — Quick book (mini scheduler) ───────────────────────────── */
.contact-h-section { padding: 100px 0; }
.ch-card {
  max-width: 1040px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse 70% 100% at 0% 0%, rgba(117,155,200,0.18), transparent 65%),
    linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.ch-l { display: flex; flex-direction: column; gap: 14px; }
.ch-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.ch-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #5fffa3;
  box-shadow: 0 0 12px #5fffa3;
}
.ch-headline {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(40px * var(--font-scale));
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--off-white);
  margin: 0;
}
.ch-sub {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(15px * var(--font-scale));
  color: rgba(255,255,255,0.6);
  max-width: 360px;
  line-height: 1.5;
}

.ch-r { display: flex; flex-direction: column; gap: 18px; }
.ch-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ch-slot {
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  padding: 14px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--off-white);
  transition: all 0.25s ease;
  font-family: "Inter", sans-serif;
}
.ch-slot:hover {
  border-color: rgba(117,155,200,0.4);
  background: rgba(117,155,200,0.06);
  transform: translateY(-2px);
}
.ch-slot.on {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-color: transparent;
  box-shadow: 0 10px 24px -8px rgba(117,155,200,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}
.ch-slot-d {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
}
.ch-slot-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: calc(28px * var(--font-scale));
  font-weight: 500;
  line-height: 1;
}
.ch-slot-t {
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.ch-confirm {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 5px 5px 5px 20px;
  transition: border-color 0.25s ease;
}
.ch-confirm:focus-within { border-color: var(--accent); }
.ch-confirm input {
  flex: 1;
  background: none; border: none; outline: none;
  color: var(--off-white);
  font-family: "Afacad Flux", sans-serif;
  font-size: 15px;
  padding: 10px 0;
}
.ch-confirm input::placeholder { color: rgba(255,255,255,0.4); }
.ch-confirm-btn {
  appearance: none; -webkit-appearance: none;
  border: none; cursor: pointer;
  background: linear-gradient(91deg, var(--accent-deep) 0%, var(--accent) 100%);
  color: var(--off-white);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 20px -6px rgba(117,155,200,0.5);
  transition: transform 0.2s ease;
}
.ch-confirm-btn:hover { transform: translateY(-1px); }
.ch-confirm-btn svg { width: 14px; height: 14px; }


/* ── FIT D — tightened spacing so everything fits one screen ─────────────── */
.wk-fit-d-section { padding: 72px 0; }
.wk-fit-d-section .wk-fit-head { margin-bottom: 40px; }
.wk-fit-d-section .wk-fit-card { padding: 24px 24px; gap: 10px; }
.wk-fit-d-section .wk-fit-card-ico { width: 48px; height: 48px; }
.wk-fit-d-section .wk-fit-card-ico svg { width: 26px; height: 26px; }
.wk-fit-d-section .wk-fit-card-foot { padding-top: 10px; }
.wk-fit-d-section .wk-fit-thread {
  margin-top: 32px;
  padding: 20px 24px;
}
.wk-fit-d-section .wk-fit-thread p { font-size: 17px; line-height: 1.45; }
.wk-fit-d-section .wk-fit-thread-d-name { font-size: 26px; }


/* ════════════════════════════════════════════════════════════════════════
   Deliverables — Variants E / F / G (split into two distinct sections)
   ════════════════════════════════════════════════════════════════════════ */

/* Shared title font for the new variants */
.wk-del-e-title, .wk-del-f-title, .wk-del-g-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--off-white);
  margin: 18px 0 0;
}

/* ── Variant E — Two cards side by side ─────────────────────────────────── */
.wk-del-e {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.wk-del-e-card {
  position: relative;
  padding: 40px 40px 36px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(117,155,200,0.08), transparent 60%),
    rgba(255,255,255,0.02);
  display: flex; flex-direction: column;
  gap: 14px;
}
.wk-del-e-right {
  background:
    radial-gradient(ellipse 80% 80% at 100% 0%, rgba(117,155,200,0.22), transparent 60%),
    linear-gradient(160deg, var(--accent-deep) 0%, #0e1730 100%);
  border-color: rgba(255,255,255,0.14);
}
.wk-del-e-list {
  list-style: none;
  padding: 0; margin: 12px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.wk-del-e-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  font-family: "Afacad Flux", sans-serif;
  font-size: 14.5px;
  color: rgba(245,245,245,0.85);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.wk-del-e-list li:hover {
  border-color: rgba(117,155,200,0.4);
  transform: translateX(3px);
}
.wk-del-e-bullet {
  font-family: "Inter", monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(117,155,200,0.1);
  padding: 3px 7px;
  border-radius: 4px;
}
.wk-del-e-foot {
  margin-top: auto;
  font-family: "Afacad Flux", sans-serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(245,245,245,0.55);
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.12);
}
.wk-del-e-sub {
  font-family: "Afacad Flux", sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 8px;
}
.wk-del-e-right .wk-form {
  padding: 0;
  background: none;
  border: none;
}
.wk-del-e-right .wk-form-head { display: none; }

/* ── Variant F — Editorial split with center rule ───────────────────────── */
.wk-del-f {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px 48px;
  align-items: start;
}
.wk-del-f-left, .wk-del-f-right {
  display: flex; flex-direction: column;
  gap: 14px;
}
.wk-del-f-rule {
  align-self: stretch;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(117,155,200,0.4) 20%, rgba(117,155,200,0.4) 80%, transparent);
  position: relative;
}
.wk-del-f-rule span {
  position: absolute;
  left: -3px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.wk-del-f-rule span:nth-child(1) { top: 8%; }
.wk-del-f-rule span:nth-child(2) { top: 50%; }
.wk-del-f-rule span:nth-child(3) { top: 92%; }
.wk-del-f-list {
  list-style: none;
  padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column;
}
.wk-del-f-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  font-family: "Afacad Flux", sans-serif;
  font-size: 16px;
  color: rgba(245,245,245,0.85);
  transition: padding 0.3s ease, color 0.3s ease;
}
.wk-del-f-list li:hover { padding-left: 8px; color: var(--off-white); }
.wk-del-f-tick {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}
.wk-del-f-quote {
  margin-top: 18px;
  font-family: "Covered By Your Grace", cursive;
  font-size: 22px;
  color: var(--accent);
  line-height: 1.35;
}
.wk-del-f-sub {
  font-family: "Afacad Flux", sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 8px;
}

/* ── Variant G — Asymmetric ledger + slim aside form ────────────────────── */
.wk-del-g {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}
.wk-del-g-head {
  display: flex; justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.wk-del-g-stamp {
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid rgba(117,155,200,0.4);
  border-radius: 4px;
  padding: 4px 10px;
}
.wk-del-g-ledger {
  margin-top: 24px;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.wk-del-g-row {
  display: grid;
  grid-template-columns: 60px 1.4fr 1fr 80px;
  gap: 18px;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding 0.3s ease, background 0.3s ease;
}
.wk-del-g-row:hover {
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(117,155,200,0.06), transparent 70%);
}
.wk-del-g-n {
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.wk-del-g-d {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--off-white);
}
.wk-del-g-line {
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.wk-del-g-status {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: "Inter", monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5fffa3;
}
.wk-del-g-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5fffa3;
  box-shadow: 0 0 8px #5fffa3;
}
.wk-del-g-tag {
  margin-top: 28px;
  font-family: "Afacad Flux", sans-serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
}
.wk-del-g-right {
  position: sticky; top: 100px;
  padding: 28px 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(117,155,200,0.22);
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(117,155,200,0.14), transparent 70%),
    rgba(255,255,255,0.025);
  display: flex; flex-direction: column;
  gap: 10px;
}
.wk-del-g-aside-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 12px 0 0;
}
.wk-del-g-aside-sub {
  font-family: "Afacad Flux", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 10px;
  line-height: 1.5;
}
.wk-del-g-right .wk-form {
  padding: 0;
  background: none;
  border: none;
}
.wk-del-g-right .wk-form-head { display: none; }


/* ════════════════════════════════════════════════════════════════════════
   Deliverables H / I / J — vertically stacked: list section, then form section
   ════════════════════════════════════════════════════════════════════════ */

.wk-form-section { padding: 96px 0; position: relative; }

/* ── Variant H — Grid section, then prominent form section ──────────────── */
.wk-del-h-section { padding-bottom: 60px; }
.wk-del-h-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
}
.wk-del-h-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.wk-del-h-tile {
  display: flex; flex-direction: column;
  gap: 12px;
  padding: 22px 22px 26px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.025);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  min-height: 120px;
}
.wk-del-h-tile:hover {
  border-color: rgba(117,155,200,0.45);
  transform: translateY(-3px);
  background: rgba(117,155,200,0.06);
}
.wk-del-h-n {
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.wk-del-h-d {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--off-white);
  line-height: 1.25;
}
.wk-del-h-tag {
  margin-top: 36px;
  text-align: center;
  font-family: "Afacad Flux", sans-serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}

.wk-form-section-h {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.wk-form-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.wk-form-section-head .wk-h-lede { text-align: center; max-width: 540px; margin-top: 8px; }
.wk-form-section-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 32px 28px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 80% at 100% 0%, rgba(117,155,200,0.22), transparent 60%),
    linear-gradient(160deg, var(--accent-deep) 0%, #0e1730 100%);
  border: 1px solid rgba(255,255,255,0.12);
}
.wk-form-section-card .wk-form {
  padding: 0; background: none; border: none;
}
.wk-form-section-card .wk-form-head { display: none; }

/* ── Variant I — Editorial rows, then minimal centered form ─────────────── */
.wk-del-i-section { padding-bottom: 80px; }
.wk-del-i-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.wk-del-i-head-l { display: flex; flex-direction: column; gap: 12px; }
.wk-del-i-quote {
  font-family: "Covered By Your Grace", cursive;
  font-size: 22px;
  line-height: 1.4;
  color: var(--accent);
  margin: 0;
  max-width: 380px;
}
.wk-del-i-rows {
  display: flex; flex-direction: column;
}
.wk-del-i-row {
  display: grid;
  grid-template-columns: 80px 1.6fr 1fr 32px;
  gap: 20px;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding 0.3s ease, background 0.3s ease;
}
.wk-del-i-row:hover {
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(117,155,200,0.06), transparent 70%);
}
.wk-del-i-n {
  font-family: "Inter", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.wk-del-i-d {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--off-white);
}
.wk-del-i-line { height: 1px; background: rgba(255,255,255,0.1); }
.wk-del-i-tick {
  justify-self: end;
  display: inline-grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
}

.wk-form-section-i { padding: 100px 0; }
.wk-form-section-i-wrap {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 14px;
}
.wk-form-section-i-h {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin: 8px 0 0;
}
.wk-form-section-i-sub {
  font-family: "Afacad Flux", sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin: 0 0 16px;
}
.wk-form-section-i-card {
  width: 100%;
  padding: 28px 32px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.025);
}
.wk-form-section-i-card .wk-form {
  padding: 0; background: none; border: none;
}
.wk-form-section-i-card .wk-form-head { display: none; }

/* ── Variant J — Bento, then split form panel ──────────────────────────── */
.wk-del-j-section { padding-bottom: 80px; }
.wk-del-j-head {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 40px;
  max-width: 760px;
}
.wk-del-j-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 12px;
}
.wk-del-j-cell {
  position: relative;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  min-height: 110px;
}
.wk-del-j-cell:hover {
  border-color: rgba(117,155,200,0.4);
  background: rgba(117,155,200,0.06);
  transform: translateY(-2px);
}
/* Bento shape: vary spans for visual rhythm */
.wk-del-j-cell-1 { grid-column: span 3; }
.wk-del-j-cell-2 { grid-column: span 3; }
.wk-del-j-cell-3 { grid-column: span 2; }
.wk-del-j-cell-4 { grid-column: span 2; }
.wk-del-j-cell-5 { grid-column: span 2; }
.wk-del-j-cell-6 { grid-column: span 3; }
.wk-del-j-cell-7 { grid-column: span 3; }
.wk-del-j-cell-8 { grid-column: span 6;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(117,155,200,0.15), transparent 60%),
    rgba(255,255,255,0.03);
}
.wk-del-j-n {
  font-family: "Inter", monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.wk-del-j-d {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--off-white);
  line-height: 1.25;
}

.wk-form-section-j {
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.wk-form-section-j-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 48px 56px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(117,155,200,0.18), transparent 60%),
    linear-gradient(160deg, var(--accent-deep) 0%, #0e1730 100%);
  border: 1px solid rgba(255,255,255,0.12);
}
.wk-form-section-j-l { display: flex; flex-direction: column; gap: 14px; }
.wk-form-section-j-h {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--off-white);
  margin: 8px 0 0;
}
.wk-form-section-j-h .accent { color: var(--accent); }
.wk-form-section-j-sub {
  font-family: "Afacad Flux", sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 360px;
}
.wk-form-section-j-meta {
  margin-top: 18px;
  display: flex; flex-direction: column;
  gap: 10px;
}
.wk-form-section-j-meta > div {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.wk-form-section-j-meta span { color: rgba(255,255,255,0.5); text-transform: uppercase; font-size: 10.5px; letter-spacing: 0.2em; align-self: center; }
.wk-form-section-j-meta b { color: var(--off-white); font-weight: 500; }
.wk-form-section-j-r .wk-form {
  padding: 0; background: none; border: none;
}
.wk-form-section-j-r .wk-form-head { display: none; }

/* ── Background variant B — Aurora gradient (drifts with scroll) ─────── */
:root { --bg-scroll: 0; }
body[data-bg="B"] .cosmos {
  /* Hue rotation drives a chromatic shift as you scroll;
     background-position offsets create parallax motion of each gradient. */
  background:
    /* Top-left magenta-violet bloom */
    radial-gradient(ellipse 70% 55% at 12% 8%, rgba(140, 90, 200, 0.45), transparent 60%),
    /* Mid-right accent */
    radial-gradient(ellipse 60% 50% at 92% 35%, rgba(117, 155, 200, 0.42), transparent 60%),
    /* Lower cyan-teal sweep */
    radial-gradient(ellipse 80% 60% at 35% 75%, rgba(95, 180, 200, 0.32), transparent 65%),
    /* Bottom-right deep accent */
    radial-gradient(ellipse 70% 55% at 88% 95%, rgba(60, 90, 170, 0.5), transparent 65%),
    /* Subtle warm wash for depth */
    radial-gradient(ellipse 50% 35% at 50% 50%, rgba(200, 120, 90, 0.08), transparent 70%),
    /* Base vertical wash */
    linear-gradient(180deg, #0a0e1f 0%, #0e1226 30%, #11142b 60%, #0d1024 100%);
  background-size: 140% 140%, 140% 140%, 140% 140%, 140% 140%, 140% 140%, 100% 100%;
  background-position:
    calc(0% - var(--bg-scroll) * 30%) calc(0% - var(--bg-scroll) * 20%),
    calc(100% + var(--bg-scroll) * 25%) calc(0% + var(--bg-scroll) * 30%),
    calc(0% + var(--bg-scroll) * 40%) calc(100% - var(--bg-scroll) * 35%),
    calc(100% - var(--bg-scroll) * 20%) calc(100% + var(--bg-scroll) * 18%),
    calc(50% + (var(--bg-scroll) - 0.5) * 40%) calc(50% - (var(--bg-scroll) - 0.5) * 30%),
    0% 0%;
  filter: hue-rotate(calc(var(--bg-scroll) * 40deg));
  transition: filter 0.2s linear;
}
/* Tone down the star layer over the richer background */
body[data-bg="B"] .stars { opacity: 0.38; transform: translateY(calc(var(--bg-scroll) * -40px)); transition: transform 0.2s linear; }
body[data-bg="B"] .stars::after { opacity: 0.32; }
/* Soften the orbit rings so the gradient breathes */
body[data-bg="B"] .site-orbits .orbit-ring.r1 { border-color: rgba(255,255,255,0.10); }
body[data-bg="B"] .site-orbits .orbit-ring.r2 { border-color: rgba(255,255,255,0.08); }
body[data-bg="B"] .site-orbits .orbit-ring.r3 { border-color: rgba(140, 90, 200, 0.16); }
body[data-bg="B"] .site-orbits .orbit-ring.r4 { border-color: rgba(95, 180, 200, 0.16); }


/* video-slot fills its parent frame (mirrors image-slot's sizing rules) */
.ft-c-video-inner video-slot,
.ft-c-video video-slot {
  width: 100%;
  height: 100%;
  display: block;
}
.ft-c-video-inner video-slot::part(frame) { border-radius: 0; }


/* ════════════════════════════════════════════════════════════════════════
   Testimonial — Variants H / I  (keep the 460×640 video frame)
   ════════════════════════════════════════════════════════════════════════ */

/* ── Variant H — Reverse split: msg LEFT, video RIGHT ─────────────────── */
.ft-h-section .ft-c-shell { background: none; border: none; box-shadow: none; }
.ft-h-section .ft-c-body-min,
.ft-h-grid {
  grid-template-columns: 1fr 460px;
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  align-items: stretch;
  min-height: 818px;
}
.ft-h-section .ft-c-video {
  width: 460px;
  min-height: 818px;
  aspect-ratio: 9 / 16;
}
.ft-h-msg {
  justify-content: flex-end;
  padding-bottom: 8px;
  gap: 28px;
}
.ft-h-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.ft-h-eyebrow-line {
  width: 32px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
}
.ft-h-msg .ft-c-attr-name {
  font-size: calc(48px * var(--font-scale));
  letter-spacing: -0.02em;
}


/* ── Variant I — Issue cover (editorial) ──────────────────────────────── */
.ft-i-section .ft-c-shell {
  background: none;
  border: none;
  box-shadow: none;
  position: relative;
}
.ft-i-grid {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr 460px;
  gap: 24px 64px;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 818px;
  align-items: stretch;
  padding-top: 12px;
}

.ft-i-rail {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex; align-items: center;
  gap: 14px;
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  justify-self: start;
}
.ft-i-rail-line {
  width: 1px; height: 80px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}

.ft-i-left {
  display: flex; flex-direction: column;
  gap: 18px;
  padding: 8px 0;
}
.ft-i-top {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ft-i-tag { color: var(--accent); }
.ft-i-folio { color: rgba(255,255,255,0.55); }

.ft-i-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: clamp(72px, 8.5vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin: 4px 0 0;
  text-transform: uppercase;
  color: var(--off-white);
  display: flex; flex-direction: column;
}
.ft-i-name .ft-i-name-2 {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.ft-i-meta {
  margin-top: 12px;
  display: flex; flex-direction: column;
  gap: 6px;
}
.ft-i-meta-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.ft-i-meta-row span { color: rgba(255,255,255,0.45); text-transform: uppercase; }
.ft-i-meta-row b { color: var(--off-white); font-weight: 500; letter-spacing: 0.02em; font-family: "Inter", sans-serif; font-size: 12.5px; }

.ft-i-pull {
  margin: 20px 0 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  position: relative;
  text-wrap: pretty;
}
.ft-i-pull em {
  font-style: italic;
  color: var(--accent);
}
.ft-i-mark {
  display: inline-block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 0.2;
  color: var(--accent);
  opacity: 0.5;
  margin-right: 4px;
  vertical-align: -8px;
}

.ft-i-video {
  width: 460px;
  min-height: 818px;
  aspect-ratio: 9 / 16;
  position: relative;
}
.ft-i-vstamp {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 3;
  display: flex; align-items: baseline; gap: 8px;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(10, 13, 23, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.ft-i-vstamp-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent);
}


/* ── Work E — scroll-pinned, one lane highlighted at a time ───────────── */
.wk-svc-e { position: relative; }
.wk-svc-e-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.wk-svc-e-pin .container {
  width: 100%;
  position: relative;
}
.wk-svc-e .wk-svc-head { margin-bottom: 36px; }
.wk-svc-e-grid {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 48px;
  align-items: start;
}

/* Left rail — ticks for each lane */
.wk-svc-e-rail {
  position: relative;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}
.wk-svc-e-rail::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.wk-svc-e-rail-fill {
  position: absolute;
  left: 11px;
  top: 14px;
  width: 1px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.wk-svc-e-tick {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.4;
  transition: opacity 0.4s;
  z-index: 1;
}
.wk-svc-e-tick.is-past { opacity: 0.7; }
.wk-svc-e-tick.is-active { opacity: 1; }
.wk-svc-e-tick-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: var(--dark-bg, #0a0d17);
  display: grid;
  place-items: center;
  position: relative;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}
.wk-svc-e-tick-dot::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.4s, transform 0.4s;
}
.wk-svc-e-tick.is-past .wk-svc-e-tick-dot { border-color: var(--accent); }
.wk-svc-e-tick.is-past .wk-svc-e-tick-dot::after { background: var(--accent); }
.wk-svc-e-tick.is-active .wk-svc-e-tick-dot {
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(117,155,200,0.55), inset 0 0 0 1px rgba(255,255,255,0.15);
}
.wk-svc-e-tick.is-active .wk-svc-e-tick-dot::after {
  background: var(--accent);
  transform: scale(1.4);
}
.wk-svc-e-tick-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}
.wk-svc-e-tick.is-active .wk-svc-e-tick-num { color: #fff; }

/* List — items stack; active expands, others collapse + dim */
.wk-svc-e-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wk-svc-e-item {
  position: relative;
  padding: 22px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  overflow: hidden;
  transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.5s, background 0.5s, opacity 0.5s, filter 0.5s;
}
.wk-svc-e-item.is-future,
.wk-svc-e-item.is-past {
  opacity: 0.32;
  filter: saturate(0.55);
  padding: 14px 24px;
}
.wk-svc-e-item.is-active {
  opacity: 1;
  border-color: rgba(117,155,200,0.45);
  background: linear-gradient(180deg, rgba(117,155,200,0.10), rgba(117,155,200,0.02) 70%);
  box-shadow: 0 16px 48px -24px rgba(117,155,200,0.45);
  padding: 28px 32px;
}

.wk-svc-e-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.wk-svc-e-item-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.wk-svc-e-item-tag {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Active body — visible only on active */
.wk-svc-e-item-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  margin-top: 16px;
  max-height: 0;
  opacity: 0;
  transform: translateY(6px);
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s, transform 0.5s, margin-top 0.5s;
}
.wk-svc-e-item.is-active .wk-svc-e-item-row {
  max-height: 480px;
  opacity: 1;
  transform: none;
}
.wk-svc-e-item.is-future .wk-svc-e-item-row,
.wk-svc-e-item.is-past .wk-svc-e-item-row { margin-top: 0; }

.wk-svc-e-item-ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(117,155,200,0.12);
  border: 1px solid rgba(117,155,200,0.32);
  display: grid; place-items: center;
  color: var(--accent);
}
.wk-svc-e-item-ico svg { width: 26px; height: 26px; }
.wk-svc-e-item-t {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.12;
}
.wk-svc-e-item-b {
  font-family: "Afacad Flux", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0 0 14px;
  max-width: 64ch;
}
.wk-svc-e-item-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
}
.wk-svc-e-item-list li {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: baseline; gap: 8px;
}
.wk-svc-e-item-list li::before {
  content: "+";
  color: var(--accent);
  font-weight: 500;
}

/* Floating counter — bottom-right of the pinned viewport */
.wk-svc-e-counter {
  position: absolute;
  right: 0;
  bottom: -8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  user-select: none;
}
.wk-svc-e-counter-now {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  line-height: 0.9;
}
.wk-svc-e-counter-sep {
  font-size: 28px;
  opacity: 0.5;
}
.wk-svc-e-counter-total {
  font-size: 28px;
}


/* ── Work F — D layout but scroll-driven turn-by-turn highlight ──────── */
.wk-svc-f { position: relative; }
.wk-svc-f-pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  box-sizing: border-box;
}
.wk-svc-f-pin .container { width: 100%; }
.wk-svc-f .wk-svc-head { margin-bottom: 28px; }

/* Rows are non-interactive in F (driven by scroll), so kill hover-side
   effects and rely only on .is-active / .is-past states. */
.wk-svc-ed-f .wk-svc-ed-row-f { cursor: default; }
.wk-svc-ed-f .wk-svc-ed-row-f:hover {
  padding-left: 0;
  background: transparent;
}
.wk-svc-ed-f .wk-svc-ed-row-f:hover .wk-svc-ed-name { color: rgba(255,255,255,0.9); }
.wk-svc-ed-f .wk-svc-ed-row-f:hover .wk-svc-ed-arrow {
  color: rgba(255,255,255,0.4);
  transform: none;
}

/* Slightly dim future rows so the active one reads as the focal point. */
.wk-svc-ed-f .wk-svc-ed-row-f {
  opacity: 0.55;
  transition: opacity 0.4s, padding 0.4s, background 0.4s;
}
.wk-svc-ed-f .wk-svc-ed-row-f.is-past   { opacity: 0.75; }
.wk-svc-ed-f .wk-svc-ed-row-f.is-active { opacity: 1; }

/* Active row — emphasized highlight that re-uses the existing tokens. */
.wk-svc-ed-f .wk-svc-ed-row-f.is-active {
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(117,155,200,0.10), transparent 80%);
}
.wk-svc-ed-f .wk-svc-ed-row-f.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  border-radius: 2px;
}
.wk-svc-ed-f .wk-svc-ed-row-f { position: relative; }
.wk-svc-ed-f .wk-svc-ed-row-f.is-active .wk-svc-ed-name { color: var(--accent); }
.wk-svc-ed-f .wk-svc-ed-row-f.is-active .wk-svc-ed-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* Step counter inside the panel header */
.wk-svc-ed-panel-f .wk-svc-ed-panel-top { position: relative; }
.wk-svc-ed-panel-step {
  margin-left: auto;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
}
.wk-svc-ed-panel-step-now {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  line-height: 0.9;
}
.wk-svc-ed-panel-step-sep,
.wk-svc-ed-panel-step-total { font-size: 14px; }

/* Smooth detail-panel content swap */
.wk-svc-ed-panel-f .wk-svc-ed-panel-t,
.wk-svc-ed-panel-f .wk-svc-ed-panel-b,
.wk-svc-ed-panel-f ul,
.wk-svc-ed-panel-f .wk-svc-ed-panel-ico,
.wk-svc-ed-panel-f .wk-svc-ed-panel-meta {
  transition: opacity 0.3s ease;
}


/* Handwritten 48h reply note pinned beneath the form panel */
.wk-form-section-j-r { position: relative; }
/* Handwritten 48h reply note — sits below the gradient card, not inside */
.wk-form-section-j-handnote-outside {
  margin-top: 32px;
  margin-left: auto;
  margin-right: 4%;
  max-width: 420px;
  justify-content: flex-end;
}
.wk-form-section-j-handnote {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 0 4px;
  font-family: "Covered By Your Grace", cursive;
  color: var(--accent);
  line-height: 1.35;
  letter-spacing: 0.005em;
  transform: rotate(-1.4deg);
  transform-origin: left top;
}
.wk-form-section-j-handnote-arrow {
  font-size: 34px;
  line-height: 0.9;
  display: inline-block;
  transform: rotate(-12deg);
  color: var(--accent);
  opacity: 0.85;
  margin-top: 2px;
}
.wk-form-section-j-handnote-text {
  font-size: 24px;
  color: rgba(245,245,245,0.86);
}
.wk-form-section-j-handnote-text em {
  font-style: normal;
  color: var(--accent);
}
.wk-form-section-j-handnote-text b {
  font-weight: 400;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}


/* ════════════════════════════════════════════════════════════════════════
   Blogs / Writing — A, B, C
   ════════════════════════════════════════════════════════════════════════ */

.blogs {
  position: relative;
  z-index: 2;
  padding: 140px 0;
}

.blogs .bg-headline {
  font-size: var(--fs-section);
  max-width: 1080px;
  margin-top: 18px;
  text-wrap: balance;
}
.blogs .eyebrow { color: var(--accent); }

/* Shared bits */
.bg-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.55);
}
.bg-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.bg-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--off-white);
  transition: color 0.25s ease, gap 0.25s ease;
}
.bg-readmore .arrow { transition: transform 0.25s ease; }
.bg-viewmore { white-space: nowrap; }

/* ── A — Editorial 3-up cards ─────────────────────────────────────────── */
.blogs-a-section .bg-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.bg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: stretch;
}
.bg-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.bg-card:hover { transform: translateY(-6px); }
.bg-card:hover .bg-readmore { gap: 12px; color: var(--accent); }
.bg-card:hover .bg-readmore .arrow { transform: translateX(2px); }
.bg-card:hover .bg-card-img image-slot { transform: scale(1.03); }

/* Push the foot to the bottom so all three cards' "Read more" lines align */
.bg-card-foot {
  margin-top: auto;
}
/* Clamp the excerpt so card heights start consistent (foot still anchors bottom) */
.bg-card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bg-foot-a { justify-content: flex-end; }

.bg-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(117, 155, 200, 0.18), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bg-card-img image-slot {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.bg-card-idx {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(10, 13, 23, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.bg-card-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(28px * var(--font-scale));
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
}
.bg-card-excerpt {
  font-family: "Afacad Flux", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.7);
  margin: 0;
  max-width: 38ch;
}
.bg-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.bg-share {
  color: rgba(245, 245, 245, 0.55);
  transition: color 0.25s ease;
}
.bg-card:hover .bg-share { color: var(--off-white); }

.bg-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  gap: 24px;
  flex-wrap: wrap;
}
.bg-page {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(245, 245, 245, 0.55);
}
.bg-page-on { color: var(--accent); font-weight: 500; }
.bg-page-rule {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.bg-page-tot { color: rgba(245, 245, 245, 0.5); }

/* ── B — Magazine: feature + stack ────────────────────────────────────── */
.blogs-b-section .bg-b-head { margin-bottom: 56px; }
.bg-b-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.bg-b-feature {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 20px;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.bg-b-feature:hover { transform: translateY(-4px); border-color: rgba(117, 155, 200, 0.4); }
.bg-b-feature-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(117, 155, 200, 0.22), rgba(255, 255, 255, 0.02));
}
.bg-b-feature-img image-slot {
  width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.bg-b-feature:hover .bg-b-feature-img image-slot { transform: scale(1.04); }
.bg-b-feat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  background: rgba(10, 13, 23, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(117, 155, 200, 0.3);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
}
.bg-b-feature-body {
  display: flex; flex-direction: column;
  gap: 14px;
  padding: 4px 10px 14px;
}
.bg-b-feature-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(40px * var(--font-scale));
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
}
.bg-b-feature-excerpt {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(19px * var(--font-scale));
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.72);
  margin: 0;
}
.bg-b-feature .bg-readmore { color: var(--accent); padding-top: 6px; }

.bg-b-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bg-b-row {
  display: grid;
  grid-template-columns: 140px 1fr 28px;
  gap: 24px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.bg-b-row:hover {
  transform: translateX(4px);
  border-color: rgba(117, 155, 200, 0.4);
  background: rgba(117, 155, 200, 0.05);
}
.bg-b-row-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(117, 155, 200, 0.2), rgba(255, 255, 255, 0.02));
}
.bg-b-row-thumb image-slot { width: 100%; height: 100%; }
.bg-b-row-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.bg-b-row-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(22px * var(--font-scale));
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin: 0;
}
.bg-b-row-excerpt {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(15px * var(--font-scale));
  line-height: 1.45;
  color: rgba(245, 245, 245, 0.65);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bg-b-row-arrow {
  color: rgba(245, 245, 245, 0.5);
  transition: color 0.25s ease, transform 0.25s ease;
}
.bg-b-row:hover .bg-b-row-arrow { color: var(--accent); transform: translate(2px, -2px); }

.bg-foot-b { justify-content: space-between; }
.bg-foot-b-meta {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(245, 245, 245, 0.55);
}

/* ── C — Editorial ledger list ────────────────────────────────────────── */
.blogs-c-section .bg-c-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bg-c-head-r {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.bg-c-meta-row {
  display: inline-flex;
  gap: 16px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bg-c-meta-row span { color: rgba(245, 245, 245, 0.5); }
.bg-c-meta-row b {
  color: var(--off-white);
  font-weight: 500;
  min-width: 110px;
  text-align: right;
}

.bg-c-list {
  display: flex;
  flex-direction: column;
}
.bg-c-row {
  display: grid;
  grid-template-columns: 90px 1fr 140px 90px 40px;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
  transition: padding 0.3s ease, background 0.3s ease;
}
.bg-c-row:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(117, 155, 200, 0.08) 0%, transparent 70%);
}
.bg-c-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(40px * var(--font-scale));
  letter-spacing: -0.02em;
  color: var(--accent);
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.bg-c-row:hover .bg-c-num { opacity: 1; transform: translateX(-4px); }
.bg-c-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.bg-c-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(32px * var(--font-scale));
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--off-white);
  margin: 0;
  transition: color 0.3s ease;
}
.bg-c-row:hover .bg-c-title { color: var(--accent); }
.bg-c-excerpt {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(16px * var(--font-scale));
  line-height: 1.45;
  color: rgba(245, 245, 245, 0.6);
  margin: 0;
  max-width: 64ch;
}
.bg-c-tag {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.65);
  text-align: left;
}
.bg-c-read {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(245, 245, 245, 0.5);
  text-align: right;
}
.bg-c-arrow {
  color: rgba(245, 245, 245, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  transition: color 0.3s ease, transform 0.3s ease;
}
.bg-c-row:hover .bg-c-arrow { color: var(--accent); transform: translateX(4px); }

.bg-foot-c { justify-content: space-between; }
.bg-foot-c-meta {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(245, 245, 245, 0.55);
}

/* Responsive ish for narrow viewports */
@media (max-width: 1024px) {
  .bg-grid { grid-template-columns: 1fr; }
  .bg-b-grid { grid-template-columns: 1fr; }
  .bg-c-row { grid-template-columns: 60px 1fr 32px; }
  .bg-c-row .bg-c-tag, .bg-c-row .bg-c-read { display: none; }
}


/* ── D — Horizontal carousel (Our Latest Blogs) ───────────────────────── */
.blogs-d-section { padding: 140px 0; }
.blogs-d-section .container { position: relative; }

.bg-d-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.bg-d-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
}
.bg-d-arrows {
  display: inline-flex;
  gap: 12px;
}
.bg-d-arrow {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--off-white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.bg-d-arrow:hover {
  background: rgba(117, 155, 200, 0.1);
  border-color: rgba(117, 155, 200, 0.5);
}
.bg-d-arrow:active { transform: scale(0.96); }
.bg-d-arrow-on {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark-bg);
}
.bg-d-arrow-on:hover {
  background: var(--accent);
  border-color: var(--accent);
  filter: brightness(1.08);
}

.bg-d-rail-wrap {
  position: relative;
  margin-bottom: 48px;
}
.bg-d-rail-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--dark-bg));
  pointer-events: none;
  z-index: 2;
}
.bg-d-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px max(48px, calc((100vw - 1440px) / 2 + 48px)) 4px max(48px, calc((100vw - 1440px) / 2 + 48px));
  scroll-padding-left: max(48px, calc((100vw - 1440px) / 2 + 48px));
}
.bg-d-rail::-webkit-scrollbar { display: none; }

.bg-d-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, background 0.35s ease;
}
.bg-d-card:hover {
  transform: translateY(-6px);
  border-color: rgba(117, 155, 200, 0.4);
  background: rgba(117, 155, 200, 0.05);
}
.bg-d-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(117, 155, 200, 0.22), rgba(255, 255, 255, 0.03));
}
.bg-d-card-img image-slot {
  width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.bg-d-card:hover .bg-d-card-img image-slot { transform: scale(1.05); }
.bg-d-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 22px 26px;
  flex: 1;
}
.bg-d-card-tag {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.55);
}
.bg-d-card-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(20px * var(--font-scale));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(20px * var(--font-scale) * 1.2 * 2);
}
.bg-d-readblog {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--off-white);
  margin-top: auto;
  padding-top: 8px;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color 0.25s ease, gap 0.25s ease;
}
.bg-d-readblog .arrow { transition: transform 0.25s ease; }
.bg-d-card:hover .bg-d-readblog { color: var(--accent); gap: 10px; }
.bg-d-card:hover .bg-d-readblog .arrow { transform: translateX(2px); }

.bg-d-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.bg-d-dots {
  display: inline-flex;
  gap: 8px;
}
.bg-d-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, width 0.2s ease;
}
.bg-d-dots span.on {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .bg-d-rail {
    padding-left: 24px;
    padding-right: 24px;
    scroll-padding-left: 24px;
  }
  .bg-d-card { flex-basis: 260px; }
}


/* ── E — Playbook + Blog pair (merged section) ─────────────────────────── */
.blogs-e-section .bg-e-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.bg-e-head-r {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  padding-bottom: 6px;
}
.bg-e-head-meta {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
  display: inline-flex;
  gap: 14px;
  align-items: baseline;
}
.bg-e-head-meta b {
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.06em;
}

.bg-e-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.bg-e-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 44px 44px 36px;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.018);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.25s ease,
              background 0.25s ease;
}
.bg-e-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Playbook is the weightier one — accent rail at top, accent-tinted bg, larger title */
.bg-e-playbook {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(117, 155, 200, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.022);
  border-color: rgba(117, 155, 200, 0.22);
}
.bg-e-playbook::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(117, 155, 200, 0.4) 40%, transparent 80%);
}
.bg-e-playbook:hover {
  border-color: rgba(117, 155, 200, 0.45);
}

.bg-e-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bg-e-kind {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(245, 245, 245, 0.78);
  background: rgba(255, 255, 255, 0.025);
}
.bg-e-kind-playbook {
  color: var(--accent);
  border-color: rgba(117, 155, 200, 0.42);
  background: rgba(117, 155, 200, 0.10);
}
.bg-e-kind-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(117, 155, 200, 0.18);
}
.bg-e-num {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(245, 245, 245, 0.42);
}

.bg-e-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(28px * var(--font-scale));
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
}
.bg-e-title-playbook {
  font-size: calc(34px * var(--font-scale));
  line-height: 1.12;
  letter-spacing: -0.022em;
}

.bg-e-excerpt {
  font-family: "Afacad Flux", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.72);
  margin: 0;
}
.bg-e-excerpt-playbook {
  font-size: calc(var(--fs-body) * 1.04);
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.78);
  max-width: 56ch;
}

.bg-e-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
  margin-top: auto;
  padding-top: 8px;
}

.bg-e-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--off-white);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  transition: color 0.25s ease, gap 0.25s ease;
}
.bg-e-cta-playbook {
  color: var(--accent);
  font-weight: 500;
}
.bg-e-card:hover .bg-e-cta { gap: 12px; color: var(--accent); }

.bg-foot-e {
  margin-top: 48px;
  justify-content: space-between;
}
.bg-foot-e-meta {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(245, 245, 245, 0.55);
}

@media (max-width: 1024px) {
  .bg-e-grid { grid-template-columns: 1fr; }
  .bg-e-card { padding: 32px 28px 28px; }
  .bg-e-title-playbook { font-size: calc(28px * var(--font-scale)); }
}


/* ── F — Hero playbook + quiet blog row ────────────────────────────────── */
.blogs-f-section .bg-f-head { margin-bottom: 64px; }

.bg-f-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  padding: 56px 56px 48px;
  border-radius: 26px;
  background:
    radial-gradient(140% 90% at 0% 0%, rgba(117, 155, 200, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(117, 155, 200, 0.22);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease;
}
.bg-f-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(117, 155, 200, 0.4) 50%, transparent 90%);
}
.bg-f-hero:hover {
  transform: translateY(-3px);
  border-color: rgba(117, 155, 200, 0.45);
}
.bg-f-hero-l {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 32px;
}
.bg-f-stamp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bg-f-stamp-kind {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(117, 155, 200, 0.42);
  background: rgba(117, 155, 200, 0.10);
  align-self: flex-start;
}
.bg-f-stamp-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: calc(72px * var(--font-scale));
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: rgba(245, 245, 245, 0.88);
}
.bg-f-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.52);
  margin-top: auto;
}
.bg-f-hero-r {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.bg-f-hero-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(40px * var(--font-scale));
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
}
.bg-f-hero-excerpt {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(var(--fs-body) * 1.05);
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.78);
  margin: 0;
  max-width: 64ch;
}
.bg-f-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin-top: 8px;
  transition: gap 0.25s ease;
}
.bg-f-hero:hover .bg-f-hero-cta { gap: 14px; }

.bg-f-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 56px 0 28px;
}
.bg-f-divider-rule {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
}
.bg-f-divider-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.45);
}

.bg-f-row {
  display: grid;
  grid-template-columns: 60px 80px 1fr auto 32px;
  gap: 28px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, padding 0.25s ease;
}
.bg-f-row:hover {
  border-color: rgba(117, 155, 200, 0.35);
}
.bg-f-row:hover .bg-f-row-arrow { color: var(--accent); transform: translateX(4px); }
.bg-f-row-num {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(245, 245, 245, 0.45);
}
.bg-f-row-kind {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.7);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  justify-self: start;
}
.bg-f-row-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bg-f-row-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(22px * var(--font-scale));
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--off-white);
  margin: 0;
}
.bg-f-row-excerpt {
  font-family: "Afacad Flux", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.65);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bg-f-row-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
}
.bg-f-row-arrow {
  color: rgba(245, 245, 245, 0.5);
  transition: color 0.25s ease, transform 0.25s ease;
}

.bg-foot-f { justify-content: flex-end; margin-top: 56px; }

@media (max-width: 1024px) {
  .bg-f-hero { grid-template-columns: 1fr; padding: 36px 28px 32px; gap: 28px; }
  .bg-f-hero-l { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding-right: 0; padding-bottom: 24px; }
  .bg-f-row { grid-template-columns: 50px 1fr 32px; }
  .bg-f-row-kind, .bg-f-row-meta { display: none; }
}


/* ── G — Editorial ledger spread (typographic) ─────────────────────────── */
.blogs-g-section { padding-top: 120px; }
.bg-g-masthead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 16px;
}
.bg-g-mast-eye {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.55);
  margin-bottom: 14px;
}
.bg-g-mast-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(56px * var(--font-scale));
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--off-white);
  margin: 0;
}
.bg-g-mast-r {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 8px;
}
.bg-g-mast-meta {
  display: inline-flex;
  gap: 14px;
  align-items: baseline;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.55);
}
.bg-g-mast-meta b {
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.06em;
}

.bg-g-entry {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  padding: 48px 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  text-decoration: none;
  color: inherit;
  transition: padding 0.25s ease;
}
.bg-g-entry:hover .bg-g-title { color: var(--accent); }
.bg-g-entry:hover .bg-g-cta { gap: 12px; color: var(--accent); }
.bg-g-num-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bg-g-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(96px * var(--font-scale));
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(245, 245, 245, 0.88);
}
.bg-g-entry-playbook .bg-g-num {
  color: var(--accent);
}
.bg-g-kind {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.6);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  align-self: flex-start;
}
.bg-g-kind-playbook {
  color: var(--accent);
  border-color: rgba(117, 155, 200, 0.42);
  background: rgba(117, 155, 200, 0.08);
}
.bg-g-body-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bg-g-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(36px * var(--font-scale));
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
  transition: color 0.25s ease;
}
.bg-g-title-sm {
  font-size: calc(30px * var(--font-scale));
}
.bg-g-excerpt {
  font-family: "Afacad Flux", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.72);
  margin: 0;
  max-width: 64ch;
}
.bg-g-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px dashed rgba(255, 255, 255, 0.10);
}
.bg-g-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
}
.bg-g-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--off-white);
  transition: color 0.25s ease, gap 0.25s ease;
}

.bg-foot-g {
  justify-content: space-between;
  margin-top: 40px;
}
.bg-foot-g-meta {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.45);
}

@media (max-width: 1024px) {
  .bg-g-entry { grid-template-columns: 1fr; gap: 24px; }
  .bg-g-num { font-size: calc(64px * var(--font-scale)); }
  .bg-g-title { font-size: calc(28px * var(--font-scale)); }
  .bg-g-title-sm { font-size: calc(24px * var(--font-scale)); }
}


/* ── H — Center timeline rail (alternating entries) ────────────────────── */
.blogs-h-section .bg-h-head {
  text-align: center;
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.blogs-h-section .bg-h-head .bg-headline {
  max-width: 720px;
  margin-top: 0;
}

.bg-h-timeline {
  position: relative;
  padding: 16px 0 32px;
}
.bg-h-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.10) 8%, rgba(255,255,255,0.10) 92%, transparent 100%);
  transform: translateX(-50%);
}
.bg-h-railcap {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: var(--dark-bg);
  transform: translateX(-50%);
}

.bg-h-entry {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: start;
  padding: 24px 0;
}
.bg-h-entry-l .bg-h-card { grid-column: 1; margin-right: 56px; text-align: right; }
.bg-h-entry-l .bg-h-date { grid-column: 3; margin-left: 56px; }
.bg-h-entry-r .bg-h-card { grid-column: 3; margin-left: 56px; }
.bg-h-entry-r .bg-h-date { grid-column: 1; margin-right: 56px; text-align: right; }

.bg-h-node {
  grid-column: 2;
  justify-self: center;
  align-self: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--dark-bg);
  border: 1px solid rgba(255,255,255,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: border-color 0.25s ease;
}
.bg-h-node-playbook {
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(117,155,200,0.12);
}
.bg-h-node-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}
.bg-h-node-playbook .bg-h-node-dot { background: var(--accent); }

.bg-h-date {
  align-self: center;
  font-family: "Inter", sans-serif;
  color: rgba(245,245,245,0.55);
}
.bg-h-date span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.bg-h-date b {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(32px * var(--font-scale));
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin-top: 4px;
  line-height: 1;
}

.bg-h-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.022);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease;
}
.bg-h-card-playbook {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(117,155,200,0.10), transparent 60%),
    rgba(255, 255, 255, 0.022);
  border-color: rgba(117, 155, 200, 0.22);
}
.bg-h-card:hover { transform: translateY(-3px); border-color: rgba(117, 155, 200, 0.4); }
.bg-h-entry-l .bg-h-card { align-items: flex-end; }

.bg-h-tag-row { display: flex; }
.bg-h-kind {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.75);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}
.bg-h-kind-playbook {
  color: var(--accent);
  border-color: rgba(117, 155, 200, 0.42);
  background: rgba(117, 155, 200, 0.10);
}
.bg-h-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(28px * var(--font-scale));
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
}
.bg-h-title-sm { font-size: calc(24px * var(--font-scale)); }
.bg-h-excerpt {
  font-family: "Afacad Flux", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.72);
  margin: 0;
}
.bg-h-entry-l .bg-h-excerpt,
.bg-h-entry-l .bg-h-title { text-align: right; }
.bg-h-foot {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  margin-top: auto;
  width: 100%;
}
.bg-h-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
}
.bg-h-entry-l .bg-h-meta { justify-content: flex-end; }
.bg-h-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--off-white);
  transition: color 0.25s ease, gap 0.25s ease;
}
.bg-h-card-playbook .bg-h-cta { color: var(--accent); }
.bg-h-card:hover .bg-h-cta { gap: 12px; color: var(--accent); }

.bg-foot-h { justify-content: center; margin-top: 56px; }

@media (max-width: 1024px) {
  .bg-h-rail { left: 22px; }
  .bg-h-railcap { left: 22px; }
  .bg-h-entry { grid-template-columns: 44px 1fr; }
  .bg-h-entry-l .bg-h-card,
  .bg-h-entry-r .bg-h-card { grid-column: 2; margin: 0; text-align: left; align-items: flex-start; }
  .bg-h-entry-l .bg-h-title,
  .bg-h-entry-l .bg-h-excerpt { text-align: left; }
  .bg-h-entry-l .bg-h-meta { justify-content: flex-start; }
  .bg-h-entry-l .bg-h-date,
  .bg-h-entry-r .bg-h-date { display: none; }
  .bg-h-node { grid-column: 1; }
}


/* ════════════════════════════════════════════════════════════════════════
   Testimonials — large quote, pill + avatar selector, arrow nav
   ════════════════════════════════════════════════════════════════════════ */

.testimonials-section {
  position: relative;
  z-index: 2;
  padding: 140px 0;
}

.ts-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.ts-headline {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: var(--fs-section);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
}

.ts-arrows {
  display: inline-flex;
  gap: 12px;
}
.ts-arrow {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--off-white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, opacity 0.2s ease;
}
.ts-arrow:hover {
  background: rgba(117, 155, 200, 0.1);
  border-color: rgba(117, 155, 200, 0.5);
}
.ts-arrow:active { transform: scale(0.96); }
.ts-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.ts-arrow:disabled:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}
.ts-arrow-on {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark-bg);
}
.ts-arrow-on:hover {
  background: var(--accent);
  border-color: var(--accent);
  filter: brightness(1.08);
}

/* Stage */
.ts-stage {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.ts-quote-mark {
  color: var(--accent);
  margin-bottom: 28px;
  display: inline-block;
}

.ts-quote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--off-white);
  margin: 0 0 56px;
  text-wrap: pretty;
  animation: ts-fade 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes ts-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* People row: featured pill + small avatar ghosts */
.ts-people {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.ts-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 24px 10px 10px;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.5);
  animation: ts-fade 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}
.ts-pill-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(117, 155, 200, 0.45), rgba(117, 155, 200, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ts-pill-avatar image-slot {
  width: 100%;
  height: 100%;
  display: block;
}
.ts-pill-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.ts-pill-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(17px * var(--font-scale));
  letter-spacing: -0.005em;
  color: var(--off-white);
}
.ts-pill-role {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(13px * var(--font-scale));
  color: rgba(245, 245, 245, 0.6);
}

.ts-avatars {
  display: inline-flex;
  gap: 10px;
}
.ts-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}
.ts-avatar-ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(117, 155, 200, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

@media (max-width: 768px) {
  .ts-head { flex-direction: column; align-items: flex-start; }
  .ts-pill { padding: 8px 18px 8px 8px; }
  .ts-pill-avatar { width: 44px; height: 44px; }
}


/* ════════════════════════════════════════════════════════════════════════
   Testimonials variants B / C / D
   ════════════════════════════════════════════════════════════════════════ */

/* Shared centered head */
.ts-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

/* ── B — Editorial split: quote left, portrait right ─────────────────── */
.testimonials-b .ts-b-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.ts-b-headline { margin-bottom: 64px; max-width: 880px; text-wrap: balance; }

.ts-b-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.ts-b-quote-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 12px;
}

.ts-b-quote-mark {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 120px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: -10px;
}

.ts-b-quote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--off-white);
  margin: 0;
  text-wrap: pretty;
  animation: ts-fade 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ts-b-attr {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.ts-b-attr-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(20px * var(--font-scale));
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.ts-b-attr-role {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(14px * var(--font-scale));
  color: rgba(245, 245, 245, 0.6);
  margin-top: 4px;
}

.ts-b-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding-top: 24px;
  flex-wrap: wrap;
}
.ts-b-dots {
  display: inline-flex;
  gap: 8px;
}
.ts-b-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.ts-b-dot.on {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.ts-b-portrait-col { display: flex; align-items: stretch; }
.ts-b-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(117, 155, 200, 0.35), rgba(117, 155, 200, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: ts-fade 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.ts-b-portrait image-slot { width: 100%; height: 100%; display: block; }
.ts-b-portrait-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 13, 23, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 900px) {
  .ts-b-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── C — Horizontal card rail ────────────────────────────────────────── */
.testimonials-c .ts-head { margin-bottom: 56px; }
.ts-c-rail-wrap {
  position: relative;
}
.ts-c-rail-wrap::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--dark-bg));
  pointer-events: none;
  z-index: 2;
}
.ts-c-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px max(48px, calc((100vw - 1440px) / 2 + 48px)) 4px max(48px, calc((100vw - 1440px) / 2 + 48px));
  scroll-padding-left: max(48px, calc((100vw - 1440px) / 2 + 48px));
}
.ts-c-rail::-webkit-scrollbar { display: none; }

.ts-c-card {
  flex: 0 0 420px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 32px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, background 0.35s ease;
}
.ts-c-card:hover {
  transform: translateY(-6px);
  border-color: rgba(117, 155, 200, 0.4);
  background: rgba(117, 155, 200, 0.06);
}
.ts-c-card.ts-c-ghost {
  background: rgba(255, 255, 255, 0.015);
  border-style: dashed;
}
.ts-c-card.ts-c-ghost .ts-c-quote { color: rgba(245, 245, 245, 0.4); font-style: italic; }

.ts-c-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--accent);
}
.ts-c-quote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(17px * var(--font-scale));
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--off-white);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ts-c-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ts-c-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(117, 155, 200, 0.45), rgba(117, 155, 200, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.ts-c-avatar image-slot { width: 100%; height: 100%; display: block; }
.ts-c-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ts-c-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(15px * var(--font-scale));
  color: var(--off-white);
  letter-spacing: -0.005em;
}
.ts-c-role {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(12.5px * var(--font-scale));
  color: rgba(245, 245, 245, 0.6);
}

@media (max-width: 768px) {
  .ts-c-card { flex-basis: 320px; padding: 28px 22px; }
  .ts-c-rail { padding-left: 24px; padding-right: 24px; }
}

/* ── D — Stacked deck (peek of prev/next) ────────────────────────────── */
.testimonials-d .ts-d-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.ts-d-headline {
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

.ts-d-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 380px;
}

.ts-d-deck {
  position: relative;
  width: min(720px, 100%);
  display: flex;
  justify-content: center;
}

.ts-d-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.ts-d-card-main {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 36px 80px -40px rgba(0, 0, 0, 0.55);
  animation: ts-d-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes ts-d-pop {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.ts-d-card-side {
  position: absolute;
  top: 24px;
  width: 70%;
  height: calc(100% - 48px);
  z-index: 1;
  opacity: 0.45;
  filter: blur(0.5px);
  padding: 28px 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.ts-d-card-side p {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.55);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ts-d-card-prev {
  left: -16%;
  transform: rotate(-3deg);
}
.ts-d-card-next {
  right: -16%;
  transform: rotate(3deg);
}

.ts-d-quote-mark {
  color: var(--accent);
  opacity: 0.85;
}

.ts-d-quote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--off-white);
  margin: 0;
  text-wrap: pretty;
}

.ts-d-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.ts-d-attr {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ts-d-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(117, 155, 200, 0.5), rgba(117, 155, 200, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ts-d-avatar image-slot { width: 100%; height: 100%; display: block; }
.ts-d-meta { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; }
.ts-d-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(17px * var(--font-scale));
  color: var(--off-white);
  letter-spacing: -0.005em;
}
.ts-d-role {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(13.5px * var(--font-scale));
  color: rgba(245, 245, 245, 0.6);
}

.ts-d-side-arrow {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--off-white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, opacity 0.2s ease;
  z-index: 5;
}
.ts-d-side-arrow:hover {
  background: rgba(117, 155, 200, 0.15);
  border-color: rgba(117, 155, 200, 0.5);
  transform: scale(1.05);
}
.ts-d-side-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.ts-d-side-arrow:disabled:hover { transform: none; background: transparent; border-color: rgba(255, 255, 255, 0.18); }

.ts-d-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.ts-d-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.ts-d-dot.on {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .ts-d-card-main { padding: 32px 24px; }
  .ts-d-card-side { display: none; }
}


/* Variant A — no-photo attribution (replaces pill+avatars when no images) */
.ts-attr {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  animation: ts-fade 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
  flex-wrap: wrap;
}
.ts-attr-dash {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
  flex-shrink: 0;
}
.ts-attr-text {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.ts-attr-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(20px * var(--font-scale));
  letter-spacing: -0.01em;
  color: var(--off-white);
}
.ts-attr-sep {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: calc(18px * var(--font-scale));
  color: rgba(245, 245, 245, 0.35);
  margin: 0 -4px;
}
.ts-attr-role {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(15px * var(--font-scale));
  color: rgba(245, 245, 245, 0.65);
  letter-spacing: 0.005em;
}


/* ═════════════════════════════════════════════════════════════════
   Playbooks — A, B, C
   ═════════════════════════════════════════════════════════════════ */
.playbooks {
  padding: 160px 0;
  position: relative;
  z-index: 1;
}
.pb-headline {
  font-size: var(--fs-section);
  max-width: 1080px;
  margin-top: 18px;
  text-wrap: balance;
}

/* ── A — Card row (reference image: 5 vertical cards, one accent-highlighted) */
.pb-a-section .pb-a-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.pb-a-head-l { flex: 1 1 480px; }
.pb-a-head-r {
  flex: 0 1 380px;
  font-family: "Afacad Flux", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.68);
  margin: 0;
  padding-top: 36px;
}

.pb-a-rail-wrap {
  margin: 0 calc(-1 * var(--container-pad, 0px));
  position: relative;
}
.pb-a-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 28px;
  margin: 0 -4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.18) transparent;
  cursor: grab;
  user-select: none;
}
.pb-a-rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.pb-a-rail::-webkit-scrollbar { height: 6px; }
.pb-a-rail::-webkit-scrollbar-track { background: transparent; }
.pb-a-rail::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
}
.pb-a-rail::-webkit-scrollbar-thumb:hover {
  background: rgba(117,155,200,0.5);
}

/* Edge fade hints there's more beyond */
.pb-a-rail-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 28px;
  width: 80px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--dark-bg) 90%);
  opacity: 0.7;
  z-index: 1;
}

.pb-a-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  padding: 26px 28px 22px;
  min-height: 280px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.022);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.25s ease,
              background 0.25s ease;
}
.pb-a-card:hover {
  transform: translateY(-4px);
  background:
    radial-gradient(140% 100% at 30% 100%, rgba(117, 155, 200, 0.55), transparent 60%),
    radial-gradient(120% 80% at 80% 0%, rgba(38, 63, 117, 0.55), transparent 65%),
    linear-gradient(180deg, var(--accent-deep) 0%, var(--accent) 95%);
  border-color: rgba(117, 155, 200, 0.45);
  box-shadow:
    0 24px 60px -20px rgba(117, 155, 200, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* On-hover paint adjustments so text reads against the gradient */
.pb-a-card:hover .pb-a-kind {
  color: var(--off-white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.10);
}
.pb-a-card:hover .pb-a-num { color: rgba(255, 255, 255, 0.85); }
.pb-a-card:hover .pb-a-excerpt { color: rgba(255, 255, 255, 0.88); }
.pb-a-card:hover .pb-a-foot { border-top-color: rgba(255, 255, 255, 0.22); }
.pb-a-card:hover .pb-a-meta { color: rgba(255, 255, 255, 0.75); }
.pb-a-card:hover .pb-a-cta { color: #fff; gap: 10px; }

.pb-a-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pb-a-kind {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(245, 245, 245, 0.68);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}
.pb-a-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(32px * var(--font-scale));
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(245, 245, 245, 0.55);
}

.pb-a-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(20px * var(--font-scale));
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--off-white);
  margin: 2px 0 0;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pb-a-excerpt {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(13px * var(--font-scale));
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.65);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pb-a-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.pb-a-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
}
.pb-a-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--off-white);
  transition: gap 0.25s ease, color 0.25s ease;
}

.pb-a-foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
.pb-a-foot-meta {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.45);
}

@media (max-width: 1280px) {
  .pb-a-rail {
    grid-auto-columns: minmax(280px, calc((100% - 24px) / 2));
  }
}
@media (max-width: 768px) {
  .pb-a-section .pb-a-head { flex-direction: column; gap: 24px; }
  .pb-a-head-r { padding-top: 0; flex: 1 1 auto; }
  .pb-a-rail { grid-auto-columns: 84%; }
}


/* ── B — Numbered editorial spread (big № 01–05, dashed dividers) */
.pb-b-section { padding: 140px 0; }
.pb-b-masthead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.pb-b-mast-eye {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.55);
  margin-bottom: 14px;
}
.pb-b-mast-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(56px * var(--font-scale));
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
}
.pb-b-mast-title .accent { color: var(--accent); }
.pb-b-mast-r {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 8px;
}
.pb-b-mast-meta {
  display: inline-flex;
  gap: 14px;
  align-items: baseline;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.55);
}
.pb-b-mast-meta b {
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.06em;
}

.pb-b-entry {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  padding: 44px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease;
}
.pb-b-entry:hover {
  background: linear-gradient(90deg, rgba(117, 155, 200, 0.04) 0%, transparent 70%);
}
.pb-b-entry:hover .pb-b-title { color: var(--accent); }
.pb-b-entry:hover .pb-b-cta { gap: 12px; color: var(--accent); }
.pb-b-entry:hover .pb-b-num { color: var(--accent); }

.pb-b-num-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pb-b-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(96px * var(--font-scale));
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(245, 245, 245, 0.85);
  transition: color 0.25s ease;
}
.pb-b-kind {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  align-self: flex-start;
}
.pb-b-body-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pb-b-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(32px * var(--font-scale));
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
  transition: color 0.25s ease;
}
.pb-b-excerpt {
  font-family: "Afacad Flux", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.72);
  margin: 0;
  max-width: 68ch;
}
.pb-b-row-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}
.pb-b-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
}
.pb-b-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--off-white);
  transition: color 0.25s ease, gap 0.25s ease;
}
.pb-b-foot-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .pb-b-entry { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
  .pb-b-num { font-size: calc(64px * var(--font-scale)); }
  .pb-b-title { font-size: calc(26px * var(--font-scale)); }
  .pb-b-mast-title { font-size: calc(40px * var(--font-scale)); }
}


/* ── C — Featured + side nav (stateful) */
.pb-c-section { padding: 140px 0; }
.pb-c-head { margin-bottom: 56px; }

.pb-c-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.pb-c-stage {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 48px 40px;
  border-radius: 24px;
  border: 1px solid rgba(117, 155, 200, 0.22);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(117, 155, 200, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.022);
  position: relative;
  overflow: hidden;
  animation: pb-c-stage-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.pb-c-stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(117, 155, 200, 0.4) 50%, transparent 90%);
}
@keyframes pb-c-stage-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pb-c-stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pb-c-kind {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(117, 155, 200, 0.42);
  background: rgba(117, 155, 200, 0.10);
}
.pb-c-counter {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(245, 245, 245, 0.45);
}
.pb-c-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(34px * var(--font-scale));
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--off-white);
  margin: 0;
  text-wrap: balance;
}
.pb-c-excerpt {
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(var(--fs-body) * 1.02);
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.78);
  margin: 0;
  flex: 1;
}
.pb-c-stage-foot {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.pb-c-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.55);
}
.pb-c-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(91deg, var(--accent-deep) 0%, var(--accent) 100%);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--off-white);
  text-decoration: none;
  box-shadow: 0 8px 24px -10px rgba(117, 155, 200, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, gap 0.25s ease;
}
.pb-c-cta:hover {
  transform: translateY(-2px);
  gap: 14px;
  box-shadow: 0 12px 28px -10px rgba(117, 155, 200, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pb-c-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pb-c-list-item {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  font: inherit;
}
.pb-c-list-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  transform: translateX(2px);
}
.pb-c-list-item.is-active {
  border-color: rgba(117, 155, 200, 0.45);
  background:
    linear-gradient(90deg, rgba(117, 155, 200, 0.12) 0%, rgba(117, 155, 200, 0.02) 80%),
    rgba(255, 255, 255, 0.02);
}
.pb-c-list-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(32px * var(--font-scale));
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(245, 245, 245, 0.45);
  transition: color 0.2s ease;
}
.pb-c-list-item.is-active .pb-c-list-num,
.pb-c-list-item:hover .pb-c-list-num { color: var(--accent); }

.pb-c-list-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.pb-c-list-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(16px * var(--font-scale));
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--off-white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pb-c-list-tag {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.50);
}
.pb-c-list-arrow {
  color: rgba(245, 245, 245, 0.4);
  display: inline-flex;
  transition: color 0.2s ease, transform 0.2s ease;
}
.pb-c-list-item.is-active .pb-c-list-arrow,
.pb-c-list-item:hover .pb-c-list-arrow { color: var(--accent); transform: translateX(2px); }

@media (max-width: 1024px) {
  .pb-c-grid { grid-template-columns: 1fr; }
  .pb-c-stage { padding: 32px 28px 28px; }
  .pb-c-title { font-size: calc(26px * var(--font-scale)); }
}


/* ═════════════════════════════════════════════════════════════════
   Explore More — two-door nudge above footer
   ═════════════════════════════════════════════════════════════════ */
.explore-more {
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}
.em-head {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.em-headline {
  font-size: calc(56px * var(--font-scale));
  font-weight: 400;
  max-width: 720px;
  text-wrap: balance;
  margin: 0;
  letter-spacing: -0.02em;
}

.em-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.em-door {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  padding: 32px 32px 26px;
  min-height: 240px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.022);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.em-door::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(117, 155, 200, 0.18), transparent 55%),
    radial-gradient(110% 80% at 0% 100%, rgba(38, 63, 117, 0.30), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.em-door:hover {
  transform: translateY(-4px);
  border-color: rgba(117, 155, 200, 0.45);
  box-shadow:
    0 28px 70px -20px rgba(117, 155, 200, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}
.em-door:hover::before { opacity: 1; }

/* Sweep shine on hover */
.em-door-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.045) 50%, transparent 70%);
  pointer-events: none;
  transition: left 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.em-door:hover .em-door-shine { left: 120%; }

.em-door-top,
.em-door-title,
.em-door-sub,
.em-door-foot { position: relative; z-index: 1; }

.em-door-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.em-door-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(22px * var(--font-scale));
  line-height: 1;
  letter-spacing: -0.025em;
  color: rgba(245, 245, 245, 0.45);
  transition: color 0.25s ease;
}
.em-door:hover .em-door-num { color: var(--accent); }
.em-door-kind {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.55);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.em-door:hover .em-door-kind {
  color: var(--accent);
  border-color: rgba(117, 155, 200, 0.45);
}

.em-door-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(38px * var(--font-scale));
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--off-white);
  margin: 2px 0 0;
  text-wrap: balance;
}

.em-door-sub {
  font-family: "Afacad Flux", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.68);
  margin: 0;
  max-width: 46ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.em-door-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}
.em-door:hover .em-door-foot { border-top-color: rgba(117, 155, 200, 0.30); }

.em-door-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--off-white);
  transition: color 0.25s ease, gap 0.25s ease;
}
.em-door:hover .em-door-cta { color: var(--accent); gap: 12px; }

.em-door-meta {
  font-family: "JetBrains Mono", "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(245, 245, 245, 0.4);
}

@media (max-width: 960px) {
  .em-grid { grid-template-columns: 1fr; }
  .em-door { padding: 28px 24px 22px; min-height: 200px; }
  .em-door-title { font-size: calc(30px * var(--font-scale)); }
}


/* ── Explore B — Ticket-stub pair ──────────────────────────────────────── */
.em-b-section { padding: 100px 0 70px; }
.em-b-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.em-b-head .em-headline {
  font-size: calc(48px * var(--font-scale));
  margin: 0;
  text-align: left;
  flex: 0 0 auto;
}
.em-b-rule {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  align-self: center;
  margin-top: 14px;
}
.em-b-eye {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
  align-self: center;
  margin-top: 6px;
}

.em-b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.em-b-ticket {
  display: grid;
  grid-template-columns: 90px 14px 1fr;
  align-items: stretch;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.022);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    background 0.25s ease;
}
.em-b-ticket:hover {
  transform: translateY(-2px);
  border-color: rgba(117, 155, 200, 0.4);
  background: rgba(117, 155, 200, 0.06);
}
.em-b-ticket-l {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(117,155,200,0.18) 0%, rgba(117,155,200,0.06) 100%);
  border-right: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 24px 0;
}
.em-b-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(48px * var(--font-scale));
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
}

/* Perforated edge with cut-outs */
.em-b-perf {
  position: relative;
  background: transparent;
  width: 14px;
}
.em-b-perf::before,
.em-b-perf::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transform: translateX(-50%);
}
.em-b-perf::before { top: -8px; }
.em-b-perf::after  { bottom: -8px; }

.em-b-ticket-r {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px 24px 18px 22px;
}
.em-b-ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.em-b-kind {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.65);
}
.em-b-ticket:hover .em-b-kind { color: var(--accent); }
.em-b-arrow {
  color: rgba(245, 245, 245, 0.5);
  display: inline-flex;
  transition: color 0.25s ease, transform 0.25s ease;
}
.em-b-ticket:hover .em-b-arrow { color: var(--accent); transform: translateX(4px); }

.em-b-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(20px * var(--font-scale));
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--off-white);
  text-wrap: balance;
}
.em-b-slug {
  font-family: "JetBrains Mono", "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(245, 245, 245, 0.4);
}

@media (max-width: 768px) {
  .em-b-grid { grid-template-columns: 1fr; }
  .em-b-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .em-b-rule, .em-b-eye { display: none; }
}


/* ── Explore C — Typographic split (no card chrome) ────────────────────── */
.em-c-section { padding: 60px 0 50px; }
.em-c-head {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.em-c-head .em-headline {
  font-size: calc(42px * var(--font-scale));
  margin: 0;
}
.em-c-sub {
  font-family: "Afacad Flux", sans-serif;
  font-size: var(--fs-body);
  color: rgba(245, 245, 245, 0.6);
  margin: 0;
}

.em-c-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  gap: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.em-c-divider {
  background: rgba(255, 255, 255, 0.10);
}
.em-c-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 18px 28px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease;
}
.em-c-link:hover {
  background: linear-gradient(180deg, rgba(117, 155, 200, 0.06) 0%, transparent 100%);
}
.em-c-link:hover .em-c-link-arrow { transform: translateX(10px); color: var(--accent); }
.em-c-link:hover .em-c-link-title { color: var(--accent); }
.em-c-link:hover .em-c-link-num { color: var(--accent); }

.em-c-link-top {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.em-c-link-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: calc(18px * var(--font-scale));
  line-height: 1;
  color: rgba(245, 245, 245, 0.45);
  transition: color 0.25s ease;
}
.em-c-link-meta {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
}

.em-c-link-row { display: flex; }
.em-c-link-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(50px * var(--font-scale));
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color 0.3s ease;
}
.em-c-link-arrow {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.75em;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.6);
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
}
.em-c-link-sub {
  font-family: "Afacad Flux", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.62);
  margin: 0;
  max-width: 36ch;
}

@media (max-width: 768px) {
  .em-c-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .em-c-divider { height: 1px; width: 100%; }
  .em-c-link { padding: 14px 0; }
  .em-c-link-title { font-size: calc(36px * var(--font-scale)); }
}


/* ═════════════════════════════════════════════════════════════════
   Featured Testimonial — J / K / L  (Ankur Warikoo, typing variants)
   ═════════════════════════════════════════════════════════════════ */

/* ── J — Caller ID / chat-bubble interface ───────────────────────────── */
.ft-j-section { padding: 100px 0; }
.ft-j-stage {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  border-radius: 36px;
  padding: 18px 22px 26px;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(117,155,200,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.ft-j-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(245,245,245,0.6);
  padding: 4px 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 18px;
}
.ft-j-time { letter-spacing: 0.02em; }
.ft-j-status-r { display: inline-flex; gap: 10px; align-items: center; }
.ft-j-signal { display: inline-flex; gap: 2px; align-items: flex-end; }
.ft-j-signal i {
  display: block;
  width: 3px;
  background: var(--off-white);
  border-radius: 1px;
}
.ft-j-signal i:nth-child(1) { height: 4px; }
.ft-j-signal i:nth-child(2) { height: 6px; }
.ft-j-signal i:nth-child(3) { height: 8px; }
.ft-j-signal i:nth-child(4) { height: 10px; opacity: 0.4; }
.ft-j-bat {
  display: inline-block;
  width: 22px;
  height: 11px;
  border: 1.5px solid var(--off-white);
  border-radius: 3px;
  position: relative;
  background: linear-gradient(90deg, var(--off-white) 70%, transparent 70%);
}
.ft-j-bat::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 3px;
  width: 2px;
  height: 3px;
  background: var(--off-white);
  border-radius: 0 1px 1px 0;
}

.ft-j-header {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 10px 6px 18px;
}
.ft-j-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(117,155,200,0.45);
  box-shadow: 0 0 0 4px rgba(117,155,200,0.10);
}
.ft-j-avatar video-slot {
  display: block;
  width: 100%;
  height: 100%;
  --slot-radius: 50%;
}
.ft-j-livedot {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5b6f;
  border: 2px solid var(--dark-bg, #0a0d17);
  box-shadow: 0 0 8px rgba(255,91,111,0.6);
  animation: ft-j-pulse 1.6s ease-in-out infinite;
}
@keyframes ft-j-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.85; }
}
.ft-j-caller-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(20px * var(--font-scale));
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.ft-j-caller-role {
  font-family: "Afacad Flux", sans-serif;
  font-size: 14px;
  color: rgba(245,245,245,0.6);
  margin-top: 2px;
}
.ft-j-caller-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(127,200,117,0.95);
}
.ft-j-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fc875;
  box-shadow: 0 0 8px rgba(127,200,117,0.7);
  animation: ft-j-pulse 1.6s ease-in-out infinite;
}
.ft-j-actions { display: inline-flex; gap: 10px; }
.ft-j-act {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(245,245,245,0.6);
}

.ft-j-thread {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ft-j-bub {
  position: relative;
  max-width: 78%;
  padding: 16px 20px 14px;
  border-radius: 22px;
  font-family: "Afacad Flux", sans-serif;
  font-size: calc(22px * var(--font-scale));
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.ft-j-bub-meta {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.45);
  margin-bottom: 6px;
}
.ft-j-bub-r {
  align-self: flex-end;
  background: linear-gradient(91deg, var(--accent-deep), var(--accent));
  color: var(--off-white);
  border-bottom-right-radius: 6px;
  box-shadow: 0 8px 24px -10px rgba(117,155,200,0.55);
}
.ft-j-bub-r .ft-j-bub-meta { color: rgba(255,255,255,0.7); text-align: right; }
.ft-j-bub-l {
  align-self: flex-start;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--off-white);
  border-bottom-left-radius: 6px;
  min-width: 280px;
}
.ft-j-cursor {
  display: inline-block;
  margin-left: 2px;
  color: var(--accent);
  animation: ft-j-blink 1s steps(1) infinite;
}
@keyframes ft-j-blink { 50% { opacity: 0; } }

.ft-j-composer {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  gap: 14px;
  align-items: center;
  padding: 20px 6px 6px;
}
.ft-j-mic, .ft-j-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(245,245,245,0.65);
}
.ft-j-send {
  background: linear-gradient(91deg, var(--accent-deep), var(--accent));
  color: var(--off-white);
  border-color: transparent;
}
.ft-j-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}
.ft-j-wave span {
  display: block;
  width: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
  animation: ft-j-bar 1.4s ease-in-out infinite;
}
.ft-j-wave span:nth-child(2n) { animation-delay: 0.15s; }
.ft-j-wave span:nth-child(3n) { animation-delay: 0.3s; }
.ft-j-wave span:nth-child(4n) { animation-delay: 0.45s; }
@keyframes ft-j-bar {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

@media (max-width: 768px) {
  .ft-j-bub { font-size: 18px; }
  .ft-j-header { grid-template-columns: 52px 1fr; }
  .ft-j-actions { display: none; }
}


/* ── K — Polaroid stack + paper typewriter caption ───────────────────── */
.ft-k-section { padding: 110px 0; }
.ft-k-stage {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px;
  border-radius: 4px;
  background:
    repeating-linear-gradient(180deg,
      rgba(255,255,255,0.012) 0,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 32px),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}

.ft-k-clip {
  position: absolute;
  width: 32px;
  height: 14px;
  background: linear-gradient(180deg, rgba(180,180,180,0.6), rgba(120,120,120,0.4));
  border-radius: 8px 8px 4px 4px;
  top: -8px;
}
.ft-k-clip-l { left: 36%; }
.ft-k-clip-r { right: 36%; }

.ft-k-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}

.ft-k-polaroids {
  position: relative;
  width: 340px;
  height: 550px;
  margin: 0 auto;
}
.ft-k-polaroid {
  position: absolute;
  width: 280px;
  background: linear-gradient(180deg, #f4efe6 0%, #e8e1d3 100%);
  padding: 14px 14px 44px;
  border-radius: 3px;
  box-shadow:
    0 24px 50px -16px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(0,0,0,0.04);
}
.ft-k-poly-photo {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #1a1d2a;
  overflow: hidden;
  position: relative;
}
.ft-k-poly-photo video-slot { display: block; width: 100%; height: 100%; }
.ft-k-poly-back .ft-k-poly-photo,
.ft-k-poly-mid .ft-k-poly-photo {
  background:
    radial-gradient(circle at 30% 30%, rgba(117,155,200,0.25), transparent 60%),
    #161824;
}
.ft-k-poly-cap {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  text-align: center;
  font-family: "Covered By Your Grace", "Bricolage Grotesque", cursive;
  font-size: 18px;
  color: #2a2620;
  letter-spacing: 0.01em;
}
.ft-k-poly-back {
  top: 24px; left: 20px;
  transform: rotate(-8deg);
  filter: brightness(0.85) saturate(0.6);
}
.ft-k-poly-mid {
  top: 14px; left: 50px;
  transform: rotate(5deg);
  filter: brightness(0.92);
}
.ft-k-poly-front {
  top: 0; left: 40px;
  transform: rotate(-2deg);
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ft-k-stage:hover .ft-k-poly-front { transform: rotate(0deg) translateY(-4px); }
.ft-k-tape {
  position: absolute;
  width: 64px;
  height: 18px;
  background: rgba(220, 210, 180, 0.5);
  border: 1px solid rgba(160, 150, 130, 0.3);
  top: -8px;
}
.ft-k-tape-tl { left: -12px; transform: rotate(-12deg); }
.ft-k-tape-tr { right: -12px; transform: rotate(8deg); }

.ft-k-page {
  position: relative;
  padding: 20px 8px;
  font-family: "JetBrains Mono", "Courier New", monospace;
}
.ft-k-page-top {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.5);
  margin-bottom: 32px;
}
.ft-k-page-mark { color: var(--accent); font-weight: 500; }
.ft-k-page-rule { flex: 1; height: 1px; background: rgba(255,255,255,0.10); }

.ft-k-quote-mark {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: 120px;
  line-height: 0.6;
  color: var(--accent);
  margin-left: -8px;
  margin-bottom: -20px;
  opacity: 0.85;
}
.ft-k-typed {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: calc(28px * var(--font-scale));
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--off-white);
  margin: 16px 0 36px;
  min-height: 1.45em;
}
.ft-k-cursor {
  display: inline-block;
  margin-left: 2px;
  color: var(--accent);
  animation: ft-j-blink 1s steps(1) infinite;
}
.ft-k-sig {
  position: relative;
  padding-top: 18px;
}
.ft-k-sig-line {
  display: block;
  width: 220px;
  height: 1px;
  background: rgba(255,255,255,0.20);
  margin-bottom: 10px;
}
.ft-k-sig-name {
  font-family: "Covered By Your Grace", "Bricolage Grotesque", cursive;
  font-size: calc(34px * var(--font-scale));
  color: var(--off-white);
  letter-spacing: 0.005em;
  line-height: 1;
}
.ft-k-sig-role {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.55);
  margin-top: 8px;
}
.ft-k-stamp {
  position: absolute;
  bottom: 18px;
  right: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 22px;
  border: 2px solid rgba(192,80,80,0.55);
  border-radius: 8px;
  color: rgba(192,80,80,0.75);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  transform: rotate(-8deg);
  background: rgba(192,80,80,0.04);
}
.ft-k-stamp-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
}

@media (max-width: 960px) {
  .ft-k-grid { grid-template-columns: 1fr; gap: 36px; }
  .ft-k-polaroids { transform: scale(0.85); }
  .ft-k-typed { font-size: 22px; }
  .ft-k-quote-mark { font-size: 80px; }
  .ft-k-stamp { display: none; }
}


/* ── L — Cinematic letterbox subtitle bar ────────────────────────────── */
.ft-l-section { padding: 100px 0; background: #000; position: relative; }
.ft-l-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(117,155,200,0.10), transparent 70%);
  pointer-events: none;
}
.ft-l-container { position: relative; z-index: 1; }
.ft-l-stage {
  max-width: 1280px;
  margin: 0 auto;
  background: #050608;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}

.ft-l-credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: #000;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(245,245,245,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ft-l-cred-l { display: inline-flex; align-items: center; gap: 8px; }
.ft-l-rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3344;
  box-shadow: 0 0 10px rgba(255,51,68,0.6);
  animation: ft-j-pulse 1.4s ease-in-out infinite;
}
.ft-l-cred-c {
  color: var(--off-white);
  font-weight: 500;
  letter-spacing: 0.24em;
}
.ft-l-cred-r {
  text-align: right;
}

.ft-l-box {
  position: relative;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(117,155,200,0.10), transparent 65%),
    #050608;
  min-height: 480px;
}
.ft-l-video {
  position: relative;
  width: 320px;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.04);
}
.ft-l-video .ft-c-video-inner {
  width: 100%;
  height: 100%;
}
.ft-l-video video-slot {
  display: block;
  width: 100%;
  height: 100%;
}
.ft-l-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.18) 3px,
    rgba(0,0,0,0.18) 3px
  );
  pointer-events: none;
  mix-blend-mode: multiply;
}
.ft-l-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.ft-l-mark {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.ft-l-mark.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.ft-l-mark.tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.ft-l-mark.bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.ft-l-mark.br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.ft-l-subs {
  position: relative;
  padding: 32px 24px 22px;
  background: linear-gradient(180deg, rgba(0,0,0,0.85), #000);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.ft-l-subs-typed {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(40px * var(--font-scale));
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--off-white);
  min-height: 1.18em;
  text-wrap: balance;
  margin: 0 auto;
  max-width: 24ch;
}
.ft-l-cursor {
  display: inline-block;
  margin-left: 4px;
  color: var(--accent);
  animation: ft-j-blink 1s steps(1) infinite;
}
.ft-l-attr {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.ft-l-attr-name {
  color: var(--off-white);
  font-weight: 600;
}
.ft-l-attr-sep { color: rgba(245,245,245,0.3); }
.ft-l-attr-role { color: rgba(245,245,245,0.5); }

.ft-l-timecode {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px 24px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(245,245,245,0.55);
}
.ft-l-tc-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.ft-l-tc-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 38%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  border-radius: 2px;
  animation: ft-l-progress 8s ease-in-out infinite;
}
@keyframes ft-l-progress {
  0% { width: 0%; }
  50% { width: 60%; }
  100% { width: 100%; }
}

@media (max-width: 768px) {
  .ft-l-cred-c { display: none; }
  .ft-l-credits { font-size: 10px; }
  .ft-l-box { padding: 40px 16px; min-height: 360px; }
  .ft-l-video { width: 240px; }
  .ft-l-subs-typed { font-size: 28px; }
  .ft-l-attr { gap: 8px; font-size: 11px; }
}


/* ── M — Polished C: refined layout for "There's nothing..." quote ─────── */
.ft-m-section { padding: 120px 0; }
.ft-m-stage {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  position: relative;
}

.ft-m-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px 22px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ft-m-meta-l { display: inline-flex; align-items: center; gap: 10px; }
.ft-m-rec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: ft-j-pulse 1.6s ease-in-out infinite;
}

.ft-m-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 72px;
  align-items: stretch;
  padding: 24px 8px;
}

.ft-m-portrait { display: flex; justify-content: center; }
.ft-m-video {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 40px 80px -24px rgba(0,0,0,0.75),
    0 0 0 1px rgba(117,155,200,0.10);
}
.ft-m-video .ft-c-video-inner {
  width: 100%;
  height: 100%;
}
.ft-m-video video-slot {
  display: block;
  width: 100%;
  height: 100%;
}
.ft-m-video .ft-c-rec {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--off-white);
  z-index: 2;
}
.ft-m-video .ft-c-rec-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff3344;
  box-shadow: 0 0 6px rgba(255,51,68,0.7);
  animation: ft-j-pulse 1.4s ease-in-out infinite;
}
.ft-m-video .ft-c-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255,255,255,0.4);
  z-index: 2;
}
.ft-m-video .ft-c-corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.ft-m-video .ft-c-corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.ft-m-video .ft-c-corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.ft-m-video .ft-c-corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.ft-m-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 36px;
  padding: 14px 0 8px;
}
.ft-m-mark {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 300;
  font-size: 130px;
  line-height: 0.45;
  color: var(--accent);
  opacity: 0.85;
  display: block;
  margin-left: -8px;
  margin-bottom: -34px;
}
.ft-m-typed-wrap {
  min-height: 3.6em;
  display: flex;
  align-items: center;
}
.ft-m-typed {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: calc(54px * var(--font-scale));
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--off-white);
  text-wrap: balance;
  max-width: 18ch;
}
.ft-m-cursor {
  display: inline-block;
  margin-left: 6px;
  color: var(--accent);
  animation: ft-j-blink 1s steps(1) infinite;
}

.ft-m-attr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
  flex-wrap: wrap;
}
.ft-m-attr-l {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ft-m-attr-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: calc(22px * var(--font-scale));
  letter-spacing: -0.012em;
  color: var(--off-white);
}
.ft-m-attr-role {
  font-family: "Afacad Flux", sans-serif;
  font-size: 14px;
  color: rgba(245,245,245,0.6);
  letter-spacing: 0.005em;
}
.ft-m-attr-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.ft-m-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
}
.ft-m-wave span {
  display: block;
  width: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.75;
  animation: ft-j-bar 1.4s ease-in-out infinite;
}
.ft-m-wave span:nth-child(2n) { animation-delay: 0.15s; opacity: 0.55; }
.ft-m-wave span:nth-child(3n) { animation-delay: 0.3s; opacity: 0.85; }
.ft-m-wave span:nth-child(4n) { animation-delay: 0.45s; }
.ft-m-wave-meta {
  display: inline-flex;
  gap: 8px;
  font-family: "JetBrains Mono", "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: rgba(245,245,245,0.45);
}

@media (max-width: 960px) {
  .ft-m-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 12px 8px;
  }
  .ft-m-portrait .ft-m-video { max-width: 300px; }
  .ft-m-typed { font-size: 36px; }
  .ft-m-mark { font-size: 90px; }
  .ft-m-attr { flex-direction: column; align-items: flex-start; gap: 18px; }
  .ft-m-attr-r { align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════════════
   Rooms E / F / G — variants with "what I did" reveal buttons
   ════════════════════════════════════════════════════════════════════ */

/* ── Rooms E — Reveal grid (3 clean cards, click opens detail strip) ── */
.ab-rooms-e {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ab-re-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  transition: border-color 0.35s ease, background 0.35s ease, opacity 0.3s ease;
}
.ab-rooms-e.has-active .ab-re-card:not(.active) { opacity: 0.55; }
.ab-re-card:hover { border-color: rgba(117, 155, 200, 0.28); }
.ab-re-card.active {
  border-color: rgba(117, 155, 200, 0.55);
  background: rgba(117, 155, 200, 0.05);
  opacity: 1;
}
.ab-re-photo {
  aspect-ratio: 5 / 6;
  background: linear-gradient(180deg, var(--accent), var(--navy-mid, #263f75));
  overflow: hidden;
  position: relative;
}
.ab-re-photo image-slot { width: 100%; height: 100%; display: block; }
.ab-re-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ab-re-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin: 0;
}
.ab-re-role {
  font-family: "Afacad Flux", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}
.ab-re-btn {
  margin-top: 14px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(117, 155, 200, 0.35);
  background: transparent;
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.ab-re-btn:hover { background: rgba(117, 155, 200, 0.1); border-color: var(--accent); }
.ab-re-btn-arrow { transition: transform 0.35s cubic-bezier(.2,.7,.2,1); display: inline-block; }
.ab-re-card.active .ab-re-btn {
  background: var(--accent);
  color: var(--dark-bg);
  border-color: var(--accent);
}
.ab-re-card.active .ab-re-btn-arrow { transform: rotate(90deg); }

.ab-re-drawer-wrap {
  grid-column: 1 / -1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s cubic-bezier(.2,.7,.2,1), margin-top 0.4s ease;
  margin-top: 0;
}
.ab-re-drawer-wrap.open {
  grid-template-rows: 1fr;
  margin-top: 8px;
}
.ab-re-drawer-inner { overflow: hidden; }
.ab-re-drawer {
  padding: 36px 40px 40px;
  background: linear-gradient(160deg, rgba(38, 63, 117, 0.22), rgba(117, 155, 200, 0.04));
  border: 1px solid rgba(117, 155, 200, 0.25);
  border-radius: 24px;
}
.ab-re-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ab-re-drawer-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0;
}
.ab-re-drawer-sub {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}
.ab-re-drawer-close {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.ab-re-drawer-close:hover { color: var(--off-white); border-color: rgba(255, 255, 255, 0.4); }

.ab-re-projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.ab-re-projects.two { grid-template-columns: 1fr 1fr; }
.ab-re-proj-idx {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}
.ab-re-proj-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--off-white);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.ab-re-proj-sum {
  font-family: "Afacad Flux", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin: 0 0 12px;
}
.ab-re-proj-body {
  font-family: "Afacad Flux", sans-serif;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}
.ab-re-proj-result {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(117, 155, 200, 0.12);
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ab-re-proj-result::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

/* ── Rooms F — Flip cards (text REPLACES picture on click) ─────────── */
.ab-rooms-f {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ab-rf-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ab-rf-stage {
  perspective: 1400px;
  width: 100%;
  aspect-ratio: 4 / 5;
}
.ab-rf-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(.2,.7,.2,1);
}
.ab-rf-card.flipped .ab-rf-inner { transform: rotateY(180deg); }
.ab-rf-face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ab-rf-front {
  background: linear-gradient(180deg, var(--accent), var(--navy-mid, #263f75));
}
.ab-rf-front image-slot { width: 100%; height: 100%; display: block; }
.ab-rf-back {
  transform: rotateY(180deg);
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(117, 155, 200, 0.18), transparent 70%),
    linear-gradient(160deg, #121a2e, #0a0d17);
  border-color: rgba(117, 155, 200, 0.28);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}
.ab-rf-back::-webkit-scrollbar { width: 4px; }
.ab-rf-back::-webkit-scrollbar-thumb { background: rgba(117, 155, 200, 0.3); border-radius: 4px; }
.ab-rf-back-tag {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ab-rf-back-tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.ab-rf-proj { display: flex; flex-direction: column; gap: 6px; }
.ab-rf-proj + .ab-rf-proj {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ab-rf-proj-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--off-white);
  letter-spacing: -0.005em;
  margin: 0;
}
.ab-rf-proj-body {
  font-family: "Afacad Flux", sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.ab-rf-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ab-rf-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--off-white);
  letter-spacing: -0.01em;
  margin: 0;
}
.ab-rf-role {
  font-family: "Afacad Flux", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
.ab-rf-toggle {
  margin-top: 4px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(117, 155, 200, 0.35);
  background: rgba(117, 155, 200, 0.04);
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.ab-rf-toggle:hover { background: rgba(117, 155, 200, 0.14); border-color: var(--accent); }
.ab-rf-toggle-ic { transition: transform 0.45s cubic-bezier(.2,.7,.2,1); display: inline-block; }
.ab-rf-card.flipped .ab-rf-toggle { background: var(--accent); color: var(--dark-bg); border-color: var(--accent); }
.ab-rf-card.flipped .ab-rf-toggle-ic { transform: rotateY(180deg); }

/* ── Rooms G — Editorial list with inline expand ───────────────────── */
.ab-rooms-g {
  display: flex;
  flex-direction: column;
}
.ab-rg-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ab-rg-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.ab-rg-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 36px;
  padding: 26px 8px;
  align-items: center;
  transition: background 0.35s ease, padding-left 0.35s ease;
}
.ab-rg-item:hover .ab-rg-row {
  background: linear-gradient(90deg, rgba(117, 155, 200, 0.04), transparent 70%);
  padding-left: 18px;
}
.ab-rg-item.open .ab-rg-row {
  background: linear-gradient(90deg, rgba(117, 155, 200, 0.06), transparent 80%);
  padding-left: 18px;
}
.ab-rg-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--accent), var(--navy-mid, #263f75));
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.ab-rg-thumb image-slot { width: 100%; height: 100%; display: block; }
.ab-rg-item.open .ab-rg-thumb { transform: scale(1.04); }
.ab-rg-meta { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ab-rg-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 34px;
  color: var(--off-white);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
.ab-rg-role {
  font-family: "Afacad Flux", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}
.ab-rg-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(117, 155, 200, 0.35);
  background: transparent;
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.ab-rg-btn:hover { background: rgba(117, 155, 200, 0.1); border-color: var(--accent); }
.ab-rg-item.open .ab-rg-btn {
  background: var(--accent);
  color: var(--dark-bg);
  border-color: var(--accent);
}
.ab-rg-btn-ic {
  width: 12px; height: 12px;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.ab-rg-item.open .ab-rg-btn-ic { transform: rotate(180deg); }

.ab-rg-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s cubic-bezier(.2,.7,.2,1);
}
.ab-rg-item.open .ab-rg-panel { grid-template-rows: 1fr; }
.ab-rg-panel-inner {
  overflow: hidden;
  padding: 0 8px 0 196px;
}
.ab-rg-panel-content {
  padding: 4px 0 36px;
  max-width: 880px;
  display: grid;
  gap: 22px;
}
.ab-rg-proj {
  padding: 24px 28px;
  border-radius: 18px;
  background: rgba(117, 155, 200, 0.05);
  border: 1px solid rgba(117, 155, 200, 0.18);
}
.ab-rg-proj-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.ab-rg-proj-bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  flex-shrink: 0;
}
.ab-rg-proj-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--accent);
  letter-spacing: -0.005em;
  margin: 0;
}
.ab-rg-proj-sum {
  font-family: "Afacad Flux", sans-serif;
  font-size: 16px;
  color: var(--off-white);
  line-height: 1.55;
  margin: 0 0 10px;
}
.ab-rg-proj-body {
  font-family: "Afacad Flux", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
}
.ab-rg-result {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(117, 155, 200, 0.14);
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .ab-rooms-e, .ab-rooms-f { grid-template-columns: 1fr; }
  .ab-re-projects.two { grid-template-columns: 1fr; }
  .ab-rg-row { grid-template-columns: 110px 1fr auto; gap: 20px; }
  .ab-rg-name { font-size: 24px; }
  .ab-rg-panel-inner { padding-left: 130px; }
}

/* ── Rooms H — Polaroids (A) + flip swap (F) ─────────────────────── */
.ab-pics-h {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 40px 0 60px;
  min-height: 560px;
}
.ab-php {
  position: relative;
  background: #f4f1ea;
  padding: 14px 14px 22px;
  border-radius: 4px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  width: 290px;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease, z-index 0s 0.2s;
  z-index: 1;
}
.ab-php:hover {
  transform: translateY(-10px) rotate(0) scale(1.03) !important;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
  z-index: 5;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease, z-index 0s;
}
.ab-php-1 { transform: rotate(-6deg) translateX(20px); }
.ab-php-2 { transform: rotate(2deg); z-index: 2; }
.ab-php-3 { transform: rotate(5deg) translateX(-20px); }

.ab-php-stage {
  aspect-ratio: 4 / 5;
  perspective: 1300px;
  position: relative;
}
.ab-php-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(.2,.7,.2,1);
}
.ab-php.flipped .ab-php-inner,
.ab-php:hover .ab-php-inner,
.ab-php:focus-within .ab-php-inner { transform: rotateY(180deg); }
.ab-php-face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 2px;
  overflow: hidden;
}
.ab-php-front { background: #d6d2c5; }
.ab-php-front image-slot { width: 100%; height: 100%; display: block; }
.ab-php-back {
  transform: rotateY(180deg);
  background: #f9f6ee;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  border: 1px solid rgba(41, 38, 27, 0.06);
}
.ab-php-back::-webkit-scrollbar { width: 3px; }
.ab-php-back::-webkit-scrollbar-thumb { background: rgba(41, 38, 27, 0.2); border-radius: 3px; }
.ab-php-back-tag {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a7a52;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ab-php-back-tag::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: #c97e3a;
}
.ab-php-proj { display: flex; flex-direction: column; gap: 4px; }
.ab-php-proj + .ab-php-proj {
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px dashed rgba(41, 38, 27, 0.18);
}
.ab-php-proj-title {
  font-family: "Covered By Your Grace", cursive;
  font-size: 18px;
  color: #29261b;
  margin: 0;
  line-height: 1.1;
}
.ab-php-proj-body {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(41, 38, 27, 0.75);
  margin: 0;
}

.ab-php-cap {
  font-family: "Covered By Your Grace", cursive;
  font-size: 22px;
  color: #29261b;
  margin-top: 14px;
  text-align: center;
  line-height: 1;
}
.ab-php-note {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  color: rgba(41, 38, 27, 0.6);
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.ab-php-hint {
  margin: 14px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(41, 38, 27, 0.06);
  border: 1px dashed rgba(41, 38, 27, 0.22);
  font-family: "Afacad Flux", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(41, 38, 27, 0.6);
  text-transform: none;
  font-style: italic;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.ab-php:hover .ab-php-hint { opacity: 0; transform: translateY(-4px); }
.ab-php-hint-ic {
  display: inline-block;
  font-style: normal;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1);
}
.ab-php:hover .ab-php-hint-ic { transform: rotateY(180deg); }
.ab-php-btn {
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(41, 38, 27, 0.25);
  background: transparent;
  color: #29261b;
  font-family: "Inter", sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.ab-php-btn:hover { background: #29261b; color: #f4f1ea; border-color: #29261b; }
.ab-php.flipped .ab-php-btn { background: #29261b; color: #f4f1ea; border-color: #29261b; }
.ab-php-btn-ic { transition: transform 0.45s cubic-bezier(.2,.7,.2,1); display: inline-block; }
.ab-php.flipped .ab-php-btn-ic { transform: rotateY(180deg); }

.ab-php-scribble {
  position: absolute;
  bottom: 20px;
  right: 8%;
  font-family: "Covered By Your Grace", cursive;
  font-size: 22px;
  color: var(--accent);
  opacity: 0.7;
  transform: rotate(-4deg);
}

@media (max-width: 980px) {
  .ab-pics-h { flex-direction: column; align-items: center; gap: 36px; min-height: 0; padding: 20px 0; }
  .ab-php-1, .ab-php-2, .ab-php-3 { transform: rotate(0) !important; }
}

@media (max-width: 900px) {
  /* Footer wordmark text overflow & stacking on mobile */
  .footer-big {
    margin-top: 36px !important;
    padding: 28px 0 20px !important;
  }
  .ft-wordmark {
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 12px 0 !important;
    text-align: center !important;
  }
  .ft-word {
    font-size: clamp(26px, 7vw, 36px) !important;
    line-height: 1.05 !important;
    text-align: center !important;
    display: inline-block !important;
    width: auto !important;
    letter-spacing: -0.03em !important;
  }

  /* Omit navigate and operating from columns on mobile viewports */
  .ft-cols .ft-col:nth-child(1),
  .ft-cols .ft-col:nth-child(4) {
    display: none !important;
  }

  /* Footer column grid & links stacking */
  .ft-cols {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    padding: 20px 0 !important;
    text-align: center !important;
  }
  .ft-col {
    align-items: center !important;
    gap: 6px !important;
  }
  .ft-col-h {
    margin-bottom: 2px !important;
    font-size: 10.5px !important;
    letter-spacing: 0.14em !important;
  }
  .ft-col a {
    font-size: 13.5px !important;
    line-height: 1.4 !important;
  }
  .ft-meta {
    font-size: 13.5px !important;
  }

  /* Footer bottom text & versions stacking */
  .ft-bottom {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    text-align: center !important;
    justify-content: center !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  }
  .ft-legal {
    font-size: 11px !important;
    letter-spacing: 0.02em !important;
  }
  .ft-version {
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
  }
  .ft-fine {
    justify-self: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 600px) {
  /* Extra compact footer for very small screen mobile viewports */
  .footer-big {
    margin-top: 24px !important;
    padding: 20px 0 16px !important;
  }
  .ft-wordmark {
    padding: 8px 0 !important;
    gap: 8px !important;
  }
  .ft-word {
    font-size: clamp(20px, 6.5vw, 28px) !important;
  }
  .ft-cols {
    gap: 16px !important;
    padding: 14px 0 !important;
  }
  .ft-col {
    gap: 4px !important;
  }
  .ft-col a, .ft-meta {
    font-size: 12.5px !important;
  }
  .ft-bottom {
    gap: 6px !important;
    padding-top: 10px !important;
  }
}
