/* =========================================================
   VFX Wealth — Global Stylesheet
   Ivory private-bank theme. Apple-style motion. UK English.
   ========================================================= */

:root {
  /* Palette — ivory */
  --ivory-100: #FBF8F1;
  --ivory-200: #F5F0E6;
  --ivory-300: #EDE5D4;
  --paper:     #FDFBF6;
  --ink:       #141414;
  --ink-soft:  #2A2722;
  --muted:     #6A655B;
  --muted-2:   #928C80;
  --line:      rgba(20, 20, 20, 0.08);
  --line-2:    rgba(20, 20, 20, 0.14);

  /* Brand */
  --accent:    #0CCC52;
  --accent-d:  #07A543;
  --accent-l:  #51FA7B;

  /* Type */
  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;

  /* Motion */
  --ease-apple: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-soft:  cubic-bezier(0.25, 0.1, 0.25, 1);

  /* Layout */
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 14px;
  --radius-lg: 22px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ivory-100);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; }
p { margin: 0; }

::selection { background: rgba(12, 204, 82, 0.22); color: var(--ink); }

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }
.grain::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(20,20,20,0.025) 1px, transparent 1px);
  background-size: 3px 3px; opacity: 0.6;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background 0.5s var(--ease-apple), border-color 0.5s var(--ease-apple),
              backdrop-filter 0.5s var(--ease-apple), padding 0.35s var(--ease-apple);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(251, 248, 241, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; color: var(--ink); }
.nav__brand svg { height: 28px; width: auto; }
.nav__links { display: flex; gap: 36px; align-items: center; }
.nav__link {
  font-size: 14px; font-weight: 500; letter-spacing: 0.005em;
  color: var(--ink-soft); position: relative; padding: 6px 0;
  transition: color 0.3s var(--ease-apple);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-apple);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  padding: 10px 18px; border-radius: 999px;
  background: var(--ink); color: var(--ivory-100);
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.01em;
  transition: background 0.3s var(--ease-apple), transform 0.35s var(--ease-apple);
}
.nav__cta:hover { background: var(--accent-d); transform: translateY(-1px); }
.nav__toggle { display: none; }

@media (max-width: 900px) {
  .nav__links { display: none; position: absolute; inset: 100% 0 auto 0; padding: 28px var(--gutter);
    flex-direction: column; align-items: flex-start; gap: 18px;
    background: rgba(251,248,241,0.96); border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  }
  .nav__links.is-open { display: flex; }
  .nav__toggle { display: inline-flex; width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line-2);
    align-items: center; justify-content: center; background: transparent;
  }
  .nav__toggle span { width: 16px; height: 1.2px; background: var(--ink); position: relative; }
  .nav__toggle span::before, .nav__toggle span::after {
    content: ""; position: absolute; left: 0; width: 16px; height: 1.2px; background: var(--ink);
  }
  .nav__toggle span::before { top: -5px; }
  .nav__toggle span::after { top: 5px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease-apple), background 0.35s var(--ease-apple),
              color 0.35s var(--ease-apple), border-color 0.35s var(--ease-apple),
              box-shadow 0.35s var(--ease-apple);
}
.btn--primary {
  background: var(--ink); color: var(--ivory-100);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 10px 30px -12px rgba(20,20,20,0.25);
}
.btn--primary:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 16px 40px -14px rgba(7,165,67,0.45); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn__arrow {
  width: 14px; height: 14px; transition: transform 0.5s var(--ease-apple);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 22px; height: 1px; background: var(--muted);
}
.display-1 { font-size: clamp(44px, 7.2vw, 104px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 300; }
.display-2 { font-size: clamp(36px, 5vw, 72px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 300; }
.display-3 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 400; }
.italic-accent { font-style: italic; color: var(--ink-soft); }
.lede {
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; color: var(--muted); max-width: 58ch;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 200px 0 80px; overflow: hidden;
  background: linear-gradient(180deg, var(--ivory-100) 0%, var(--ivory-200) 100%);
}
.hero__orb {
  position: absolute; width: 1100px; height: 1100px; border-radius: 50%;
  right: -300px; top: -320px;
  background: radial-gradient(circle at 30% 30%, rgba(81, 250, 123, 0.22), rgba(81, 250, 123, 0) 60%);
  filter: blur(30px); pointer-events: none;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.hero__orb--2 {
  width: 700px; height: 700px;
  left: -220px; bottom: -260px;
  background: radial-gradient(circle at 30% 30%, rgba(12, 204, 82, 0.12), rgba(12, 204, 82, 0) 60%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero__meta-pill {
  padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line-2);
  font-size: 12.5px; color: var(--ink-soft); background: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero h1 { max-width: 16ch; }
.hero__sub {
  margin-top: 34px; max-width: 56ch; color: var(--muted);
  font-size: clamp(17px, 1.3vw, 20px); line-height: 1.6;
}
.hero__cta { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }
.hero__foot {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 32px;
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  color: var(--muted-2); font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase;
  z-index: 2;
}
.hero__scroll { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); }
.hero__scroll::after {
  content: ""; display: inline-block; width: 24px; height: 1px; background: var(--muted);
  animation: scrollHint 1.8s var(--ease-apple) infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* ---------- Section headers ---------- */
.section__head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: end;
  margin-bottom: clamp(48px, 7vw, 96px);
}
.section__head h2 { max-width: 16ch; }
.section__head .lede { justify-self: end; }
@media (max-width: 860px) {
  .section__head { grid-template-columns: 1fr; gap: 20px; }
  .section__head .lede { justify-self: start; }
}

/* ---------- Intro / rule ---------- */
.rule {
  height: 1px; background: linear-gradient(90deg, transparent, var(--line-2) 20%, var(--line-2) 80%, transparent);
  margin: 0;
}
.kicker {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}

/* ---------- Pillar cards ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  padding: 36px 32px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.6s var(--ease-apple), box-shadow 0.6s var(--ease-apple),
              border-color 0.4s var(--ease-apple);
  min-height: 440px;
  display: flex; flex-direction: column;
}
.pillar::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%),
              rgba(12, 204, 82, 0.08), transparent 40%);
  opacity: 0; transition: opacity 0.6s var(--ease-apple);
  pointer-events: none;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(20,20,20,0.18), 0 1px 0 rgba(255,255,255,0.6) inset;
  border-color: var(--line-2);
}
.pillar:hover::before { opacity: 1; }
.pillar__tag {
  font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.pillar__num {
  position: absolute; top: 24px; right: 28px; font-family: var(--serif);
  font-size: 14px; color: var(--muted-2); font-style: italic;
}
.pillar h3 {
  font-size: clamp(26px, 2.4vw, 36px); margin-top: 14px; line-height: 1.12;
}
.pillar__desc { color: var(--muted); margin-top: 16px; font-size: 15.5px; line-height: 1.6; }
.pillar__list { list-style: none; padding: 0; margin: 24px 0 0; }
.pillar__list li {
  font-size: 14.5px; color: var(--ink-soft);
  padding: 10px 0; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 14px;
}
.pillar__list li:last-child { border-bottom: 1px solid var(--line); }
.pillar__list li span:last-child { color: var(--muted); font-variant-numeric: tabular-nums; }
.pillar__link {
  margin-top: auto; padding-top: 26px; display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-size: 14px; font-weight: 500;
  transition: gap 0.45s var(--ease-apple);
}
.pillar__link:hover { gap: 14px; }
.pillar__link span { border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

/* ---------- Feature / Platform split ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 980px) { .split { grid-template-columns: 1fr; } }

.mock {
  position: relative; aspect-ratio: 5 / 4;
  background: linear-gradient(145deg, #181A1B 0%, #0b0c0d 100%);
  border-radius: 28px;
  box-shadow: 0 40px 80px -30px rgba(20,20,20,0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden; padding: 28px;
  color: #E8E8EA; font-size: 12.5px;
}
.mock__bar {
  display: flex; gap: 6px; margin-bottom: 18px;
}
.mock__bar span {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.12);
}
.mock__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  font-family: var(--sans);
}
.mock__card {
  padding: 14px; border-radius: 12px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.mock__card--wide { grid-column: span 2; }
.mock__label { color: rgba(255,255,255,0.5); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; }
.mock__val { font-family: var(--serif); font-size: 22px; margin-top: 8px; font-weight: 400; letter-spacing: -0.01em; }
.mock__val--green { color: var(--accent-l); }
.mock__line {
  height: 50px; margin-top: 14px; background:
    linear-gradient(180deg, rgba(81,250,123,0.14), transparent),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' preserveAspectRatio='none'><path d='M0,40 C20,30 30,45 50,30 C70,15 90,25 110,18 C135,8 160,22 200,5' fill='none' stroke='%2351FA7B' stroke-width='1.2'/></svg>") no-repeat;
  background-size: 100% 100%;
  border-radius: 8px;
}
.mock__rows { margin-top: 10px; display: grid; gap: 6px; }
.mock__row { display: flex; justify-content: space-between; padding: 6px 0; border-top: 1px solid rgba(255,255,255,0.06); font-size: 11.5px; }
.mock__row:first-child { border-top: 0; }
.mock__row span:last-child { color: rgba(255,255,255,0.65); font-variant-numeric: tabular-nums; }

/* ---------- Info grid / facts ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 900px) { .facts { grid-template-columns: repeat(2, 1fr); } }
.fact { padding: 24px 0; border-top: 1px solid var(--line-2); }
.fact__k { font-family: var(--serif); font-size: clamp(34px, 3.2vw, 48px); letter-spacing: -0.02em; font-weight: 400; }
.fact__l { color: var(--muted); font-size: 13.5px; margin-top: 8px; max-width: 30ch; }

/* ---------- Partners strip ---------- */
.partners {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 28px;
  padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.partners__label { font-size: 13px; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; }
.partners__items { display: flex; gap: clamp(24px, 4vw, 64px); flex-wrap: wrap; align-items: center; }
.partners__item {
  font-family: var(--serif); font-size: 18px; color: var(--ink-soft); letter-spacing: -0.01em;
  opacity: 0.75; transition: opacity 0.4s var(--ease-apple);
}
.partners__item:hover { opacity: 1; }

/* ---------- Process / Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 24px 0; border-top: 1px solid var(--line-2); }
.step__n { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 16px; }
.step h4 { font-family: var(--serif); font-size: 22px; margin: 10px 0 8px; letter-spacing: -0.02em; font-weight: 400; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink); color: var(--ivory-100); border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 100px) clamp(32px, 5vw, 72px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; right: -200px; top: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(81,250,123,0.18), transparent 60%); filter: blur(20px);
}
.cta-banner h2 { color: var(--ivory-100); max-width: 18ch; }
.cta-banner p { color: rgba(251,248,241,0.7); max-width: 40ch; }
.cta-banner .btn--primary {
  background: var(--ivory-100); color: var(--ink);
}
.cta-banner .btn--primary:hover { background: var(--accent-l); color: var(--ink); }
@media (max-width: 860px) { .cta-banner { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer {
  background: var(--ivory-200);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand svg { height: 26px; color: var(--ink); margin-bottom: 18px; }
.footer__brand p { max-width: 36ch; font-size: 13.5px; }
.footer__col h5 {
  font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--ink); margin: 0 0 18px;
}
.footer__col a {
  display: block; padding: 4px 0; font-size: 14px; color: var(--ink-soft);
  transition: color 0.3s var(--ease-apple);
}
.footer__col a:hover { color: var(--accent-d); }

.footer__legal {
  padding-top: 28px; border-top: 1px solid var(--line-2);
  display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: space-between;
  font-size: 12.5px; color: var(--muted-2);
}
.disclosure {
  background: rgba(20,20,20,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 12.5px; line-height: 1.6; color: var(--muted);
  margin-top: 28px;
}
.disclosure strong { color: var(--ink-soft); font-weight: 500; }

/* ---------- Forms ---------- */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px;
}
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field label {
  font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 12px; padding: 14px 16px;
  transition: border-color 0.3s var(--ease-apple), box-shadow 0.3s var(--ease-apple);
  font-size: 15px;
}
.field textarea { min-height: 140px; resize: vertical; font-family: var(--sans); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(20,20,20,0.05);
}

/* ---------- Page header (inner pages) ---------- */
.page-head {
  padding: 170px 0 80px;
  background: linear-gradient(180deg, var(--ivory-200) 0%, var(--ivory-100) 100%);
  position: relative; overflow: hidden;
}
.page-head::after {
  content: ""; position: absolute; right: -200px; top: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle at 30% 30%, rgba(81,250,123,0.14), transparent 60%);
  filter: blur(20px); pointer-events: none;
}
.page-head__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: end; }
@media (max-width: 860px) { .page-head__inner { grid-template-columns: 1fr; } }
.page-head h1 { max-width: 16ch; }
.breadcrumb {
  display: flex; gap: 10px; align-items: center; font-size: 12.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px;
}
.breadcrumb a { color: var(--muted); border-bottom: 1px solid transparent; padding-bottom: 1px; transition: border-color 0.3s; }
.breadcrumb a:hover { border-bottom-color: var(--muted); }

/* ---------- Prose (body content on pillar pages) ---------- */
.prose { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(32px, 6vw, 96px); }
@media (max-width: 900px) { .prose { grid-template-columns: 1fr; } }
.prose__aside {
  position: sticky; top: 120px; align-self: start;
  font-size: 13px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase;
}
.prose__aside a { display: block; padding: 8px 0; color: var(--muted); border-top: 1px solid var(--line); }
.prose__aside a:first-child { border-top: 0; }
.prose__aside a:hover { color: var(--ink); }
.prose__body h3 {
  font-family: var(--serif); font-size: clamp(26px, 2.5vw, 38px); letter-spacing: -0.02em;
  margin: 60px 0 18px; font-weight: 400;
}
.prose__body h3:first-child { margin-top: 0; }
.prose__body p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 18px; max-width: 62ch; }
.prose__body ul { padding-left: 0; margin: 16px 0 22px; list-style: none; }
.prose__body ul li {
  font-size: 16px; color: var(--ink-soft); padding: 10px 0; border-top: 1px solid var(--line);
  display: flex; gap: 14px;
}
.prose__body ul li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 11px; flex-shrink: 0;
}

/* ---------- Tables (feature rows) ---------- */
.feature-rows { border-top: 1px solid var(--line-2); }
.feature-row {
  padding: 26px 0; display: grid; grid-template-columns: 170px 1fr 200px; gap: 32px; align-items: start;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 780px) { .feature-row { grid-template-columns: 1fr; gap: 8px; } }
.feature-row__k { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 15px; }
.feature-row__v { font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; }
.feature-row__tag {
  justify-self: end; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-2);
  font-size: 12px; color: var(--ink-soft);
}
@media (max-width: 780px) { .feature-row__tag { justify-self: start; } }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 1s var(--ease-apple), transform 1s var(--ease-apple);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--stagger > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.9s var(--ease-apple), transform 0.9s var(--ease-apple);
}
.reveal--stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal--stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal--stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal--stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal--stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal--stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal--stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal, .reveal--stagger > * { opacity: 1; transform: none; }
}

/* =========================================================
   Hero v2 — PE/VC fund treatment
   Prominent brand lock-up, oversized watermark, AUM stats
   ========================================================= */

/* More room for the new hero */
.hero { padding-top: 170px; padding-bottom: 48px; }

/* Big brand lock-up at top of hero */
.hero__brand {
  display: flex; align-items: center; gap: 28px;
  margin-bottom: clamp(56px, 7vw, 88px);
}
.hero__brand img { height: clamp(48px, 6vw, 84px); width: auto; color: var(--ink); }
.hero__brand__divider {
  flex: 1; max-width: 320px; height: 1px; background: var(--line-2);
}
.hero__brand__tag {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
@media (max-width: 720px) {
  .hero__brand__divider, .hero__brand__tag { display: none; }
}

/* Bigger nav mark */
.nav__brand img { height: 32px; transition: height 0.35s var(--ease-apple); }
.nav.is-scrolled .nav__brand img { height: 26px; }

/* Oversized watermark triangle, Apple-like */
.hero__watermark {
  position: absolute; pointer-events: none; z-index: 0;
  right: -12%; top: 18%;
  width: clamp(520px, 60vw, 820px);
  opacity: 0.055;
  filter: blur(0.4px);
  transform: translate3d(0,0,0);
  will-change: transform;
}
.hero__watermark svg { width: 100%; height: auto; }

/* AUM stats strip */
.hero__stats {
  margin-top: clamp(56px, 8vw, 88px);
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid var(--line-2);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  position: relative; z-index: 2;
}
.hero__stat { display: flex; flex-direction: column; gap: 10px; }
.hero__stat__k {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1; letter-spacing: -0.035em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.hero__stat__k sup {
  font-size: 0.5em; vertical-align: super; font-style: italic;
  color: var(--muted); letter-spacing: 0; margin-left: 2px;
}
.hero__stat__l {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.hero__stat__sub {
  font-size: 12.5px; color: var(--muted-2); margin-top: 2px;
}
@media (max-width: 780px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
}

/* Tighten old hero foot; keep only the scroll hint, remove bottom bar clutter */
.hero__foot { display: none; }

/* Subtle float animation on watermark beyond scroll parallax */
@keyframes hero-float {
  0%, 100% { transform: translate3d(0,0,0); }
  50%      { transform: translate3d(0,-8px,0); }
}
.hero__watermark { animation: hero-float 9s var(--ease-apple) infinite; }

/* =========================================================
   High-end fintech motion layer
   ========================================================= */

/* Scroll progress rail */
.progress-rail {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 101; pointer-events: none; background: transparent;
}
.progress-rail__bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent-d), var(--accent-l));
  box-shadow: 0 0 12px rgba(12,204,82,0.45);
  transform-origin: left center;
  will-change: width;
  transition: width 0.1s linear;
}

/* Count-up: keep tabular so the width doesn't jitter as digits change */
.count { font-variant-numeric: tabular-nums; }

/* Text-mask reveal — per-line */
.mask-lines { display: block; }
.mask-lines .line {
  display: block; overflow: hidden; line-height: inherit;
}
.mask-lines .line__inner {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1.1s var(--ease-apple);
  will-change: transform;
}
.mask-lines.is-visible .line__inner { transform: translateY(0); }
.mask-lines.is-visible .line:nth-child(1) .line__inner { transition-delay: 0ms; }
.mask-lines.is-visible .line:nth-child(2) .line__inner { transition-delay: 120ms; }
.mask-lines.is-visible .line:nth-child(3) .line__inner { transition-delay: 220ms; }
.mask-lines.is-visible .line:nth-child(4) .line__inner { transition-delay: 300ms; }

/* Chart draw-on */
.spark {
  width: 100%; height: 56px; margin-top: 14px; display: block;
  border-radius: 8px; overflow: visible;
}
.spark__area {
  fill: url(#sparkFill);
  opacity: 0; transition: opacity 1s var(--ease-apple) 0.4s;
}
.spark__line {
  fill: none; stroke: #51FA7B; stroke-width: 1.6; stroke-linecap: round;
  stroke-dasharray: 600; stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.8s var(--ease-apple);
}
.spark__dot {
  fill: #51FA7B; opacity: 0; transform-origin: center;
  transition: opacity 0.6s var(--ease-apple) 1.4s;
  filter: drop-shadow(0 0 6px rgba(81,250,123,0.8));
}
.spark.is-visible .spark__line { stroke-dashoffset: 0; }
.spark.is-visible .spark__area { opacity: 1; }
.spark.is-visible .spark__dot { opacity: 1; animation: sparkPulse 2.2s var(--ease-apple) 1.6s infinite; }
@keyframes sparkPulse {
  0%, 100% { r: 3; filter: drop-shadow(0 0 4px rgba(81,250,123,0.6)); }
  50%      { r: 4; filter: drop-shadow(0 0 10px rgba(81,250,123,1)); }
}

/* Marquee for partners row */
.marquee {
  overflow: hidden; position: relative; flex: 1; min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: inline-flex; gap: clamp(24px, 4vw, 64px); align-items: center;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
}
.partners:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Magnetic CTA — inner element does the offset so the hit-area stays put */
.btn--primary { position: relative; }
.btn--primary .btn__mag { display: contents; }
.magnetic { will-change: transform; transition: transform 0.4s var(--ease-apple); }

/* Pillar 3D tilt: composes with the existing gradient hover */
.pillar {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.pillar__tilt {
  transform: translate3d(0,0,0) rotateX(0deg) rotateY(0deg);
  transition: transform 0.6s var(--ease-apple);
  will-change: transform;
}
.pillar:hover .pillar__tilt { transition-duration: 0.12s; }
.pillar > * { position: relative; z-index: 2; }

/* Spring-y nav underline polish */
.nav__link::after {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Orb breathing */
@keyframes orbBreathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.72; }
}
.hero__orb     { animation: orbBreathe 11s var(--ease-apple) infinite; }
.hero__orb--2  { animation-delay: -4s; }

/* Mock live pulse dot */
.mock__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.mock__live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #51FA7B; box-shadow: 0 0 8px rgba(81,250,123,0.8);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}

/* Reduce-motion guard for new animations */
@media (prefers-reduced-motion: reduce) {
  .progress-rail__bar { transition: none; }
  .mask-lines .line__inner { transform: none !important; transition: none !important; }
  .spark__line { stroke-dashoffset: 0 !important; transition: none !important; }
  .spark__area, .spark__dot { opacity: 1 !important; transition: none !important; }
  .marquee__track { animation: none !important; }
  .hero__orb, .hero__orb--2 { animation: none !important; }
  .mock__live::before { animation: none !important; }
}

/* =========================================================
   FCMA SPV — page-scoped theme (fixed.html)
   Burgundy on warm ivory. Editorial, corporate, glossy.
   ========================================================= */

body.page-fcma {
  --accent:    #6B1939;
  --accent-d:  #4E0F28;
  --accent-l:  #8C2C4F;
  --ivory-100: #FDF8EE;
  --ivory-200: #F6EFE1;
  --ivory-300: #EDE3CE;
  --paper:     #FFFDF6;
  --ink:       #17171A;
  --line:      rgba(23, 23, 26, 0.08);
  --line-2:    rgba(23, 23, 26, 0.14);

  /* FCMA brand tokens */
  --fcma-wine:   #6B1939;
  --fcma-wine-d: #4E0F28;
  --fcma-grey:   #7A7C80;
}

/* Nav cta styled in burgundy on this page */
body.page-fcma .nav__cta:hover { background: var(--fcma-wine-d); }
body.page-fcma .btn--primary:hover { background: var(--fcma-wine-d); box-shadow: 0 16px 40px -14px rgba(107,25,57,0.45); }
body.page-fcma ::selection { background: rgba(107, 25, 57, 0.18); color: var(--ink); }

/* Page-head tinted with burgundy wash */
body.page-fcma .page-head {
  background:
    radial-gradient(800px 500px at 85% -10%, rgba(107,25,57,0.10), transparent 60%),
    linear-gradient(180deg, var(--ivory-200) 0%, var(--ivory-100) 100%);
}
body.page-fcma .page-head::after {
  background: radial-gradient(circle at 30% 30%, rgba(140,44,79,0.16), transparent 60%);
}

/* FCMA co-brand lock-up */
.fcma-cobrand {
  display: flex; align-items: center; gap: clamp(24px, 3vw, 44px);
  margin-bottom: clamp(36px, 5vw, 64px);
}
.fcma-cobrand__vfx img { height: clamp(34px, 3.2vw, 52px); width: auto; color: var(--ink); display: block; }
.fcma-cobrand__x {
  font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.4vw, 34px);
  color: var(--muted-2); font-weight: 300;
}
.fcma-cobrand__fcma img { height: clamp(54px, 6vw, 88px); width: auto; display: block; }

/* Chevron watermark on fixed page (replaces green triangle watermark) */
body.page-fcma .hero__watermark { display: none; }
.fcma-watermark {
  position: absolute; pointer-events: none; z-index: 0;
  right: -4%; top: 24%;
  width: clamp(420px, 48vw, 680px);
  color: var(--fcma-wine);
  opacity: 0.06;
  animation: hero-float 11s var(--ease-apple) infinite;
}
.fcma-watermark svg { width: 100%; height: auto; }

/* Chevron divider row */
.chev-divider {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: clamp(56px, 7vw, 88px) 0;
  color: var(--fcma-wine); opacity: 0.8;
}
.chev-divider__rule {
  flex: 1; max-width: 220px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,25,57,0.35), transparent);
}
.chev-divider svg { width: 28px; height: auto; color: var(--fcma-wine); }

/* FCMA brand showcase */
.fcma-showcase {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--ivory-100) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(56px, 8vw, 120px) clamp(32px, 5vw, 80px);
  box-shadow: 0 40px 100px -50px rgba(23,23,26,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
}
.fcma-showcase::before {
  content: ""; position: absolute; right: -10%; top: -40%; width: 80%; height: 140%;
  background: radial-gradient(circle at 40% 40%, rgba(107,25,57,0.08), transparent 60%);
  pointer-events: none;
}
.fcma-showcase::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,25,57,0.4), transparent);
}
.fcma-showcase__inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 900px) { .fcma-showcase__inner { grid-template-columns: 1fr; } }
.fcma-showcase__logo img { width: 100%; max-width: 560px; height: auto; }
.fcma-showcase__label {
  font-size: 11.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fcma-grey); font-weight: 500; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.fcma-showcase__label::before {
  content: ""; width: 22px; height: 1px; background: var(--fcma-wine);
}
.fcma-showcase h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px); line-height: 1.12;
  letter-spacing: -0.025em; font-weight: 400; margin-bottom: 20px;
}
.fcma-showcase p {
  font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 14px; max-width: 48ch;
}
.fcma-showcase__badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px;
}
.fcma-badge {
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(107,25,57,0.22);
  background: rgba(107,25,57,0.04);
  font-size: 12.5px; color: var(--fcma-wine);
  letter-spacing: 0.05em;
}

/* Drop-cap paragraph */
body.page-fcma .prose__body h3:first-child + p::first-letter {
  font-family: var(--serif);
  font-size: 4.4em; line-height: 0.9;
  float: left; padding: 6px 14px 0 0;
  color: var(--fcma-wine); font-weight: 400;
  font-style: normal;
}

/* Prose + feature-row accents */
body.page-fcma .prose__body ul li::before { background: var(--fcma-wine); }
body.page-fcma .prose__aside a:hover      { color: var(--fcma-wine); }
body.page-fcma .feature-row__tag {
  color: var(--fcma-wine);
  border-color: rgba(107,25,57,0.25);
  background: rgba(107,25,57,0.04);
}
body.page-fcma .feature-row__k { color: var(--fcma-wine); }

/* SPV structure diagram */
.spv-diagram {
  position: relative;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -50px rgba(23,23,26,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
  overflow: hidden;
}
.spv-diagram::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at 10% 0%, rgba(107,25,57,0.06), transparent 60%);
  pointer-events: none;
}
.spv-flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch;
  position: relative; z-index: 2;
}
@media (max-width: 860px) { .spv-flow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .spv-flow { grid-template-columns: 1fr; } }
.spv-node {
  position: relative;
  padding: 26px 22px 22px;
  border: 1px solid var(--line-2);
  background: var(--ivory-100);
  border-radius: var(--radius);
  transition: transform 0.6s var(--ease-apple), box-shadow 0.6s var(--ease-apple), border-color 0.4s;
}
.spv-node:hover {
  transform: translateY(-3px);
  border-color: rgba(107,25,57,0.35);
  box-shadow: 0 20px 40px -24px rgba(107,25,57,0.25);
}
.spv-node__n {
  font-family: var(--serif); font-style: italic; color: var(--fcma-wine);
  font-size: 13px; letter-spacing: 0.1em;
}
.spv-node h4 {
  font-family: var(--serif); font-size: 20px; margin: 10px 0 6px;
  letter-spacing: -0.015em; font-weight: 400; color: var(--ink);
}
.spv-node p {
  font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0;
}
.spv-node__tag {
  display: inline-block; margin-top: 14px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fcma-wine); font-weight: 500;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(107,25,57,0.06);
  border: 1px solid rgba(107,25,57,0.18);
}
/* Connecting arrow between nodes */
.spv-node:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; right: -14px;
  width: 14px; height: 1px;
  background: linear-gradient(90deg, rgba(107,25,57,0.5), rgba(107,25,57,0.1));
  z-index: 3;
}
@media (max-width: 860px) { .spv-node:not(:last-child)::after { display: none; } }

/* Glossy lead strip under the hero */
.fcma-ticker {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
  margin-top: clamp(40px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
}
@media (max-width: 720px) { .fcma-ticker { grid-template-columns: 1fr; } }
.fcma-ticker__cell {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.fcma-ticker__cell:last-child { border-right: 0; }
@media (max-width: 720px) {
  .fcma-ticker__cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .fcma-ticker__cell:last-child { border-bottom: 0; }
}
.fcma-ticker__k {
  font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink); letter-spacing: -0.02em; font-weight: 400;
}
.fcma-ticker__l {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}

/* Page-specific CTA banner — deep burgundy instead of near-black */
body.page-fcma .cta-banner {
  background:
    radial-gradient(700px 400px at 85% 10%, rgba(140,44,79,0.45), transparent 60%),
    linear-gradient(135deg, #3A0D1C 0%, #1a0710 100%);
}
body.page-fcma .cta-banner::before {
  background: radial-gradient(circle, rgba(140,44,79,0.4), transparent 60%);
}
body.page-fcma .cta-banner .btn--primary:hover {
  background: var(--fcma-wine); color: var(--ivory-100);
}

/* =========================================================
   VFX Strategy — page-scoped theme (variable.html)
   Edgier: dark hero/showcase, electric purple + neon green + amber.
   Ivory chrome remains for nav/prose/footer so it's still VFX Wealth.
   ========================================================= */

body.page-vfx {
  --vfx-violet:   #6B4DFF;
  --vfx-violet-d: #4A32CF;
  --vfx-violet-l: #8B6BFF;
  --vfx-cyan:     #4FD8FF;
  --vfx-neon:     #4DFFB0;
  --vfx-amber:    #FFB547;
  --vfx-amber-l:  #FFD27A;
  --vfx-black:    #0A0A0E;
  --vfx-soot:     #141420;
  --vfx-line:     rgba(255, 255, 255, 0.08);
  --vfx-line-2:   rgba(255, 255, 255, 0.16);
}
body.page-vfx ::selection { background: rgba(107, 77, 255, 0.32); color: #fff; }

/* ---- Dark hero ---- */
.vfx-hero {
  position: relative;
  padding: 170px 0 96px;
  background: var(--vfx-black);
  color: #EDECF2;
  overflow: hidden;
  border-bottom: 1px solid var(--vfx-line);
}
.vfx-hero__mesh {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(107, 77, 255, 0.35), transparent 60%),
    radial-gradient(700px 500px at 10% 70%, rgba(77, 255, 176, 0.18), transparent 60%),
    radial-gradient(500px 400px at 45% 10%, rgba(79, 216, 255, 0.12), transparent 60%);
  animation: vfxMeshShift 14s var(--ease-apple) infinite alternate;
}
@keyframes vfxMeshShift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-20px, 10px, 0) scale(1.05); }
}
.vfx-hero__grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 40%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 40%, transparent 80%);
}
.vfx-hero__scanline {
  position: absolute; left: 0; right: 0; top: 40%; height: 1px; z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(77, 255, 176, 0.8), transparent);
  box-shadow: 0 0 8px rgba(77, 255, 176, 0.6);
  animation: vfxScan 6s linear infinite;
}
@keyframes vfxScan {
  0%   { transform: translateY(-140px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(240px); opacity: 0; }
}
.vfx-hero .container { position: relative; z-index: 2; }
.vfx-hero .breadcrumb, .vfx-hero .breadcrumb a { color: rgba(237, 236, 242, 0.55); }
.vfx-hero .breadcrumb a:hover { color: var(--vfx-amber); border-bottom-color: currentColor; }
.vfx-hero .eyebrow { color: rgba(237, 236, 242, 0.6); }
.vfx-hero .eyebrow::before { background: rgba(237, 236, 242, 0.3); }
.vfx-hero h1 { color: #F6F5FA; }
.vfx-hero .italic-accent { color: var(--vfx-neon); text-shadow: 0 0 24px rgba(77,255,176,0.35); }
.vfx-hero .lede { color: rgba(237, 236, 242, 0.72); }

/* Co-brand (dark) */
.vfx-cobrand {
  display: flex; align-items: center; gap: clamp(24px, 3vw, 48px);
  margin-bottom: clamp(44px, 6vw, 72px);
}
.vfx-cobrand__vfx img { height: clamp(30px, 2.8vw, 42px); width: auto; filter: invert(1) brightness(1.1); display: block; }
.vfx-cobrand__x {
  font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2vw, 26px);
  color: rgba(237, 236, 242, 0.5); font-weight: 300;
  padding-left: clamp(10px, 1.5vw, 20px); border-left: 1px solid rgba(237,236,242,0.16);
  padding-top: 10px; padding-bottom: 10px;
}
.vfx-cobrand__mark {
  height: clamp(80px, 9vw, 132px); width: auto; display: block;
  filter: drop-shadow(0 0 30px rgba(107, 77, 255, 0.4));
  animation: vfxMarkFloat 8s var(--ease-apple) infinite;
}
@keyframes vfxMarkFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Live badge */
.vfx-live {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 12px; border-radius: 999px;
  background: rgba(77, 255, 176, 0.08); border: 1px solid rgba(77, 255, 176, 0.28);
  font-size: 12px; color: var(--vfx-neon); letter-spacing: 0.16em; text-transform: uppercase;
}
.vfx-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--vfx-neon); box-shadow: 0 0 10px var(--vfx-neon);
  animation: livePulse 1.4s ease-in-out infinite;
}

/* Dark hero stats */
.vfx-hero__stats {
  margin-top: clamp(56px, 7vw, 88px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--vfx-line);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
}
@media (max-width: 780px) { .vfx-hero__stats { grid-template-columns: 1fr 1fr; } }
.vfx-hero__stat__k {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(26px, 3.6vw, 44px); color: #F6F5FA;
  letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums;
}
.vfx-hero__stat__k--neon { color: var(--vfx-neon); text-shadow: 0 0 20px rgba(77,255,176,0.35); }
.vfx-hero__stat__k--amber { color: var(--vfx-amber); text-shadow: 0 0 20px rgba(255,181,71,0.35); }
.vfx-hero__stat__l {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(237, 236, 242, 0.55); margin-top: 10px;
}

/* Neon primary button on dark hero */
.vfx-hero .btn--primary {
  background: var(--vfx-neon); color: #0A0A0E;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 14px 30px -10px rgba(77,255,176,0.45);
}
.vfx-hero .btn--primary:hover {
  background: var(--vfx-amber); color: #0A0A0E;
  box-shadow: 0 18px 44px -10px rgba(255,181,71,0.6);
}
.vfx-hero .btn--ghost {
  color: #F6F5FA; border-color: rgba(237,236,242,0.28);
}
.vfx-hero .btn--ghost:hover { border-color: var(--vfx-neon); color: var(--vfx-neon); }

/* ---- Ticker strip ---- */
.vfx-ticker {
  background: var(--vfx-soot); color: rgba(237, 236, 242, 0.8);
  border-bottom: 1px solid var(--vfx-line);
  padding: 14px 0;
  overflow: hidden;
}
.vfx-ticker__track {
  display: inline-flex; gap: 40px; white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.vfx-ticker__track:hover { animation-play-state: paused; }
.vfx-ticker__pip {
  color: var(--vfx-violet-l);
}
.vfx-ticker__up   { color: var(--vfx-neon); }
.vfx-ticker__down { color: #FF6B6B; }

/* ---- Showcase (dark glossy plate) ---- */
.vfx-showcase {
  position: relative; overflow: hidden;
  background:
    radial-gradient(600px 400px at 80% 30%, rgba(107, 77, 255, 0.25), transparent 60%),
    linear-gradient(135deg, #13131E 0%, #0A0A10 100%);
  border: 1px solid var(--vfx-line-2);
  border-radius: var(--radius-lg);
  padding: clamp(56px, 8vw, 120px) clamp(32px, 5vw, 80px);
  color: #EDECF2;
  box-shadow: 0 50px 120px -50px rgba(107, 77, 255, 0.35), inset 0 1px 0 rgba(255,255,255,0.08);
}
.vfx-showcase::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
  mask-image: radial-gradient(circle at 80% 40%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 80% 40%, #000, transparent 70%);
}
.vfx-showcase__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 72px); align-items: center;
}
@media (max-width: 900px) { .vfx-showcase__inner { grid-template-columns: 1fr; } }
.vfx-showcase__logo {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1/1; position: relative;
}
.vfx-showcase__logo::before {
  content: ""; position: absolute; inset: 10%;
  background: radial-gradient(circle, rgba(107, 77, 255, 0.28), transparent 65%);
  filter: blur(20px);
  animation: showcaseGlow 5s ease-in-out infinite alternate;
}
@keyframes showcaseGlow {
  0%   { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.05); }
}
.vfx-showcase__logo img {
  position: relative; z-index: 2; width: 92%; max-width: 420px; height: auto;
  filter: drop-shadow(0 20px 40px rgba(107, 77, 255, 0.4));
}
.vfx-showcase__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--vfx-neon); font-weight: 500; margin-bottom: 20px;
}
.vfx-showcase__label::before {
  content: ""; width: 22px; height: 1px; background: var(--vfx-neon);
}
.vfx-showcase h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.4vw, 46px); line-height: 1.1;
  letter-spacing: -0.025em; font-weight: 400; color: #F6F5FA; margin-bottom: 20px;
}
.vfx-showcase p {
  font-size: 16px; line-height: 1.7; color: rgba(237, 236, 242, 0.72); margin-bottom: 14px;
  max-width: 52ch;
}
.vfx-showcase__badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px;
}
.vfx-badge {
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(107, 77, 255, 0.35);
  background: rgba(107, 77, 255, 0.08);
  font-size: 12.5px; color: #D6CFFF; letter-spacing: 0.05em;
}
.vfx-badge--neon  { border-color: rgba(77, 255, 176, 0.35); background: rgba(77, 255, 176, 0.06); color: #D4FFE9; }
.vfx-badge--amber { border-color: rgba(255, 181, 71, 0.4);  background: rgba(255, 181, 71, 0.08); color: #FFE3B8; }

/* ---- Risk profile dial ---- */
.risk-dial {
  padding: clamp(40px, 5vw, 64px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -50px rgba(23,23,26,0.18);
}
.risk-dial__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 860px) { .risk-dial__grid { grid-template-columns: 1fr; } }
.risk-card {
  position: relative;
  padding: 28px 24px 22px;
  border: 1px solid var(--line-2);
  background: var(--ivory-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.6s var(--ease-apple), box-shadow 0.6s var(--ease-apple), border-color 0.4s;
  cursor: default;
}
.risk-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--riskTint, rgba(107,77,255,0.08)) 120%);
  pointer-events: none; opacity: 0.6;
}
.risk-card:hover {
  transform: translateY(-4px);
  border-color: var(--riskBorder, rgba(107, 77, 255, 0.5));
  box-shadow: 0 30px 60px -30px var(--riskShadow, rgba(107,77,255,0.3));
}
.risk-card__tag {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.risk-card__lvl {
  font-family: var(--serif); font-size: 28px; margin: 8px 0 14px;
  letter-spacing: -0.02em; font-weight: 400;
}
.risk-card__vol {
  display: flex; align-items: flex-end; gap: 3px;
  height: 54px; margin: 18px 0 18px;
}
.risk-card__vol span {
  flex: 1; border-radius: 2px;
  background: var(--riskBar, var(--vfx-violet));
  box-shadow: 0 0 10px var(--riskShadow, rgba(107,77,255,0.3));
  opacity: 0.85;
  transform-origin: bottom;
  animation: volPulse 2.4s ease-in-out infinite;
}
@keyframes volPulse {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(0.72); }
}
.risk-card__vol span:nth-child(1) { animation-delay: 0s; }
.risk-card__vol span:nth-child(2) { animation-delay: 0.15s; }
.risk-card__vol span:nth-child(3) { animation-delay: 0.3s; }
.risk-card__vol span:nth-child(4) { animation-delay: 0.45s; }
.risk-card__vol span:nth-child(5) { animation-delay: 0.6s; }
.risk-card__vol span:nth-child(6) { animation-delay: 0.75s; }
.risk-card__vol span:nth-child(7) { animation-delay: 0.9s; }
.risk-card__vol span:nth-child(8) { animation-delay: 1.05s; }
.risk-card__desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.risk-card--low  { --riskBar:#4FD8FF; --riskBorder: rgba(79,216,255,0.5);  --riskShadow: rgba(79,216,255,0.3);  --riskTint: rgba(79,216,255,0.1); }
.risk-card--core { --riskBar:#6B4DFF; --riskBorder: rgba(107,77,255,0.55); --riskShadow: rgba(107,77,255,0.35); --riskTint: rgba(107,77,255,0.12); }
.risk-card--high { --riskBar:#FFB547; --riskBorder: rgba(255,181,71,0.55); --riskShadow: rgba(255,181,71,0.35); --riskTint: rgba(255,181,71,0.14); }
/* Different bar heights for each tier to visualize volatility */
.risk-card--low  .risk-card__vol span:nth-child(odd)  { height: 60%; }
.risk-card--low  .risk-card__vol span:nth-child(even) { height: 80%; }
.risk-card--core .risk-card__vol span:nth-child(1) { height: 65%; }
.risk-card--core .risk-card__vol span:nth-child(2) { height: 100%; }
.risk-card--core .risk-card__vol span:nth-child(3) { height: 70%; }
.risk-card--core .risk-card__vol span:nth-child(4) { height: 90%; }
.risk-card--core .risk-card__vol span:nth-child(5) { height: 55%; }
.risk-card--core .risk-card__vol span:nth-child(6) { height: 95%; }
.risk-card--core .risk-card__vol span:nth-child(7) { height: 75%; }
.risk-card--core .risk-card__vol span:nth-child(8) { height: 100%; }
.risk-card--high .risk-card__vol span:nth-child(1) { height: 40%; }
.risk-card--high .risk-card__vol span:nth-child(2) { height: 100%; }
.risk-card--high .risk-card__vol span:nth-child(3) { height: 60%; }
.risk-card--high .risk-card__vol span:nth-child(4) { height: 100%; }
.risk-card--high .risk-card__vol span:nth-child(5) { height: 30%; }
.risk-card--high .risk-card__vol span:nth-child(6) { height: 100%; }
.risk-card--high .risk-card__vol span:nth-child(7) { height: 45%; }
.risk-card--high .risk-card__vol span:nth-child(8) { height: 95%; }

/* ---- Volatility wave section (dark inset) ---- */
.vfx-wave {
  background: linear-gradient(180deg, #13131E 0%, #0A0A10 100%);
  color: #EDECF2;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  overflow: hidden; position: relative;
  border: 1px solid var(--vfx-line-2);
}
.vfx-wave__head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; margin-bottom: 32px;
}
.vfx-wave__head h3 {
  font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); color: #F6F5FA;
  letter-spacing: -0.02em; font-weight: 400; margin: 0;
}
.vfx-wave__head p { color: rgba(237, 236, 242, 0.6); font-size: 13.5px; max-width: 42ch; margin: 0; }
.vfx-wave__chart {
  width: 100%; height: clamp(180px, 22vw, 260px); display: block;
}
.vfx-wave__line {
  fill: none; stroke: url(#vfxWaveStroke); stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 2000; stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2.6s var(--ease-apple);
}
.vfx-wave.is-visible .vfx-wave__line { stroke-dashoffset: 0; }
.vfx-wave__area { fill: url(#vfxWaveFill); opacity: 0; transition: opacity 1.2s var(--ease-apple) 0.6s; }
.vfx-wave.is-visible .vfx-wave__area { opacity: 1; }
.vfx-wave__hwm { stroke: rgba(255,181,71,0.6); stroke-width: 1; stroke-dasharray: 4 4; }
.vfx-wave__legend { display: flex; gap: 22px; margin-top: 20px; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(237,236,242,0.55); }
.vfx-wave__legend span { display: inline-flex; align-items: center; gap: 8px; }
.vfx-wave__legend .dot { width: 8px; height: 2px; border-radius: 1px; }

/* ---- CTA banner (purple glow) ---- */
body.page-vfx .cta-banner {
  background:
    radial-gradient(700px 400px at 85% 10%, rgba(107,77,255,0.5), transparent 60%),
    linear-gradient(135deg, #1A1030 0%, #09070F 100%);
}
body.page-vfx .cta-banner::before {
  background: radial-gradient(circle, rgba(107,77,255,0.4), transparent 60%);
}
body.page-vfx .cta-banner .btn--primary {
  background: var(--vfx-neon); color: #0A0A0E;
}
body.page-vfx .cta-banner .btn--primary:hover {
  background: var(--vfx-amber); color: #0A0A0E;
}

/* Prose body tints for Variable */
body.page-vfx .prose__body ul li::before { background: var(--vfx-violet); }
body.page-vfx .feature-row__tag {
  color: var(--vfx-violet-d);
  border-color: rgba(107,77,255,0.3);
  background: rgba(107,77,255,0.04);
}
body.page-vfx .feature-row__k { color: var(--vfx-violet); }
body.page-vfx .prose__aside a:hover { color: var(--vfx-violet); }
body.page-vfx .nav__cta:hover { background: var(--vfx-violet-d); color: #fff; }
body.page-vfx .btn--primary { transition: all 0.35s var(--ease-apple); }

/* =========================================================
   IPOFX — page-scoped theme (private-equity.html)
   Midnight navy + champagne gold. Allocation-book aesthetic.
   ========================================================= */

body.page-ipofx {
  --ipo-navy:    #0A1428;
  --ipo-navy-2:  #11203C;
  --ipo-gold:    #C9A961;
  --ipo-gold-d:  #A08438;
  --ipo-gold-l:  #E5C785;
  --ivory-100:   #FBF7EE;
  --ivory-200:   #F3ECD8;
  --paper:       #FFFDF5;
  --ink:         #0A1428;
  --accent:      #C9A961;
  --accent-d:    #A08438;
  --accent-l:    #E5C785;
  --line:        rgba(10, 20, 40, 0.08);
  --line-2:      rgba(10, 20, 40, 0.16);
}
body.page-ipofx ::selection { background: rgba(201, 169, 97, 0.28); color: var(--ipo-navy); }

body.page-ipofx .page-head {
  background:
    radial-gradient(800px 500px at 85% -10%, rgba(201, 169, 97, 0.15), transparent 60%),
    linear-gradient(180deg, var(--ivory-200) 0%, var(--ivory-100) 100%);
}
body.page-ipofx .page-head::after {
  background: radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.18), transparent 60%);
}

/* IPOFX co-brand */
.ipo-cobrand {
  display: flex; align-items: center; gap: clamp(24px, 3vw, 44px);
  margin-bottom: clamp(36px, 5vw, 64px);
}
.ipo-cobrand__vfx img { height: clamp(32px, 3vw, 46px); width: auto; color: var(--ipo-navy); display: block; }
.ipo-cobrand__x {
  font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.2vw, 30px);
  color: rgba(10, 20, 40, 0.45); font-weight: 300;
}
.ipo-cobrand__ipo {
  height: clamp(44px, 5vw, 72px); width: auto; color: var(--ipo-navy); display: block;
}

/* IPOFX hero watermark — oversized, subtle */
body.page-ipofx .hero__watermark,
body.page-ipofx .fcma-watermark { display: none; }
.ipo-watermark {
  position: absolute; right: -4%; top: 10%; pointer-events: none; z-index: 0;
  width: clamp(380px, 44vw, 620px);
  color: var(--ipo-navy);
  opacity: 0.05;
}

/* Gold rule divider */
.gold-rule {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin: clamp(56px, 7vw, 88px) 0;
  color: var(--ipo-gold);
}
.gold-rule__line {
  flex: 1; max-width: 260px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ipo-gold), transparent);
}
.gold-rule__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ipo-gold); box-shadow: 0 0 10px rgba(201,169,97,0.6); }

/* Showcase (light, luxurious) */
.ipo-showcase {
  position: relative; overflow: hidden;
  background:
    radial-gradient(500px 300px at 85% 15%, rgba(201, 169, 97, 0.12), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--ivory-100) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(56px, 8vw, 120px) clamp(32px, 5vw, 80px);
  box-shadow: 0 50px 120px -60px rgba(10, 20, 40, 0.2), inset 0 1px 0 rgba(255,255,255,0.6);
}
.ipo-showcase::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ipo-gold), transparent);
}
.ipo-showcase__inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 900px) { .ipo-showcase__inner { grid-template-columns: 1fr; } }
.ipo-showcase__logo {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 5/2; background: var(--paper); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 40px;
  color: var(--ipo-navy);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.ipo-showcase__logo img { width: 100%; max-width: 320px; height: auto; }
.ipo-showcase__label {
  font-size: 11.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ipo-gold-d); font-weight: 500; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.ipo-showcase__label::before {
  content: ""; width: 22px; height: 1px; background: var(--ipo-gold);
}
.ipo-showcase h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px); line-height: 1.12;
  letter-spacing: -0.025em; font-weight: 400; color: var(--ipo-navy); margin-bottom: 20px;
}
.ipo-showcase p { font-size: 16px; line-height: 1.7; color: rgba(10,20,40,0.66); margin-bottom: 14px; max-width: 50ch; }

.ipo-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.ipo-badge {
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  background: rgba(201, 169, 97, 0.06);
  font-size: 12.5px; color: var(--ipo-gold-d); letter-spacing: 0.05em;
}

/* Watch-list grid */
.watchlist {
  position: relative;
  background: linear-gradient(180deg, var(--ipo-navy) 0%, var(--ipo-navy-2) 100%);
  color: #F3ECD8; border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  overflow: hidden;
}
.watchlist::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(201,169,97,0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201,169,97,0.04) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 80%);
}
.watchlist__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; margin-bottom: 40px; position: relative; z-index: 2;
}
.watchlist__head h3 {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.02em; font-weight: 400; color: var(--ivory-100); margin: 0;
}
.watchlist__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ipo-gold-l); font-weight: 500;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  background: rgba(201, 169, 97, 0.05);
}
.watchlist__tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ipo-gold-l); box-shadow: 0 0 8px var(--ipo-gold-l);
  animation: livePulse 1.6s ease-in-out infinite;
}
.watchlist__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid rgba(201, 169, 97, 0.15);
  position: relative; z-index: 2;
}
@media (max-width: 900px) { .watchlist__grid { grid-template-columns: repeat(2, 1fr); } }
.ipo-card {
  position: relative;
  background: var(--ipo-navy);
  padding: 32px 28px 28px;
  min-height: 160px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background 0.5s var(--ease-apple);
  overflow: hidden;
}
.ipo-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(201,169,97,0.12), transparent 50%);
  opacity: 0; transition: opacity 0.5s var(--ease-apple); pointer-events: none;
}
.ipo-card:hover { background: var(--ipo-navy-2); }
.ipo-card:hover::before { opacity: 1; }
.ipo-card__name {
  font-family: var(--serif); font-size: clamp(22px, 2.2vw, 30px); font-weight: 400;
  letter-spacing: -0.02em; color: var(--ivory-100); margin: 0;
}
.ipo-card__name .suffix { color: var(--ipo-gold-l); font-style: italic; font-size: 0.7em; font-weight: 300; }
.ipo-card__meta { display: flex; justify-content: space-between; align-items: end; margin-top: 20px; }
.ipo-card__sector {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(243, 236, 216, 0.55);
}
.ipo-card__status {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ipo-gold-l);
  padding: 4px 9px; border: 1px solid rgba(201,169,97,0.35);
  border-radius: 4px; background: rgba(201,169,97,0.05);
}
.watchlist__foot {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid rgba(201,169,97,0.15);
  font-size: 11.5px; color: rgba(243, 236, 216, 0.5); line-height: 1.6;
  max-width: 70ch; position: relative; z-index: 2;
}
.watchlist__foot strong { color: var(--ipo-gold-l); font-weight: 500; }

/* Prose tints for IPOFX */
body.page-ipofx .prose__body ul li::before { background: var(--ipo-gold); }
body.page-ipofx .feature-row__tag {
  color: var(--ipo-gold-d);
  border-color: rgba(201, 169, 97, 0.3);
  background: rgba(201, 169, 97, 0.04);
}
body.page-ipofx .feature-row__k { color: var(--ipo-gold-d); }
body.page-ipofx .prose__aside a:hover { color: var(--ipo-gold-d); }
body.page-ipofx .btn--primary:hover { background: var(--ipo-gold-d); box-shadow: 0 16px 40px -14px rgba(201,169,97,0.45); }
body.page-ipofx .nav__cta:hover { background: var(--ipo-gold-d); }

/* CTA banner — dark navy with gold wash */
body.page-ipofx .cta-banner {
  background:
    radial-gradient(700px 400px at 85% 10%, rgba(201,169,97,0.25), transparent 60%),
    linear-gradient(135deg, #0A1428 0%, #040811 100%);
}
body.page-ipofx .cta-banner::before {
  background: radial-gradient(circle, rgba(201,169,97,0.3), transparent 60%);
}
body.page-ipofx .cta-banner .btn--primary { background: var(--ipo-gold); color: var(--ipo-navy); }
body.page-ipofx .cta-banner .btn--primary:hover { background: var(--ipo-gold-l); }

/* Allocation ticker strip */
.ipo-ticker {
  background: var(--ipo-navy); color: rgba(243, 236, 216, 0.8);
  padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(201,169,97,0.15);
  border-bottom: 1px solid rgba(201,169,97,0.15);
}
.ipo-ticker__track {
  display: inline-flex; gap: 36px; white-space: nowrap;
  animation: marquee 42s linear infinite;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.ipo-ticker__track:hover { animation-play-state: paused; }
.ipo-ticker__dot { color: var(--ipo-gold); }

/* =========================================================
   Dashboard mockup components
   Rebuilt in HTML/CSS from the product screenshots.
   ========================================================= */

.dash-stack { display: grid; gap: clamp(24px, 3vw, 40px); }

/* Browser chrome frame */
.dash-frame {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px -60px rgba(20,20,20,0.25), 0 1px 0 rgba(255,255,255,0.6) inset;
  transition: transform 0.6s var(--ease-apple), box-shadow 0.6s var(--ease-apple);
}
.dash-frame:hover { transform: translateY(-4px); box-shadow: 0 50px 120px -50px rgba(20,20,20,0.32); }
.dash-frame__bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; background: var(--ivory-200);
  border-bottom: 1px solid var(--line);
}
.dash-frame__dots { display: inline-flex; gap: 6px; }
.dash-frame__dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(20,20,20,0.14);
}
.dash-frame__dots span:nth-child(1) { background: #FF5F57; }
.dash-frame__dots span:nth-child(2) { background: #FFBD2E; }
.dash-frame__dots span:nth-child(3) { background: #28C840; }
.dash-frame__url {
  flex: 1; font-size: 12.5px; color: var(--muted-2);
  text-align: center; letter-spacing: 0.02em;
  background: var(--paper); padding: 5px 10px; border-radius: 6px;
  border: 1px solid var(--line);
  max-width: 520px; margin: 0 auto;
}
.dash-frame__body { padding: clamp(28px, 3.5vw, 44px); background: var(--paper); }

/* Dark variant for IPOFX */
.dash-frame--dark {
  background: #0A0A0E; border-color: rgba(255,255,255,0.08);
  box-shadow: 0 50px 120px -50px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.04) inset;
}
.dash-frame--dark .dash-frame__bar { background: #13131B; border-bottom-color: rgba(255,255,255,0.06); }
.dash-frame--dark .dash-frame__url { background: #0A0A0E; color: rgba(255,255,255,0.45); border-color: rgba(255,255,255,0.08); }
.dash-frame--dark .dash-frame__body { background: #0A0A0E; color: #EDECF2; }

/* Internal dashboard header (the VFX logo + section label) */
.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-bottom: 20px; margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.dash-head__brand { display: flex; align-items: center; gap: 14px; }
.dash-head__brand img { height: 28px; width: auto; }
.dash-head__brand__sep { width: 1px; height: 22px; background: var(--line-2); }
.dash-head__section {
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.dash-head__right {
  font-size: 11.5px; color: var(--muted-2); letter-spacing: 0.08em;
}
.dash-head__right span:first-child { color: var(--accent-d); font-weight: 500; }

/* Dash titles */
.dash-title {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.025em; font-weight: 400; line-height: 1.1;
  color: var(--ink); margin: 0 0 8px;
}
.dash-sub { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0; max-width: 80ch; }
.dash-frame--dark .dash-title { color: #F6F5FA; }
.dash-frame--dark .dash-sub { color: rgba(237,236,242,0.62); }

/* ---- Risk profile cards ---- */
.risk-profiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
@media (max-width: 860px) { .risk-profiles { grid-template-columns: 1fr; } }
.rp {
  position: relative;
  padding: 26px 24px 28px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background: var(--paper);
  transition: transform 0.5s var(--ease-apple), border-color 0.4s, box-shadow 0.5s;
}
.rp:hover { transform: translateY(-3px); }
.rp--active { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(12,204,82,0.18); }
.rp__head { display: flex; align-items: center; gap: 14px; justify-content: space-between; }
.rp__tile {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(12,204,82,0.1);
}
.rp__tile svg { width: 18px; height: 18px; }
.rp--low  .rp__tile { background: rgba(12,204,82,0.12); color: var(--accent-d); }
.rp--med  .rp__tile { background: rgba(255,181,71,0.16); color: #C97A10; }
.rp--high .rp__tile { background: rgba(239,68,68,0.14);  color: #C0292F; }
.rp__name { font-family: var(--serif); font-size: 24px; letter-spacing: -0.02em; font-weight: 400; color: var(--ink); flex: 1; }
.rp__active {
  padding: 4px 10px; border-radius: 6px; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; background: rgba(12,204,82,0.1); color: var(--accent-d);
  font-weight: 500; border: 1px solid rgba(12,204,82,0.25);
}
.rp__tag { font-size: 13px; color: var(--muted); margin-top: 4px; }
.rp__desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-top: 14px; }
.rp__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px;
  margin-top: 20px; padding: 16px; background: var(--ivory-100); border-radius: 10px;
}
.rp__grid .k { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.rp__grid .v { font-family: var(--serif); font-size: 20px; color: var(--ink); letter-spacing: -0.01em; margin-top: 2px; }
.rp__bar { margin-top: 18px; }
.rp__bar-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.rp__bar-track { margin-top: 8px; height: 6px; border-radius: 3px; background: var(--ivory-300); overflow: hidden; }
.rp__bar-fill { height: 100%; border-radius: 3px; }
.rp--low  .rp__bar-fill { background: var(--accent); width: 33%; }
.rp--med  .rp__bar-fill { background: #FFB547; width: 66%; }
.rp--high .rp__bar-fill { background: #EF4444; width: 94%; }
.rp__foot { font-size: 12px; color: var(--muted-2); margin-top: 14px; }

/* ---- Equity curve (performance mockup) ---- */
.perf-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; }
@media (max-width: 900px) { .perf-grid { grid-template-columns: 1fr; } }
.perf-card, .metrics-card {
  border: 1px solid var(--line-2); border-radius: 14px; padding: 28px;
  background: var(--paper);
}
.perf-card__top { display: flex; justify-content: space-between; align-items: start; gap: 20px; flex-wrap: wrap; }
.perf-card__ret { font-family: var(--serif); font-size: 40px; color: var(--accent-d); letter-spacing: -0.03em; font-weight: 500; line-height: 1; }
.perf-card__since { font-size: 13px; color: var(--muted); margin-top: 6px; }
.perf-periods { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 10px; background: var(--ivory-100); }
.perf-periods span { padding: 6px 14px; font-size: 12.5px; font-weight: 500; color: var(--muted); border-radius: 7px; letter-spacing: 0.04em; }
.perf-periods span.is-on { background: var(--paper); color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.perf-chart { width: 100%; height: 260px; margin-top: 20px; display: block; }
.perf-chart__grid line { stroke: var(--line); stroke-dasharray: 2 3; }
.perf-chart__axis text { font-size: 11px; fill: var(--muted-2); font-family: var(--sans); font-weight: 500; letter-spacing: 0.08em; }
.perf-chart__area { fill: url(#perfFill); opacity: 0; transition: opacity 1s var(--ease-apple) 0.4s; }
.perf-chart__line { fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 2000; stroke-dashoffset: 2000; transition: stroke-dashoffset 2.4s var(--ease-apple); }
.spark.is-visible + * .perf-chart__line, .dash-frame.is-visible .perf-chart__line { stroke-dashoffset: 0; }
.dash-frame.is-visible .perf-chart__area { opacity: 1; }
.perf-dot { fill: var(--accent); filter: drop-shadow(0 0 8px rgba(12,204,82,0.6)); }

.metrics-card h4 { font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--ink); margin: 0 0 18px; letter-spacing: -0.01em; }
.metrics { display: flex; flex-direction: column; }
.metric {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 13px 0; border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.metric:last-child { border-bottom: 0; }
.metric__l { color: var(--muted); }
.metric__v { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.metric__v--up { color: var(--accent-d); }
.metric__v--down { color: #DC2626; }

/* ---- Performance fee (HWM) card ---- */
.fee-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; }
@media (max-width: 900px) { .fee-grid { grid-template-columns: 1fr; } }
.fee-card {
  border: 1px solid var(--line-2); border-radius: 14px; background: var(--paper); overflow: hidden;
}
.fee-card__hero {
  padding: 28px; background: linear-gradient(180deg, rgba(12,204,82,0.08), rgba(12,204,82,0.02));
}
.fee-card__hero .k { font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; }
.fee-card__hero .big { font-family: var(--serif); font-size: 96px; line-height: 1; color: var(--accent-d); font-weight: 500; letter-spacing: -0.04em; margin: 12px 0 6px; }
.fee-card__hero .sub { font-size: 14px; color: var(--muted); }
.fee-card__body { padding: 24px 28px; border-top: 1px solid var(--line); }
.fee-card__body .section { font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; margin-bottom: 16px; }
.fee-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; font-size: 14px; border-bottom: 1px solid var(--line); }
.fee-row:last-child { border-bottom: 0; }
.fee-row .v { font-weight: 600; font-variant-numeric: tabular-nums; }
.fee-row .v--up { color: var(--accent-d); }
.fee-progress { margin: 10px 0 4px; height: 6px; border-radius: 3px; background: var(--ivory-300); overflow: hidden; }
.fee-progress__fill { height: 100%; background: var(--accent); width: 0%; border-radius: 3px; transition: width 1.6s var(--ease-apple); }
.dash-frame.is-visible .fee-progress__fill { width: 62%; }
.fee-estimate { font-size: 14px; font-weight: 600; color: var(--ink); margin: 6px 0 10px; }

.how-fee { border: 1px solid var(--line-2); border-radius: 14px; background: var(--paper); padding: 28px; }
.how-fee h4 { font-family: var(--sans); font-size: 18px; font-weight: 600; color: var(--ink); margin: 0 0 20px; letter-spacing: -0.01em; }
.how-step { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.how-step:last-child { border-bottom: 0; }
.how-step__n {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(12,204,82,0.1); color: var(--accent-d);
  display: grid; place-items: center; font-weight: 600; font-size: 14px;
  border: 1px solid rgba(12,204,82,0.25);
}
.how-step__t { font-weight: 600; font-size: 14.5px; color: var(--ink); margin: 0 0 2px; }
.how-step__d { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; }
.fee-cta { margin-top: 18px; font-size: 14px; color: var(--accent-d); font-weight: 600; }
.fee-cta span + span::before { content: " · "; color: var(--muted-2); font-weight: 400; }

/* ---- Strategy configuration (sliders + toggles) ---- */
.cfg-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }
@media (max-width: 900px) { .cfg-grid { grid-template-columns: 1fr; } }
.cfg-card, .auto-card { border: 1px solid var(--line-2); border-radius: 14px; background: var(--paper); padding: 28px; }
.cfg-card h4, .auto-card h4 { font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--ink); margin: 0 0 4px; letter-spacing: -0.01em; }
.cfg-card p, .auto-card p { font-size: 13.5px; color: var(--muted); margin: 0 0 22px; }

/* Leverage segmented */
.lev-seg {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
  padding: 5px; background: var(--ivory-100); border-radius: 10px; border: 1px solid var(--line);
}
.lev-seg span { padding: 10px; text-align: center; border-radius: 7px; font-size: 13.5px; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
.lev-seg span.is-on { background: var(--accent); color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.cfg-row { margin-top: 22px; }
.cfg-row__label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; font-size: 14px; }
.cfg-row__label .v { color: var(--accent-d); font-variant-numeric: tabular-nums; }
.cfg-slider {
  position: relative; margin-top: 10px; height: 6px;
  border-radius: 3px; background: var(--ivory-300); overflow: visible;
}
.cfg-slider__fill { position: absolute; left: 0; top: 0; height: 100%; border-radius: 3px; background: var(--accent); }
.cfg-slider__thumb {
  position: absolute; top: 50%; width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--accent), 0 2px 8px rgba(12,204,82,0.4);
  transform: translate(-50%, -50%);
}
.cfg-slider__axis { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11.5px; color: var(--muted-2); font-weight: 500; }
.cfg-pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.cfg-pill {
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-2);
  font-size: 12.5px; color: var(--muted); font-weight: 500;
}
.cfg-pill.is-on { background: rgba(12,204,82,0.08); border-color: rgba(12,204,82,0.35); color: var(--accent-d); }

/* Automation toggles */
.auto-list .auto-row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.auto-list .auto-row:last-child { border-bottom: 0; }
.auto-row__t { font-weight: 600; font-size: 14px; color: var(--ink); margin: 0 0 2px; }
.auto-row__d { font-size: 12.5px; color: var(--muted); margin: 0; }
.auto-toggle {
  flex-shrink: 0; width: 42px; height: 24px; border-radius: 999px;
  background: var(--ivory-300); position: relative; transition: background 0.3s;
}
.auto-toggle::after {
  content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px;
  background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: left 0.3s var(--ease-apple);
}
.auto-toggle.is-on { background: var(--accent); }
.auto-toggle.is-on::after { left: 20px; }

/* ---- Client control (safety) ---- */
.ctrl-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 24px 28px; border: 1px solid var(--line-2); border-radius: 14px;
  background: var(--paper);
}
.ctrl-bar__head h4 { font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--ink); margin: 0 0 2px; }
.ctrl-bar__head p { font-size: 13px; color: var(--muted); margin: 0; }
.ctrl-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ctrl-btn {
  padding: 10px 16px; border-radius: 10px; font-size: 13px; font-weight: 600;
  border: 1px solid var(--line-2); background: var(--paper); color: var(--ink);
}
.ctrl-btn--danger { color: #DC2626; border-color: rgba(220,38,38,0.3); }
.ctrl-btn--cta { background: var(--accent); border-color: var(--accent); color: #fff; }
.ctrl-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
@media (max-width: 860px) { .ctrl-cards { grid-template-columns: 1fr; } }
.ctrl-card { padding: 24px; border: 1px solid var(--line-2); border-radius: 14px; background: var(--paper); }
.ctrl-card__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(12,204,82,0.1); display: grid; place-items: center;
  color: var(--accent-d); margin-bottom: 16px;
}
.ctrl-card h5 { font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--ink); margin: 0 0 6px; letter-spacing: -0.01em; }
.ctrl-card p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; }

.warn-callout {
  margin-top: 20px; padding: 18px 22px; border-radius: 12px;
  border: 1px solid rgba(234, 167, 30, 0.35); background: rgba(234, 167, 30, 0.07);
  font-size: 13.5px; color: #8A5E00; line-height: 1.55;
}
.warn-callout strong { color: #8A5E00; font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; display: block; margin-bottom: 6px; }

/* ---- IPOFX marketplace table ---- */
.ipo-statbar {
  display: grid; grid-template-columns: repeat(5, 1fr);
  padding: 24px; margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
@media (max-width: 780px) { .ipo-statbar { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.ipo-statbar__cell { text-align: center; border-right: 1px solid rgba(255,255,255,0.06); padding: 0 14px; }
.ipo-statbar__cell:last-child { border-right: 0; }
@media (max-width: 780px) { .ipo-statbar__cell { border-right: 0; text-align: left; } }
.ipo-statbar__v { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); color: #4DFF9A; letter-spacing: -0.02em; font-weight: 400; }
.ipo-statbar__l { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 6px; font-weight: 500; }

.ipo-tabs { display: inline-flex; gap: 6px; padding: 4px; border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; margin-bottom: 20px; }
.ipo-tabs span { padding: 8px 18px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }
.ipo-tabs span.is-on { background: #4DFF9A; color: #0A0A0E; }

.ipo-table { width: 100%; border-collapse: collapse; }
.ipo-table thead th {
  text-align: left; padding: 14px 12px; font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ipo-table thead th:nth-child(n+3) { text-align: right; }
.ipo-table thead th.col-action { text-align: center; }
.ipo-table tbody td {
  padding: 14px 12px; font-size: 14px; color: #EDECF2; border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}
.ipo-table tbody tr { transition: background 0.3s; }
.ipo-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.ipo-table tbody td:nth-child(n+3) { text-align: right; font-variant-numeric: tabular-nums; }
.ipo-table .ticker {
  display: inline-block; padding: 4px 8px; font-size: 10.5px; letter-spacing: 0.08em;
  border-radius: 4px; background: rgba(77,255,154,0.08); color: #4DFF9A;
  border: 1px solid rgba(77,255,154,0.25); font-weight: 600; margin-right: 10px;
}
.ipo-table .name { font-weight: 600; color: #F6F5FA; }
.ipo-table .co { color: rgba(255,255,255,0.55); font-size: 12.5px; margin-top: 2px; display: block; }
.ipo-table .chg--up { color: #4DFF9A; font-weight: 500; }
.ipo-table .chg--down { color: #FF6B6B; font-weight: 500; }
.ipo-table .trend { width: 80px; height: 28px; display: inline-block; }
.ipo-table .act { display: inline-flex; gap: 6px; }
.ipo-table .act a {
  padding: 6px 14px; border-radius: 6px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em;
}
.ipo-table .act .buy { background: #4DFF9A; color: #0A0A0E; }
.ipo-table .act .sell { border: 1px solid #FF6B6B; color: #FF6B6B; }

/* ---- IPOFX company detail ---- */
.co-head {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 22px; align-items: start;
  padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 680px) { .co-head { grid-template-columns: 60px 1fr; } .co-head__price { grid-column: 1 / -1; text-align: left; } }
.co-head__tile {
  width: 80px; height: 80px; border-radius: 14px;
  background: rgba(77,255,154,0.08); border: 1px solid rgba(77,255,154,0.2);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 28px; font-weight: 500; color: #4DFF9A;
  letter-spacing: -0.01em;
}
.co-head h3 { font-family: var(--sans); font-size: clamp(28px, 3vw, 38px); color: #F6F5FA; margin: 0 0 6px; letter-spacing: -0.02em; font-weight: 600; }
.co-head__meta { color: rgba(255,255,255,0.55); font-size: 13px; }
.co-head__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.co-head__chip { padding: 5px 10px; border-radius: 999px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(77,255,154,0.1); color: #4DFF9A; border: 1px solid rgba(77,255,154,0.28); font-weight: 600; }
.co-head__chip--muted { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.12); }
.co-head__price { text-align: right; }
.co-head__price .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 500; }
.co-head__price .val { font-family: var(--sans); font-size: 44px; color: #F6F5FA; font-weight: 700; letter-spacing: -0.02em; margin: 6px 0 6px; font-variant-numeric: tabular-nums; }
.co-head__price .chg { font-size: 13px; color: #4DFF9A; font-weight: 500; }
.co-head__actions { display: flex; gap: 10px; margin-top: 14px; justify-content: flex-end; }
.co-head__actions a { padding: 10px 18px; border-radius: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; }
.co-head__actions .buy  { background: #4DFF9A; color: #0A0A0E; }
.co-head__actions .sell { border: 1px solid #FF6B6B; color: #FF6B6B; }

.co-body { display: grid; grid-template-columns: 1.6fr 1fr; gap: 22px; margin-top: 24px; }
@media (max-width: 900px) { .co-body { grid-template-columns: 1fr; } }
.co-card { border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; background: rgba(255,255,255,0.015); padding: 24px; }
.co-card h4 { font-family: var(--sans); font-size: 15px; color: #F6F5FA; font-weight: 600; margin: 0 0 16px; letter-spacing: -0.01em; }
.co-chart { width: 100%; height: 200px; display: block; }
.co-chart__line { fill: none; stroke: #4DFF9A; stroke-width: 2.2; stroke-linecap: round; }
.co-chart__area { fill: url(#coFill); }
.co-chart__axis text { font-size: 11px; fill: rgba(255,255,255,0.35); font-family: var(--sans); }
.co-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); }
.co-metric .l { font-size: 11.5px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }
.co-metric .v { font-size: 15px; color: #F6F5FA; font-weight: 600; margin-top: 4px; }

.co-activity .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
}
.co-activity .row:last-child { border-bottom: 0; }
.co-activity .row .l { color: rgba(255,255,255,0.55); }
.co-activity .row .v { color: #F6F5FA; font-weight: 500; font-variant-numeric: tabular-nums; }
.co-activity .row .v.up { color: #4DFF9A; }
.co-activity .score { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); }
.co-activity .score-bar { height: 6px; margin-top: 8px; border-radius: 3px; background: rgba(255,255,255,0.06); overflow: hidden; }
.co-activity .score-fill { height: 100%; width: 82%; background: linear-gradient(90deg, #4DFF9A, #4FD8FF); border-radius: 3px; }
.co-activity .score-axis { display: flex; justify-content: space-between; margin-top: 6px; font-size: 10.5px; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---- Order flow ---- */
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 900px) { .order-grid { grid-template-columns: 1fr; } }
.order-card { padding: 28px; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; background: rgba(255,255,255,0.015); }
.order-card__eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #4DFF9A; font-weight: 600; margin-bottom: 14px; }
.order-card h3 { font-size: 26px; color: #F6F5FA; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.02em; }
.order-card .meta { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.order-card .field { margin-top: 16px; }
.order-card .field label { display: block; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px; font-weight: 600; }
.order-card .field .input {
  padding: 12px 14px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  background: rgba(0,0,0,0.3); color: #F6F5FA; font-size: 14.5px; font-weight: 500;
}
.order-total { margin-top: 20px; padding: 16px; background: rgba(255,255,255,0.02); border-radius: 10px; border: 1px solid rgba(255,255,255,0.06); }
.order-total .row { display: flex; justify-content: space-between; font-size: 13px; padding: 3px 0; color: rgba(255,255,255,0.65); }
.order-total .row--total { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 15px; color: #F6F5FA; }
.order-total .row--total .v { color: #4DFF9A; font-weight: 700; font-size: 17px; }
.order-cta { margin-top: 18px; display: block; padding: 14px; background: #4DFF9A; color: #0A0A0E; border-radius: 10px; font-weight: 700; letter-spacing: 0.08em; text-align: center; font-size: 13px; }

.flow-step { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.flow-step:last-child { border-bottom: 0; }
.flow-step__n {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(77,255,154,0.08); border: 1px solid rgba(77,255,154,0.25);
  color: #4DFF9A; font-weight: 700; font-size: 14px;
  display: grid; place-items: center;
}
.flow-step__t { font-size: 14.5px; font-weight: 600; color: #F6F5FA; margin: 0 0 4px; }
.flow-step__d { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.5; margin: 0; }

/* =========================================================
   FCMA SPV dashboard frame variant (burgundy on warm ivory)
   Scoped via .dash-frame--fcma so it works without body class.
   ========================================================= */

.dash-frame--fcma {
  background: #FDFAF3;
  border-color: rgba(107, 25, 57, 0.14);
}
.dash-frame--fcma .dash-frame__bar {
  background: #F6EFE1;
  border-bottom-color: rgba(107, 25, 57, 0.1);
}
.dash-frame--fcma .dash-frame__url {
  background: #FDFAF3;
  border-color: rgba(107, 25, 57, 0.12);
  color: #7A7C80;
}
.dash-frame--fcma .dash-frame__body { background: #FDFAF3; }
.dash-frame--fcma .dash-head__section { color: #6B1939; }
.dash-frame--fcma .dash-head__right span:first-child { color: #6B1939; }

/* FCMA hero position card */
.fcma-position {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 22px; margin-top: 26px;
}
@media (max-width: 860px) { .fcma-position { grid-template-columns: 1fr; } }
.fcma-pos-card {
  position: relative;
  padding: 32px 30px;
  border: 1px solid rgba(107, 25, 57, 0.14);
  border-radius: 14px;
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(107,25,57,0.08), transparent 60%),
    linear-gradient(180deg, #FFFDF6 0%, #FDF8EE 100%);
  overflow: hidden;
}
.fcma-pos-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #6B1939, #8C2C4F, #6B1939);
}
.fcma-pos__label {
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #7A7C80; font-weight: 500;
}
.fcma-pos__val {
  font-family: var(--serif); font-size: clamp(44px, 5vw, 64px);
  color: #17171A; letter-spacing: -0.035em; font-weight: 400; line-height: 1;
  margin: 14px 0 6px; font-variant-numeric: tabular-nums;
}
.fcma-pos__sub {
  font-size: 13.5px; color: #6B1939; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.fcma-pos__sub::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #6B1939; box-shadow: 0 0 6px rgba(107,25,57,0.6);
}

/* Defined-return timeline */
.fcma-timeline {
  margin-top: 24px; padding: 18px 20px; background: rgba(107,25,57,0.04);
  border-radius: 10px; border: 1px solid rgba(107,25,57,0.12);
}
.fcma-timeline__head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #7A7C80; font-weight: 500;
}
.fcma-timeline__head .v { color: #17171A; font-family: var(--serif); font-size: 18px; letter-spacing: -0.01em; }
.fcma-timeline__bar {
  margin-top: 12px; height: 8px; border-radius: 4px;
  background: rgba(107,25,57,0.08); position: relative; overflow: hidden;
}
.fcma-timeline__fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0%;
  background: linear-gradient(90deg, #6B1939, #8C2C4F);
  border-radius: 4px; transition: width 1.8s var(--ease-apple);
}
.dash-frame.is-visible .fcma-timeline__fill { width: 42%; }
.fcma-timeline__axis {
  display: flex; justify-content: space-between; margin-top: 10px;
  font-size: 11.5px; color: #7A7C80; font-variant-numeric: tabular-nums;
}

/* FCMA key facts grid */
.fcma-facts {
  padding: 28px 30px;
  border: 1px solid rgba(107, 25, 57, 0.14);
  border-radius: 14px;
  background: #FFFDF6;
}
.fcma-facts h4 {
  font-family: var(--sans); font-size: 15px; font-weight: 600; color: #17171A;
  margin: 0 0 18px; letter-spacing: -0.01em;
}
.fcma-facts__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.fcma-fact { padding: 14px 0; border-top: 1px solid rgba(107,25,57,0.08); }
.fcma-fact:nth-child(-n+2) { border-top: 0; padding-top: 0; }
.fcma-fact .k { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: #7A7C80; font-weight: 500; }
.fcma-fact .v { font-family: var(--serif); font-size: 19px; color: #17171A; letter-spacing: -0.01em; margin-top: 3px; }
.fcma-fact .v em { font-style: italic; color: #6B1939; font-weight: 400; }

/* Income schedule table */
.fcma-income {
  margin-top: 26px; border: 1px solid rgba(107, 25, 57, 0.14);
  border-radius: 14px; background: #FFFDF6; overflow: hidden;
}
.fcma-income__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px; border-bottom: 1px solid rgba(107, 25, 57, 0.1);
}
.fcma-income__head h4 { margin: 0; font-family: var(--sans); font-size: 15px; font-weight: 600; color: #17171A; letter-spacing: -0.01em; }
.fcma-income__tag {
  font-size: 11.5px; color: #6B1939; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid rgba(107,25,57,0.3); border-radius: 999px; background: rgba(107,25,57,0.04);
}
.fcma-income table { width: 100%; border-collapse: collapse; }
.fcma-income th {
  text-align: left; padding: 14px 26px; font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: #7A7C80; font-weight: 500; background: rgba(107,25,57,0.02);
}
.fcma-income th:nth-child(n+3) { text-align: right; }
.fcma-income td {
  padding: 16px 26px; font-size: 14px; color: #17171A;
  border-top: 1px solid rgba(107,25,57,0.06);
}
.fcma-income td:nth-child(n+3) { text-align: right; font-variant-numeric: tabular-nums; font-weight: 500; }
.fcma-income tr:hover td { background: rgba(107,25,57,0.02); }
.fcma-income .chip {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  font-size: 11px; letter-spacing: 0.08em; font-weight: 600;
}
.fcma-income .chip--paid { background: rgba(107,25,57,0.08); color: #6B1939; }
.fcma-income .chip--upcoming { background: rgba(201,169,97,0.12); color: #A08438; border: 1px solid rgba(201,169,97,0.3); }
.fcma-income .chip--pending { background: rgba(20,20,20,0.05); color: #7A7C80; border: 1px solid rgba(20,20,20,0.08); }

/* Documentation vault */
.fcma-docs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
@media (max-width: 780px) { .fcma-docs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fcma-docs { grid-template-columns: 1fr; } }
.fcma-doc {
  padding: 18px 20px;
  border: 1px solid rgba(107,25,57,0.14); border-radius: 10px;
  background: #FFFDF6;
  transition: transform 0.4s var(--ease-apple), border-color 0.3s;
}
.fcma-doc:hover { transform: translateY(-2px); border-color: rgba(107,25,57,0.3); }
.fcma-doc__icon {
  width: 32px; height: 38px; border-radius: 3px;
  background: linear-gradient(135deg, rgba(107,25,57,0.08), rgba(107,25,57,0.15));
  border: 1px solid rgba(107,25,57,0.2); position: relative; margin-bottom: 12px;
}
.fcma-doc__icon::after {
  content: ""; position: absolute; top: 0; right: 0; width: 8px; height: 8px;
  background: #FDFAF3; border-left: 1px solid rgba(107,25,57,0.2); border-bottom: 1px solid rgba(107,25,57,0.2);
}
.fcma-doc__t { font-weight: 600; font-size: 13.5px; color: #17171A; margin: 0 0 3px; }
.fcma-doc__d { font-size: 12px; color: #7A7C80; margin: 0; letter-spacing: 0.04em; }

/* SPV chain diagram — mini version inside a frame */
.fcma-chain {
  margin-top: 26px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid rgba(107,25,57,0.14); border-radius: 14px;
  background: #FFFDF6; overflow: hidden;
}
@media (max-width: 860px) { .fcma-chain { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fcma-chain { grid-template-columns: 1fr; } }
.fcma-chain__node {
  padding: 22px 20px; position: relative;
  border-right: 1px solid rgba(107,25,57,0.08);
}
.fcma-chain__node:last-child { border-right: 0; }
@media (max-width: 860px) {
  .fcma-chain__node:nth-child(even) { border-right: 0; }
  .fcma-chain__node:nth-child(-n+2) { border-bottom: 1px solid rgba(107,25,57,0.08); }
}
.fcma-chain__n { font-family: var(--serif); font-style: italic; color: #6B1939; font-size: 13px; letter-spacing: 0.08em; }
.fcma-chain__node h5 { font-family: var(--serif); font-size: 18px; margin: 6px 0 4px; letter-spacing: -0.015em; font-weight: 400; color: #17171A; }
.fcma-chain__node p { font-size: 12.5px; line-height: 1.5; color: #7A7C80; margin: 0 0 10px; }
.fcma-chain__tag {
  display: inline-block; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #6B1939; padding: 3px 9px; border-radius: 999px;
  background: rgba(107,25,57,0.06); border: 1px solid rgba(107,25,57,0.22); font-weight: 600;
}

/* =========================================================
   IPOFX Overview + Regulatory frames (dark theme additions)
   ========================================================= */
.ipo-over { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .ipo-over { grid-template-columns: 1fr; } }
.ipo-over h3 {
  font-size: clamp(32px, 3.4vw, 46px); color: #F6F5FA; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 20px;
}
.ipo-over h3 em { color: #4DFF9A; font-style: normal; }
.ipo-over p { color: rgba(255,255,255,0.6); font-size: 14.5px; line-height: 1.7; margin: 0 0 16px; }

.ipo-over__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 720px) { .ipo-over__steps { grid-template-columns: 1fr; } }
.ipo-over-step {
  padding: 26px 22px; border: 1px solid rgba(255,255,255,0.06); border-radius: 14px;
  background: rgba(255,255,255,0.015);
  min-height: 220px;
  display: flex; flex-direction: column;
}
.ipo-over-step__n {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(77,255,154,0.1); border: 1px solid rgba(77,255,154,0.3);
  color: #4DFF9A; font-weight: 700; font-size: 13px;
  display: grid; place-items: center; margin-bottom: 60px;
}
.ipo-over-step h4 { font-size: 22px; color: #F6F5FA; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.02em; }
.ipo-over-step p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.55; margin: 0; }

.ipo-over__stats {
  display: grid; grid-template-columns: repeat(5, 1fr);
  margin-top: 36px; padding: 28px 22px;
  border: 1px solid rgba(255,255,255,0.06); border-radius: 14px;
  background: rgba(255,255,255,0.015);
}
@media (max-width: 900px) { .ipo-over__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 24px; } }
@media (max-width: 520px) { .ipo-over__stats { grid-template-columns: 1fr; } }
.ipo-over__stats .cell { text-align: center; border-right: 1px solid rgba(255,255,255,0.06); padding: 0 14px; }
.ipo-over__stats .cell:last-child { border-right: 0; }
@media (max-width: 900px) { .ipo-over__stats .cell { border-right: 0; text-align: left; } }
.ipo-over__stats .v { font-family: var(--sans); font-weight: 700; font-size: clamp(28px, 3.2vw, 44px); color: #4DFF9A; letter-spacing: -0.02em; }
.ipo-over__stats .l { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 8px; font-weight: 500; }

/* Regulatory frame */
.ipo-reg { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 30px; }
@media (max-width: 780px) { .ipo-reg { grid-template-columns: 1fr; gap: 30px; } }
.ipo-reg h4 {
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #4DFF9A; font-weight: 700; margin: 0 0 18px;
}
.ipo-reg p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); margin: 0 0 18px; }

.ipo-reg-warn {
  margin-top: 28px; padding: 20px 24px; border-radius: 12px;
  border: 1px solid rgba(255, 181, 71, 0.35); background: rgba(255, 181, 71, 0.06);
  font-size: 13px; line-height: 1.65; color: rgba(255,211,160,0.85);
}
.ipo-reg-warn strong {
  color: #FFB547; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  display: block; margin-bottom: 8px; font-weight: 700;
}

/* =========================================================
   Variable page (light) — subtle scoped accents
   Uses ivory chrome from the rest of the site, with
   restrained VFX Strategy hints (logo on dark tile, etc.)
   ========================================================= */

/* Risk profile cards — light theme rebuild, now matches FCMA layout */
.rp-light-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .rp-light-grid { grid-template-columns: 1fr; } }
.rp-light {
  position: relative;
  padding: 32px 28px 28px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: transform 0.6s var(--ease-apple), border-color 0.4s, box-shadow 0.6s;
  overflow: hidden;
}
.rp-light::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--rpAccent, var(--accent));
  opacity: 0; transition: opacity 0.4s;
}
.rp-light:hover {
  transform: translateY(-4px);
  border-color: var(--rpAccent, var(--accent));
  box-shadow: 0 30px 60px -30px var(--rpShadow, rgba(12,204,82,0.2));
}
.rp-light:hover::before { opacity: 1; }
.rp-light--active { border-color: var(--rpAccent); box-shadow: 0 0 0 1px var(--rpAccent); }
.rp-light--active::before { opacity: 1; }
.rp-light__head { display: flex; align-items: center; justify-content: space-between; }
.rp-light__num { font-family: var(--serif); font-style: italic; color: var(--muted-2); font-size: 14px; }
.rp-light__chip {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rpAccent); font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: var(--rpTint); border: 1px solid var(--rpBorder);
}
.rp-light__name {
  font-family: var(--serif); font-size: clamp(28px, 2.6vw, 36px);
  letter-spacing: -0.02em; font-weight: 400; color: var(--ink);
  margin: 14px 0 4px;
}
.rp-light__tag { font-size: 13px; color: var(--muted); }
.rp-light__bars {
  display: flex; align-items: end; gap: 4px;
  height: 56px; margin: 22px 0 22px;
}
.rp-light__bars span {
  flex: 1; border-radius: 2px;
  background: var(--rpAccent);
  opacity: 0.85; transform-origin: bottom;
  animation: volPulse 2.4s ease-in-out infinite;
}
.rp-light__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px;
  padding: 16px; border-radius: 10px; background: var(--ivory-100);
  border: 1px solid var(--line);
}
.rp-light__grid .k { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; }
.rp-light__grid .v { font-family: var(--serif); font-size: 19px; color: var(--ink); letter-spacing: -0.01em; margin-top: 2px; }
.rp-light__desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-top: 18px; }

.rp-light--low  { --rpAccent: #0CCC52; --rpTint: rgba(12,204,82,0.08);  --rpBorder: rgba(12,204,82,0.3);  --rpShadow: rgba(12,204,82,0.2); }
.rp-light--core { --rpAccent: #B58330; --rpTint: rgba(181,131,48,0.08); --rpBorder: rgba(181,131,48,0.3); --rpShadow: rgba(181,131,48,0.2); }
.rp-light--high { --rpAccent: #C0292F; --rpTint: rgba(192,41,47,0.08);  --rpBorder: rgba(192,41,47,0.3);  --rpShadow: rgba(192,41,47,0.2); }
/* Bar heights per tier */
.rp-light--low  .rp-light__bars span:nth-child(odd)  { height: 55%; }
.rp-light--low  .rp-light__bars span:nth-child(even) { height: 75%; }
.rp-light--core .rp-light__bars span:nth-child(1) { height: 65%; }
.rp-light--core .rp-light__bars span:nth-child(2) { height: 95%; }
.rp-light--core .rp-light__bars span:nth-child(3) { height: 70%; }
.rp-light--core .rp-light__bars span:nth-child(4) { height: 90%; }
.rp-light--core .rp-light__bars span:nth-child(5) { height: 55%; }
.rp-light--core .rp-light__bars span:nth-child(6) { height: 100%; }
.rp-light--core .rp-light__bars span:nth-child(7) { height: 75%; }
.rp-light--core .rp-light__bars span:nth-child(8) { height: 95%; }
.rp-light--high .rp-light__bars span:nth-child(1) { height: 38%; }
.rp-light--high .rp-light__bars span:nth-child(2) { height: 100%; }
.rp-light--high .rp-light__bars span:nth-child(3) { height: 60%; }
.rp-light--high .rp-light__bars span:nth-child(4) { height: 100%; }
.rp-light--high .rp-light__bars span:nth-child(5) { height: 28%; }
.rp-light--high .rp-light__bars span:nth-child(6) { height: 100%; }
.rp-light--high .rp-light__bars span:nth-child(7) { height: 45%; }
.rp-light--high .rp-light__bars span:nth-child(8) { height: 95%; }

/* Strategy showcase: VFX Strategy logo on a dark tile inside an ivory page */
.vfxs-showcase {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--ivory-100) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(56px, 8vw, 120px) clamp(32px, 5vw, 80px);
  box-shadow: 0 50px 120px -60px rgba(20,20,20,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
}
.vfxs-showcase::before {
  content: ""; position: absolute; right: -8%; top: -30%; width: 60%; height: 140%;
  background: radial-gradient(circle at 40% 40%, rgba(12,204,82,0.06), transparent 60%);
  pointer-events: none;
}
.vfxs-showcase::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12,204,82,0.4), transparent);
}
.vfxs-showcase__inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 900px) { .vfxs-showcase__inner { grid-template-columns: 1fr; } }
.vfxs-tile {
  position: relative; aspect-ratio: 1/1;
  background: radial-gradient(circle at 50% 60%, #0E0E14 0%, #050507 100%);
  border-radius: var(--radius-lg);
  display: grid; place-items: center; padding: 18px;
  box-shadow: 0 30px 60px -30px rgba(20,20,20,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
}
.vfxs-tile::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(400px 200px at 80% 20%, rgba(12,204,82,0.18), transparent 60%),
    radial-gradient(400px 200px at 20% 90%, rgba(12,204,82,0.14), transparent 60%);
  animation: vfxsTileGlow 6s ease-in-out infinite alternate;
}
@keyframes vfxsTileGlow {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}
.vfxs-tile img {
  position: relative; z-index: 2; width: 86%; height: auto;
  filter: drop-shadow(0 10px 30px rgba(12,204,82,0.25));
}
.vfxs-showcase__label {
  font-size: 11.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-d); font-weight: 500; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.vfxs-showcase__label::before {
  content: ""; width: 22px; height: 1px; background: var(--accent);
}
.vfxs-showcase h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px); line-height: 1.12;
  letter-spacing: -0.025em; font-weight: 400; margin-bottom: 20px;
}
.vfxs-showcase p { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 14px; max-width: 50ch; }
.vfxs-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.vfxs-badge {
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(12,204,82,0.3);
  background: rgba(12,204,82,0.04);
  font-size: 12.5px; color: var(--accent-d); letter-spacing: 0.05em;
}
.vfxs-badge--amber { border-color: rgba(181,131,48,0.35); background: rgba(181,131,48,0.05); color: #8E641F; }

/* HWM chart on light ivory */
.vfxs-hwm {
  margin-top: 40px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -40px rgba(20,20,20,0.15);
}
.vfxs-hwm__head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; margin-bottom: 28px; flex-wrap: wrap;
}
.vfxs-hwm__head h3 {
  font-family: var(--serif); font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em; font-weight: 400; color: var(--ink); margin: 0;
}
.vfxs-hwm__head p { font-size: 13.5px; color: var(--muted); margin: 6px 0 0; max-width: 48ch; }
.vfxs-hwm__chart { width: 100%; height: clamp(180px, 22vw, 240px); display: block; }
.vfxs-hwm__legend {
  display: flex; gap: 24px; margin-top: 16px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: 0.06em; color: var(--muted);
}
.vfxs-hwm__legend span { display: inline-flex; align-items: center; gap: 8px; }
.vfxs-hwm__legend .dot { width: 14px; height: 2px; border-radius: 1px; }

/* Hero ticker (ivory variant) — same as FCMA */
.vfxs-ticker {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
  margin-top: clamp(40px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0));
}
@media (max-width: 720px) { .vfxs-ticker { grid-template-columns: 1fr; } }
.vfxs-ticker__cell {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.vfxs-ticker__cell:last-child { border-right: 0; }
@media (max-width: 720px) {
  .vfxs-ticker__cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .vfxs-ticker__cell:last-child { border-bottom: 0; }
}
.vfxs-ticker__k {
  font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink); letter-spacing: -0.02em; font-weight: 400;
}
.vfxs-ticker__l {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   IPOFX page (light ivory chrome, dark/neon-green hints)
   Replaces the navy + champagne-gold treatment.
   No body class needed — element-scoped via .ipofx-* prefixes.
   ========================================================= */

.ipofx-cobrand {
  display: flex; align-items: center; gap: clamp(24px, 3vw, 44px);
  margin-bottom: clamp(36px, 5vw, 64px);
}
.ipofx-cobrand__vfx img { height: clamp(32px, 3vw, 46px); width: auto; color: var(--ink); display: block; }
.ipofx-cobrand__x {
  font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.2vw, 30px);
  color: var(--muted-2); font-weight: 300;
}
.ipofx-cobrand__tile {
  height: clamp(54px, 6vw, 88px); aspect-ratio: 2.85/1;
  background: radial-gradient(circle at 50% 60%, #0E0E14 0%, #050507 100%);
  border-radius: 12px; padding: 12px 18px;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -14px rgba(20,20,20,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.ipofx-cobrand__tile img { height: 100%; width: auto; color: #F6F5FA; filter: invert(1); }

/* Ivory hero ticker — same shape as Fixed / Variable */
.ipofx-ticker {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
  margin-top: clamp(40px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0));
}
@media (max-width: 720px) { .ipofx-ticker { grid-template-columns: 1fr; } }
.ipofx-ticker__cell {
  padding: 22px 26px; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.ipofx-ticker__cell:last-child { border-right: 0; }
@media (max-width: 720px) {
  .ipofx-ticker__cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .ipofx-ticker__cell:last-child { border-bottom: 0; }
}
.ipofx-ticker__k {
  font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink); letter-spacing: -0.02em; font-weight: 400;
}
.ipofx-ticker__l {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}

/* Glossy ivory showcase with IPOFX logo on dark tile */
.ipofx-showcase {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--ivory-100) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(56px, 8vw, 120px) clamp(32px, 5vw, 80px);
  box-shadow: 0 50px 120px -60px rgba(20,20,20,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
}
.ipofx-showcase::before {
  content: ""; position: absolute; right: -6%; top: -30%; width: 60%; height: 140%;
  background: radial-gradient(circle at 40% 40%, rgba(77,255,154,0.06), transparent 60%);
  pointer-events: none;
}
.ipofx-showcase::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12,204,82,0.4), transparent);
}
.ipofx-showcase__inner {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 6vw, 80px); align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 900px) { .ipofx-showcase__inner { grid-template-columns: 1fr; } }
.ipofx-tile {
  position: relative; aspect-ratio: 2/1;
  background: radial-gradient(circle at 50% 60%, #0E0E14 0%, #050507 100%);
  border-radius: var(--radius-lg);
  display: grid; place-items: center; padding: 28px 36px;
  box-shadow: 0 30px 60px -30px rgba(20,20,20,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
}
.ipofx-tile::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(400px 200px at 80% 20%, rgba(77,255,154,0.18), transparent 60%),
    radial-gradient(400px 200px at 20% 90%, rgba(12,204,82,0.12), transparent 60%);
  animation: ipofxTileGlow 6s ease-in-out infinite alternate;
}
@keyframes ipofxTileGlow {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}
.ipofx-tile img {
  position: relative; z-index: 2; width: 70%; max-width: 280px; height: auto;
  filter: invert(1) brightness(1.05) drop-shadow(0 10px 30px rgba(77,255,154,0.25));
}
.ipofx-showcase__label {
  font-size: 11.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-d); font-weight: 500; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.ipofx-showcase__label::before {
  content: ""; width: 22px; height: 1px; background: var(--accent);
}
.ipofx-showcase h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px); line-height: 1.12;
  letter-spacing: -0.025em; font-weight: 400; margin-bottom: 20px;
}
.ipofx-showcase p { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 14px; max-width: 50ch; }
.ipofx-badges-light { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.ipofx-badge-light {
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(12, 204, 82, 0.3);
  background: rgba(12, 204, 82, 0.05);
  font-size: 12.5px; color: var(--accent-d); letter-spacing: 0.05em;
}

/* Watch-list — black + neon green refresh (replaces navy+gold) */
.watchlist {
  position: relative;
  background: linear-gradient(180deg, #0A0A0E 0%, #14141C 100%);
  color: #EDECF2; border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  overflow: hidden;
}
.watchlist::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(77,255,154,0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(77,255,154,0.04) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 80%);
}
.watchlist__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; margin-bottom: 40px; position: relative; z-index: 2;
}
.watchlist__head h3 {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.02em; font-weight: 400; color: #F6F5FA; margin: 0;
}
.watchlist__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #4DFF9A; font-weight: 500;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(77, 255, 154, 0.35);
  background: rgba(77, 255, 154, 0.05);
}
.watchlist__tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #4DFF9A; box-shadow: 0 0 8px #4DFF9A;
  animation: livePulse 1.6s ease-in-out infinite;
}
.watchlist__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(77, 255, 154, 0.12);
  border: 1px solid rgba(77, 255, 154, 0.12);
  position: relative; z-index: 2;
}
@media (max-width: 900px) { .watchlist__grid { grid-template-columns: repeat(2, 1fr); } }
.ipo-card {
  position: relative;
  background: #0A0A0E;
  padding: 32px 28px 28px;
  min-height: 160px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background 0.5s var(--ease-apple);
  overflow: hidden;
}
.ipo-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(77,255,154,0.12), transparent 50%);
  opacity: 0; transition: opacity 0.5s var(--ease-apple); pointer-events: none;
}
.ipo-card:hover { background: #14141C; }
.ipo-card:hover::before { opacity: 1; }
.ipo-card__name {
  font-family: var(--serif); font-size: clamp(22px, 2.2vw, 30px); font-weight: 400;
  letter-spacing: -0.02em; color: #F6F5FA; margin: 0;
}
.ipo-card__name .suffix { color: #4DFF9A; font-style: italic; font-size: 0.7em; font-weight: 300; }
.ipo-card__meta { display: flex; justify-content: space-between; align-items: end; margin-top: 20px; }
.ipo-card__sector {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(243, 236, 216, 0.55);
}
.ipo-card__status {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #4DFF9A;
  padding: 4px 9px; border: 1px solid rgba(77,255,154,0.35);
  border-radius: 4px; background: rgba(77,255,154,0.05);
}
.watchlist__foot {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid rgba(77,255,154,0.15);
  font-size: 11.5px; color: rgba(243, 236, 216, 0.5); line-height: 1.6;
  max-width: 70ch; position: relative; z-index: 2;
}
.watchlist__foot strong { color: #4DFF9A; font-weight: 500; }

/* Inline rule divider — neon green hint */
.ipofx-rule {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin: clamp(56px, 7vw, 88px) 0;
  color: var(--accent);
}
.ipofx-rule__line {
  flex: 1; max-width: 260px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12,204,82,0.4), transparent);
}
.ipofx-rule__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px rgba(12,204,82,0.5); }

/* =========================================================
   Watch-list logo cards — light tiles inside the dark frame
   Each card is a clean white tile so brand colours pop.
   ========================================================= */

/* Override the column count for logo grid: 5 across at desktop */
.watchlist__grid--logos {
  grid-template-columns: repeat(5, 1fr);
  background: rgba(77, 255, 154, 0.18);
  gap: 1px;
}
@media (max-width: 1080px) { .watchlist__grid--logos { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px)  { .watchlist__grid--logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .watchlist__grid--logos { grid-template-columns: repeat(2, 1fr); } }

.ipo-logo-card {
  position: relative;
  background: linear-gradient(180deg, #FDFBF6 0%, #F5F0E6 100%);
  padding: 26px 20px 18px;
  min-height: 180px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  transition: transform 0.5s var(--ease-apple), box-shadow 0.5s var(--ease-apple);
  overflow: hidden;
  cursor: default;
}
.ipo-logo-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(12, 204, 82, 0.18), transparent 50%);
  opacity: 0; transition: opacity 0.5s var(--ease-apple); pointer-events: none;
  z-index: 1;
}
.ipo-logo-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #4DFF9A, transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.6s var(--ease-apple);
  z-index: 2;
}
.ipo-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(77, 255, 154, 0.25);
  z-index: 3;
}
.ipo-logo-card:hover::before { opacity: 1; }
.ipo-logo-card:hover::after { transform: scaleX(1); }

/* Logo block — vertically centred, native colours */
.ipo-logo-card__logo {
  flex: 1;
  display: grid; place-items: center;
  padding: 10px 8px 18px;
  min-height: 80px;
  position: relative;
  z-index: 2;
}
.ipo-logo-card__logo img,
.ipo-logo-card__logo svg {
  max-width: 100%; max-height: 56px; height: auto; width: auto;
  object-fit: contain;
  /* Native brand colours preserved */
  transition: transform 0.4s var(--ease-apple);
}
.ipo-logo-card:hover .ipo-logo-card__logo img,
.ipo-logo-card:hover .ipo-logo-card__logo svg {
  transform: scale(1.06);
}

/* Compact metadata row — light theme variant */
.ipo-logo-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding-top: 14px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  position: relative;
  z-index: 2;
}
.ipo-logo-card__sector {
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ipo-logo-card__status {
  flex-shrink: 0;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #07A543; font-weight: 600;
  padding: 3px 8px; border: 1px solid rgba(12, 204, 82, 0.32);
  border-radius: 4px; background: rgba(12, 204, 82, 0.06);
}

/* =========================================================
   Contact page — Office map + What happens next
   ========================================================= */

.office {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 56px); align-items: stretch;
}
@media (max-width: 980px) { .office { grid-template-columns: 1fr; } }

/* Map frame */
.map-frame {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 30px 60px -40px rgba(20,20,20,0.18);
  aspect-ratio: 4/3;
  min-height: 360px;
}
.map-frame svg { display: block; width: 100%; height: 100%; }
.map-frame__chip {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line-2);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); font-weight: 600;
  box-shadow: 0 4px 12px rgba(20,20,20,0.06);
  z-index: 2;
}
.map-frame__chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px rgba(12,204,82,0.6);
  animation: livePulse 1.6s ease-in-out infinite;
}
.map-frame__compass {
  position: absolute; right: 18px; bottom: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700; color: var(--ink);
  box-shadow: 0 4px 10px rgba(20,20,20,0.06);
  z-index: 2;
}

/* Map pin */
.map-pin { transform-origin: center; animation: pinDrop 0.9s var(--ease-apple) backwards; }
@keyframes pinDrop {
  0%   { transform: translateY(-30px); opacity: 0; }
  60%  { transform: translateY(2px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.map-pin__pulse { transform-origin: center; animation: pinPulse 2.4s ease-out infinite; }
.map-pin__pulse-2 { animation-delay: 0.8s; }
@keyframes pinPulse {
  0%   { transform: scale(0.4); opacity: 0.7; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Office details card */
.office-card {
  display: flex; flex-direction: column;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 30px 60px -40px rgba(20,20,20,0.15);
}
.office-card__eyebrow {
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 500; margin-bottom: 12px;
}
.office-card h3 {
  font-family: var(--serif); font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.02em; font-weight: 400; color: var(--ink); margin: 0 0 6px;
}
.office-card__addr {
  font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 24px;
}
.office-card__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-top: 1px solid var(--line);
  font-size: 14px;
}
.office-card__row:last-of-type { border-bottom: 1px solid var(--line); }
.office-card__row .k {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.office-card__row .v { color: var(--ink); text-align: right; font-weight: 500; }
.tube-pills { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.tube-pill {
  padding: 4px 10px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid var(--line-2); color: var(--ink-soft);
  background: var(--ivory-100);
  display: inline-flex; align-items: center; gap: 6px;
}
.tube-pill::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--tubeColor, #DC241F);
}
.tube-pill--northern  { --tubeColor: #000000; }
.tube-pill--circle    { --tubeColor: #FFD329; }
.tube-pill--metropolitan { --tubeColor: #9B0058; }
.tube-pill--hammersmith { --tubeColor: #F4A9BE; }
.tube-pill--rail      { --tubeColor: #8DC8E8; }
.tube-pill--elizabeth { --tubeColor: #6950A1; }

.office-card__cta {
  margin-top: auto; padding-top: 24px;
  display: flex; gap: 10px; flex-wrap: wrap;
}

/* What happens next — timeline */
.next-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
  margin-top: 40px;
}
@media (max-width: 980px) { .next-steps { grid-template-columns: 1fr 1fr; } .next-steps > div { border-bottom: 1px solid var(--line); } .next-steps > div:nth-child(odd) { border-right: 1px solid var(--line); } .next-steps > div:nth-last-child(-n+2) { border-bottom: 0; } }
@media (max-width: 560px) { .next-steps { grid-template-columns: 1fr; } .next-steps > div:nth-child(odd) { border-right: 0; } .next-steps > div { border-bottom: 1px solid var(--line); } .next-steps > div:last-child { border-bottom: 0; } }
.next-step {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.next-step:last-child { border-right: 0; padding-right: 0; }
.next-step__n {
  font-family: var(--serif); font-style: italic; color: var(--accent-d);
  font-size: 14px; letter-spacing: 0.04em;
}
.next-step h4 {
  font-family: var(--serif); font-size: 22px; margin: 8px 0 8px;
  letter-spacing: -0.02em; font-weight: 400; color: var(--ink);
}
.next-step p {
  font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 30ch;
}
.next-step__when {
  display: inline-block; margin-top: 12px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-d); font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(12,204,82,0.06); border: 1px solid rgba(12,204,82,0.25);
}

/* Compact inline button used on office card */
.btn--compact { padding: 10px 16px; font-size: 13px; }

/* Footer Contact column — neat address + phone + email block */
.footer__col--contact .footer__address {
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding: 4px 0 12px;
  margin: 0 0 6px;
  border-bottom: 1px solid var(--line);
}

/* =========================================================
   Cards page — payment card mockups + ecosystem flow
   ========================================================= */

/* Card mockup base */
.card-mock {
  position: relative;
  width: 100%;
  aspect-ratio: 1.586/1; /* ISO 7810 ID-1 standard ratio */
  border-radius: 18px;
  overflow: hidden;
  padding: clamp(22px, 3.4vw, 38px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(10px, 1.6vw, 18px);
  font-family: var(--sans);
  color: #F6F5FA;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.45),
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 -1px 0 rgba(0,0,0,0.3) inset;
  transition: transform 0.6s var(--ease-apple), box-shadow 0.6s var(--ease-apple);
  perspective: 1200px;
  cursor: default;
  isolation: isolate;
}
.card-mock:hover {
  transform: translateY(-4px) rotateX(2deg);
  box-shadow:
    0 50px 80px -25px rgba(0,0,0,0.5),
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 -1px 0 rgba(0,0,0,0.3) inset;
}
.card-mock::before {
  /* Subtle inner gradient */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(800px 400px at 100% 0%, rgba(255,255,255,0.08), transparent 60%);
  z-index: 1;
}
.card-mock > * { position: relative; z-index: 2; }

/* Sweeping shine on hover */
.card-mock__shine {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 1s var(--ease-apple);
}
.card-mock:hover .card-mock__shine { transform: translateX(100%); }

/* Variants */
.card-mock--metal {
  background:
    radial-gradient(800px 400px at 0% 100%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(135deg, #1A1A20 0%, #050507 60%, #0A0A0E 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.card-mock--virtual {
  background:
    radial-gradient(600px 320px at 0% 0%, rgba(81,250,123,0.22), transparent 60%),
    radial-gradient(500px 280px at 100% 100%, rgba(12,204,82,0.16), transparent 60%),
    linear-gradient(135deg, #0E1814 0%, #050A07 60%, #0A1410 100%);
  border: 1px solid rgba(81,250,123,0.2);
}
.card-mock--virtual::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.4;
}

/* Card top row */
.card-mock__top {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.card-mock__brand {
  display: flex; flex-direction: column; gap: 4px;
}
.card-mock__brand img {
  height: clamp(20px, 2.4vw, 26px); width: auto;
  /* Render the green VFX Wealth logo as white inside the card */
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.card-mock__type {
  font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 4px;
}
.card-mock--virtual .card-mock__type { color: #51FA7B; }
.card-mock__contactless {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.6);
}

/* Card chip */
.card-mock__chip {
  width: clamp(38px, 5vw, 46px);
  height: clamp(28px, 3.7vw, 34px);
  border-radius: 5px;
  background: linear-gradient(135deg, #C9A961 0%, #8A6C32 50%, #C9A961 100%);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 1px 2px rgba(0,0,0,0.2);
}
.card-mock__chip::before, .card-mock__chip::after {
  content: ""; position: absolute; background: rgba(0,0,0,0.18);
}
.card-mock__chip::before { top: 8px; left: 0; right: 0; height: 1px; }
.card-mock__chip::after  { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.card-mock--virtual .card-mock__chip {
  background: linear-gradient(135deg, #51FA7B 0%, #0CCC52 50%, #51FA7B 100%);
}

/* Middle zone: chip + number sit together, bottom-anchored */
.card-mock__middle {
  align-self: end;
  display: flex; flex-direction: column;
  gap: clamp(10px, 1.4vw, 16px);
}
.card-mock__middle .card-mock__chip { margin: 0; }


/* Number row */
.card-mock__number {
  font-family: 'Inter', monospace;
  font-size: clamp(17px, 2.1vw, 24px);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-variant-numeric: tabular-nums;
  color: #F6F5FA;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
}

/* Bottom row */
.card-mock__bottom {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 14px;
}
.card-mock__details { display: flex; gap: clamp(18px, 3vw, 32px); }
.card-mock__label {
  font-size: 8.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 500;
}
.card-mock__val {
  font-size: clamp(11px, 1.3vw, 14px); font-weight: 600;
  margin-top: 4px; letter-spacing: 0.04em; font-variant-numeric: tabular-nums;
}
.card-mock__network {
  display: flex; align-items: center; gap: 4px;
  height: clamp(20px, 2.6vw, 28px);
}
.card-mock__network svg { height: 100%; width: auto; }

/* Card showcase grid */
.cards-show {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) { .cards-show { grid-template-columns: 1fr; } }
.cards-show__col { display: flex; flex-direction: column; gap: 18px; }
.cards-show__caption {
  display: flex; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.cards-show__caption::before {
  content: ""; width: 22px; height: 1px; background: var(--muted-2);
}
.cards-show__title {
  font-family: var(--serif); font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em; font-weight: 400; color: var(--ink); margin: 0 0 6px;
}
.cards-show__desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; max-width: 38ch; }
.cards-show__chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px;
}
.cards-show__chip {
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; color: var(--ink-soft);
  border: 1px solid var(--line-2); background: var(--paper);
}

/* Network chooser */
.networks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px;
}
@media (max-width: 720px) { .networks { grid-template-columns: 1fr; } }
.network-card {
  position: relative;
  padding: 28px 26px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  background: var(--paper);
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
  transition: transform 0.5s var(--ease-apple), border-color 0.4s, box-shadow 0.5s;
}
.network-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 20px 40px -22px rgba(20,20,20,0.18);
}
.network-card__name { font-family: var(--serif); font-size: 24px; letter-spacing: -0.02em; font-weight: 400; color: var(--ink); margin: 0 0 6px; }
.network-card__desc { font-size: 13.5px; color: var(--muted); margin: 0; }
.network-card__logo { display: flex; align-items: center; justify-content: center; width: 80px; height: 50px; }
.network-card__logo svg { width: 100%; height: 100%; }

/* Features grid */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line-2);
  border-radius: var(--radius-lg); overflow: hidden;
}
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-cell {
  padding: 30px 28px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.4s;
}
.feat-cell:hover { background: var(--ivory-100); }
.feat-cell__icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(12,204,82,0.1); color: var(--accent-d);
  display: grid; place-items: center;
}
.feat-cell h4 { font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--ink); margin: 0; letter-spacing: -0.01em; }
.feat-cell p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }

/* Ecosystem flow */
.eco-flow {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  background: var(--paper);
  overflow: hidden;
}
@media (max-width: 900px) { .eco-flow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .eco-flow { grid-template-columns: 1fr; } }
.eco-node {
  padding: 30px 28px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.eco-node:last-child { border-right: 0; }
@media (max-width: 900px) {
  .eco-node:nth-child(2n) { border-right: 0; }
  .eco-node:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .eco-node { border-right: 0; border-bottom: 1px solid var(--line); }
  .eco-node:last-child { border-bottom: 0; }
}
.eco-node__n { font-family: var(--serif); font-style: italic; color: var(--accent-d); font-size: 13px; letter-spacing: 0.06em; }
.eco-node h4 { font-family: var(--serif); font-size: 22px; margin: 8px 0 8px; letter-spacing: -0.02em; font-weight: 400; color: var(--ink); }
.eco-node p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 28ch; }
.eco-node__tag {
  display: inline-block; margin-top: 14px;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-d); font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(12,204,82,0.06); border: 1px solid rgba(12,204,82,0.25);
}

/* Card hero — stack two cards offset */
.cards-hero {
  position: relative;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 900px) { .cards-hero { grid-template-columns: 1fr; } }
.cards-hero__stack {
  position: relative;
  perspective: 1500px;
  height: clamp(280px, 32vw, 380px);
}
.cards-hero__stack .card-mock {
  position: absolute;
  width: 78%;
  transition: transform 0.8s var(--ease-apple);
}
.cards-hero__stack .card-mock--metal {
  top: 0; left: 0;
  transform: translate3d(0, 0, 0) rotate(-3deg);
  z-index: 2;
}
.cards-hero__stack .card-mock--virtual {
  top: 18%; right: 0; left: auto;
  transform: translate3d(0, 0, 0) rotate(4deg);
  z-index: 1;
}
.cards-hero__stack:hover .card-mock--metal {
  transform: translate3d(-12px, -12px, 0) rotate(-5deg);
}
.cards-hero__stack:hover .card-mock--virtual {
  transform: translate3d(12px, 12px, 0) rotate(6deg);
}

/* Brand row — Visa + Mastercard logos shown together */
.brand-row {
  display: flex; align-items: center; gap: 28px;
  margin-top: 14px;
}
.brand-row__lbl {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 500;
}
.brand-row__sep { width: 1px; height: 18px; background: var(--line-2); }
.brand-row svg { height: 22px; width: auto; }

/* =========================================================
   Partners page
   ========================================================= */

/* Highlighted regulator cards (Kingdom Ventures FCA, Argamon Markets ASIC) */
.reg-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; margin-bottom: 56px;
}
@media (max-width: 860px) { .reg-highlights { grid-template-columns: 1fr; } }
.reg-card {
  position: relative; overflow: hidden;
  padding: clamp(28px, 3.6vw, 44px);
  background:
    radial-gradient(500px 280px at 90% 10%, rgba(12,204,82,0.07), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--ivory-100) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -40px rgba(20,20,20,0.18);
  transition: transform 0.5s var(--ease-apple), box-shadow 0.5s var(--ease-apple);
}
.reg-card:hover { transform: translateY(-3px); box-shadow: 0 40px 80px -40px rgba(20,20,20,0.22); }
.reg-card::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.reg-card__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; gap: 16px;
}
.reg-card__eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 600;
}
.reg-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 6px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700;
  background: var(--regBg, rgba(12,204,82,0.08));
  color: var(--regColor, var(--accent-d));
  border: 1px solid var(--regBorder, rgba(12,204,82,0.3));
}
.reg-badge--fca  { --regBg: rgba(0, 76, 153, 0.08); --regColor: #003E80; --regBorder: rgba(0, 76, 153, 0.3); }
.reg-badge--asic { --regBg: rgba(0, 102, 102, 0.08); --regColor: #004D4D; --regBorder: rgba(0, 102, 102, 0.3); }
.reg-card h3 {
  font-family: var(--serif); font-size: clamp(28px, 2.8vw, 38px);
  letter-spacing: -0.02em; font-weight: 400; color: var(--ink); margin: 0 0 14px;
}
.reg-card__role {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-d); font-weight: 600; margin-bottom: 14px;
}
.reg-card__desc {
  font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; max-width: 48ch;
}

/* Partner directory grid */
.partners-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line-2); border-radius: var(--radius-lg); overflow: hidden;
}
@media (max-width: 1080px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .partners-grid { grid-template-columns: 1fr; } }
.partner-card {
  position: relative;
  background: var(--paper);
  padding: 32px 26px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background 0.4s var(--ease-apple);
  min-height: 280px;
  overflow: hidden;
}
.partner-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(12,204,82,0.08), transparent 50%);
  opacity: 0; transition: opacity 0.5s var(--ease-apple); pointer-events: none;
}
.partner-card:hover { background: var(--ivory-100); }
.partner-card:hover::before { opacity: 1; }

/* Logo placeholder tile — swap with <img> when actual logos arrive */
.partner-card__logo {
  height: 56px;
  display: flex; align-items: center;
  position: relative; z-index: 2;
}
.partner-card__logo img {
  max-height: 36px; width: auto; max-width: 80%;
}
.partner-card__placeholder {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; letter-spacing: -0.018em;
  color: var(--ink); line-height: 1.05;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  display: inline-block;
}

.partner-card__role {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  position: relative; z-index: 2;
}
.partner-card__name {
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.005em; margin: 0;
  position: relative; z-index: 2;
}
.partner-card__desc {
  font-size: 13px; line-height: 1.55; color: var(--muted); margin: 0;
  position: relative; z-index: 2;
}
.partner-card__meta {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  position: relative; z-index: 2;
}
.partner-card__juris {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 500;
}
.partner-card__chip {
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600;
  padding: 3px 9px; border-radius: 4px;
  background: rgba(12,204,82,0.06);
  border: 1px solid rgba(12,204,82,0.25);
  color: var(--accent-d);
}
.partner-card__chip--fca  { background: rgba(0, 76, 153, 0.06); border-color: rgba(0, 76, 153, 0.3); color: #003E80; }
.partner-card__chip--asic { background: rgba(0, 102, 102, 0.06); border-color: rgba(0, 102, 102, 0.3); color: #004D4D; }
.partner-card__chip--group{ background: rgba(20,20,20,0.04); border-color: var(--line-2); color: var(--ink-soft); }

/* Footer Contact column — labelled sections */
.footer__col--contact .footer__label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  margin: 14px 0 4px;
}
.footer__col--contact .footer__label:first-of-type { margin-top: 6px; }
.footer__col--contact .footer__address {
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 6px;
  padding: 0;
  border-bottom: 0;
}
.footer__col--contact .footer__divider {
  margin: 14px 0 6px;
  height: 1px;
  background: var(--line);
}

/* =========================================================
   Ripple effect — smooth corporate
   Soft expanding ring on click for interactive elements.
   ========================================================= */

.ripple {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(12, 204, 82, 0.5);
  width: 20px; height: 20px;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 100;
  animation: rippleRing 1200ms cubic-bezier(0.32, 0.72, 0, 1) forwards;
  mix-blend-mode: multiply;
}
.ripple--secondary {
  border-color: rgba(12, 204, 82, 0.25);
  animation: rippleRing 1500ms cubic-bezier(0.32, 0.72, 0, 1) 80ms forwards;
}
.ripple--dark { border-color: rgba(77, 255, 154, 0.55); mix-blend-mode: screen; }
.ripple--burgundy { border-color: rgba(107, 25, 57, 0.5); }

@keyframes rippleRing {
  0%   { transform: translate(-50%, -50%) scale(0);   opacity: 0.85; border-width: 1.5px; }
  40%  { opacity: 0.55; }
  100% { transform: translate(-50%, -50%) scale(var(--ripple-scale, 28)); opacity: 0; border-width: 0.4px; }
}

/* Ensure ripple containers clip to their bounds */
.btn, .nav__cta, .feat-cell, .next-step, .eco-node, .spv-node,
.reg-card, .network-card, .risk-card, .rp, .rp-light,
.fcma-doc, .ctrl-btn, .ipo-logo-card, .partner-card, .pillar,
.cards-show .card-mock, .ipo-card, .fcma-chain__node {
  position: relative;
  overflow: hidden;
}

/* Subtle tactile press feedback on primary buttons */
.btn:active { transition-duration: 0.08s; }
.btn:active .magnetic { transform: translate3d(0,0,0) scale(0.985); transition: transform 0.08s var(--ease-apple); }

@media (prefers-reduced-motion: reduce) {
  .ripple { display: none !important; animation: none !important; }
}

/* =========================================================
   Auth buttons in nav — Login (ghost) + Register (filled)
   ========================================================= */

.nav__auth {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: 8px;
}
.nav__login {
  padding: 9px 16px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--ink); background: transparent;
  border: 1px solid var(--line-2);
  transition: border-color 0.3s var(--ease-apple), background 0.3s var(--ease-apple), color 0.3s var(--ease-apple);
}
.nav__login:hover {
  border-color: var(--ink);
  background: rgba(20, 20, 20, 0.03);
}
.nav__register {
  padding: 10px 18px; border-radius: 999px;
  background: var(--ink); color: var(--ivory-100);
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.01em;
  transition: background 0.3s var(--ease-apple), transform 0.35s var(--ease-apple), box-shadow 0.35s var(--ease-apple);
  position: relative; overflow: hidden;
}
.nav__register:hover {
  background: var(--accent-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(7, 165, 67, 0.5);
}

@media (max-width: 900px) {
  .nav__auth { margin-left: 0; flex-direction: column; align-items: stretch; gap: 10px; width: 100%; padding-top: 14px; border-top: 1px solid var(--line); }
  .nav__login, .nav__register { text-align: center; }
}

/* =========================================================
   VFX AI Advisor — bespoke investment calculator
   ========================================================= */

.ai-layout {
  display: grid; grid-template-columns: 1.05fr 1.4fr;
  gap: clamp(28px, 4vw, 56px); align-items: start;
}
@media (max-width: 1080px) { .ai-layout { grid-template-columns: 1fr; } }

/* ----- INPUT CARD ----- */
.ai-calc {
  position: relative; overflow: hidden;
  padding: clamp(28px, 3.4vw, 44px);
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -40px rgba(20,20,20,0.18);
}
.ai-calc::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(12, 204, 82, 0.05), transparent 60%),
    radial-gradient(400px 240px at 0% 100%, rgba(81, 250, 123, 0.06), transparent 60%);
  z-index: 0;
}
.ai-calc > * { position: relative; z-index: 1; }

@media (min-width: 1080px) {
  .ai-calc { position: sticky; top: 100px; }
}

.ai-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px 7px 11px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(12,204,82,0.08), rgba(12,204,82,0.02));
  border: 1px solid rgba(12, 204, 82, 0.3);
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-d); font-weight: 600;
  margin-bottom: 18px;
}
.ai-chip svg { width: 14px; height: 14px; animation: aiPulse 2.4s ease-in-out infinite; }
@keyframes aiPulse {
  0%, 100% { transform: rotate(0) scale(1); opacity: 0.85; }
  50%      { transform: rotate(180deg) scale(1.15); opacity: 1; }
}

.ai-calc h2 {
  font-family: var(--serif); font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.025em; font-weight: 400; color: var(--ink); margin: 0 0 8px;
}
.ai-calc__lede { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0 0 28px; max-width: 50ch; }

.ai-field { margin-top: 26px; }
.ai-field:first-of-type { margin-top: 0; }
.ai-field__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 12px; gap: 10px;
}
.ai-field__label {
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.ai-field__value {
  font-family: var(--serif); font-size: 22px; color: var(--accent-d);
  letter-spacing: -0.015em; font-weight: 500; font-variant-numeric: tabular-nums;
}

/* Amount input */
.amount-input {
  display: flex; align-items: center; padding: 16px 20px;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--ivory-100);
  transition: border-color 0.3s, background 0.3s;
}
.amount-input:focus-within { border-color: var(--ink); background: var(--paper); }
.amount-input__prefix { font-family: var(--serif); font-size: 24px; color: var(--ink); margin-right: 10px; }
.amount-input input {
  flex: 1; border: 0; background: transparent; outline: none;
  font: inherit; font-family: var(--serif); font-size: 24px; color: var(--ink);
  letter-spacing: -0.015em; font-variant-numeric: tabular-nums;
  padding: 0; min-width: 0;
}
.amount-input input::-webkit-outer-spin-button,
.amount-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.amount-input input { -moz-appearance: textfield; }

/* Range slider */
.amount-slider { margin-top: 14px; padding: 0 4px; }
.amount-slider input[type="range"] {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 2px;
  background: linear-gradient(to right,
    var(--accent) 0%, var(--accent) var(--rng, 10%),
    var(--ivory-300) var(--rng, 10%), var(--ivory-300) 100%);
  outline: none;
}
.amount-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--accent), 0 4px 8px rgba(12,204,82,0.4);
  cursor: pointer;
  transition: transform 0.2s;
}
.amount-slider input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.1); }
.amount-slider input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--accent), 0 4px 8px rgba(12,204,82,0.4);
  cursor: pointer; border-width: 3px;
}

.amount-presets { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.amount-presets button {
  padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line-2);
  font-size: 12px; font-weight: 500; color: var(--ink-soft);
  background: transparent; cursor: pointer;
  transition: all 0.3s var(--ease-apple);
}
.amount-presets button:hover { border-color: var(--ink); color: var(--ink); }
.amount-presets button.is-on { background: var(--ink); border-color: var(--ink); color: var(--ivory-100); }

/* Term segmented control */
.term-seg {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
  padding: 4px; background: var(--ivory-100); border: 1px solid var(--line);
  border-radius: 12px;
}
.term-seg button {
  padding: 10px 6px; border: 0; background: transparent; cursor: pointer;
  border-radius: 8px; font-size: 12.5px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-apple);
}
.term-seg button:hover { color: var(--ink); }
.term-seg button.is-on { background: var(--paper); color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,0.06); }

/* Profile cards */
.profile-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.profile-card {
  position: relative; overflow: hidden;
  text-align: left; cursor: pointer;
  padding: 16px 18px; border-radius: 12px;
  border: 1px solid var(--line-2); background: var(--paper);
  transition: all 0.3s var(--ease-apple);
}
.profile-card:hover { border-color: var(--ink); transform: translateY(-1px); }
.profile-card.is-on {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(12,204,82,0.15);
  background: linear-gradient(135deg, rgba(12,204,82,0.06), rgba(12,204,82,0.01));
}
.profile-card__name {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  letter-spacing: -0.015em; color: var(--ink); display: block; margin-bottom: 4px;
}
.profile-card__desc { font-size: 12px; color: var(--muted); line-height: 1.5; display: block; }
.profile-card__dot {
  position: absolute; top: 14px; right: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--profileDot, var(--accent));
}
.profile-card[data-profile="defensive"]  { --profileDot: #4FD8FF; }
.profile-card[data-profile="balanced"]   { --profileDot: #0CCC52; }
.profile-card[data-profile="growth"]     { --profileDot: #FFB547; }
.profile-card[data-profile="aggressive"] { --profileDot: #EF4444; }

/* Calculate button — AI feel */
.ai-cta {
  margin-top: 32px; width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 24px; border-radius: 14px; border: 0;
  background: linear-gradient(135deg, #141414 0%, #2A2A2E 50%, #141414 100%);
  background-size: 200% 200%;
  color: var(--ivory-100); font-family: var(--sans);
  font-size: 14.5px; font-weight: 600; letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.4s var(--ease-apple), box-shadow 0.4s var(--ease-apple);
  box-shadow: 0 14px 30px -10px rgba(20,20,20,0.4), 0 0 0 1px rgba(81,250,123,0.15) inset;
  animation: aiCtaShine 4s ease-in-out infinite;
  position: relative; overflow: hidden;
}
@keyframes aiCtaShine {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.ai-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(12,204,82,0.45), 0 0 0 1px rgba(81,250,123,0.4) inset;
}
.ai-cta__icon {
  width: 18px; height: 18px;
  filter: drop-shadow(0 0 6px rgba(81,250,123,0.6));
  animation: aiPulse 2.4s ease-in-out infinite;
}
.ai-cta:disabled { opacity: 0.7; cursor: progress; }

/* ----- RESULTS PANEL ----- */
.ai-results {
  position: relative; overflow: hidden;
  padding: clamp(32px, 4vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -40px rgba(20,20,20,0.18);
  min-height: 600px;
}
.ai-results::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1s var(--ease-apple);
}
.ai-results.is-revealed::before { transform: scaleX(1); }

/* Empty / waiting state */
.ai-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 60px 20px; min-height: 540px;
  color: var(--muted);
}
.ai-empty__icon {
  width: 64px; height: 64px; margin-bottom: 24px;
  color: var(--accent);
  animation: aiFloat 4s ease-in-out infinite;
}
@keyframes aiFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-6px) rotate(8deg); }
}
.ai-empty h3 {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  letter-spacing: -0.02em; color: var(--ink); margin: 0 0 8px;
}
.ai-empty p { font-size: 14.5px; max-width: 36ch; margin: 0; line-height: 1.6; }

/* Thinking state */
.ai-thinking {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 60px 20px; min-height: 540px;
}
.ai-thinking__orb {
  width: 80px; height: 80px; border-radius: 50%; margin-bottom: 28px;
  background: radial-gradient(circle at 30% 30%, #51FA7B, #0CCC52);
  box-shadow: 0 0 40px rgba(12,204,82,0.5);
  animation: aiThink 1.8s ease-in-out infinite;
  position: relative;
}
.ai-thinking__orb::before, .ai-thinking__orb::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1.5px solid rgba(12,204,82,0.35);
  animation: aiRing 1.8s ease-out infinite;
}
.ai-thinking__orb::after { animation-delay: 0.6s; }
@keyframes aiThink {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}
@keyframes aiRing {
  0%   { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}
.ai-thinking__text {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--ink); letter-spacing: -0.015em;
  min-height: 30px;
}
.ai-thinking__steps {
  margin-top: 18px; display: flex; flex-direction: column; gap: 6px;
  font-size: 12.5px; color: var(--muted-2); letter-spacing: 0.04em;
}
.ai-thinking__step {
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s;
}
.ai-thinking__step.is-on { opacity: 1; transform: translateY(0); color: var(--accent-d); }
.ai-thinking__step::before {
  content: "→ "; opacity: 0.5;
}

/* Result content */
.ai-result-body {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease-apple), transform 0.8s var(--ease-apple);
}
.ai-result-body.is-revealed { opacity: 1; transform: translateY(0); }

.ai-rec {
  padding: 20px 22px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(12,204,82,0.05), rgba(81,250,123,0.02));
  border: 1px solid rgba(12,204,82,0.2);
  margin-bottom: 28px;
  font-family: var(--serif); font-size: 17px; line-height: 1.55;
  letter-spacing: -0.01em; color: var(--ink-soft);
  position: relative;
}
.ai-rec::before {
  content: ""; position: absolute; left: 22px; top: -8px;
  background: var(--paper); padding: 0 8px;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-d); font-weight: 600;
  content: "AI RECOMMENDATION";
}
.ai-rec__cursor {
  display: inline-block; width: 2px; height: 18px;
  background: var(--accent-d); vertical-align: middle;
  margin-left: 2px; animation: cursorBlink 1s steps(2) infinite;
}
@keyframes cursorBlink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* Donut chart + breakdown */
.ai-alloc {
  display: grid; grid-template-columns: 220px 1fr; gap: 32px;
  align-items: center; margin-bottom: 28px;
}
@media (max-width: 720px) { .ai-alloc { grid-template-columns: 1fr; gap: 24px; } }

.donut {
  width: 220px; height: 220px; border-radius: 50%; position: relative;
  background: conic-gradient(
    var(--accent-d) 0% var(--p1, 50%),
    #6B4DFF var(--p1, 50%) var(--p2, 80%),
    #FFB547 var(--p2, 80%) 100%
  );
  transition: --p1 1.4s var(--ease-apple), --p2 1.4s var(--ease-apple);
}
.donut::before {
  content: ""; position: absolute; inset: 14px;
  border-radius: 50%; background: var(--paper);
}
.donut__center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.donut__center .k { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.donut__center .v { font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: -0.02em; color: var(--ink); margin-top: 4px; font-variant-numeric: tabular-nums; }

.alloc-breakdown { display: flex; flex-direction: column; gap: 12px; }
.alloc-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center;
  padding: 12px 0; border-top: 1px solid var(--line);
}
.alloc-row:first-child { border-top: 0; padding-top: 0; }
.alloc-row__dot { width: 10px; height: 10px; border-radius: 2px; background: var(--rowColor, var(--accent)); }
.alloc-row__name { font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--ink); }
.alloc-row__sub { font-size: 12px; color: var(--muted); }
.alloc-row__amt { font-family: var(--serif); font-size: 18px; color: var(--ink); font-weight: 400; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.alloc-row__pct { font-size: 12px; color: var(--muted-2); margin-left: 8px; }
.alloc-row[data-color="fixed"]    { --rowColor: #07A543; }
.alloc-row[data-color="variable"] { --rowColor: #6B4DFF; }
.alloc-row[data-color="pe"]       { --rowColor: #FFB547; }

/* Mandate cards (per-pillar detail) */
.mandate-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line-2); border-radius: 12px;
  overflow: hidden; margin: 24px 0 28px;
}
@media (max-width: 720px) { .mandate-cards { grid-template-columns: 1fr; } }
.mandate-card { padding: 18px 18px 20px; background: var(--paper); }
.mandate-card__head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px;
}
.mandate-card__name { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.mandate-card__pct { font-family: var(--serif); font-size: 22px; color: var(--ink); letter-spacing: -0.02em; font-weight: 400; font-variant-numeric: tabular-nums; }
.mandate-card__title { font-family: var(--serif); font-size: 17px; color: var(--ink); margin: 4px 0 8px; letter-spacing: -0.015em; font-weight: 400; }
.mandate-card__amt { font-family: var(--serif); font-size: 24px; color: var(--accent-d); font-weight: 500; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; margin-bottom: 10px; }
.mandate-card__note { font-size: 11.5px; color: var(--muted); line-height: 1.5; }

/* Scenario projections */
.scenarios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 720px) { .scenarios { grid-template-columns: 1fr; } }
.scenario {
  padding: 20px 18px; border-radius: 12px; background: var(--ivory-100);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.scenario--mid {
  background: linear-gradient(135deg, rgba(12,204,82,0.08), rgba(12,204,82,0.02));
  border-color: rgba(12,204,82,0.3);
}
.scenario__lbl { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.scenario__lbl--mid { color: var(--accent-d); }
.scenario__val {
  font-family: var(--serif); font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 400; letter-spacing: -0.025em; color: var(--ink);
  margin: 8px 0 4px; font-variant-numeric: tabular-nums;
}
.scenario__delta { font-size: 12.5px; color: var(--muted); }
.scenario__delta--up { color: var(--accent-d); font-weight: 600; }
.scenario__delta--mid-up { color: var(--accent-d); font-weight: 600; }
.scenario__delta--down { color: #DC2626; }

/* Footer of result panel */
.ai-foot {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.ai-foot__caveat {
  flex: 1; font-size: 11.5px; color: var(--muted-2); line-height: 1.55; min-width: 200px;
}
.ai-foot__actions { display: flex; gap: 10px; }

/* Objective cards — 3 across, icon-led */
.profile-cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) { .profile-cards--3 { grid-template-columns: 1fr; } }
.profile-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(12, 204, 82, 0.08); color: var(--accent-d);
  border: 1px solid rgba(12, 204, 82, 0.22);
  margin-bottom: 10px;
  transition: all 0.3s var(--ease-apple);
}
.profile-card.is-on .profile-card__icon {
  background: rgba(12, 204, 82, 0.18);
  border-color: rgba(12, 204, 82, 0.5);
}

/* =========================================================
   VFX AI feature section — home page call-out
   ========================================================= */

.ai-feature {
  position: relative; overflow: hidden;
  padding: clamp(56px, 7vw, 100px) clamp(32px, 5vw, 72px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(12, 204, 82, 0.18), transparent 60%),
    radial-gradient(600px 320px at 10% 100%, rgba(81, 250, 123, 0.10), transparent 60%),
    linear-gradient(135deg, #0E0E14 0%, #050507 60%, #0A0A0E 100%);
  color: #EDECF2;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 50px 120px -50px rgba(12, 204, 82, 0.25), inset 0 1px 0 rgba(255,255,255,0.05);
}
.ai-feature::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 80% 30%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 80% 30%, #000, transparent 70%);
}
.ai-feature__inner {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(40px, 5vw, 80px);
  align-items: center; position: relative; z-index: 2;
}
@media (max-width: 900px) { .ai-feature__inner { grid-template-columns: 1fr; } }

.ai-feature__chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 12px; border-radius: 999px;
  background: rgba(12, 204, 82, 0.12);
  border: 1px solid rgba(81, 250, 123, 0.4);
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #4DFF9A; font-weight: 700; margin-bottom: 22px;
}
.ai-feature__chip svg { width: 14px; height: 14px; animation: aiPulse 2.4s ease-in-out infinite; }
.ai-feature h2 {
  font-family: var(--serif); font-size: clamp(34px, 4.4vw, 60px);
  letter-spacing: -0.03em; font-weight: 300; line-height: 1.05;
  color: #F6F5FA; margin: 0 0 22px;
}
.ai-feature h2 .accent { color: #4DFF9A; font-style: italic; font-weight: 400; }
.ai-feature p {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.65;
  color: rgba(237, 236, 242, 0.7); margin: 0 0 28px; max-width: 52ch;
}
.ai-feature__stats {
  display: flex; gap: 28px; margin-bottom: 32px; flex-wrap: wrap;
}
.ai-feature__stat .k {
  font-family: var(--serif); font-size: 28px; color: #F6F5FA;
  letter-spacing: -0.02em; font-weight: 400; font-variant-numeric: tabular-nums;
}
.ai-feature__stat .l {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(237, 236, 242, 0.5); font-weight: 600; margin-top: 4px;
}
.ai-feature__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-radius: 999px;
  background: linear-gradient(135deg, #4DFF9A, #0CCC52);
  color: #0A0A0E;
  font-size: 14.5px; font-weight: 600; letter-spacing: 0.04em;
  transition: transform 0.4s var(--ease-apple), box-shadow 0.4s var(--ease-apple);
  box-shadow: 0 12px 30px -8px rgba(12, 204, 82, 0.5);
  position: relative; overflow: hidden;
}
.ai-feature__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(81, 250, 123, 0.7);
}
.ai-feature__cta svg { width: 16px; height: 16px; }

/* Right-side AI orb visual */
.ai-feature__visual {
  position: relative; aspect-ratio: 1/1;
  display: grid; place-items: center;
}
.ai-orb {
  width: 60%; aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #51FA7B, #0CCC52 60%, #07A543);
  box-shadow: 0 0 80px rgba(12,204,82,0.55), 0 0 20px rgba(81,250,123,0.4) inset;
  position: relative;
  animation: aiOrbBreathe 5s ease-in-out infinite;
}
@keyframes aiOrbBreathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.ai-orb::before, .ai-orb::after {
  content: ""; position: absolute; inset: -8%; border-radius: 50%;
  border: 1.5px solid rgba(81, 250, 123, 0.4);
  animation: aiOrbRing 3.6s ease-out infinite;
}
.ai-orb::after { animation-delay: 1.2s; }
@keyframes aiOrbRing {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.ai-feature__sparkles {
  position: absolute; inset: 0; pointer-events: none;
}
.ai-feature__sparkles svg {
  position: absolute; color: #4DFF9A;
  filter: drop-shadow(0 0 8px rgba(81, 250, 123, 0.7));
  animation: sparkleFloat 4s ease-in-out infinite;
}
.ai-feature__sparkles svg:nth-child(1) { top: 12%; right: 18%; width: 22px; animation-delay: 0s; }
.ai-feature__sparkles svg:nth-child(2) { top: 30%; left: 12%; width: 14px; animation-delay: 1.2s; }
.ai-feature__sparkles svg:nth-child(3) { bottom: 25%; right: 8%; width: 18px; animation-delay: 0.6s; }
.ai-feature__sparkles svg:nth-child(4) { bottom: 12%; left: 28%; width: 12px; animation-delay: 2s; }
@keyframes sparkleFloat {
  0%, 100% { opacity: 0.4; transform: translateY(0) scale(1); }
  50%      { opacity: 1;   transform: translateY(-6px) scale(1.15); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ai-orb, .ai-orb::before, .ai-orb::after, .ai-feature__sparkles svg, .ai-feature__chip svg { animation: none !important; }
}

/* =========================================================
   VFX AI calculator — landscape layout
   Inputs full-width, results below. No more sticky sidebar.
   ========================================================= */

.ai-layout {
  display: flex !important;
  flex-direction: column;
  grid-template-columns: none !important;
  gap: clamp(24px, 3vw, 40px);
}
@media (min-width: 1080px) {
  .ai-calc {
    position: static !important;  /* remove sticky behaviour */
    top: auto !important;
  }
}

/* Two-column row inside the inputs card (Amount paired with Term) */
.ai-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  margin-top: 26px;
}
@media (max-width: 760px) { .ai-grid-2 { grid-template-columns: 1fr; gap: 24px; } }
.ai-grid-2 .ai-field { margin-top: 0; }

/* Risk profile cards: 4-across when the calc card is full width */
.profile-cards:not(.profile-cards--3) { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .profile-cards:not(.profile-cards--3) { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .profile-cards:not(.profile-cards--3) { grid-template-columns: 1fr; } }

/* Results panel — slightly tighter min-height when stacked */
.ai-results { min-height: 480px; }
.ai-empty, .ai-thinking { min-height: 420px; }
