/* ─── Reset / base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; text-rendering: optimizeLegibility; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --white:    #FFFFFF;
  --paper:    #F6F7F9;
  --paperHi:  #FBFCFD;
  --ink:      #0A0A0B;
  --ink2:     #14141A;
  --inkSoft:  #1F2330;
  --text:     #1F2330;
  --muted:    #5B6072;
  --mutedSoft:#8B92A6;
  --rule:     rgba(10, 10, 11, 0.07);
  --rule2:    rgba(10, 10, 11, 0.04);
  --ruleW:    rgba(255, 255, 255, 0.10);
  --ruleW2:   rgba(255, 255, 255, 0.06);
  --blue:     #1547F5;
  --blueDeep: #0F35C4;
  --blueSoft: #EEF1FF;
  --blueSofter:#F4F6FF;
  --blueGlow: rgba(21, 71, 245, 0.22);

  --sans:     "Geist", "Plus Jakarta Sans", system-ui, sans-serif;
  --mono:     "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  --max:      1320px;
  --pad:      clamp(20px, 4.5vw, 56px);

  --ease:     cubic-bezier(0.32, 0.72, 0, 1);
  --easeOut:  cubic-bezier(0.16, 1, 0.3, 1);
  --easeSpring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-card:  0 24px 64px -28px rgba(20, 30, 80, 0.18), 0 6px 16px -10px rgba(20, 30, 80, 0.08);
  --shadow-pop:   0 32px 80px -20px rgba(21, 71, 245, 0.28), 0 8px 24px -12px rgba(21, 71, 245, 0.18);
  --shadow-nav:   0 12px 40px -16px rgba(10, 10, 11, 0.18), inset 0 0 0 1px rgba(10, 10, 11, 0.06);
}

::selection { background: var(--blue); color: white; }

/* ─── Helpers ─────────────────────────────────────────────── */
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}
.display {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: .92;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blueSoft);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.eyebrow--ink { background: rgba(255,255,255,.07); color: white; }
.eyebrow--ink::before { background: var(--blue); }

.container { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }

/* ─── Cursor (native — custom cursor removed) ─────────────── */
.cursor { display: none !important; }
body { cursor: auto; }
a, button, summary { cursor: pointer; }
input, textarea, select { cursor: text; }

/* ─── Loader ──────────────────────────────────────────────── */
.loader { position: fixed; inset: 0; z-index: 300; background: var(--white); display: flex; flex-direction: column; justify-content: flex-end; padding: var(--pad); transition: opacity .7s var(--ease), visibility .7s; }
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__bar { width: 100%; height: 1px; background: var(--rule); position: relative; overflow: hidden; }
.loader__bar span { position: absolute; inset: 0 100% 0 0; background: var(--blue); transition: right .15s linear; }
.loader__meta { display: flex; justify-content: space-between; padding-top: 14px; color: var(--ink); }

/* ─── Floating Pill Nav ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 8px 8px 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 999px;
  box-shadow: var(--shadow-nav);
  transition: top .5s var(--ease), padding .5s var(--ease);
  max-width: calc(100vw - 32px);
}
.nav.is-scrolled { top: 12px; padding: 6px 6px 6px 22px; }
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding-right: 24px;
  border-right: 1px solid var(--rule);
}
.nav__brand sup { font-size: 8px; vertical-align: super; opacity: .5; margin-left: 1px; }
.nav__brand svg circle { transition: stroke .3s var(--ease); }
.nav__brand:hover svg circle { stroke: var(--blue); }
.nav__links { display: inline-flex; gap: 4px; }
.nav__links a {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--inkSoft);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.nav__links a:hover { background: var(--paper); color: var(--ink); }
.nav__links a.is-active { background: var(--blueSoft); color: var(--blue); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 6px 6px 18px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.nav__cta:hover { background: var(--blue); }
.nav__cta:active { transform: scale(.97); }
.nav__cta__arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .5s var(--ease), background .3s;
}
.nav__cta:hover .nav__cta__arrow { transform: translate(3px, -1px); background: rgba(255, 255, 255, 0.24); }
.nav__toggle { display: none; }
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__brand { border-right: 0; padding-right: 0; }
  .nav { gap: 12px; padding: 8px 8px 8px 20px; }
}
@media (max-width: 560px) {
  .nav__cta span:not(.nav__cta__arrow) { display: none; }
  .nav__cta { padding: 6px; }
  .nav__cta__arrow { background: rgba(255, 255, 255, 0.20); }
}

/* ─── Buttons (button-in-button) ──────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 8px 8px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background .45s var(--ease), color .45s var(--ease), transform .45s var(--ease), border-color .45s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .5s var(--ease), background .35s;
}
.btn__arrow svg { width: 14px; height: 14px; stroke-width: 1.6; transition: transform .5s var(--ease); }
.btn:hover .btn__arrow { transform: translate(3px, -1px); }
.btn:active { transform: scale(.98); }

.btn--primary { background: var(--blue); color: white; box-shadow: var(--shadow-pop); }
.btn--primary:hover { background: var(--blueDeep); }
.btn--primary .btn__arrow { background: rgba(255, 255, 255, 0.18); }
.btn--primary:hover .btn__arrow { background: rgba(255, 255, 255, 0.28); }

.btn--ink { background: var(--ink); color: white; }
.btn--ink:hover { background: var(--blue); }
.btn--ink .btn__arrow { background: rgba(255, 255, 255, 0.14); }
.btn--ink:hover .btn__arrow { background: rgba(255, 255, 255, 0.22); }

.btn--ghost { border-color: var(--rule); color: var(--ink); padding: 8px 8px 8px 22px; }
.btn--ghost:hover { background: var(--paper); border-color: rgba(10,10,11,0.12); }
.btn--ghost .btn__arrow { background: var(--paper); }
.btn--ghost:hover .btn__arrow { background: white; }
.btn--ghost .btn__arrow svg { stroke: var(--ink); }

/* ─── Page intro (sub-page hero) — SPLIT with visual ─────── */
.page-intro {
  padding: clamp(120px, 14vw, 160px) var(--pad) clamp(56px, 8vw, 96px);
  background: linear-gradient(180deg, var(--paperHi) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-intro::after {
  content: ""; position: absolute; right: -10vw; top: -5vh;
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(circle at 50% 50%, var(--blueGlow), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.page-intro__inner {
  position: relative; max-width: var(--max); margin-inline: auto; z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.page-intro__top { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; grid-column: 1 / -1; }
.page-intro__top .mono { color: var(--muted); }
.page-intro__title {
  font-size: clamp(40px, 7vw, 104px);
  max-width: 14ch;
  line-height: .95;
}
.page-intro__title .line { display: block; overflow: hidden; }
.page-intro__title em { color: var(--blue); font-style: normal; }
.page-intro__lede {
  margin-top: 24px;
}
.page-intro__lede p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  max-width: 40ch;
  color: var(--inkSoft);
}
.page-intro__main { display: flex; flex-direction: column; }

/* Mini animated visual (per sub-page) */
.page-intro__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  margin-left: auto;
  border-radius: 28px;
  overflow: hidden;
  background: #0A0B12;
  box-shadow: 0 32px 80px -28px rgba(21, 71, 245, 0.45),
              0 8px 24px -12px rgba(10, 10, 11, 0.25),
              inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.page-intro__visual::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 25% 30%, #1547F5 0%, transparent 60%),
    radial-gradient(45% 45% at 75% 25%, #00C2FF 0%, transparent 55%),
    radial-gradient(60% 50% at 60% 80%, #7C5CFF 0%, transparent 60%),
    radial-gradient(40% 35% at 25% 78%, #FF5BA3 0%, transparent 55%);
  filter: blur(30px);
  animation: meshShift 18s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
  opacity: .85;
}
.page-intro__visual::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 28px 28px;
  mask: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
  -webkit-mask: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
  opacity: .5;
}
.intro-visual__center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  color: white;
}
.intro-visual__big {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.04em;
  line-height: .95;
  text-shadow: 0 8px 30px rgba(21, 71, 245, 0.45);
}
.intro-visual__cap {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .7;
  margin-top: 8px;
  display: block;
}
.intro-visual__pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 999px;
  padding: 8px 14px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: 0 12px 32px -12px rgba(10, 10, 11, 0.35),
              inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  z-index: 2;
  white-space: nowrap;
}
.intro-visual__pill svg { width: 12px; height: 12px; stroke: var(--blue); stroke-width: 1.8; fill: none; }
.intro-visual__pill--1 { top: 18%; left: -6%; animation: drift1 9s ease-in-out infinite; }
.intro-visual__pill--2 { bottom: 22%; right: -10%; animation: drift2 11s ease-in-out infinite; }
.intro-visual__pill--3 { bottom: 8%; left: 12%; animation: drift3 10s ease-in-out infinite; }

/* Events page — seat map visual */
.events-visual { overflow: hidden; }
.events-visual__map {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1;
}
.events-visual__map .seat {
  fill: rgba(124, 156, 255, 0.18);
  stroke: rgba(124, 156, 255, 0.55);
  stroke-width: 1;
  transform-origin: center;
  animation: seatPulse 4s ease-in-out infinite;
}
.events-visual__map .seat--head {
  fill: rgba(0, 194, 255, 0.28);
  stroke: rgba(0, 194, 255, 0.7);
  animation: seatHead 3.2s ease-in-out infinite;
}
.events-visual__map .seat--1  { animation-delay: 0s; }
.events-visual__map .seat--2  { animation-delay: .15s; }
.events-visual__map .seat--3  { animation-delay: .3s; }
.events-visual__map .seat--4  { animation-delay: .45s; }
.events-visual__map .seat--5  { animation-delay: .6s; }
.events-visual__map .seat--6  { animation-delay: .75s; }
.events-visual__map .seat--7  { animation-delay: .85s; }
.events-visual__map .seat--8  { animation-delay: .7s;  }
.events-visual__map .seat--9  { animation-delay: .55s; }
.events-visual__map .seat--10 { animation-delay: .4s;  }
.events-visual__map .seat--11 { animation-delay: .25s; }
.events-visual__map .seat--12 { animation-delay: .1s;  }
.events-visual__map .seat--13 { animation-delay: .2s;  }
.events-visual__map .seat--14 { animation-delay: 1.4s; }

@keyframes seatPulse {
  0%, 100% { fill: rgba(124, 156, 255, 0.16); }
  50%      { fill: rgba(124, 156, 255, 0.55); }
}
@keyframes seatHead {
  0%, 100% { fill: rgba(0, 194, 255, 0.22); stroke-width: 1; }
  50%      { fill: rgba(0, 194, 255, 0.7);  stroke-width: 1.6; }
}

.events-visual__counter {
  position: absolute;
  top: 22px; left: 22px;
  z-index: 3;
  display: flex; flex-direction: column; gap: 2px;
  color: white;
}
.events-visual__counter__num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 4px 16px rgba(21, 71, 245, 0.5);
}
.events-visual__counter__cap {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .7;
}

.events-visual__status {
  position: absolute;
  top: 22px; right: 22px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.events-visual__status__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
  animation: statusBlink 2s ease-in-out infinite;
}
@keyframes statusBlink {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}

@media (max-width: 980px) {
  .page-intro__inner { grid-template-columns: 1fr; gap: 48px; }
  .page-intro__visual { margin-inline: auto; max-width: 380px; aspect-ratio: 4 / 3; }
}
@media (max-width: 880px) {
  .page-intro__lede p { max-width: 50ch; }
}

/* ─── Home Hero (Split + Animated Visual) ─────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 120px var(--pad) 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--white);
}

.hero__rule {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding-bottom: 14px; border-bottom: 1px solid var(--rule); color: var(--muted);
  max-width: var(--max); margin-inline: auto; width: 100%;
  position: relative; z-index: 2;
}
.hero__rule.bottom { border-bottom: 0; border-top: 1px solid var(--rule); padding: 14px 0 0; }
.hero__rule .mono:nth-child(2) { text-align: center; }
.hero__rule .mono:nth-child(3),
.hero__rule .mono:nth-child(4) { text-align: right; }

.hero__split {
  flex: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding: clamp(32px, 6vw, 72px) 0;
  position: relative; z-index: 2;
}
.hero__left { display: flex; flex-direction: column; gap: 32px; }
.hero__eyebrow { width: max-content; }
.hero__title {
  font-size: clamp(48px, 8.5vw, 124px);
  line-height: .92;
  font-weight: 800;
  margin: 0;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title em { color: var(--blue); font-style: normal; }
.hero__title .period { color: var(--blue); }
.hero__lede {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  max-width: 36ch;
  color: var(--inkSoft);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Right-side visual block */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: 32px;
  overflow: hidden;
  background: #0A0B12;
  box-shadow: 0 40px 100px -30px rgba(21, 71, 245, 0.45),
              0 12px 30px -15px rgba(10, 10, 11, 0.3),
              inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Animated gradient mesh */
.hero__visual::before {
  background:
    radial-gradient(50% 50% at 22% 28%, #1547F5 0%, transparent 60%),
    radial-gradient(45% 45% at 78% 22%, #00C2FF 0%, transparent 55%),
    radial-gradient(60% 50% at 62% 78%, #7C5CFF 0%, transparent 60%),
    radial-gradient(40% 35% at 25% 78%, #FF5BA3 0%, transparent 55%);
  filter: blur(40px);
  animation: meshShift 18s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
  opacity: .9;
}
/* Subtle grid overlay */
.hero__visual::after {
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 32px 32px;
  mask: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  -webkit-mask: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  opacity: .6;
}
@keyframes meshShift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-4%, 3%) scale(1.05); }
  66%  { transform: translate(3%, -2%) scale(0.98); }
  100% { transform: translate(-2%, -3%) scale(1.02); }
}

/* Floating UI cards inside visual — sized to fit fully inside */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 18px 40px -14px rgba(10, 10, 11, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  z-index: 3;
  transition: transform 1s var(--ease);
  will-change: transform;
  max-width: 200px;
}
.float-card__icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--blueSoft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card__icon svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 1.7; fill: none; }
.float-card__icon--green { background: #DCFCE7; color: #15803D; }
.float-card__icon--amber { background: #FEF3C7; color: #B45309; }
.float-card__label {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}
.float-card__value {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
}
.float-card__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  position: relative;
  margin-left: 4px;
}
.float-card__pulse::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%;
  background: #22C55E;
  opacity: .4;
  animation: pulse 1.6s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .4; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* Card positions — INSIDE the visual so all are fully visible */
.float-card { opacity: 0; }
.float-card--1 {
  top: 6%; left: 5%;
  animation: cardPop .9s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s both,
             drift1 9s ease-in-out 2.3s infinite;
}
.float-card--2 {
  top: 50%; right: 5%; transform: translateY(-50%);
  animation: cardPop .9s cubic-bezier(0.34, 1.56, 0.64, 1) 2.0s both,
             drift2 11s ease-in-out 2.9s infinite;
}
.float-card--3 {
  bottom: 4%; left: 2%;
  animation: cardPop .9s cubic-bezier(0.34, 1.56, 0.64, 1) 2.6s both,
             drift3 10s ease-in-out 3.5s infinite;
}
@keyframes cardPop {
  0%   { opacity: 0; transform: scale(.7) translateY(20px) rotate(0); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1) translateY(0) rotate(-2deg); }
}
.float-card--2 { }
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50%      { transform: translate(8px, -10px) rotate(-1deg); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) rotate(2deg); }
  50%      { transform: translate(-10px, 8px) rotate(3deg); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) rotate(-1deg); }
  50%      { transform: translate(6px, -8px) rotate(-2deg); }
}

/* ─── RADAR (animated sweep + blips) ──────────────────────── */
.radar {
  position: absolute;
  top: 50%; left: 50%;
  width: 78%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
/* Three nested concentric rings */
.radar__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.radar__ring--m { inset: 16%; border-color: rgba(255,255,255,.12); }
.radar__ring--s { inset: 32%; border-color: rgba(255,255,255,.08); }
.radar__ring--xs { inset: 48%; border-color: rgba(255,255,255,.06); }

/* Cross-hair lines */
.radar__cross {
  position: absolute; inset: 0;
  pointer-events: none;
}
.radar__cross::before,
.radar__cross::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.06);
}
.radar__cross::before { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.radar__cross::after  { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }

/* Sweeping arm (conic gradient cone that rotates) */
.radar__sweep {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(21, 71, 245, 0.55) 0deg,
    rgba(21, 71, 245, 0.25) 12deg,
    rgba(21, 71, 245, 0.08) 30deg,
    transparent 65deg
  );
  -webkit-mask: radial-gradient(circle at center, black 0%, black 100%);
          mask: radial-gradient(circle at center, black 0%, black 100%);
  animation: radarSpin 4.5s linear infinite;
  mix-blend-mode: screen;
  filter: blur(2px);
}
.radar__sweep::after {
  /* the leading "edge" line of the sweep */
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 50%; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--blue));
  transform-origin: left center;
  box-shadow: 0 0 12px var(--blueGlow);
}
@keyframes radarSpin {
  to { transform: rotate(360deg); }
}

/* Blips that fade in/out as the sweep passes — TIMINGS COMPUTED
   to match the 4.5s sweep clockwise from N (top).
   Each blip's animation-delay = (angle / 360) * 4.5s
   so the blip lights up at the moment the sweep arm reaches it. */
.radar__blip {
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue), 0 0 28px var(--blueGlow);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: blipFade 4.5s linear infinite;
}
.radar__blip::after {
  /* expanding ring when blip first appears */
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  opacity: 0;
  animation: blipRing 4.5s linear infinite;
}
.radar__blip::before {
  /* the LABEL text — fades in/out with the blip */
  content: attr(data-label);
  position: absolute;
  left: 16px; top: -22px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
  text-shadow: 0 0 12px var(--blue), 0 0 4px rgba(0,0,0,.8);
  opacity: 0;
  animation: blipLabel 4.5s linear infinite;
  animation-delay: inherit;
}
@keyframes blipFade {
  0%   { opacity: 1; }
  3%   { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes blipRing {
  0%   { transform: scale(.5); opacity: .9; }
  20%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes blipLabel {
  0%   { opacity: 0; transform: translateX(-6px); }
  6%   { opacity: 1; transform: translateX(0); }
  35%  { opacity: 1; transform: translateX(0); }
  55%  { opacity: 0; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(0); }
}

/* Position + sweep-synced delay per blip (angles measured clockwise from N) */
/*  angle  →  delay = angle/360 * 4.5s   */
.radar__blip--1 { /* NNW · 320° → 4.0s */
  top: 28%; left: 32%;
  animation-delay: 4.0s;
}
.radar__blip--1::after { animation-delay: 4.0s; }
.radar__blip--2 { /* NNE · 35°  → 0.44s */
  top: 22%; left: 70%;
  animation-delay: 0.44s;
}
.radar__blip--2::after { animation-delay: 0.44s; }
.radar__blip--3 { /* ESE · 120° → 1.5s */
  top: 65%; left: 76%;
  animation-delay: 1.5s;
}
.radar__blip--3::after { animation-delay: 1.5s; }
.radar__blip--4 { /* SSW · 225° → 2.81s */
  top: 72%; left: 28%;
  animation-delay: 2.81s;
}
.radar__blip--4::after { animation-delay: 2.81s; }
.radar__blip--5 { /* W · 270° → 3.375s */
  top: 50%; left: 18%;
  animation-delay: 3.375s;
}
.radar__blip--5::after { animation-delay: 3.375s; }

/* Some labels go LEFT of the blip (so they don't push out the visual) */
.radar__blip--3::before,
.radar__blip--5::before { left: auto; right: 16px; }

/* Range read-out at the bottom of radar */
.radar__readout {
  position: absolute;
  left: 50%; bottom: -34px;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(21, 71, 245, 0.4);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}
.radar__readout::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--blue);
  animation: pulseDot 1.6s var(--ease) infinite;
}

/* Center sigil — sits on top of radar */
.radar__core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(21, 71, 245, 0.18);
  border: 1px solid rgba(21, 71, 245, 0.5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px var(--blueGlow), inset 0 0 24px rgba(21,71,245,.18);
  z-index: 2;
  animation: corePulse 2.8s var(--ease) infinite;
}
@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 40px var(--blueGlow), 0 0 0 0 rgba(21,71,245,.6), inset 0 0 24px rgba(21,71,245,.18); }
  60%, 100% { box-shadow: 0 0 40px var(--blueGlow), 0 0 0 24px rgba(21,71,245,0), inset 0 0 24px rgba(21,71,245,.18); }
}
.radar__core span {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(21, 71, 245, 0.5);
}
.radar__core sup { font-size: 0.4em; opacity: .6; vertical-align: super; }

/* Range labels around the radar */
.radar__label {
  position: absolute;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
.radar__label--n { top: -14px; left: 50%; transform: translateX(-50%); }
.radar__label--s { bottom: -14px; left: 50%; transform: translateX(-50%); }
.radar__label--e { right: -28px; top: 50%; transform: translateY(-50%); }
.radar__label--w { left: -28px; top: 50%; transform: translateY(-50%); }

@media (max-width: 980px) {
  .hero__split { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 540px; margin-inline: auto; }
}
@media (max-width: 880px) {
  .hero__rule { grid-template-columns: 1fr 1fr; }
  .hero__rule .mono:nth-child(3), .hero__rule .mono:nth-child(4) { display: none; }
  .float-card--1 { left: -4%; }
  .float-card--2 { right: -6%; }
}

/* ─── Word reveal ─────────────────────────────────────────── */
[data-reveal] .word, [data-reveal] .line span.word { display: inline-block; overflow: hidden; vertical-align: top; }
[data-reveal] .word .inner {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  filter: blur(8px);
  transition: transform 1.1s var(--ease), opacity .8s var(--ease), filter .8s var(--ease);
}
[data-reveal].is-in .word .inner { transform: translateY(0); opacity: 1; filter: blur(0); }
[data-reveal].is-in .word:nth-child(1) .inner { transition-delay: .02s; }
[data-reveal].is-in .word:nth-child(2) .inner { transition-delay: .08s; }
[data-reveal].is-in .word:nth-child(3) .inner { transition-delay: .14s; }
[data-reveal].is-in .word:nth-child(4) .inner { transition-delay: .20s; }
[data-reveal].is-in .word:nth-child(5) .inner { transition-delay: .26s; }
[data-reveal].is-in .word:nth-child(6) .inner { transition-delay: .32s; }
[data-reveal].is-in .word:nth-child(7) .inner { transition-delay: .38s; }
[data-reveal].is-in .word:nth-child(8) .inner { transition-delay: .44s; }
[data-reveal].is-in .word:nth-child(n+9) .inner { transition-delay: .50s; }

/* ─── Marquee ─────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--rule);
  padding: 24px 0;
  overflow: hidden;
  background: var(--paperHi);
}
.marquee__track {
  display: inline-flex; gap: 32px; white-space: nowrap;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink);
  animation: marquee 42s linear infinite;
}
.marquee__track span:nth-child(2n) { color: var(--blue); }
.marquee__track .dot { color: var(--rule); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Section ─────────────────────────────────────────────── */
.section { padding: clamp(48px, 6vw, 80px) var(--pad); position: relative; }
.section--ink { background: var(--ink); color: white; }
.section--ink ::selection { background: var(--blue); color: white; }
.section--ink em { color: var(--blue); font-style: normal; }
.section--paper { background: var(--paper); }
.section--high { background: var(--paperHi); }

.section__head {
  max-width: var(--max);
  margin: 0 auto clamp(36px, 5vw, 64px);
  display: grid; grid-template-columns: 1.7fr 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: end;
}
.section__head--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.section__head--center .section__title { margin-inline: auto; }
.section__head--center .section__sub { grid-column: 1; max-width: 56ch; margin-inline: auto; text-align: center; }

/* ─── Section sidekick (mini stat card, fills empty right) ─ */
.section__sidekick {
  display: flex; flex-direction: column; gap: 14px;
  padding: 22px 24px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  justify-self: end;
  align-self: end;
  box-shadow: 0 16px 40px -20px rgba(20, 30, 80, 0.18);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  /* Override the data-card hidden default so this is always visible */
  opacity: 1 !important;
  filter: none !important;
}
.section__sidekick[data-card] { transform: none; }
.section__sidekick[data-card]:hover { transform: translateY(-3px); }
.section__sidekick:hover { transform: translateY(-3px); box-shadow: 0 28px 60px -20px rgba(21, 71, 245, 0.28); }
.section__sidekick::after {
  content: ""; position: absolute; right: -25%; top: -25%;
  width: 60%; height: 60%;
  background: radial-gradient(circle at 50% 50%, var(--blueGlow), transparent 60%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.section__sidekick:hover::after { opacity: .8; }
.section--ink .section__sidekick {
  background: var(--ink2);
  border-color: rgba(255, 255, 255, 0.08);
  color: white;
}
.section__sidekick__row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.section__sidekick__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 8px;
}
.section__sidekick__label::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 0 var(--blueGlow);
  animation: pulseDot 1.8s var(--ease) infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(21, 71, 245, .6); }
  60%, 100% { box-shadow: 0 0 0 10px rgba(21, 71, 245, 0); }
}
.section__sidekick__main {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.section__sidekick__main em { color: var(--blue); font-style: normal; }
.section--ink .section__sidekick__main { color: white; }
.section__sidekick__sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.section--ink .section__sidekick__sub { color: rgba(255, 255, 255, 0.6); }
.section__sidekick__bar {
  height: 4px;
  background: var(--blueSoft);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.section--ink .section__sidekick__bar { background: rgba(255, 255, 255, 0.08); }
.section__sidekick__bar::after {
  content: ""; display: block; height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), #4F7BFF);
  border-radius: 999px;
  animation: barFill 2.4s var(--ease) .3s forwards;
}
.section__sidekick__pills { display: flex; flex-wrap: wrap; gap: 6px; }
.section__sidekick__pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  background: var(--blueSoft);
  color: var(--blue);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
}
.section--ink .section__sidekick__pill {
  background: rgba(21, 71, 245, 0.18);
  color: #6E92FF;
}

/* ─── Mini calendar (Events Upcoming) ─────────────────────── */
.mini-cal {
  width: 100%;
  max-width: 380px;
  justify-self: end;
  align-self: end;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 16px 40px -20px rgba(20, 30, 80, 0.18);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.mini-cal:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -20px rgba(21, 71, 245, 0.28);
}
.mini-cal__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.mini-cal__month {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mini-cal__year {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--blue);
}
.mini-cal__nav { display: inline-flex; gap: 6px; }
.mini-cal__nav button {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: background .25s var(--ease);
}
.mini-cal__nav button:hover { background: var(--blueSoft); color: var(--blue); }
.mini-cal__weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.mini-cal__weekdays span {
  font-family: var(--mono);
  font-size: 10px;
  text-align: center;
  color: var(--mutedSoft);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 0;
}
.mini-cal__days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.mini-cal__day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--inkSoft);
  border-radius: 8px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .35s var(--ease);
  position: relative;
}
.mini-cal__day:hover { background: var(--paper); }
.mini-cal__day--blank { color: transparent; pointer-events: none; }
.mini-cal__day--mute { color: var(--mutedSoft); }
.mini-cal__day--marked::after {
  content: ""; position: absolute;
  bottom: 3px; left: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateX(-50%);
}
.mini-cal__day--active {
  background: var(--blue);
  color: white;
  font-weight: 700;
  box-shadow: 0 6px 18px -4px var(--blueGlow);
  animation: dayPulse 2s var(--ease) infinite;
}
.mini-cal__day--active::after { background: white; }
@keyframes dayPulse {
  0%, 100% { box-shadow: 0 6px 18px -4px var(--blueGlow), 0 0 0 0 rgba(21, 71, 245, .4); }
  60%, 100% { box-shadow: 0 6px 18px -4px var(--blueGlow), 0 0 0 8px rgba(21, 71, 245, 0); }
}
.mini-cal__legend {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.mini-cal__legend__row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: var(--inkSoft);
}
.mini-cal__legend__row span:first-child {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--blueSoft);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}
.mini-cal__legend__row.is-active span:first-child {
  background: var(--blue);
  color: white;
}
.mini-cal__legend__row .mono { margin-left: auto; color: var(--muted); font-size: 10px; }

/* ─── Scroll progress bar ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  z-index: 150;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), #4F7BFF, #00C2FF);
  box-shadow: 0 0 12px var(--blueGlow);
  transform-origin: left;
  transition: width .1s linear;
}

.section__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 72px);
  letter-spacing: -0.035em;
  line-height: .98;
  text-transform: uppercase;
  max-width: 16ch;
}
.section__title em { color: var(--blue); font-style: normal; }
.section--ink .section__title { color: white; }

.section__sub {
  grid-column: 2;
  max-width: 50ch;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.6;
  margin-top: 24px;
}
.section--ink .section__sub { color: rgba(255,255,255,.66); }

/* Inline brief — short paragraph that sits under the title in the left column */
.section__brief {
  margin-top: 24px;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 40ch;
}
.section--ink .section__brief { color: rgba(255, 255, 255, 0.7); }

@media (max-width: 880px) {
  .section__head { grid-template-columns: 1fr; gap: 24px; }
  .section__sub { grid-column: 1; }
}

/* ─── Stats Bar (with icon tiles) ─────────────────────────── */
.stats-bar {
  max-width: var(--max);
  margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-radius: 28px;
  padding: 1px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.stats-bar__item {
  background: white;
  display: flex; align-items: center; gap: 18px;
  padding: 28px;
  transition: background .35s var(--ease);
}
.stats-bar__item:hover { background: var(--paperHi); }
.stats-bar__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--blueSoft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .35s var(--ease), transform .5s var(--ease);
}
.stats-bar__item:hover .stats-bar__icon { background: var(--blue); transform: scale(1.05); }
.stats-bar__icon svg { width: 24px; height: 24px; stroke: var(--blue); stroke-width: 1.4; fill: none; transition: stroke .35s var(--ease); }
.stats-bar__item:hover .stats-bar__icon svg { stroke: white; }
.stats-bar__num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
  line-height: 1.1;
}
.stats-bar__label {
  font-size: 12.5px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
@media (max-width: 980px) { .stats-bar { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .stats-bar { grid-template-columns: 1fr; } }

/* ─── Bento service grid (Double-Bezel) ───────────────────── */
.bento {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
.bento__card {
  background: var(--paper);
  border-radius: 28px;
  padding: 6px;
  position: relative;
  transition: transform .6s var(--ease);
}
.bento__card:hover { transform: translateY(-4px); }
.bento__card--wide { grid-column: span 2; }
.bento__card--mid  { grid-column: span 1; }
.bento__card--half { grid-column: span 2; }
.bento__inner {
  background: white;
  border-radius: 22px;
  padding: clamp(28px, 3vw, 40px);
  height: 100%;
  display: flex; flex-direction: column;
  gap: 20px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: box-shadow .5s var(--ease);
}
.bento__card:hover .bento__inner { box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), 0 36px 80px -24px rgba(21, 71, 245, 0.22); }
.bento__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--blueSoft);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s var(--ease), transform .5s var(--ease);
}
.bento__card:hover .bento__icon { background: var(--blue); transform: rotate(-4deg) scale(1.05); }
.bento__icon svg { width: 26px; height: 26px; stroke: var(--blue); stroke-width: 1.4; fill: none; transition: stroke .35s; }
.bento__card:hover .bento__icon svg { stroke: white; }
.bento__num { font-family: var(--mono); color: var(--blue); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.bento__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.bento__card--wide .bento__title { font-size: clamp(28px, 2.6vw, 42px); }
.bento__body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 40ch;
}
.bento__more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 16px;
  transition: gap .4s var(--ease), color .35s;
}
.bento__more::after { content: "→"; transition: transform .4s var(--ease); }
.bento__card:hover .bento__more { gap: 16px; color: var(--blue); }
.bento__card:hover .bento__more::after { transform: translate(4px, -1px); }
@media (max-width: 980px) {
  .bento { grid-template-columns: 1fr; }
  .bento__card--wide, .bento__card--mid, .bento__card--half { grid-column: span 1; }
}

/* ─── Services full list ──────────────────────────────────── */
.services { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.service {
  background: var(--paper);
  border-radius: 28px;
  padding: 6px;
  transition: transform .5s var(--ease);
}
.service:hover { transform: translateY(-2px); }
.service__inner {
  background: white;
  border-radius: 22px;
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 80px 1.4fr 1.6fr 200px;
  gap: 32px; align-items: start;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8), var(--shadow-card);
  transition: box-shadow .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.service:hover .service__inner { box-shadow: inset 0 1px 1px rgba(255,255,255,0.8), 0 36px 80px -24px rgba(21, 71, 245, 0.18); }
.service__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--blueSoft);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s var(--ease), transform .5s var(--ease);
}
.service:hover .service__icon { background: var(--blue); transform: rotate(-4deg) scale(1.05); }
.service__icon svg { width: 28px; height: 28px; stroke: var(--blue); stroke-width: 1.4; fill: none; transition: stroke .35s; }
.service:hover .service__icon svg { stroke: white; }
.service__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
}
.service__num { font-family: var(--mono); color: var(--blue); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.service__body {
  color: var(--muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  max-width: 46ch;
}
.service__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: right;
  align-self: start;
  padding-top: 8px;
}
@media (max-width: 980px) {
  .service__inner { grid-template-columns: 1fr; gap: 20px; }
  .service__meta { text-align: left; }
}

/* ─── What we are / aren't ────────────────────────────────── */
.what {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.what__col {
  background: var(--paper);
  border-radius: 28px;
  padding: 6px;
}
.what__col__inner {
  background: white;
  border-radius: 22px;
  padding: clamp(32px, 4vw, 56px);
  height: 100%;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8), var(--shadow-card);
}
.what__col--ink { background: var(--ink); }
.what__col--ink .what__col__inner { background: var(--ink2); color: white; box-shadow: inset 0 1px 1px rgba(255,255,255,0.06), 0 24px 64px -28px rgba(0,0,0,0.4); }
.what__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 10px;
}
.what__label__sym {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blueSoft); color: var(--blue); font-weight: 700; font-size: 12px;
}
.what__col--ink .what__label__sym { background: rgba(255,255,255,0.08); color: var(--blue); }
.what__list li {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.what__col--ink .what__list li { color: white; border-color: var(--ruleW); }
.what__list li.is-in { opacity: 1; transform: translateY(0); }
.what__list li:last-child { border-bottom: 0; }
.what__list em { color: var(--blue); font-style: normal; font-weight: 700; }
@media (max-width: 880px) { .what { grid-template-columns: 1fr; } }

/* ─── Numbers (big counters) ──────────────────────────────── */
.stats {
  max-width: var(--max);
  margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
}
.stat { display: flex; flex-direction: column; gap: 14px; padding: 48px 28px 0 0; border-right: 1px solid var(--rule); }
.stat:last-child { border-right: 0; }
.stat__value {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(56px, 7vw, 112px);
  line-height: .95;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.stat__value em { color: var(--blue); font-style: normal; }
.stat__value--tight { font-size: clamp(44px, 5.2vw, 84px); white-space: nowrap; }
.stat__label { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); max-width: 22ch; line-height: 1.5; }
@media (max-width: 980px) { .stats { grid-template-columns: 1fr 1fr; } .stat:nth-child(2) { border-right: 0; } .stat { padding: 32px 24px 0 0; } }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr; } .stat { border-right: 0; border-bottom: 1px solid var(--rule); padding: 28px 0; } .stat:last-child { border-bottom: 0; } }

/* ─── Events Gallery (dark cards) ─────────────────────────── */
.gallery {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.gallery__card {
  background: linear-gradient(135deg, #14161D 0%, #0A0C12 100%);
  border-radius: 28px;
  padding: 6px;
  transition: transform .6s var(--ease);
}
.gallery__card:hover { transform: translateY(-6px); }
.gallery__card__inner {
  background: linear-gradient(135deg, #1A1D26 0%, #0F1117 100%);
  border-radius: 22px;
  padding: clamp(32px, 3vw, 48px);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.06);
}
.gallery__card__inner::after {
  content: ""; position: absolute; right: -30%; top: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, var(--blueGlow), transparent 60%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity .6s var(--ease);
  pointer-events: none;
}
.gallery__card:hover .gallery__card__inner::after { opacity: 1; }
.gallery__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  width: max-content;
}
.gallery__tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.gallery__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
  color: white;
}
.gallery__card--feature .gallery__title { font-size: clamp(32px, 3.4vw, 52px); }
.gallery__title em { color: var(--blue); font-style: normal; }
.gallery__date { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.gallery__body { color: rgba(255,255,255,0.7); font-size: 14.5px; line-height: 1.6; max-width: 38ch; }
.gallery__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: white;
  transition: gap .4s var(--ease), color .3s;
}
.gallery__cta::after { content: "→"; transition: transform .4s var(--ease); }
.gallery__cta:hover { gap: 16px; color: var(--blue); }
.gallery__cta:hover::after { transform: translate(4px, -1px); }
@media (max-width: 980px) { .gallery { grid-template-columns: 1fr; } }

/* ─── Events archive list ─────────────────────────────────── */
.events-list { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 1px; background: var(--rule); border-radius: 24px; overflow: hidden; padding: 1px; }
.events-list__row {
  background: white;
  display: grid;
  grid-template-columns: 110px 1fr 1.4fr 160px 60px;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  transition: background .35s var(--ease), padding .35s var(--ease);
  position: relative;
}
.events-list__row:hover { background: var(--blueSofter); padding-left: 40px; padding-right: 24px; }
.events-list__date { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); }
.events-list__title { font-family: var(--sans); font-weight: 700; font-size: clamp(18px, 1.6vw, 22px); letter-spacing: -0.015em; color: var(--ink); }
.events-list__loc { color: var(--muted); font-size: 14px; }
.events-list__tag {
  display: inline-flex; padding: 6px 10px; border-radius: 999px;
  background: var(--paper); color: var(--muted);
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  width: max-content;
}
.events-list__arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .35s, transform .4s var(--ease), color .3s;
  color: var(--ink);
}
.events-list__row:hover .events-list__arrow { background: var(--blue); color: white; transform: translate(3px, -1px); }
@media (max-width: 880px) {
  .events-list__row { grid-template-columns: 1fr; gap: 8px; padding: 24px; }
  .events-list__arrow { display: none; }
}

/* ─── Process ─────────────────────────────────────────────── */
.process {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process__step {
  background: var(--paper);
  border-radius: 28px;
  padding: 6px;
  transition: transform .5s var(--ease);
}
.process__step:hover { transform: translateY(-4px); }
.process__inner {
  background: white;
  border-radius: 22px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  height: 100%;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8), var(--shadow-card);
}
.process__num {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--blueSoft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
  transition: background .35s, color .35s, transform .5s var(--ease);
}
.process__step:hover .process__num { background: var(--blue); color: white; transform: rotate(-6deg); }
.process__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--ink);
}
.process__step p { color: var(--muted); font-size: 14.5px; line-height: 1.6; max-width: 32ch; }
@media (max-width: 980px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* ─── Voices (testimonials) ───────────────────────────────── */
.voices { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.voice {
  background: var(--blueSofter);
  border-radius: 28px;
  padding: 6px;
  display: flex;
}
.voice__inner {
  background: white;
  border-radius: 22px;
  padding: clamp(32px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 32px;
  flex: 1;
  min-height: 320px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8), var(--shadow-card);
  position: relative;
}
.voice__quote {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
}
.voice blockquote {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.voice figcaption {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.voice__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blueDeep));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}
.voice__person { display: flex; flex-direction: column; gap: 2px; }
.voice__name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.voice__role { font-family: var(--mono); font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 880px) { .voices { grid-template-columns: 1fr; } }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--rule);
  transition: border-color .35s, background .35s, box-shadow .5s var(--ease);
  overflow: hidden;
}
.faq__item:hover { border-color: rgba(10, 10, 11, 0.12); }
.faq__item[open] { border-color: var(--blue); background: var(--paperHi); box-shadow: var(--shadow-card); }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 28px 32px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--blue); }
.faq__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 18px;
  transition: transform .5s var(--ease), background .35s, color .35s;
  flex-shrink: 0;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--blue); color: white; }
.faq__body {
  padding: 0 32px 32px;
  max-width: 64ch;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}
@media (max-width: 560px) {
  .faq__item summary { padding: 22px 24px; }
  .faq__body { padding: 0 24px 24px; }
}

/* ─── CTA strip ───────────────────────────────────────────── */
.cta {
  background: var(--ink);
  color: white;
  padding: clamp(96px, 14vw, 180px) var(--pad) clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; right: -10%; top: -20%;
  width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at 50% 50%, var(--blueGlow), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.cta::after {
  content: ""; position: absolute; left: -10%; bottom: -30%;
  width: 50vw; height: 50vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle at 50% 50%, rgba(21, 71, 245, 0.18), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.cta__inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.cta__eyebrow { background: rgba(255,255,255,0.08); color: white; }
.cta__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 96px);
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: .94;
  margin-top: 24px;
  max-width: 18ch;
}
.cta__title em { color: var(--blue); font-style: normal; }
.cta__title .line { display: block; }
.cta__title .line:nth-child(2) { padding-left: 6vw; }
.cta__title .line:nth-child(3) { padding-left: 12vw; }
.cta__actions { margin-top: clamp(48px, 6vw, 72px); display: flex; gap: 12px; flex-wrap: wrap; }
.cta__grid {
  margin-top: clamp(64px, 8vw, 96px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cta__action {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .5s var(--ease);
}
.cta__action:hover {
  background: rgba(21, 71, 245, 0.08);
  border-color: var(--blue);
  transform: translateY(-3px);
}
.cta__action .mono { color: var(--blue); }
.cta__big {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: white;
}
@media (max-width: 880px) {
  .cta__title .line { padding-left: 0 !important; }
  .cta__grid { grid-template-columns: 1fr; }
}

/* ─── Contact form ────────────────────────────────────────── */
.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info__block {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .35s, background .35s;
}
.contact-info__block:hover { border-color: var(--blue); background: var(--paperHi); }
.contact-info__block .mono { color: var(--blue); }
.contact-info__big {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
}
.contact-form {
  background: var(--paper);
  border-radius: 28px;
  padding: 6px;
}
.contact-form__inner {
  background: white;
  border-radius: 22px;
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 22px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8), var(--shadow-card);
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  cursor: text;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--paperHi);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button[type="submit"] { align-self: flex-start; margin-top: 12px; }
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form .row { grid-template-columns: 1fr; }
}

/* ─── FIRM INFO CARD (editorial, About page intro) ───────── */
.firm-card {
  position: relative;
  max-width: 400px;
  margin-left: auto;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 24px;
  box-shadow: 0 24px 64px -32px rgba(21, 71, 245, 0.22),
              0 6px 16px -10px rgba(20, 30, 80, 0.08);
  overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.firm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 80px -32px rgba(21, 71, 245, 0.32),
              0 12px 24px -12px rgba(20, 30, 80, 0.12);
}
.firm-card::before {
  /* subtle corner hairline decoration */
  content: "";
  position: absolute;
  top: 16px; left: 16px;
  width: 20px; height: 20px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  pointer-events: none;
}
.firm-card::after {
  content: "";
  position: absolute;
  bottom: 16px; right: 16px;
  width: 20px; height: 20px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  pointer-events: none;
}
.firm-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.firm-card__mark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.firm-card__mark sup { font-size: 0.4em; opacity: .5; vertical-align: super; }
.firm-card__tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: var(--blueSoft);
  color: var(--blue);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
}
.firm-card__tag::before {
  content: ""; width: 5px; height: 5px;
  border-radius: 50%; background: var(--blue);
  animation: pulseDot 1.8s var(--ease) infinite;
}
.firm-card__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
}
.firm-card__sub {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}
.firm-card__facts {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--rule);
}
.firm-card__fact {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.firm-card__fact:last-child { border-bottom: 0; }
.firm-card__fact dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.firm-card__fact dd {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.firm-card__fact dd em { color: var(--blue); font-style: normal; }
.firm-card__quote {
  font-family: var(--sans);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink2);
  padding-left: 16px;
  border-left: 2px solid var(--blue);
  max-width: 30ch;
}
.firm-card__sig {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 980px) { .firm-card { margin-inline: auto; } }

/* ─── ELECTRIC GLOW CARD (borrowed + tuned for SyncRemo blue)─ */
/* Inspired by the 3D_Electric_Cards template: layered glow + animated SVG turbulence for an electric edge feel, tuned to the royal-blue palette. */
.glow {
  position: relative;
  padding: 2px;
  border-radius: 28px;
  background:
    linear-gradient(-30deg,
      oklch(0.45 0.15 263 / 0.55),
      transparent 40%,
      transparent 60%,
      oklch(0.45 0.15 263 / 0.55)),
    linear-gradient(to bottom, #0A0B12, #0A0B12);
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}
.glow:hover { transform: rotateY(-4deg) rotateX(3deg) translateY(-3px); }

.glow__inner {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #0A0B12;
  border: 1px solid rgba(21, 71, 245, 0.35);
}

/* Electric turbulent border via SVG filter (defined inline in HTML) */
.glow__edge {
  position: absolute; inset: -1px;
  border-radius: 26px;
  border: 2px solid var(--blue);
  pointer-events: none;
  filter: url(#glow-turb);
  z-index: 1;
}
.glow__border-soft {
  position: absolute; inset: 0;
  border-radius: 26px;
  border: 2px solid rgba(21, 71, 245, 0.55);
  filter: blur(1.2px);
  pointer-events: none;
  z-index: 2;
}
.glow__border-bright {
  position: absolute; inset: 0;
  border-radius: 26px;
  border: 2px solid #4F7BFF;
  filter: blur(4px);
  pointer-events: none;
  z-index: 2;
}
.glow__ambient {
  position: absolute; inset: -6%;
  border-radius: 34px;
  background: linear-gradient(-30deg, #4F7BFF, transparent 50%, #1547F5);
  filter: blur(48px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
  animation: glowPulse 6s var(--ease) infinite alternate;
}
@keyframes glowPulse {
  from { opacity: 0.28; }
  to   { opacity: 0.48; }
}

/* Mesh gradient inside the card (animated) */
.glow__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 55% at 22% 28%, #1547F5 0%, transparent 60%),
    radial-gradient(45% 45% at 78% 22%, #00C2FF 0%, transparent 55%),
    radial-gradient(60% 50% at 62% 78%, #7C5CFF 0%, transparent 60%),
    radial-gradient(40% 35% at 28% 80%, #FF5BA3 0%, transparent 55%);
  filter: blur(38px);
  opacity: 0.85;
  animation: meshShift 18s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
  z-index: 0;
}

/* Grid overlay inside glow */
.glow__grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 32px 32px;
  -webkit-mask: radial-gradient(circle at 50% 50%, black 30%, transparent 85%);
          mask: radial-gradient(circle at 50% 50%, black 30%, transparent 85%);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

/* Content layer sits on top */
.glow__content {
  position: relative;
  z-index: 3;
  padding: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(48px, 5.5vw, 80px);
  color: white;
  display: flex; flex-direction: column; gap: 22px;
  min-height: 100%;
}

/* Glass badge (borrowed pattern) */
.glass-badge {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  width: max-content;
  padding: 8px 14px;
  border-radius: 999px;
  background:
    radial-gradient(47% 50% at 50% 90%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 100%),
    rgba(255, 255, 255, 0.05);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.glass-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.5) 16%, rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0.08) 68%, rgba(255, 255, 255, 0.6) 82%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.glass-badge__dot { width: 6px; height: 6px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 8px #22C55E; animation: pulseGreen 1.6s var(--ease) infinite; }
.glass-badge--blue .glass-badge__dot { background: var(--blue); box-shadow: 0 0 8px var(--blue); }

/* Hover blend / electric edge sweep */
.glow__hover-sheen {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.08) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 1.2s var(--ease);
  z-index: 4;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.glow:hover .glow__hover-sheen { transform: translateX(100%); }

/* Divider line inside glow cards */
.glow__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.22), transparent);
  margin: 8px 0;
}

/* ─── SCRUB STATEMENT — scroll-driven text reveal ─────────── */
.scrub {
  position: relative;
  min-height: 220vh;
  background: var(--white);
}
.scrub__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
}
.scrub__inner { max-width: var(--max); width: 100%; margin-inline: auto; }
.scrub__eyebrow { margin-bottom: clamp(28px, 4vw, 44px); }
.scrub__statement {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 104px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 20ch;
}
.scrub__line {
  display: block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(30px);
  will-change: opacity, transform, filter;
  transition: opacity .4s var(--ease), filter .4s var(--ease), transform .4s var(--ease);
}
.scrub__line em {
  color: var(--blue);
  font-style: normal;
  display: inline-block;
  position: relative;
}
.scrub__line em::after {
  content: "";
  position: absolute;
  inset: auto 0 0.04em 0;
  height: 0.06em;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease);
}
.scrub__line.is-lit em::after { transform: scaleX(1); }
.scrub__line:nth-child(2) { padding-left: 2vw; }
.scrub__line:nth-child(4) { padding-left: 6vw; }
.scrub__meta {
  margin-top: clamp(24px, 3vw, 40px);
  display: flex; gap: 24px; flex-wrap: wrap;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.scrub__meta.is-lit { opacity: 1; }
.scrub__meta span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.scrub__meta span::before {
  content: ""; width: 5px; height: 5px;
  border-radius: 50%; background: var(--blue);
}

/* ─── PROCESS TIMELINE — vertical with drawing line ───────── */
.proc-tl {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}
.proc-tl::before {
  content: "";
  position: absolute;
  left: 31px; top: 24px; bottom: 24px;
  width: 2px;
  background: rgba(255,255,255,.08);
}
.proc-tl__fill {
  position: absolute;
  left: 31px; top: 24px;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--blue), #4F7BFF);
  box-shadow: 0 0 12px var(--blueGlow);
  transition: height .4s var(--ease);
  will-change: height;
}
.proc-tl__item {
  position: relative;
  padding: 40px 0 40px 72px;
  display: flex; flex-direction: column; gap: 14px;
}
.proc-tl__node {
  position: absolute;
  left: -32px; top: 36px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink2);
  border: 1.5px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .05em;
  z-index: 2;
  transition: color .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease), transform .5s var(--ease);
  box-shadow: 0 0 0 6px var(--ink);
}
.proc-tl__item.is-in .proc-tl__node {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  box-shadow: 0 0 0 6px var(--ink), 0 0 24px var(--blueGlow);
}
.proc-tl__time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
}
.proc-tl__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 40px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: white;
  line-height: 1.05;
}
.proc-tl__desc { color: rgba(255,255,255,.68); max-width: 48ch; line-height: 1.55; font-size: 15px; }
.proc-tl__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.proc-tl__tag {
  display: inline-flex; padding: 5px 11px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
@media (max-width: 560px) {
  .proc-tl__item { padding-left: 56px; padding-right: 0; }
  .proc-tl__node { width: 52px; height: 52px; left: -28px; font-size: 12px; }
}

/* ─── COMPARISON — "The math" ─────────────────────────────── */
.compare {
  max-width: var(--max);
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--rule);
  box-shadow: 0 24px 80px -40px rgba(21, 71, 245, 0.22);
}
.compare__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.compare__head > div {
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 6px;
}
.compare__head__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare__head__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.compare__head__sub {
  font-size: 12.5px;
  color: var(--muted);
}
.compare__head__title--ours { color: white; }
.compare__head__ours {
  background: var(--blue);
  color: white;
  position: relative;
}
.compare__head__ours .compare__head__label { color: rgba(255,255,255,.7); }
.compare__head__ours .compare__head__sub { color: rgba(255,255,255,.8); }
.compare__head__ours::before {
  content: "Recommended";
  position: absolute;
  top: 14px; right: 16px;
  padding: 4px 10px;
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
}
.compare__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
  transition: background .35s var(--ease);
}
.compare__row:last-child { border-bottom: 0; }
.compare__row:hover { background: var(--paperHi); }
.compare__row > div { padding: clamp(18px, 2vw, 26px) clamp(20px, 2.4vw, 32px); font-size: 14.5px; color: var(--inkSoft); line-height: 1.5; }
.compare__row__label {
  background: var(--paperHi);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center;
}
.compare__row__ours {
  background: linear-gradient(180deg, rgba(21, 71, 245, 0.04), rgba(21, 71, 245, 0.02));
  color: var(--ink);
  font-weight: 500;
  position: relative;
}
.compare__row__ours::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--blue);
}
.compare__check {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
}
.compare__check svg {
  width: 16px; height: 16px; flex-shrink: 0;
  stroke: var(--blue); stroke-width: 2.2; fill: none;
}
.compare__x {
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.compare__x svg {
  width: 14px; height: 14px; flex-shrink: 0;
  stroke: var(--mutedSoft); stroke-width: 2; fill: none;
}
@media (max-width: 720px) {
  .compare__head, .compare__row { grid-template-columns: 1fr; }
  .compare__row__label { border-bottom: 1px solid var(--rule); }
}

/* ─── LIVE ACTIVITY FEED ──────────────────────────────────── */
.activity {
  background: var(--ink);
  color: white;
  padding: 16px 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.activity::before,
.activity::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2; pointer-events: none;
}
.activity::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.activity::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.activity__label {
  position: absolute;
  left: var(--pad); top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: var(--ink);
  padding-right: 20px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}
.activity__label::before {
  content: ""; width: 7px; height: 7px;
  border-radius: 50%; background: #22C55E;
  animation: pulseGreen 1.6s var(--ease) infinite;
}
.activity__track {
  display: inline-flex;
  gap: 14px;
  white-space: nowrap;
  animation: marquee 48s linear infinite;
  padding-left: 240px;
}
.activity__pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}
.activity__pill strong {
  color: white;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.activity__pill .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }
@media (max-width: 720px) { .activity__label { display: none; } .activity__track { padding-left: 0; } }

/* ─── STICKY MINI-CTA ─────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  opacity: 0;
  transform: translateY(24px) scale(.94);
  pointer-events: none;
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sticky-cta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 10px 10px 22px;
  background: var(--blue);
  color: white;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 20px 40px -14px rgba(21, 71, 245, 0.5),
              0 8px 16px -8px rgba(10, 10, 11, 0.35),
              inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.sticky-cta__btn:hover { background: var(--blueDeep); }
.sticky-cta__btn:active { transform: scale(.97); }
.sticky-cta__btn__arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease), background .3s;
}
.sticky-cta__btn:hover .sticky-cta__btn__arrow { transform: translate(3px, -1px); background: rgba(255, 255, 255, 0.28); }
.sticky-cta__btn__arrow svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.8; fill: none; }
@media (max-width: 560px) {
  .sticky-cta { bottom: 16px; right: 16px; }
  .sticky-cta__btn { padding: 8px 8px 8px 18px; font-size: 13px; }
}

/* ─── Contact channels grid ───────────────────────────────── */
.channels {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.channel {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .35s var(--ease), background .35s var(--ease), transform .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.channel:hover {
  border-color: var(--blue);
  background: var(--paperHi);
  transform: translateY(-4px);
}
.channel__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--blueSoft);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.channel:hover .channel__icon { background: var(--blue); color: white; }
.channel__icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.4; fill: none; }
.channel__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
}
.channel__value {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}
.channel__sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.channel__pulse {
  position: absolute;
  top: 22px; right: 22px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #15803D;
}
.channel__pulse::before {
  content: ""; width: 7px; height: 7px;
  border-radius: 50%; background: #22C55E;
  animation: pulseGreen 1.6s var(--ease) infinite;
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .5); }
  60%, 100% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}
@media (max-width: 980px) { .channels { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .channels { grid-template-columns: 1fr; } }

/* ─── What happens next (steps) ───────────────────────────── */
.next-steps {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}
.next-steps::before {
  content: "";
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule) 12%, var(--rule) 88%, transparent);
  z-index: 0;
}
.next-step {
  background: white;
  border-radius: 22px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--rule);
  transition: border-color .35s var(--ease), transform .5s var(--ease);
}
.next-step:hover { border-color: var(--blue); transform: translateY(-4px); }
.next-step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -6px var(--blueGlow);
}
.next-step__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.next-step p { color: var(--muted); font-size: 14px; line-height: 1.55; max-width: 32ch; }
.next-step__time {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
}
.next-step__time::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
@media (max-width: 880px) {
  .next-steps { grid-template-columns: 1fr; }
  .next-steps::before { display: none; }
}

/* ─── Location card ───────────────────────────────────────── */
.location {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.location__copy {
  background: white;
  padding: clamp(36px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 24px;
}
.location__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.location__list { display: flex; flex-direction: column; gap: 16px; }
.location__list dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.location__list dd {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.location__list dd:last-child { border-bottom: 0; }

/* Stylized "map" — abstract grid, no real map */
.location__map {
  position: relative;
  background: #0A0B12;
  min-height: 320px;
  overflow: hidden;
}
.location__map::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 60% 40%, var(--blueGlow), transparent 40%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 32px 32px;
  filter: blur(0.4px);
}
.location__map::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(10,11,18,.7) 80%);
}
.location__pin {
  position: absolute;
  top: 42%; left: 58%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 20px var(--blue), 0 0 40px var(--blueGlow);
  z-index: 2;
  animation: pulsePin 2.4s var(--ease) infinite;
}
.location__pin::after {
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  animation: pulsePinRing 2.4s var(--ease) infinite;
}
.location__pin__label {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px -8px rgba(10,10,11,.4);
}
.location__pin__label::after {
  content: ""; position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(255,255,255,0.95);
}
@keyframes pulsePin {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
@keyframes pulsePinRing {
  0% { transform: scale(.8); opacity: .8; }
  100% { transform: scale(2.6); opacity: 0; }
}
@media (max-width: 880px) {
  .location { grid-template-columns: 1fr; }
  .location__map { min-height: 240px; }
}

/* ─── Footer (BLACK with massive CTA) ─────────────────────── */
.foot {
  background: var(--ink);
  color: white;
  padding: clamp(48px, 6vw, 72px) var(--pad) 36px;
  position: relative;
  overflow: hidden;
}
.foot::before {
  content: ""; position: absolute; right: -10%; top: -20%;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle at 50% 50%, var(--blueGlow), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.foot__top { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 64px; align-items: start; position: relative; z-index: 1; }
.foot__brand { display: flex; flex-direction: column; gap: 32px; }
.foot__logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--sans); font-weight: 700; font-size: 18px; }
.foot__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 14ch;
  color: white;
}
.foot__title em { color: var(--blue); font-style: normal; }
.foot__cta { margin-top: 8px; }
.foot__col { display: flex; flex-direction: column; gap: 14px; }
.foot__label { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.foot__col a { display: inline-flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 14px; color: rgba(255,255,255,0.72); transition: color .3s, transform .3s var(--ease); }
.foot__col a:hover { color: white; transform: translateX(4px); }
.foot__socials { display: inline-flex; gap: 8px; margin-top: 4px; }
.foot__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .35s, border-color .35s, transform .4s var(--ease);
  padding: 0;
}
.foot__socials a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.foot__socials svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.foot__rule { height: 1px; background: rgba(255,255,255,0.08); margin: 64px 0 24px; position: relative; z-index: 1; }
.foot__bot { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; color: rgba(255,255,255,0.45); position: relative; z-index: 1; }
.foot__bot .mono:nth-child(2) { text-align: center; }
.foot__bot .mono:nth-child(3) { text-align: right; }
@media (max-width: 880px) {
  .foot__top { grid-template-columns: 1fr; gap: 48px; }
  .foot__bot { grid-template-columns: 1fr; }
  .foot__bot .mono { text-align: left !important; }
}

/* ─── Page transition fade ────────────────────────────────── */
main { animation: pageIn .9s var(--ease) both; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(16px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ─── Generic reveal ──────────────────────────────────────── */
[data-card], [data-row], [data-step], [data-voice], [data-stat], [data-line], [data-service], [data-event] {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}
[data-card].is-in, [data-row].is-in, [data-step].is-in, [data-voice].is-in,
[data-stat].is-in, [data-line].is-in, [data-service].is-in, [data-event].is-in {
  opacity: 1; transform: translateY(0); filter: blur(0);
}
[data-card]:nth-child(1), [data-row]:nth-child(1), [data-step]:nth-child(1), [data-service]:nth-child(1) { transition-delay: .02s; }
[data-card]:nth-child(2), [data-row]:nth-child(2), [data-step]:nth-child(2), [data-service]:nth-child(2) { transition-delay: .08s; }
[data-card]:nth-child(3), [data-row]:nth-child(3), [data-step]:nth-child(3), [data-service]:nth-child(3) { transition-delay: .14s; }
[data-card]:nth-child(4), [data-row]:nth-child(4), [data-step]:nth-child(4), [data-service]:nth-child(4) { transition-delay: .20s; }
[data-card]:nth-child(5), [data-row]:nth-child(5), [data-service]:nth-child(5) { transition-delay: .26s; }
[data-line]:nth-child(1) { transition-delay: .04s; }
[data-line]:nth-child(2) { transition-delay: .12s; }
[data-line]:nth-child(3) { transition-delay: .20s; }
[data-line]:nth-child(4) { transition-delay: .28s; }

/* ─── Bento card decorations (fillers) ────────────────────── */
.bento__deco { margin-top: auto; padding-top: 14px; }
.bento__pills { display: flex; flex-wrap: wrap; gap: 6px; }
.bento__pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: var(--blueSoft);
  color: var(--blue);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.bento__pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

.bento__bar {
  height: 6px;
  background: var(--blueSoft);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.bento__bar::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--blue), var(--blueDeep));
  width: 0%;
  border-radius: 999px;
  animation: barFill 2.4s var(--ease) forwards;
  animation-delay: .4s;
}
@keyframes barFill {
  to { width: 92%; }
}

.bento__spark {
  display: flex; align-items: flex-end; gap: 4px; height: 36px;
}
.bento__spark span {
  flex: 1;
  background: linear-gradient(to top, var(--blueSoft), var(--blue));
  border-radius: 3px;
  animation: sparkRise .9s var(--ease) both;
}
.bento__spark span:nth-child(1) { height: 30%; animation-delay: .05s; }
.bento__spark span:nth-child(2) { height: 55%; animation-delay: .1s; }
.bento__spark span:nth-child(3) { height: 40%; animation-delay: .15s; }
.bento__spark span:nth-child(4) { height: 70%; animation-delay: .2s; }
.bento__spark span:nth-child(5) { height: 60%; animation-delay: .25s; }
.bento__spark span:nth-child(6) { height: 85%; animation-delay: .3s; }
.bento__spark span:nth-child(7) { height: 95%; animation-delay: .35s; }
@keyframes sparkRise {
  from { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}

/* ─── Events Page Redesign ────────────────────────────────── */

/* Featured event poster */
.poster {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: #0A0B12;
  aspect-ratio: 21 / 10;
  min-height: 480px;
  box-shadow: 0 40px 100px -30px rgba(21, 71, 245, 0.45),
              0 12px 30px -15px rgba(10, 10, 11, 0.3),
              inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.poster::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 18% 30%, #1547F5 0%, transparent 60%),
    radial-gradient(60% 50% at 82% 22%, #00C2FF 0%, transparent 55%),
    radial-gradient(70% 60% at 60% 88%, #7C5CFF 0%, transparent 60%),
    radial-gradient(50% 40% at 22% 80%, #FF5BA3 0%, transparent 55%);
  filter: blur(50px);
  animation: meshShift 22s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
  opacity: .85;
}
.poster::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 40px 40px;
  mask: radial-gradient(ellipse at 50% 50%, black 30%, transparent 85%);
  -webkit-mask: radial-gradient(ellipse at 50% 50%, black 30%, transparent 85%);
  opacity: .5;
}
.poster__inner {
  position: relative; z-index: 1;
  padding: clamp(36px, 5vw, 72px);
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.poster__top { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; color: white; }
.poster__top .mono { color: rgba(255,255,255,.7); }
.poster__main { display: flex; flex-direction: column; gap: 24px; max-width: 22ch; }
.poster__date {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 38px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: white;
  line-height: 1;
}
.poster__date em { color: var(--blue); font-style: normal; }
.poster__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 112px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: .92;
  color: white;
  text-shadow: 0 8px 30px rgba(21, 71, 245, 0.4);
}
.poster__title em { color: var(--blue); font-style: normal; }
.poster__bottom { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.poster__body { color: rgba(255,255,255,.78); max-width: 36ch; font-size: 15px; line-height: 1.55; }

/* Event timeline */
.timeline { max-width: var(--max); margin: 0 auto; position: relative; }
.timeline::before {
  content: ""; position: absolute;
  left: clamp(110px, 15vw, 180px);
  top: 24px; bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--rule), transparent);
}
.timeline__row {
  display: grid;
  grid-template-columns: clamp(110px, 15vw, 180px) 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding: 32px 0;
  position: relative;
  align-items: start;
}
.timeline__row + .timeline__row { border-top: 1px solid var(--rule); }
.timeline__date {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  padding-top: 8px;
  position: relative;
}
.timeline__date::after {
  content: "";
  position: absolute;
  right: -7px; top: 14px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--blue);
  box-shadow: 0 0 0 4px var(--blueSoft);
  z-index: 1;
}
.timeline__content {
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .5s var(--ease);
}
.timeline__row:hover .timeline__content { transform: translateX(8px); }
.timeline__tag {
  display: inline-flex; gap: 8px; align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  width: max-content;
}
.timeline__tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.timeline__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  text-transform: uppercase;
}
.timeline__loc { color: var(--muted); font-size: 14.5px; }
.timeline__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  transition: gap .3s var(--ease), color .3s;
}
.timeline__cta::after { content: "→"; transition: transform .3s var(--ease); }
.timeline__row:hover .timeline__cta { gap: 14px; color: var(--blue); }
.timeline__row:hover .timeline__cta::after { transform: translate(4px, -1px); }

@media (max-width: 880px) {
  .timeline::before { display: none; }
  .timeline__row { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .timeline__date::after { display: none; }
}

/* Production CTA card */
.host-card {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.host-card__copy {
  background: var(--ink);
  color: white;
  border-radius: 28px;
  padding: clamp(36px, 5vw, 64px);
  display: flex; flex-direction: column; gap: 24px; justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.host-card__copy::after {
  content: ""; position: absolute; right: -10%; top: -20%;
  width: 60%; height: 60%;
  background: radial-gradient(circle at 50% 50%, var(--blueGlow), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.host-card__copy h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
  color: white;
  position: relative;
  z-index: 1;
}
.host-card__copy h3 em { color: var(--blue); font-style: normal; }
.host-card__copy p { color: rgba(255,255,255,.72); max-width: 38ch; line-height: 1.55; position: relative; z-index: 1; }
.host-card__copy .btn { align-self: start; position: relative; z-index: 1; }
.host-card__visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #0A0B12;
  min-height: 320px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.host-card__visual::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 30% 30%, #1547F5 0%, transparent 60%),
    radial-gradient(60% 50% at 70% 70%, #FF5BA3 0%, transparent 55%);
  filter: blur(40px);
  animation: meshShift 16s ease-in-out infinite alternate;
  opacity: .8;
}
.host-card__visual__center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  text-transform: uppercase;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 8px 30px rgba(21,71,245,.45);
  z-index: 1;
}
@media (max-width: 980px) { .host-card { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .marquee__track { animation: none; }
  main { animation: none; }
}
