/* ===========================================================================
   BioVie — brand stylesheet
   Palette & type from BioVie Brand Toolkit V1 (Feb 2025)
   =========================================================================== */

:root {
  /* Primary blue gradient */
  --blue-1: #324ab2;
  --blue-2: #120a8f;
  /* Dark gradient */
  --ink-1: #565c76;
  --ink-2: #2b2e3b;
  /* Mono / support */
  --black: #0a0c14;
  --white: #ffffff;
  --gray-1: #dcdde5;
  --gray-2: #c4c7d4;

  /* Derived tints */
  --blue-bright: #5b73e8;
  --blue-glow: #6e8bff;
  --paper: #f6f7fb;
  --paper-tint: #eef0f8;

  --grad-blue: linear-gradient(135deg, var(--blue-1) 0%, var(--blue-2) 100%);
  --grad-blue-soft: linear-gradient(135deg, #3a54c4 0%, #1b119f 100%);
  --grad-dark: linear-gradient(135deg, var(--ink-1) 0%, var(--ink-2) 100%);
  --grad-text: linear-gradient(100deg, #8aa0ff 0%, #c4c7d4 100%);

  --text: #1c2030;
  --text-soft: #545a72;
  --line: rgba(18, 10, 143, 0.1);

  --container: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 20px rgba(18, 10, 143, 0.07);
  --shadow-md: 0 18px 50px rgba(18, 10, 143, 0.13);
  --shadow-blue: 0 24px 60px rgba(18, 10, 143, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* Brand typeface is Halyard (Adobe Fonts); Inter is the brand's open-source fallback.
     Halyard activates automatically once the Adobe Fonts kit <link> is added to <head>. */
  --font: "halyard-text", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "halyard-display", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Headings & display figures use Halyard Display (falls back to Inter) */
h1, h2, h3, h4,
.brand__word, .hero__title, .section__title, .eyebrow, .kicker,
.statband__num .counter, .substat .counter, .mini strong,
.stat-card__num, .evidence__num, .market__big, .tl__year,
.person h3, .news-card h3, .cta h2, .splash__word {
  font-family: var(--font-display);
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue-2); color: #fff; padding: 12px 18px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---- Brand lockup ---- */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 30px; height: 30px; transform-origin: center; }
.brand__word {
  font-weight: 700; font-size: 1.4rem; letter-spacing: 0.01em; color: var(--white);
  /* Official wordmark sets "io"/"ie" as small caps; B and V stay full caps */
  font-variant-caps: small-caps;
}
.brand__v { /* full cap V — kept for clarity, no extra styling needed */ }

/* Logo entrance — a nod to the animated mark "assembling" into place */
.nav .brand__mark { animation: markIn 0.85s var(--ease) both; }
@keyframes markIn {
  0%   { opacity: 0; transform: scale(0.3) rotate(-120deg); }
  60%  { opacity: 1; transform: scale(1.08) rotate(6deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.brand:hover .brand__mark { animation: markSpin 0.7s var(--ease); }
@keyframes markSpin { to { transform: rotate(90deg); } }
@media (prefers-reduced-motion: reduce) {
  .nav .brand__mark, .brand:hover .brand__mark { animation: none; }
}

/* ===========================================================================
   Intro splash — recreates the animated logo (cell split → cross → hole → word)
   =========================================================================== */
.splash {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  background: var(--white);
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.splash.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.no-splash .splash { display: none; }
body.splash-lock { overflow: hidden; }
.splash__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.splash__mark { width: clamp(110px, 18vmin, 180px); height: clamp(110px, 18vmin, 180px); overflow: visible; }
.splash__word {
  font-size: clamp(2rem, 6vmin, 3.2rem); font-weight: 700; letter-spacing: 0.01em; color: var(--blue-2);
  font-variant-caps: small-caps;
  clip-path: inset(0 100% 0 0); opacity: 0;
  animation: spWord 0.7s var(--ease) 1.95s forwards;
}
.splash__skip {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft);
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line);
  opacity: 0; animation: spFadeIn 0.4s ease 1s forwards; transition: color 0.2s, border-color 0.2s;
}
.splash__skip:hover { color: var(--blue-2); border-color: var(--blue-1); }

.sp { transform-box: fill-box; transform-origin: center; }

/* vertical seed splits into top + bottom lobes (cell division) */
.sp-top    { animation: spTop 1.0s var(--ease) both; }
.sp-bot    { animation: spBot 1.0s var(--ease) both; }
.sp-varm   { animation: spVArm 1.0s var(--ease) both; }
/* horizontal lobes emerge, completing the cross */
.sp-left   { animation: spLeft 0.8s var(--ease) 0.62s both; }
.sp-right  { animation: spRight 0.8s var(--ease) 0.62s both; }
.sp-harm   { animation: spHArm 0.8s var(--ease) 0.62s both; }
/* centre knockout punches in */
.sp-hole   { animation: spHole 0.55s var(--ease) 1.42s both; }

@keyframes spTop {
  0%   { transform: translateY(26px) scale(0); }
  16%  { transform: translateY(26px) scale(0.5); }
  45%  { transform: translateY(26px) scale(0.92); }
  78%  { transform: translateY(-3px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}
@keyframes spBot {
  0%   { transform: translateY(-26px) scale(0); }
  16%  { transform: translateY(-26px) scale(0.5); }
  45%  { transform: translateY(-26px) scale(0.92); }
  78%  { transform: translateY(3px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}
@keyframes spVArm {
  0%, 42% { transform: scaleY(0); opacity: 0; }
  60%     { opacity: 1; }
  100%    { transform: scaleY(1); opacity: 1; }
}
@keyframes spLeft {
  0%   { transform: translateX(26px) scale(0); }
  55%  { transform: translateX(-3px) scale(1.03); }
  100% { transform: translateX(0) scale(1); }
}
@keyframes spRight {
  0%   { transform: translateX(-26px) scale(0); }
  55%  { transform: translateX(3px) scale(1.03); }
  100% { transform: translateX(0) scale(1); }
}
@keyframes spHArm {
  0%   { transform: scaleX(0); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: scaleX(1); opacity: 1; }
}
@keyframes spHole {
  0%   { transform: scale(0); }
  65%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}
@keyframes spWord {
  0%   { clip-path: inset(0 100% 0 0); opacity: 0; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}
@keyframes spFadeIn { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .splash { display: none; }
}

/* ===========================================================================
   Buttons
   =========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.96rem; letter-spacing: -0.01em;
  padding: 13px 24px; border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--primary {
  background: var(--white); color: var(--blue-2);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.16);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22); }
.section .btn--primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.section .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 30px 64px rgba(18, 10, 143, 0.42); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.08); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35); backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }

/* ===========================================================================
   Nav
   =========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(12, 9, 64, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  padding: 11px 0;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  color: rgba(255, 255, 255, 0.82); font-size: 0.94rem; font-weight: 500; position: relative;
  transition: color 0.2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--blue-glow); transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 10px 20px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================================================
   Hero
   =========================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--grad-blue); color: #fff; overflow: hidden;
  padding: 120px 0 80px;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero__glow {
  position: absolute; z-index: 0; width: 90vmax; height: 90vmax; right: -30vmax; top: -30vmax;
  background: radial-gradient(circle, rgba(110, 139, 255, 0.4) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 3; max-width: 880px; }
.eyebrow {
  display: inline-block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #bcc7ff;
  padding: 7px 14px; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 999px;
  background: rgba(255, 255, 255, 0.05); margin-bottom: 26px;
}
.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 24px;
}
.grad-text {
  background: linear-gradient(100deg, #ffffff 0%, #9db0ff 55%, #c4c7d4 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  /* extend the clip box below the baseline so descenders (y, p) + the full stop aren't cut */
  padding-bottom: 0.32em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.hero__lead {
  font-size: clamp(1.05rem, 1.8vw, 1.32rem); color: rgba(255, 255, 255, 0.84);
  max-width: 620px; margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero__mini { display: flex; flex-wrap: wrap; gap: 38px; }
.mini { display: flex; flex-direction: column; }
.mini strong { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; }
.mini span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.66); }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6); display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll span {
  width: 22px; height: 34px; border: 2px solid rgba(255, 255, 255, 0.4); border-radius: 12px; position: relative;
}
.hero__scroll span::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px; border-radius: 3px;
  background: #fff; transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ===========================================================================
   Bold stat band (nzyme-inspired)
   =========================================================================== */
.statband { background: var(--blue-2); color: #fff; padding: clamp(48px, 8vw, 90px) 0; }
.statband__inner { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(30px, 6vw, 80px); align-items: center; }
.statband__num .counter {
  display: block; font-size: clamp(4rem, 13vw, 9rem); font-weight: 800; line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #ffffff 0%, #8aa0ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.statband__line { font-size: clamp(1.2rem, 2.6vw, 1.9rem); font-weight: 500; letter-spacing: -0.01em; line-height: 1.35; }
.statband__line .muted { color: rgba(255, 255, 255, 0.55); }
.statband__line strong { color: #bcc7ff; font-weight: 700; }
.statband__subs { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.substat {
  flex: 1 1 150px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px; padding: 18px 20px;
}
.substat .counter { display: block; font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; letter-spacing: -0.03em; color: #fff; line-height: 1; }
.substat small { display: block; margin-top: 8px; font-size: 0.84rem; color: rgba(255, 255, 255, 0.65); }

/* ===========================================================================
   Sections
   =========================================================================== */
.section { padding: clamp(64px, 10vw, 130px) 0; position: relative; }
.section--tint { background: var(--paper); }
.section--dark { background: var(--grad-dark); color: #fff; overflow: hidden; }
.section__head { max-width: 760px; margin-bottom: clamp(36px, 6vw, 64px); }
.section__head--center { margin-inline: auto; text-align: center; }
.kicker {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue-1); margin-bottom: 16px;
}
.kicker--light { color: var(--blue-glow); }
.section__title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; }
.section__sub { margin-top: 18px; font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--text-soft); }
.section__sub--light { color: rgba(255, 255, 255, 0.78); }

/* ---- Stat grid ---- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card__num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; color: var(--blue-2); line-height: 1; margin-bottom: 14px; }
.stat-card p { font-size: 0.96rem; color: var(--text-soft); }

/* ===========================================================================
   Beam / device
   =========================================================================== */
.beam__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 80px); align-items: center; position: relative; z-index: 2; }
.ticklist { margin: 26px 0 32px; display: grid; gap: 14px; }
.ticklist li { position: relative; padding-left: 34px; color: rgba(255, 255, 255, 0.86); font-size: 1.04rem; }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-blue-soft);
  /* checkmark */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}
.beam__visual { display: flex; justify-content: center; }
.device { position: relative; width: min(380px, 80vw); aspect-ratio: 1; display: grid; place-items: center; }
.device__halo {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 139, 255, 0.5) 0%, transparent 62%);
  filter: blur(6px);
}
.device__band {
  position: absolute; inset: 18%; border-radius: 50%;
  background: conic-gradient(from 140deg, #3a54c4, #6e8bff, #1b119f, #3a54c4);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.35), 0 30px 70px rgba(18, 10, 143, 0.5);
  animation: spin 16s linear infinite;
  -webkit-mask: radial-gradient(circle, transparent 52%, #000 53%);
  mask: radial-gradient(circle, transparent 52%, #000 53%);
}
@keyframes spin { to { transform: rotate(360deg); } }
.device__mark { position: relative; width: 30%; filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4)); animation: float 6s var(--ease) infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.device__pulse {
  position: absolute; inset: 18%; border-radius: 50%; border: 1.5px solid rgba(138, 160, 255, 0.5);
  animation: pulse 3.4s var(--ease) infinite;
}
.device__pulse--2 { animation-delay: 1.1s; }
.device__pulse--3 { animation-delay: 2.2s; }
@keyframes pulse { 0% { transform: scale(0.85); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }

/* ===========================================================================
   Steps
   =========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: s; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step:hover::before { transform: scaleX(1); }
.step__no { font-size: 0.9rem; font-weight: 800; letter-spacing: 0.1em; color: var(--blue-1); opacity: 0.6; }
.step h3 { margin: 12px 0 10px; font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.step p { color: var(--text-soft); }

/* ===========================================================================
   Bento / benefits
   =========================================================================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento__item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.bento__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(50, 74, 178, 0.3); }
.bento__item h3 { font-size: 1.24rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.bento__item p { color: var(--text-soft); font-size: 0.98rem; }
.bento__item--accent { background: var(--grad-blue); color: #fff; border-color: transparent; box-shadow: var(--shadow-blue); }
.bento__item--accent h3 { font-size: 2rem; }
.bento__item--accent p { color: rgba(255, 255, 255, 0.85); }

/* ===========================================================================
   Evidence band
   =========================================================================== */
.evidence__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.evidence__item { padding: 20px; }
.evidence__num {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(120deg, #fff 0%, #8aa0ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 12px;
}
.evidence__item p { color: rgba(255, 255, 255, 0.7); font-size: 0.96rem; }

/* ===========================================================================
   Compare
   =========================================================================== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare__col { border-radius: var(--radius-lg); padding: 34px 32px; }
.compare__col--old { background: var(--paper); border: 1px solid var(--line); }
.compare__col--new { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.compare__label { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em; margin-bottom: 20px; }
.compare__col--old .compare__label { color: var(--text-soft); }
.compare__col ul { display: grid; gap: 14px; }
.compare__col li { position: relative; padding-left: 30px; }
.compare__col--old li { color: var(--text-soft); }
.compare__col--old li::before { content: "✕"; position: absolute; left: 0; color: #b4b8c8; font-weight: 700; }
.compare__col--new li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

/* ===========================================================================
   Markets
   =========================================================================== */
.markets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.market {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.market:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.market__flag { font-size: 1.8rem; }
.market h3 { margin: 12px 0 8px; font-size: 1.22rem; font-weight: 700; letter-spacing: -0.02em; }
.market p { color: var(--text-soft); font-size: 0.95rem; }
.market--lead { border-color: rgba(50, 74, 178, 0.35); box-shadow: 0 14px 40px rgba(50, 74, 178, 0.16); }
.market--lead h3 { color: var(--blue-2); }
.market--stat { background: var(--grad-dark); color: #fff; border-color: transparent; display: flex; flex-direction: column; justify-content: center; }
.market__big { font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px; color: #fff; }
.market--stat p { color: rgba(255, 255, 255, 0.78); }

/* ===========================================================================
   Timeline
   =========================================================================== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 13px; height: 2px; background: linear-gradient(90deg, var(--blue-1), var(--blue-2)); opacity: 0.25; }
.tl { position: relative; padding: 0 18px 0 0; }
.tl::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad-blue); box-shadow: 0 0 0 5px rgba(50, 74, 178, 0.14); z-index: 1;
}
.tl__year { display: block; margin-top: 40px; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--blue-2); }
.tl h3 { margin: 8px 0 8px; font-size: 1.16rem; font-weight: 700; letter-spacing: -0.01em; }
.tl p { color: var(--text-soft); font-size: 0.95rem; }
.tl--future::before { background: var(--white); border: 3px solid var(--blue-1); }

/* ===========================================================================
   News
   =========================================================================== */
.news { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.news-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px); box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.news-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-blue);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(50, 74, 178, 0.3); }
.news-card:hover::before { transform: scaleX(1); }
.news-card__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.news-card__tag {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-1); background: rgba(50, 74, 178, 0.1); padding: 6px 12px; border-radius: 999px;
}
.news-card__meta time { font-size: 0.86rem; font-weight: 600; color: var(--text-soft); }
.news-card h3 { font-size: clamp(1.25rem, 2.1vw, 1.55rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 12px; }
.news-card p { color: var(--text-soft); font-size: 1rem; }
.news-card a, .market a { color: var(--blue-1); font-weight: 600; text-decoration: none; }
.news-card a:hover, .market a:hover { color: var(--blue-2); text-decoration: underline; }

/* ===========================================================================
   Team
   =========================================================================== */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.person {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 36px;
  box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.person:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.person__link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 20px;
  font-weight: 600; font-size: 0.9rem; color: var(--blue-1); align-self: flex-start;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.person__link svg { color: #0a66c2; }
.person__link:hover { color: var(--blue-2); gap: 11px; }
.person__avatar {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-blue); color: #fff; font-weight: 800; font-size: 1.3rem; letter-spacing: 0.02em;
  margin-bottom: 20px; box-shadow: var(--shadow-blue);
}
.person h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.person__role { color: var(--blue-1); font-weight: 600; font-size: 0.95rem; margin-bottom: 14px; }
.person p { color: var(--text-soft); }

/* ===========================================================================
   CTA
   =========================================================================== */
.cta { position: relative; background: var(--grad-blue); color: #fff; overflow: hidden; padding: clamp(70px, 11vw, 140px) 0; }
.cta__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.9; }
.cta__inner { position: relative; z-index: 2; max-width: 740px; margin-inline: auto; text-align: center; }
.cta h2 { font-size: clamp(1.9rem, 4.4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; }
.cta p { margin-top: 18px; font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(255, 255, 255, 0.85); }
.cta__form { margin: 34px auto 0; display: flex; gap: 12px; max-width: 520px; flex-wrap: wrap; }
.cta__form input {
  flex: 1 1 240px; padding: 16px 20px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1); color: #fff; font-size: 1rem; backdrop-filter: blur(6px);
}
.cta__form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.cta__form input:focus { outline: 2px solid rgba(255, 255, 255, 0.6); outline-offset: 2px; }
.cta__form .hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; padding: 0; border: 0; opacity: 0; pointer-events: none; }
.cta__note { margin-top: 16px; font-weight: 600; color: #c7d2ff; }
.cta__alt { margin-top: 18px; font-size: 0.95rem; color: rgba(255, 255, 255, 0.75); }
.cta__alt a { text-decoration: underline; text-underline-offset: 3px; }

/* ===========================================================================
   Footer
   =========================================================================== */
.footer { background: var(--black); color: #fff; padding: 64px 0 34px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer__brand { max-width: 320px; }
.footer__brand p { margin-top: 16px; color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; }
.footer__links { display: grid; grid-template-columns: repeat(2, auto); gap: 12px 40px; }
.footer__links a { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; transition: color 0.2s; }
.footer__links a:hover { color: #fff; }
.footer__legal { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 26px; }
.footer__legal p { color: rgba(255, 255, 255, 0.45); font-size: 0.82rem; }
.footer__disc { max-width: 560px; }

/* ===========================================================================
   Reveal animation
   =========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }
.reveal:nth-child(6) { transition-delay: 0.3s; }

/* ===========================================================================
   Responsive
   =========================================================================== */
@media (max-width: 940px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 4px; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(12, 9, 64, 0.96); backdrop-filter: blur(16px); padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav.is-open .nav__links a { padding: 12px 0; font-size: 1.05rem; }
  .statband__inner { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .beam__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .evidence__grid { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .markets { grid-template-columns: repeat(2, 1fr); }
  .news { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 28px; }
  .timeline::before { left: 8px; top: 0; bottom: 0; right: auto; width: 2px; height: auto; }
  .tl { padding-left: 36px; }
  .tl::before { left: 0; }
  .tl__year { margin-top: 0; }
  .team { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .stat-grid, .bento, .evidence__grid, .markets { grid-template-columns: 1fr; }
  .hero__mini { gap: 24px; }
  .hero { padding-top: 110px; }
}
