:root {
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --max: 1180px;
  --pad: clamp(18px, 3vw, 30px);

  --bg: #070b18;
  --frame: rgba(255, 255, 255, 0.04);
  --panel: rgba(255, 255, 255, 0.04);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.78);
  --faint: rgba(255, 255, 255, 0.58);
  --stroke: rgba(255, 255, 255, 0.12);
  --accent: rgba(255, 255, 255, 0.92);

  /* One opinionated accent. Used sparingly: hero word, pulsing dot, primary CTA hover, focus rings. */
  --signal: #7dd3fc;        /* sky-300 */
  --signal-deep: #38bdf8;   /* sky-400 */
  --signal-soft: rgba(125, 211, 252, 0.18);
  --signal2: #a78bfa;       /* violet-400 */
  --signal2-soft: rgba(167, 139, 250, 0.16);

  --r: 14px;
  --r-lg: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(1200px 700px at 18% 8%, rgba(56, 189, 248, 0.12), transparent 60%),
    radial-gradient(1000px 620px at 88% 18%, rgba(99, 102, 241, 0.10), transparent 60%),
    linear-gradient(180deg, #060916, var(--bg));
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

button { font: inherit; }

/* Ensure native HTML `hidden` always hides (some CSS resets can override). */
[hidden] { display: none !important; }

/* ========== Topbar ========== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(7, 11, 24, 0.74);
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  transition: background 220ms ease;
}
.topbar.is-compact .topbar__brand {
  opacity: 0;
  visibility: hidden; /* keep layout space so nav doesn't jump */
  transform: translateY(-2px);
  pointer-events: none;
}

/* Anchor scrolling: keep section headings visible under sticky topbar */
html { scroll-padding-top: 82px; }
.section { scroll-margin-top: 82px; }
.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.topbar__brand {
  display: grid;
  gap: 1px;
  font-weight: 720;
  letter-spacing: -0.03em;
  white-space: nowrap;
  font-size: 1.125rem;
  line-height: 1.05;
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}
.topbar__brandName { line-height: 1.05; }
.topbar__brandRole {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.topbar__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.topbar__link {
  font-size: 13px;
  color: var(--muted);
  padding: 7px 9px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.topbar__link:hover {
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border-color: rgba(167, 139, 250, 0.26);
}
.topbar__link[aria-current="true"] {
  color: var(--text);
  background: rgba(255,255,255,.07);
  border-color: var(--stroke);
}

/* ========== Page shell ========== */
.page {
  max-width: var(--max);
  margin: clamp(18px, 3vw, 28px) auto 36px;
  padding: clamp(18px, 3vw, 28px) var(--pad) 56px;
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  box-shadow: 0 28px 90px rgba(0,0,0,.55);
}

/* ========== Sidebar ========== */
.side { padding: clamp(26px, 5vw, 56px) 0; }
.side__inner {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 16px;
  align-content: start;
  max-height: calc(100vh - 96px);
  overflow: auto;
  padding-right: 6px;
}

.brand {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
}
.brand:hover { text-decoration: none; }
.brand__name { font-weight: 700; letter-spacing: -0.03em; }
.brand__role { color: var(--muted); margin-top: 2px; font-size: 13.5px; }
.caret {
  display: inline-block;
  width: 0.55ch;
  height: 1.05em;
  margin-left: 2px;
  background: currentColor;
  opacity: 0.9;
  transform: translateY(2px);
  animation: blink 1.05s steps(1) infinite;
}
.caret.is-static {
  animation: none;
  opacity: 0.9;
}
@keyframes blink {
  0%, 49% { opacity: 0.9; }
  50%, 100% { opacity: 0; }
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px dashed var(--stroke);
  background: rgba(255,255,255,.04);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTAs */
.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-left: 68px;
}
.ctaBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, color 120ms ease;
}
button.ctaBtn {
  appearance: none;
}
.ctaBtn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
}
.ctaBtn--ghost { background: transparent; }
.ctaBtn--primary {
  background: var(--signal-soft);
  border-color: rgba(125, 211, 252, 0.40);
  color: #e8faff;
}
.ctaBtn--primary:hover {
  background: rgba(125, 211, 252, 0.26);
  border-color: rgba(125, 211, 252, 0.55);
}
.ctaBtn:focus-visible { outline: none; box-shadow: none; }
.ico {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  fill: currentColor;
  opacity: 0.92;
}
.ico--arrow { width: 16px; height: 16px; transition: transform 160ms ease; }
.ctaBtn:hover .ico--arrow { transform: translateX(2px); }

/* Status block (replaces meta + side-blocks) */
.status {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  padding: 14px;
  display: grid;
  gap: 14px;
}
.status__row {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
}
.status__dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--faint);
  position: relative;
}
.status__dot--on {
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: statusPulse 2.4s ease-out infinite;
}
@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.status__h {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text);
}
.status__p { font-size: 13.5px; color: var(--text); margin-top: 4px; line-height: 1.45; }
.status__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.status__grid > div {
  padding: 12px 14px;
}
/* dividers between cells (2-column layout) */
.status__grid > div:nth-child(n + 3) {
  border-top: 1px solid rgba(255,255,255,.07);
}
.status__grid > div:nth-child(odd):not(.status__gridSpan) {
  border-right: 1px solid rgba(255,255,255,.07);
}
.status__gridSpan {
  grid-column: 1 / -1;
  border-right: 0;
}
.status__loc {
  text-align: center;
  padding: 14px 16px 16px;
}
.status__loc > .status__k {
  margin-bottom: 8px;
}
.status__k { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); }
.status__k--travel {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.status__v { font-size: 13px; color: var(--text); margin-top: 2px; }
.status__regions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.status__regions li {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}
.status__sponsor {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  text-align: center;
}
.status__sponsorCol {
  display: grid;
  gap: 3px;
  padding: 8px 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.status__sponsorK {
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--faint);
}
.status__sponsorV {
  font-size: 12.5px;
  color: var(--text);
  line-height: 1.35;
}
.status__travel {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}
.status__sub {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--faint);
}
.status__sub > div + div { margin-top: 4px; }

.cit-tip {
  cursor: help;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  outline: none;
  border-radius: 4px;
}
.cit-tip:focus-visible { box-shadow: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sideBlock {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  padding: 12px;
  display: grid;
  gap: 10px;
}
.sideBlock__h {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.sideBlock__p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.actions--left { justify-content: flex-start; }
.actions--center { justify-content: center; }

.pill {
  font: inherit;
  font-size: 13px;
  color: var(--text);
  border: 1px solid var(--stroke);
  background: transparent;
  border-radius: 999px;
  padding: 9px 12px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.pill--with-ico {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.pill .ico--pill {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex-shrink: 0;
  opacity: 0.92;
}
.pill:hover {
  text-decoration: none;
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
}
.pill--ghost { background: rgba(255,255,255,.04); }
.linkBtn {
  background: none;
  border: 0;
  color: var(--signal);
  cursor: pointer;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========== Main content ========== */
.content {
  min-width: 0;
  padding: clamp(26px, 5vw, 56px) 0;
}

.section {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.section:first-child { border-top: none; padding-top: 0; }
.section--hero { padding-bottom: 14px; }
.section--contact { padding-bottom: 8px; }

.sectionHead { display: grid; gap: 4px; margin-bottom: 4px; }
.sectionHead__sub { margin: 0; color: var(--muted); font-size: 14px; }

.h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.h3 {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 82ch;
}

/* ========== Impact timeline ========== */
.timeline {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: grid;
  gap: 12px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(255,255,255,.10);
}
.timelineItem {
  position: relative;
  padding: 14px 14px 14px 32px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.timelineItem::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.95);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.14);
}
.timelineItem__top { display: grid; gap: 2px; }
.timelineItem__when {
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--faint);
}
.timelineItem__who { font-weight: 650; letter-spacing: -0.01em; }
.timelineItem__what { margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.timelineItem__what strong { color: var(--text); font-weight: 650; }
.timelineItem:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.30);
  background: rgba(125, 211, 252, 0.04);
}
.muted { color: var(--muted); margin: 8px 0 0; }
.small { margin-top: 10px; color: var(--faint); font-size: 13px; }

/* ========== Hero ========== */
.hero {
  display: grid;
  gap: 18px;
  padding: 4px 0 4px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  padding: 6px 12px;
  border: 1px solid rgba(125, 211, 252, 0.30);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbecff;
  background: var(--signal-soft);
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}
.hero__pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 12px var(--signal);
  animation: heroPulse 2s ease-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
.hero__h1 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 760;
  max-width: 22ch;
}
.hero__accent {
  background: linear-gradient(180deg, #ffffff 0%, var(--signal) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  position: relative;
}
.hero__accent::after{
  content:"";
  position:absolute;
  left: 2px;
  right: 2px;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125,211,252,0), rgba(125,211,252,.7), rgba(125,211,252,0));
  opacity: .65;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 320ms ease;
}
.hero__h1:hover .hero__accent::after{
  transform: scaleX(1);
  opacity: .9;
}
.heroRotator {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  font-size: 15.5px;
  color: var(--muted);
  min-height: 1.6em;
}
.heroRotator__prefix {
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.heroRotator__rot {
  position: relative;
  display: inline-grid;
  /* Stack lines on top of each other; only the .is-on one is visible. */
  flex: 1 1 22ch;
  min-width: 0;
}
.heroRotator__line {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 380ms ease, transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
  color: var(--text);
}
.heroRotator__line.is-on {
  opacity: 1;
  transform: none;
}
.hero__surface {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 36px rgba(0, 0, 0, 0.22);
}
.hero__panel {
  display: grid;
  gap: 18px;
  padding: 20px 18px;
  max-width: 72ch;
}
.hero__ledes {
  display: grid;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__lede {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}
.hero__lede strong { color: rgba(255, 255, 255, 0.95); font-weight: 600; }
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.chip{
  font-size: 12.5px;
  color: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  padding: 7px 10px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.impactWins {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
  max-width: 72ch;
}
.impactWins li { margin: 10px 0; line-height: 1.55; }
.impactWins strong {
  color: rgba(125, 211, 252, 0.92);
  font-weight: 650;
}
.ctaRow__reply {
  margin: 6px 0 0 68px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--faint);
}

/* ========== Industries band ========== */
.industries {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.industries--impact .industry__metric strong { color: var(--signal); }
.industries--impact .industry__co { opacity: 0.9; }
.industry {
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  padding: 16px;
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.industry:hover {
  border-color: rgba(125, 211, 252, 0.30);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.industry::after { content: none; }
.industry__top {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
}
.industry__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(125, 211, 252, 0.12);
  border: 1px solid rgba(125, 211, 252, 0.22);
  display: grid;
  place-items: center;
  color: var(--signal);
}
.industry__icon svg { width: 20px; height: 20px; fill: currentColor; }
.industry__p { margin: 2px 0 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.industry__p + .industry__p { margin-top: 8px; }
.industry__metric {
  font-size: 13px;
  color: var(--text);
  padding: 8px 10px;
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 10px;
  background: rgba(0,0,0,.18);
}
.industry__metric strong { color: var(--signal); }
.industry__co {
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.04em;
}

/* ========== Carousel (Impact examples) ========== */
.carousel {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.carousel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.carousel__hint {
  font-size: 13px;
  color: var(--muted);
}
.carousel__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  /* Reserve space so arrows never sit on top of content */
  padding: 0 56px;
  touch-action: pan-y;
}
.carousel__viewport::before,
.carousel__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 2;
}
.carousel__viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(7,11,24,0.9), rgba(7,11,24,0));
}
.carousel__viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7,11,24,0.9), rgba(7,11,24,0));
}
.carousel__track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.carousel__slide {
  flex: 0 0 100%;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(10,11,16,.72);
  color: rgba(255,255,255,.88);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, opacity 140ms ease;
}
.carousel__arrow svg { width: 18px; height: 18px; fill: currentColor; }
.carousel__arrow--left { left: 14px; }
.carousel__arrow--right { right: 14px; }
.carousel__arrow:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(125, 211, 252, 0.35);
  transform: translateY(-50%) scale(1.02);
}
.carousel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding-top: 2px;
}
.carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  cursor: pointer;
  padding: 0;
}
.carousel__dot.is-on {
  background: var(--signal-soft);
  border-color: rgba(125, 211, 252, 0.55);
}

/* Remove the “clicked/focused” highlight look */
.ctaBtn:focus-visible,
.pill:focus-visible,
.filterPill:focus-visible,
.carousel__arrow:focus-visible,
.carousel__dot:focus-visible,
.linkBtn:focus-visible,
.cit-tip:focus-visible,
.backToTop:focus-visible {
  outline: none;
  box-shadow: none;
}

/* ========== Cards (existing, used in Impact) ========== */
.kpis { /* kept for safety though unused now */
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.kpi {
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  background: var(--panel);
  padding: 12px;
}
.kpi__v { font-weight: 760; letter-spacing: -0.02em; }
.kpi__l { margin-top: 4px; color: var(--faint); font-size: 12.5px; }

.grid3 {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.stack { margin-top: 14px; display: grid; gap: 10px; }
.card {
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  background: var(--panel);
  padding: 14px;
  transition: border-color 160ms ease, transform 160ms ease;
}
.card:hover { border-color: rgba(255,255,255,.20); transform: translateY(-1px); }
.card strong { color: var(--accent); }
.row { display: flex; align-items: center; gap: 10px; }
.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
}



/* ========== Track record (filter + cards) ========== */
.filterBar {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filterPill {
  font-size: 12.5px;
  color: var(--muted);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 120ms ease, background 120ms ease, border-color 120ms ease, transform 120ms ease;
}
.filterPill:hover {
  color: var(--text);
  background: rgba(255,255,255,.07);
  transform: translateY(-1px);
}
.filterPill.is-on {
  color: #e8faff;
  background: var(--signal-soft);
  border-color: rgba(125, 211, 252, 0.45);
}
.filterPill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(167, 139, 250, 0.55);
}

.xpList { display: grid; gap: 14px; margin-top: 14px; }
.xpCard {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 54px rgba(0,0,0,.45);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}
.xpCard:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.22);
}
.xpCard.is-hidden {
  display: none !important;
}
.xpCard__top {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title date"
    "org   org";
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
}
.xpCard__head { display: contents; }
.xpCard__title { grid-area: title; }
.xpCard__org { grid-area: org; }
.xpCard__date { grid-area: date; justify-self: end; }
.xpCard__title {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.xpCard__org {
  margin-top: 2px;
  display: grid;
  gap: 3px;
  font-size: 15px;
  color: var(--muted);
}
.xpCard__orgName {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 720;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.xpCard__orgName::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.95);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.14);
  flex: 0 0 auto;
  transform: translateY(1px);
}
.xpCard__dot { display: none; }
.xpCard__orgMeta {
  color: var(--muted);
  font-size: 13.5px;
  display: grid;
  gap: 2px;
  align-items: baseline;
}
.xpCard__orgLine {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}
.xpCard__orgIndustry {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.xpCard__orgDesc { color: var(--muted); }
.xpCard__orgSep { color: rgba(255, 255, 255, 0.38); }
.xpCard__orgLoc { color: rgba(255, 255, 255, 0.60); }
.xpCard__date {
  white-space: nowrap;
  font-size: 13.5px;
  color: var(--muted);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  padding: 8px 12px;
  border-radius: 999px;
}

.bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li { margin: 8px 0; }
.bullets strong { color: var(--accent); }

/* Experience: metrics highlighted consistently in every bullet */
.xpCard .bullets strong {
  color: rgba(125, 211, 252, 0.92);
  font-weight: 650;
}

/* Experience: lead bullet reads slightly brighter */
.xpCard .bullets li:nth-child(1) {
  color: rgba(255, 255, 255, 0.88);
}

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tag {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Tools & platforms: grouped tags (no impact narrative) */
#toolbox-skills .toolGroups {
  margin-top: 12px;
  display: grid;
  gap: 1.1rem;
  max-width: 42rem;
}
#toolbox-skills .toolGroup__h {
  margin: 0 0 0.35rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}
#toolbox-skills .toolGroup .tags {
  margin-top: 0;
}

.filterEmpty {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* ========== How I work (toolbox + edu) ========== */
.toolboxBand {
  margin: 18px 0 0;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--faint);
}

.eduRow {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

/* Education: single card should span full width */
#education .eduRow { grid-template-columns: 1fr; }
.eduChip {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  padding: 12px;
}
.eduChip__h { font-weight: 650; font-size: 14px; }
.eduChip__p { color: var(--muted); font-size: 13px; margin-top: 4px; line-height: 1.5; }

/* Education card: stronger hierarchy */
.eduChip__meta { margin-top: 6px; display: grid; gap: 6px; }
.eduChip__degree { font-weight: 650; letter-spacing: -0.01em; }
.eduChip__grade { color: var(--muted); font-size: 13px; line-height: 1.35; }
.eduChip__grade strong { color: var(--text); font-weight: 650; }
.eduChip__gradeSep { opacity: .6; margin: 0 6px; }
.eduChip__gpa { white-space: nowrap; }
.eduChip__bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.eduChip__bullets li { margin: 6px 0; }
.eduChip__bullets strong { color: var(--text); font-weight: 650; }

/* ========== Recommendations (stacked list) ========== */
.recs {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 42rem;
}
.rec {
  position: relative;
  margin: 0;
  padding: 16px 18px 14px 20px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid rgba(125, 211, 252, 0.55);
  display: grid;
  gap: 12px;
}
.rec::before {
  content: "\201C";
  position: absolute;
  top: 2px;
  left: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1;
  color: rgba(125, 211, 252, 0.28);
  pointer-events: none;
}
.rec__q {
  margin: 0;
  padding: 0 0 0 6px;
}
.rec__q p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
}
.rec__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 11px;
}
.rec__by {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.rec__by strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
  margin-right: 6px;
}
.rec__rel {
  color: var(--faint);
  font-size: 12px;
}
.rec__when {
  font-size: 12px;
  color: var(--faint);
  white-space: nowrap;
}
.rec__role { color: var(--muted); }
.recs__more {
  margin: 14px auto 0;
  max-width: 42rem;
  text-align: center;
}

/* ========== Recruiter FAQ ========== */
.faq {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.faqItem {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  padding: 0 14px;
  transition: border-color 160ms ease, background 160ms ease;
}
.faqItem[open] {
  border-color: rgba(125, 211, 252, 0.30);
  background: rgba(125, 211, 252, 0.05);
}
.faqItem summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
}
.faqItem summary::-webkit-details-marker { display: none; }
.faqItem summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--faint);
  border-bottom: 2px solid var(--faint);
  transform: rotate(45deg);
  transition: transform 160ms ease, border-color 160ms ease;
  flex: 0 0 auto;
  margin-right: 4px;
}
.faqItem[open] summary::after {
  transform: rotate(-135deg);
  border-color: var(--signal);
}
.faqItem p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.faqItem .actions { margin: 10px 0 14px; }
.faqItem p .pill { margin-left: 8px; vertical-align: middle; }

/* ========== Contact band ========== */
.contactBand {
  margin-top: 12px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  background:
    radial-gradient(700px 240px at 0% 0%, rgba(125, 211, 252, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius: var(--r-lg);
  padding: clamp(18px, 3vw, 28px);
}
.contactBand .h2 { font-size: clamp(22px, 3vw, 30px); letter-spacing: -0.03em; }
.contactBand .p { max-width: 64ch; }
.contactBand__ctas {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.contactBand__aside {
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 13px;
  font-style: italic;
  max-width: 64ch;
}

/* ========== Mini game ========== */
.game {
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.03);
  padding: 14px;
  display: grid;
  gap: 12px;
}
.game__hud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
}
.game__score { display: flex; gap: 8px; align-items: baseline; }
.game__k {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.game__v { font-weight: 750; letter-spacing: -0.02em; }
.game__hint { color: var(--muted); font-size: 13px; }
.game__actions { display: flex; gap: 8px; align-items: center; }
.game__stage {
  position: relative;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(800px 220px at 0% 0%, rgba(125, 211, 252, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.18));
}
#runnerGame {
  display: block;
  width: 100%;
  height: auto;
}
.game__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 14px;
  color: rgba(255,255,255,.92);
  background: rgba(7, 11, 24, 0.35);
  backdrop-filter: blur(6px);
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 160ms ease;
}
.game__overlay.is-off { opacity: 0; }
.game__overlayTitle { font-weight: 760; letter-spacing: -0.02em; }
.game__overlaySub { color: var(--muted); margin-top: 6px; font-size: 13px; }
kbd {
  font: inherit;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
}


/* ========== Back to top ========== */
.backToTop {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  z-index: 75;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 11, 24, 0.82);
  color: var(--text);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    background 180ms ease,
    border-color 180ms ease;
}
.backToTop.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.backToTop:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(125, 211, 252, 0.45);
}
.backToTop__ico {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ========== Toast ========== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 70;
  background: rgba(10,11,16,.84);
  border: 1px solid var(--stroke);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  max-width: min(92vw, 820px);
  text-align: center;
  font-size: 13px;
}
.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* ========== Reveal animations ==========
   Hide section children only when JS has flagged the document. If JS is blocked,
   noscript inline styles keep things visible. */
html.reveal-animations-on [data-reveal]:not(.is-in) > *:not(ul.bullets):not(ul.impactWins):not(.kpis):not(.grid3):not(.tags):not(.stack):not(.industries):not(.faq):not(.xpList):not(.eduRow),
html.reveal-animations-on [data-reveal]:not(.is-in) > ul.bullets > li,
html.reveal-animations-on [data-reveal]:not(.is-in) > ul.impactWins > li,
html.reveal-animations-on [data-reveal]:not(.is-in) > .kpis > .kpi,
html.reveal-animations-on [data-reveal]:not(.is-in) > .grid3 > .card,
html.reveal-animations-on [data-reveal]:not(.is-in) > .tags > .tag,
html.reveal-animations-on [data-reveal]:not(.is-in) > .stack > *,
html.reveal-animations-on [data-reveal]:not(.is-in) > .industries > .industry,
html.reveal-animations-on [data-reveal]:not(.is-in) > .faq > .faqItem,
html.reveal-animations-on [data-reveal]:not(.is-in) > .xpList > .xpCard,
html.reveal-animations-on [data-reveal]:not(.is-in) > .eduRow > .eduChip {
  opacity: 0;
  transform: translateY(9px);
  transition: opacity 0.38s ease, transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: 0s;
}
html.reveal-animations-on [data-reveal].is-in > *:not(ul.bullets):not(ul.impactWins):not(.kpis):not(.grid3):not(.tags):not(.stack):not(.industries):not(.faq):not(.xpList):not(.eduRow),
html.reveal-animations-on [data-reveal].is-in > ul.bullets > li,
html.reveal-animations-on [data-reveal].is-in > ul.impactWins > li,
html.reveal-animations-on [data-reveal].is-in > .kpis > .kpi,
html.reveal-animations-on [data-reveal].is-in > .grid3 > .card,
html.reveal-animations-on [data-reveal].is-in > .tags > .tag,
html.reveal-animations-on [data-reveal].is-in > .stack > *,
html.reveal-animations-on [data-reveal].is-in > .industries > .industry,
html.reveal-animations-on [data-reveal].is-in > .faq > .faqItem,
html.reveal-animations-on [data-reveal].is-in > .xpList > .xpCard,
html.reveal-animations-on [data-reveal].is-in > .eduRow > .eduChip {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
html.reveal-animations-on [data-reveal].is-in > *:nth-child(1) { transition-delay: 0.03s; }
html.reveal-animations-on [data-reveal].is-in > *:nth-child(2) { transition-delay: 0.08s; }
html.reveal-animations-on [data-reveal].is-in > *:nth-child(3) { transition-delay: 0.13s; }
html.reveal-animations-on [data-reveal].is-in > *:nth-child(4) { transition-delay: 0.18s; }
html.reveal-animations-on [data-reveal].is-in > *:nth-child(5) { transition-delay: 0.23s; }
html.reveal-animations-on [data-reveal].is-in > *:nth-child(6) { transition-delay: 0.28s; }

html.reveal-animations-on [data-reveal].is-in > ul.bullets > li:nth-child(n+1) { transition-delay: 0.10s; }
html.reveal-animations-on [data-reveal].is-in > ul.bullets > li:nth-child(n+2) { transition-delay: 0.15s; }
html.reveal-animations-on [data-reveal].is-in > ul.bullets > li:nth-child(n+3) { transition-delay: 0.20s; }
html.reveal-animations-on [data-reveal].is-in > ul.impactWins > li:nth-child(n+1) { transition-delay: 0.08s; }
html.reveal-animations-on [data-reveal].is-in > ul.impactWins > li:nth-child(n+2) { transition-delay: 0.12s; }
html.reveal-animations-on [data-reveal].is-in > ul.impactWins > li:nth-child(n+3) { transition-delay: 0.16s; }
html.reveal-animations-on [data-reveal].is-in > ul.impactWins > li:nth-child(n+4) { transition-delay: 0.20s; }
html.reveal-animations-on [data-reveal].is-in > .grid3 > .card:nth-child(1) { transition-delay: 0.10s; }
html.reveal-animations-on [data-reveal].is-in > .grid3 > .card:nth-child(2) { transition-delay: 0.16s; }
html.reveal-animations-on [data-reveal].is-in > .grid3 > .card:nth-child(3) { transition-delay: 0.22s; }
html.reveal-animations-on [data-reveal].is-in > .industries > .industry:nth-child(1) { transition-delay: 0.10s; }
html.reveal-animations-on [data-reveal].is-in > .industries > .industry:nth-child(2) { transition-delay: 0.18s; }
html.reveal-animations-on [data-reveal].is-in > .industries > .industry:nth-child(3) { transition-delay: 0.26s; }
html.reveal-animations-on [data-reveal].is-in > .xpList > .xpCard:nth-child(n) { transition-delay: 0.06s; }
html.reveal-animations-on [data-reveal].is-in > .faq > .faqItem:nth-child(n+1) { transition-delay: 0.06s; }
html.reveal-animations-on [data-reveal].is-in > .eduRow > .eduChip:nth-child(1) { transition-delay: 0.06s; }
html.reveal-animations-on [data-reveal].is-in > .eduRow > .eduChip:nth-child(2) { transition-delay: 0.12s; }
html.reveal-animations-on [data-reveal].is-in > .eduRow > .eduChip:nth-child(3) { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] > * { transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* ========== Responsive ========== */
@media (max-width: 980px) {
  .page { grid-template-columns: 1fr; gap: 22px; }
  .side { padding: 18px 0; }
  .side__inner {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
  .ctaRow { margin-left: 0; }
  .ctaRow__reply { margin-left: 0; }
  .kpis { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }
  .industries { grid-template-columns: 1fr; }
  .eduRow { grid-template-columns: 1fr; }
  .status__grid { grid-template-columns: 1fr; }
  .status__grid > div { border-right: 0; padding-left: 0; padding-right: 0; }
  .status__grid > div { border-top: 0; padding-top: 10px; }
  .status__grid > div + div { border-top: 1px solid rgba(255,255,255,.07); padding-top: 14px; }
  .topbar__nav { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__brand { font-size: 1.35rem; }
  .xpCard { grid-template-columns: 1fr; }
  .xpCard__logo { width: 52px; height: 52px; }
  .hero__h1 { font-size: clamp(28px, 7.5vw, 38px); }
}

@media (max-width: 520px) {
  .hero__eyebrow { width: 100%; }
}

@media (max-width: 420px) {
  .hero__eyebrow { font-size: 11px; letter-spacing: 0.06em; padding: 6px 10px; }
}

@media print {
  body { background: #fff; color: #111; }
  .page { max-width: none; padding: 0; display: block; box-shadow: none; border: 0; background: #fff; }
  .side { padding: 0 0 18px; }
  .side__inner { position: static; }
  .toast,
  .backToTop { display: none !important; }
  a { text-decoration: none; color: inherit; }
  .filterBar, .hero__pulse, .hero__eyebrow, .heroRotator { display: none; }
  .faqItem { break-inside: avoid; }
  [data-reveal] > * { opacity: 1 !important; transform: none !important; }
}
