/* ═══════════════════════════════════════════════════════════
   Aversity — Redesign
   Stripe-inspired: white, abstract, colorful where it matters
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg:           #ffffff;
  --bg-soft:      #f6f9fc;
  --bg-tint:      #fafbfc;
  --ink:          #0a2540;
  --ink-2:        #1a3a5c;
  --slate:        #425466;
  --muted:        #697386;
  --rule:         #e3e8ee;
  --rule-soft:    #eef2f7;

  --accent:       #635bff;
  --accent-2:     #00d4ff;
  --coral:        #ff6584;
  --orange:       #ff8e3c;
  --teal:         #00d4b5;
  --green:        #2dbb78;
  --gold:         #f5b73a;

  --grad-1: linear-gradient(135deg, #635bff 0%, #00d4ff 100%);
  --grad-2: linear-gradient(135deg, #ff6584 0%, #ff8e3c 100%);
  --grad-3: linear-gradient(135deg, #00d4b5 0%, #00b4ff 100%);
  --grad-hero: linear-gradient(180deg, rgba(10,37,64,0.55) 0%, rgba(10,37,64,0.75) 100%);

  --shadow-sm: 0 2px 4px rgba(10,37,64,.04), 0 1px 2px rgba(10,37,64,.06);
  --shadow-md: 0 8px 24px rgba(10,37,64,.06), 0 2px 6px rgba(10,37,64,.04);
  --shadow-lg: 0 20px 40px rgba(10,37,64,.08), 0 6px 16px rgba(10,37,64,.06);
  --shadow-glow: 0 8px 40px rgba(99,91,255,.18);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;

  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", "Roboto Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--ink); }
img, svg, video { display: block; max-width: 100%; }

/* ─── Header ──────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.header.scrolled {
  border-bottom-color: var(--rule);
  background: rgba(255,255,255,0.92);
}
.header.transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.header.transparent .nav a { color: #fff; }
.header.transparent .nav-cta { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.24); color: #fff; }
.header.transparent .nav-cta:hover { background: rgba(255,255,255,.22); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 32px;
  width: auto;
  display: block;
}
.logo .logo-light { display: none; }
.logo .logo-dark { display: block; }
.header.transparent .logo .logo-light { display: block; }
.header.transparent .logo .logo-dark { display: none; }
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  transition: background .15s ease, color .15s ease;
}
.nav a:hover { background: var(--bg-soft); color: var(--ink); }
.nav a.active { color: var(--accent); }
.header.transparent .nav a:hover { background: rgba(255,255,255,0.12); color: #fff; }
.header.transparent .nav a.active { color: #fff; }
.nav-cta {
  margin-left: 6px;
  padding: 9px 16px !important;
  background: var(--ink);
  color: #fff !important;
  border: 1px solid var(--ink);
  border-radius: 999px !important;
  font-size: 14px !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease !important;
}
.nav-cta:hover {
  background: var(--ink-2) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ─── Hero (video background) ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: -1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero-geo {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
}
.hero-geo svg { width: 100%; height: 100%; }
.hero-geo .ring { fill: none; stroke: #fff; stroke-width: 0.5; opacity: 0.5; }
.hero-geo .ring.slow { animation: spin 80s linear infinite; transform-origin: center; }
.hero-geo .ring.rev  { animation: spin 120s linear infinite reverse; transform-origin: center; }

@keyframes spin { to { transform: rotate(360deg); } }

.hero-inner {
  max-width: 980px;
  padding: 140px 32px 80px;
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}
.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,.72);
}
.hero-text {
  margin: 0 auto 40px;
  max-width: 680px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--ink); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); color: #fff; transform: translateY(-2px); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-2); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ─── Sections ────────────────────────────────────────────── */
section {
  position: relative;
}
.section {
  padding: 120px 32px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-soft { background: var(--bg-soft); }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.section-title {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink);
}
.section-desc {
  margin: 0 auto;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}
.section-head { text-align: center; margin-bottom: 64px; }
.section-head.left { text-align: left; }
.section-head.left .section-desc { margin-left: 0; }

/* ─── Stats strip ─────────────────────────────────────────── */
.stats-strip {
  margin: -80px auto 0;
  max-width: 1100px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 5;
  border: 1px solid var(--rule-soft);
}
.stat {
  text-align: center;
  padding: 8px 16px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--rule-soft);
}
.stat-value {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.stat-value.green { color: var(--green); }
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ─── Bento pillars ──────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bento-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.bento-card .idx {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 80px;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bento-card .idx::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--rule);
}
.bento-card .mark {
  position: absolute;
  top: 28px; right: 28px;
  width: 72px; height: 72px;
  opacity: 0.55;
  pointer-events: none;
}
.bento-card .mark svg { width: 100%; height: 100%; }
.bento-card .mark svg * { fill: none; stroke: var(--ink); stroke-width: 0.6; }
.bento-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.bento-card p {
  margin: 0;
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ─── Charts panel ───────────────────────────────────────── */
.charts-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: stretch;
}
.chart-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.chart-card.tinted {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}
.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.chart-title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.chart-sub {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}
.chart-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(99,91,255,.08);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* Donut */
.donut-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
}
.donut-holder {
  position: relative;
  width: 220px;
  height: 220px;
}
.donut-svg { width: 220px; height: 220px; display: block; }
.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
}
.donut-center .v {
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 4px;
}
.donut-center .l {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.donut-legend {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.donut-legend li {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  color: var(--slate);
}
.donut-legend .swatch {
  width: 12px; height: 12px;
  border-radius: 4px;
}
.donut-legend .pct {
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  font-weight: 600;
}

/* Bars */
.bars { display: flex; flex-direction: column; gap: 14px; }
.bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 80px;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}
.bar-row .name {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bar-row .name .tk {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.bar-track {
  height: 10px;
  background: var(--rule-soft);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.bar-fill {
  height: 100%;
  border-radius: 999px;
  width: 0;
  transition: width 1.2s cubic-bezier(.2,.8,.2,1);
}
.bar-row .pct {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  font-weight: 600;
}

/* ─── Holdings table (modern) ─────────────────────────────── */
.holdings-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.htable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.htable thead th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 18px 24px;
  background: var(--bg-tint);
  border-bottom: 1px solid var(--rule);
}
.htable tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--slate);
  vertical-align: middle;
}
.htable tbody tr:last-child td { border-bottom: none; }
.htable tbody tr { transition: background .15s ease; }
.htable tbody tr:hover { background: var(--bg-tint); }
.htable .num { color: var(--muted); font-variant-numeric: tabular-nums; font-size: 13px; }
.htable .co { color: var(--ink); font-weight: 600; }
.htable .tk {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  background: var(--bg-soft);
  border-radius: 4px;
  color: var(--muted);
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.htable .sector {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px;
  color: var(--slate);
}
.htable .sector .dot { width: 8px; height: 8px; border-radius: 50%; }
.htable .pct { font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 600; }
.htable .shares { font-variant-numeric: tabular-nums; color: var(--slate); }
.htable .barcell { width: 32%; }
.htable .barcell .bar-track { margin: 0; }

/* ─── Page header ─────────────────────────────────────────── */
.page-hero {
  padding: 160px 32px 140px;
  background: var(--bg-tint);
  position: relative;
  overflow: hidden;
}
.page-hero.page-hero--image {
  background-color: #0a2540;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 220px 32px 120px;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
}
.page-hero.page-hero--image::before,
.page-hero.page-hero--image::after { display: none; }
.page-hero.page-hero--image > .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.35) 0%, rgba(10,37,64,0.88) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero.page-hero--image .page-hero-inner { position: relative; z-index: 2; width: 100%; }
.page-hero.page-hero--image h1 { color: #fff; }
.page-hero.page-hero--image .lead { color: rgba(255,255,255,0.88); }
.page-hero.page-hero--image .crumb { color: rgba(255,255,255,0.75); }
.page-hero.page-hero--image .crumb a { color: rgba(255,255,255,0.75); }
.page-hero.page-hero--image .crumb a:hover { color: #fff; }
.page-hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,91,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: 10%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--ink); }
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--ink);
  max-width: 800px;
}
.page-hero .lead {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
  color: var(--slate);
  max-width: 640px;
}

/* ─── Tabs ────────────────────────────────────────────────── */
.tabs {
  display: inline-flex;
  background: #fff;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  gap: 2px;
}
.tab {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
}
.tab:hover { color: var(--ink); }
.tab.active {
  background: var(--ink);
  color: #fff;
}

/* ─── Private cards ───────────────────────────────────────── */
.private-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.private-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.private-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.private-card .pc-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  font-family: var(--font-mono);
}
.private-card .pc-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.private-card h3 {
  margin: 6px 0 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.private-card p {
  margin: 0 0 18px;
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.55;
  flex-grow: 1;
}
.private-card .pc-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.private-card .pc-meta span {
  font-size: 12px;
  background: var(--bg-soft);
  padding: 4px 9px;
  border-radius: 6px;
  color: var(--slate);
}
.private-card .pc-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.private-card .pc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .2s ease; }
.private-card:hover .pc-link svg { transform: translateX(3px); }

/* ─── CTA band ────────────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,91,255,.45) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -50%; left: 20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,.3) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}
.cta-band p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.55;
}
.cta-band .cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ─── Articles list ───────────────────────────────────────── */
.articles {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.article-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: padding .2s ease;
}
.article-row:hover { padding-left: 16px; }
.article-row .a-cat {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  background: rgba(99,91,255,.08);
  border-radius: 999px;
}
.article-row .a-title {
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.article-row .a-date { color: var(--muted); font-size: 14px; }
.article-row .a-arr {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.article-row .a-arr svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.article-row:hover .a-arr { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--rule);
  background: var(--bg-tint);
  padding: 40px 32px 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--muted);
}
.footer-disclaimer {
  margin: 0 0 24px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 920px;
}
.footer-disclaimer a { color: var(--slate); text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 2px; }
.footer-disclaimer a:hover { color: var(--ink); text-decoration-color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.footer-links {
  display: flex;
  gap: 6px;
}
.footer-links a {
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
}
.footer-links a:hover { color: var(--ink); background: var(--bg-soft); }

/* ─── Reveal on scroll (no-js safe) ───────────────────────── */
.reveal { transition: opacity .7s ease, transform .7s ease; }
html.has-js .reveal { opacity: 0; transform: translateY(24px); }
html.has-js .reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ─── Sector swatch colors ────────────────────────────────── */
.sw-tech       { background: #635bff; }
.sw-cd         { background: #ff6584; }
.sw-index      { background: #00b4ff; }
.sw-fin        { background: #f5b73a; }
.sw-cs         { background: #00d4b5; }
.sw-comm       { background: #ff8e3c; }
.sw-health     { background: #2dbb78; }
.sw-ind        { background: #697386; }

/* ─── Company page ────────────────────────────────────────── */
.company-hero {
  padding: 140px 32px 60px;
  background: var(--bg-tint);
  border-bottom: 1px solid var(--rule);
}
.company-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.company-top {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-top: 20px;
}
.company-mark {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 500;
  font-size: 24px;
  font-family: var(--font-mono);
  flex-shrink: 0;
}
.company-info { flex: 1; }
.company-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.company-info h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 4.5vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 700;
  color: var(--ink);
}
.company-tagline {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 760px;
}
.company-content { padding: 80px 32px; }
.company-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}
.company-body { font-size: 16.5px; line-height: 1.75; color: var(--slate); }
.company-body p { margin: 0 0 18px; }
.company-body ul { margin: 0 0 18px; padding-left: 22px; }
.company-body li { margin-bottom: 8px; }
.company-body strong { color: var(--ink); font-weight: 600; }
.company-sidebar {
  background: var(--bg-tint);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.sidebar-section { padding: 14px 0; }
.sidebar-section:first-child { padding-top: 0; }
.sidebar-section:last-child { padding-bottom: 0; }
.sidebar-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.sidebar-value {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.sidebar-divider {
  height: 1px;
  background: var(--rule);
}
.company-actions {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

/* ─── Back link ───────────────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 14px;
}
.back-link:hover { color: var(--ink); }
.back-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─── Articles list page ──────────────────────────────────── */
.year-divider {
  margin: 48px 0 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.year-divider .year-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.year-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 8px;
}
.filter-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-right: 8px;
}
.filter-btn {
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  transition: all .15s ease;
  font-family: inherit;
}
.filter-btn:hover { color: var(--ink); border-color: var(--ink); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.news-list { list-style: none; margin: 0; padding: 0; }
.news-item { border-bottom: 1px solid var(--rule); }
.news-item-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px 8px;
  text-decoration: none;
  color: inherit;
  transition: padding .2s ease;
}
.news-item-link:hover { padding-left: 16px; }
.news-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.news-item-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 9px;
  background: rgba(99,91,255,.08);
  border-radius: 999px;
}
.news-item-date { font-size: 13px; color: var(--muted); }
.news-item-title {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.2;
}
.news-item-excerpt {
  margin: 0;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
  max-width: 760px;
}
.news-item-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  padding: 10px;
  color: var(--ink);
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: all .2s ease;
}
.news-item-link:hover .news-item-arrow { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ─── Article (single) ────────────────────────────────────── */
.article-page { max-width: 760px; margin: 0 auto; padding: 140px 32px 80px; }
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 18px;
}
.article-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 10px;
  background: rgba(99,91,255,.08);
  border-radius: 999px;
}
.article-date { font-size: 13.5px; color: var(--muted); }
.article-page h1 {
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--ink);
  font-weight: 700;
}
.article-subtitle {
  font-size: 19px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 32px;
}
.article-rule { border: 0; border-top: 1px solid var(--rule); margin: 32px 0; }
.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--slate);
}
.article-body p { margin: 0 0 22px; }
.article-body h2 {
  margin: 56px 0 18px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
}
.article-body h3 {
  margin: 36px 0 12px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 3px; }
.article-body a:hover { text-decoration-color: var(--accent); }
.article-body blockquote {
  margin: 36px 0;
  padding: 24px 28px;
  background: var(--bg-tint);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.article-body blockquote p { margin: 0; }
.article-body figure { margin: 36px 0; }
.article-body figure svg { width: 100%; display: block; border-radius: 12px; border: 1px solid var(--rule); background: var(--bg-tint); }
.article-body figcaption { margin-top: 12px; font-size: 13.5px; color: var(--muted); line-height: 1.5; text-align: center; }
.article-body hr { border: 0; border-top: 1px solid var(--rule); margin: 40px 0; }
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.article-tag {
  font-size: 12.5px;
  padding: 6px 12px;
  background: var(--bg-tint);
  border-radius: 999px;
  color: var(--slate);
}

/* ─── About page ──────────────────────────────────────────── */
.about-mission { padding: 80px 32px; }
.about-mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.about-mission h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.about-mission p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0 0 18px;
}
.about-photos {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-tint);
  aspect-ratio: 3 / 4;
}
.about-photo--wide { aspect-ratio: 4 / 3; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.about-values { padding: 80px 32px; background: var(--bg-tint); }
.about-values-inner { max-width: 1200px; margin: 0 auto; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about-value {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.about-value-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-value-num::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--rule);
}
.about-value h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.about-value p {
  margin: 0;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}
.about-numbers { padding: 80px 32px; }
.about-numbers-inner { max-width: 1200px; margin: 0 auto; }
.about-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}
.about-number-value {
  display: block;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 10px;
}
.about-number-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.about-team { padding: 80px 32px; background: var(--bg-tint); }
.about-team-inner { max-width: 1200px; margin: 0 auto; }
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.about-member {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.about-member:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.about-member-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--bg-tint);
}
.about-member-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-member h3 { margin: 0 0 4px; font-size: 18px; color: var(--ink); font-weight: 600; letter-spacing: -0.02em; }
.about-member-role { margin: 0 0 12px; font-size: 13px; color: var(--accent); font-weight: 500; }
.about-member-bio { margin: 0 0 16px; font-size: 14.5px; color: var(--slate); line-height: 1.55; }
.about-member-social { display: flex; gap: 8px; }
.about-member-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  color: var(--muted);
  transition: all .15s ease;
}
.about-member-social a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.about-member-social svg { width: 14px; height: 14px; fill: currentColor; }

/* ─── Contact page ────────────────────────────────────────── */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-block-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}
.contact-item { margin-bottom: 28px; }
.contact-item-title {
  margin: 0 0 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
}
.contact-item-link {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.contact-item-link:hover { color: var(--accent); }
.contact-item-text { margin: 0; font-size: 16px; color: var(--slate); line-height: 1.6; }

.map-section { padding: 0 32px; }
.map-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
.map-inner iframe { display: block; width: 100%; height: 480px; border: 0; }

.hours-section { padding: 80px 32px; background: var(--bg-tint); }
.hours-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.hours-grid h2 { margin: 12px 0 0; font-size: 28px; letter-spacing: -0.025em; color: var(--ink); font-weight: 600; }
.hours-grid p { margin: 12px 0 0; color: var(--slate); }
.hours-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.hours-table tr:not(:last-child) { border-bottom: 1px solid var(--rule); }
.hours-table td { padding: 14px 20px; font-size: 14.5px; color: var(--slate); }
.hours-table td:first-child { font-weight: 500; color: var(--ink); }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours-closed { color: var(--muted); }

/* ─── Disclaimer page ─────────────────────────────────────── */
.disclaimer-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}
.disclaimer-section { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--rule); }
.disclaimer-section:last-child { border-bottom: 0; padding-bottom: 0; }
.disclaimer-section h2 { margin: 0 0 14px; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.disclaimer-section p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.7; color: var(--slate); }
.disclaimer-section p:last-child { margin-bottom: 0; }
.disclaimer-updated { margin-top: 24px !important; font-size: 13px !important; color: var(--muted) !important; font-style: italic; }

/* ─── Responsive additions ────────────────────────────────── */
@media (max-width: 980px) {
  .company-grid, .about-mission-inner, .contact-grid, .hours-grid, .charts-grid { grid-template-columns: 1fr; }
  .about-photos { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 16 / 9; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-team-grid { grid-template-columns: 1fr; }
  .company-sidebar { position: static; }
  .company-top { flex-direction: column; gap: 18px; }
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .header-inner { padding: 14px 20px; }
  .nav { gap: 2px; }
  .nav a { padding: 8px 10px; font-size: 13.5px; }
  .nav-cta { display: none; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 16px 0; padding: 28px 16px; }
  .stat + .stat::before { display: none; }
  .bento { grid-template-columns: 1fr; }
  .charts-grid { grid-template-columns: 1fr; }
  .donut-wrap { grid-template-columns: 1fr; justify-items: center; }
  .private-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 40px 28px; }
  .cta-band .cta-actions { justify-content: flex-start; }
  .section { padding: 80px 20px; }
  .page-hero { padding: 120px 20px 60px; }
  .htable thead th, .htable tbody td { padding: 12px 14px; }
  .htable .barcell { display: none; }
  .article-row { grid-template-columns: 1fr auto; }
  .article-row .a-cat, .article-row .a-arr { display: none; }
}
