/* =====================================================================
   Vortex Street — IPO Subdomain (ipo.vortex-street.com)
   Shared stylesheet. Design tokens mirror the main site vortex-street.com.
   Colors:  navy #0B1F33 · gold #B99044 · cream #F7F3EA · ink #1F2933
   Fonts:   Playfair Display (headings) · Inter (body)
   ===================================================================== */

:root {
  --navy:        #0B1F33;
  --navy-deep:   #08192a;   /* darker navy for gradients/footer */
  --gold:        #b99044;
  --gold-soft:   #c8a768;
  --cream:       #f7f3ea;
  --cream-line:  #ece5d6;
  --ink:         #1f2933;
  --ink-soft:    #4a5560;
  --white:       #ffffff;

  --maxw: 1200px;
  --header-h: 72px;

  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(11, 31, 51, .08);
  --shadow-md: 0 12px 30px -12px rgba(11, 31, 51, .25);
  --shadow-lg: 0 30px 60px -20px rgba(11, 31, 51, .35);

  --ff-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-serif); font-weight: 500; color: var(--navy); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.15rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p  { color: var(--ink-soft); line-height: 1.65; }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: rgba(255,255,255,.85); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy p { color: rgba(255,255,255,.72); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; font-size: 1.075rem; }

.lede { font-size: 1.15rem; line-height: 1.7; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  padding: 13px 24px; border: 1px solid transparent; border-radius: var(--radius);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline { background: transparent; color: var(--navy); border-color: rgba(11,31,51,.25); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: 9px 16px; font-size: .74rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 31, 51, .95);
  backdrop-filter: blur(8px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.site-header__bar {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { height: 34px; width: auto; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--ff-serif); font-size: 1.02rem; letter-spacing: .02em; color: #fff; }
.brand__sub  { font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }

/* ---------- nav with dropdown menus (mirrors main site) ---------- */
.nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 0; cursor: pointer;
  padding: 8px 12px; font-size: 13px; letter-spacing: .02em; white-space: nowrap;
  color: rgba(255,255,255,.8); transition: color .2s;
}
.nav-link:hover, .nav-item.open > .nav-link, .nav-link.is-active { color: #fff; }
.nav-link .caret { font-size: 9px; color: var(--gold); transition: transform .3s; }
.nav-item.open > .nav-link .caret { transform: rotate(180deg); }
.nav-link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav-link:hover::after, .nav-item.open > .nav-link::after, .nav-link.is-active::after { transform: scaleX(1); }

.dropdown {
  position: absolute; top: calc(100% + 2px); left: 0; width: 320px; z-index: 60;
  background: var(--navy); box-shadow: 0 20px 25px -5px rgba(8,20,34,.5), 0 8px 10px -6px rgba(8,20,34,.5);
  border: 1px solid rgba(255,255,255,.08);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-item:hover .dropdown, .nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown__item { display: flex; gap: 12px; align-items: flex-start; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.06); transition: background .2s; }
.dropdown__item:last-child { border-bottom: 0; }
.dropdown__item:hover { background: rgba(255,255,255,.05); }
.dropdown__item .t { display: block; font-size: 13px; letter-spacing: .01em; color: #fff; }
.dropdown__item .d { display: block; margin-top: 2px; font-size: 11.5px; line-height: 1.5; color: rgba(255,255,255,.5); }
.dropdown__dot { width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0; display: grid; place-items: center; font-family: var(--ff-serif); font-size: .82rem; color: #fff; margin-top: 1px; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.lang-select {
  cursor: pointer; border: 1px solid rgba(255,255,255,.2); background: transparent;
  color: rgba(255,255,255,.8); font-size: 12px; letter-spacing: .04em; text-transform: uppercase;
  padding: 7px 9px; border-radius: var(--radius); outline: none; transition: border-color .2s, color .2s;
}
.lang-select:hover, .lang-select:focus { border-color: var(--gold); color: #fff; }
.lang-select option { color: var(--navy); }
.btn--gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--gold-outline:hover { background: var(--gold); color: var(--navy); }

.nav-toggle { display: none; background: transparent; border: 0; color: #fff; padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* keep header from crowding on small screens */
@media (max-width: 640px) {
  .site-header__bar { gap: 12px; }
  .header__actions { gap: 8px; }
  .brand__txt { display: none; }           /* monogram alone is enough branding */
  .header__actions .btn { padding: 8px 12px; }
}

/* mobile nav — dropdowns become accordions */
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 8px 16px 24px; transform: translateY(-120%); transition: transform .28s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: translateY(0); }
  .nav-item { border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-link { width: 100%; justify-content: space-between; padding: 15px 8px; font-size: .95rem; }
  .nav-link::after { display: none; }
  .dropdown {
    position: static; width: auto; opacity: 1; visibility: hidden; transform: none;
    background: rgba(0,0,0,.18); box-shadow: none; border: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s ease, visibility .3s;
  }
  .nav-item.open .dropdown { visibility: visible; max-height: 520px; }
  .nav-item:hover .dropdown { opacity: 1; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; background: var(--navy); color: #fff; overflow: hidden;
}
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  background: url("/assets/img/hero-finance.jpg?v=3") center/cover no-repeat;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1000px 520px at 82% 15%, rgba(185,144,68,.22), transparent 60%),
    linear-gradient(100deg, rgba(8,20,34,.97) 0%, rgba(11,31,51,.9) 38%, rgba(11,31,51,.55) 72%, rgba(13,36,60,.4) 100%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(64px, 11vw, 132px) clamp(56px, 9vw, 104px); }
.hero h1 { color: #fff; max-width: 15ch; margin-top: 22px; }
.hero .lede { color: rgba(255,255,255,.78); max-width: 60ch; margin-top: 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 54px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__stat .n { font-family: var(--ff-serif); font-size: 2rem; color: var(--gold); }
.hero__stat .l { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 4px; letter-spacing: .02em; }

/* ---------- generic grid & cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--cream-line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s, border-color .25s;
}
.card--hover:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(185,144,68,.4); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .95rem; }
.card__num { font-family: var(--ff-serif); font-size: 1.4rem; color: var(--gold); margin-bottom: 14px; }

/* ---------- process steps ---------- */
.steps { counter-reset: step; display: grid; gap: 2px; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.12); }
.step:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.step__n { counter-increment: step; font-family: var(--ff-serif); font-size: 1.6rem; color: var(--gold); }
.step__n::before { content: "0" counter(step); }
.step h3 { color: #fff; margin-bottom: 8px; }

/* ---------- company overview cards ---------- */
.co-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.co-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--cream-line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.co-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(185,144,68,.45); }
.co-card__top { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px 0; }
.co-logo {
  width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center;
  font-family: var(--ff-serif); font-size: 1.35rem; font-weight: 600; color: #fff; flex-shrink: 0;
}
.co-sector { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.co-card__body { padding: 16px 24px 0; flex: 1; }
.co-card__body h3 { font-size: 1.35rem; margin-bottom: 6px; }
.co-card__body p { font-size: .9rem; }
.co-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 22px 0 0; background: var(--cream-line); border-top: 1px solid var(--cream-line); }
.co-metric { background: #fff; padding: 16px 24px; }
.co-metric .l { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.co-metric .v { font-family: var(--ff-serif); font-size: 1.25rem; color: var(--navy); margin-top: 3px; }
.co-metric .v.gold { color: var(--gold); }
.co-card__foot { padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; background: var(--cream); }
.co-card__foot .status { font-size: .78rem; color: var(--ink-soft); }
.co-card__link { font-size: .82rem; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.co-card__link .arw { color: var(--gold); transition: transform .2s; }
.co-card:hover .co-card__link .arw { transform: translateX(4px); }

/* ---------- badges & pills ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600;
  letter-spacing: .03em; padding: 5px 11px; border-radius: 999px;
}
.badge--open { background: rgba(46,125,80,.12); color: #2e7d50; }
.badge--wait { background: rgba(185,144,68,.14); color: #96702c; }
.badge--soon { background: rgba(31,41,51,.08); color: var(--ink-soft); }
.badge--filed { background: rgba(30,90,150,.12); color: #1e5a96; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ---------- company detail page ---------- */
.co-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.co-hero__photo { position: absolute; inset: 0; background-image: var(--photo); background-size: cover; background-position: center; }
.co-hero__bg { position: absolute; inset: 0; background: radial-gradient(900px 500px at 88% 8%, rgba(185,144,68,.20), transparent 58%), linear-gradient(105deg, rgba(8,20,34,.95) 0%, rgba(11,31,51,.86) 45%, rgba(13,36,60,.62) 100%); }
.co-hero__inner { position: relative; z-index: 1; padding-block: clamp(48px, 8vw, 88px); }
.breadcrumbs { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 26px; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 8px; color: rgba(255,255,255,.35); }
.co-hero__head { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.co-hero__head .co-logo { width: 64px; height: 64px; font-size: 1.9rem; border-radius: 14px; }
.co-hero h1 { color: #fff; }
.co-hero__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.co-hero .lede { color: rgba(255,255,255,.8); max-width: 70ch; margin-top: 26px; }

.keyfacts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 44px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 780px) { .keyfacts { grid-template-columns: repeat(2, 1fr); } }
.keyfact { background: var(--navy); padding: 22px; }
.keyfact .l { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.keyfact .v { font-family: var(--ff-serif); font-size: 1.55rem; color: #fff; margin-top: 6px; }
.keyfact .v.gold { color: var(--gold); }
.keyfact .sub { font-size: .74rem; color: rgba(255,255,255,.5); margin-top: 4px; }

/* content layout: main + sticky sidebar */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
@media (max-width: 980px) { .detail-grid { grid-template-columns: 1fr; } }
.prose h2 { margin: 8px 0 16px; }
.prose h3 { margin: 34px 0 12px; color: var(--navy); }
.prose p { margin-bottom: 16px; }
.prose ul.ticks { margin: 8px 0 20px; display: grid; gap: 10px; }
.prose ul.ticks li { position: relative; padding-left: 28px; color: var(--ink-soft); }
.prose ul.ticks li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* valuation history table */
.table-wrap { overflow-x: auto; border: 1px solid var(--cream-line); border-radius: var(--radius); }
table.data { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 460px; }
table.data th, table.data td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--cream-line); }
table.data thead th { background: var(--cream); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data td.val { font-family: var(--ff-serif); color: var(--navy); }
table.data .latest td { background: rgba(185,144,68,.07); }

/* sidebar buy box */
.buybox { position: sticky; top: calc(var(--header-h) + 20px); border: 1px solid var(--cream-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.buybox__head { background: var(--navy); color: #fff; padding: 22px 24px; }
.buybox__head .l { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.buybox__price { font-family: var(--ff-serif); font-size: 2.4rem; color: var(--gold); margin-top: 6px; line-height: 1; }
.buybox__price small { font-size: .95rem; color: rgba(255,255,255,.6); font-family: var(--ff-sans); }
.buybox__body { background: #fff; padding: 8px 24px 24px; }
.buybox__row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--cream-line); font-size: .9rem; }
.buybox__row:last-of-type { border-bottom: 0; }
.buybox__row .k { color: var(--ink-soft); }
.buybox__row .v { font-weight: 600; color: var(--navy); text-align: right; }
.buybox .btn { width: 100%; margin-top: 16px; }
.buybox__note { font-size: .72rem; color: var(--ink-soft); margin-top: 14px; line-height: 1.5; }

.updated { font-size: .74rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 7px; }
.updated .dot { background: #2e7d50; }

.source-list { display: grid; gap: 10px; margin-top: 12px; }
.source-list a { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: var(--navy); padding: 12px 14px; border: 1px solid var(--cream-line); border-radius: var(--radius); transition: border-color .2s, background .2s; }
.source-list a:hover { border-color: var(--gold); background: var(--cream); }
.source-list .src-tag { font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }

/* ---------- disclaimer / risk callout ---------- */
.callout { border: 1px solid var(--cream-line); border-left: 3px solid var(--gold); background: var(--cream); border-radius: var(--radius); padding: 22px 26px; }
.callout h4 { color: var(--navy); margin-bottom: 8px; }
.callout p { font-size: .9rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 56ch; margin: 16px auto 0; }
.cta-band .hero__cta { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand__name { font-size: 1.1rem; }
.footer-brand p { font-size: .88rem; margin-top: 16px; max-width: 34ch; color: rgba(255,255,255,.6); }
.footer-col h5 { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-family: var(--ff-sans); font-weight: 600; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a, .footer-col li { font-size: .88rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-disclaimer { margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-disclaimer p { font-size: .76rem; line-height: 1.7; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.footer-bottom { margin-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .78rem; color: rgba(255,255,255,.45); }

/* ---------- utilities ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.center { text-align: center; }
[hidden] { display: none !important; }

/* language visibility — <html data-lang="de|en|sv"> shows only that language's spans */
html[data-lang="de"] [data-lang-en], html[data-lang="de"] [data-lang-sv],
html[data-lang="en"] [data-lang-de], html[data-lang="en"] [data-lang-sv],
html[data-lang="sv"] [data-lang-de], html[data-lang="sv"] [data-lang-en] { display: none !important; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* =====================================================================
   ENHANCEMENTS — charts, stage tracker, financials, imagery
   ===================================================================== */

/* brand tag next to monogram */
.brand__tag { font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(185,144,68,.5); padding: 3px 7px; border-radius: 3px; }

/* ---------- hero skyline art (landing) ---------- */
.hero__art { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__art svg { position: absolute; right: 0; bottom: 0; width: min(62%, 820px); height: auto; opacity: .9; }
@media (max-width: 760px){ .hero__art svg { width: 120%; opacity: .5; } }

/* ---------- section intro image band ---------- */
.figure { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--cream-line); background: var(--navy); box-shadow: var(--shadow-md); }
.figure svg { display: block; width: 100%; height: auto; }
.figure__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px; background: linear-gradient(transparent, rgba(8,20,34,.82)); color: #fff; font-size: .82rem; }

/* ---------- pre-IPO stage tracker ---------- */
.stage-track { margin: 6px 0 4px; }
.stage-bar { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 18px; }
.stage-seg { position: relative; text-align: center; padding-top: 26px; }
.stage-seg::before { content: ""; position: absolute; top: 8px; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.14); }
.stage-seg:first-child::before { left: 50%; border-radius: 3px 0 0 3px; }
.stage-seg:last-child::before { right: 50%; border-radius: 0 3px 3px 0; }
.stage-seg.done::before, .stage-seg.active::before { background: var(--gold); }
.stage-seg .node { position: absolute; top: 3px; left: 50%; transform: translateX(-50%); width: 13px; height: 13px; border-radius: 50%; background: var(--navy); border: 2px solid rgba(255,255,255,.3); z-index: 1; }
.stage-seg.done .node { background: var(--gold); border-color: var(--gold); }
.stage-seg.active .node { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 5px rgba(185,144,68,.25); }
.stage-seg .lbl { font-size: .72rem; color: rgba(255,255,255,.55); letter-spacing: .02em; }
.stage-seg.active .lbl { color: #fff; font-weight: 600; }
/* light-surface variant */
.stage-bar.on-light .stage-seg::before { background: var(--cream-line); }
.stage-bar.on-light .stage-seg.done::before, .stage-bar.on-light .stage-seg.active::before { background: var(--gold); }
.stage-bar.on-light .stage-seg .node { background: #fff; border-color: rgba(11,31,51,.2); }
.stage-bar.on-light .stage-seg.done .node, .stage-bar.on-light .stage-seg.active .node { background: var(--gold); border-color: var(--gold); }
.stage-bar.on-light .stage-seg .lbl { color: var(--ink-soft); }
.stage-bar.on-light .stage-seg.active .lbl { color: var(--navy); }
@media (max-width: 560px){ .stage-seg .lbl { font-size: .6rem; } }

/* ---------- charts ---------- */
.chart-card { border: 1px solid var(--cream-line); border-radius: var(--radius); background: #fff; padding: 22px 22px 12px; box-shadow: var(--shadow-sm); }
.chart-card h3 { font-size: 1.1rem; margin-bottom: 2px; }
.chart-card .sub { font-size: .8rem; color: var(--ink-soft); margin-bottom: 12px; }
.chart { width: 100%; height: auto; overflow: visible; display: block; }
.chart .axis { stroke: var(--cream-line); stroke-width: 1; }
.chart .grid-line { stroke: #eee6d6; stroke-width: 1; stroke-dasharray: 3 4; }
.chart .area { opacity: .16; }
.chart .line { fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.chart .line.dashed { stroke-dasharray: 5 5; opacity: .7; }
.chart .dot { stroke: #fff; stroke-width: 2; }
.chart .pt-label { font-family: var(--ff-sans); font-size: 11px; fill: var(--navy); font-weight: 600; }
.chart .x-label { font-family: var(--ff-sans); font-size: 10.5px; fill: var(--ink-soft); }
.chart .y-label { font-family: var(--ff-sans); font-size: 10px; fill: var(--ink-soft); }
.chart-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; font-size: .78rem; color: var(--ink-soft); }
.chart-legend span { display: inline-flex; align-items: center; gap: 7px; }
.chart-legend i { width: 14px; height: 3px; border-radius: 2px; display: inline-block; }
.chart-note { font-size: .74rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------- financials tiles ---------- */
.fin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 820px){ .fin-grid { grid-template-columns: repeat(2, 1fr); } }
.fin-tile { border: 1px solid var(--cream-line); border-radius: var(--radius); padding: 18px; background: var(--cream); }
.fin-tile .l { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.fin-tile .v { font-family: var(--ff-serif); font-size: 1.5rem; color: var(--navy); margin-top: 6px; }

/* ---------- chips (investors / competitors) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.chip { font-size: .8rem; padding: 7px 13px; border-radius: 999px; background: var(--cream); border: 1px solid var(--cream-line); color: var(--navy); }
.chip--ghost { background: transparent; color: var(--ink-soft); }

/* ---------- product list ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 620px){ .prod-grid { grid-template-columns: 1fr; } }
.prod { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--cream-line); border-radius: var(--radius); background: #fff; }
.prod .mk { width: 8px; height: 8px; border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.prod .n { font-weight: 600; color: var(--navy); font-size: .92rem; }
.prod .d { font-size: .82rem; color: var(--ink-soft); margin-top: 2px; }

/* ---------- company hero banner art ---------- */
.co-hero__art { position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: .9; }
.co-hero__art svg { position: absolute; right: -4%; top: 50%; transform: translateY(-50%); height: 150%; width: auto; opacity: .5; }
.co-hero .co-logo { box-shadow: 0 10px 30px -8px rgba(0,0,0,.5); }

/* prose sub-blocks */
.prose-block { margin-top: 40px; }
.prose-block > h3 { margin-bottom: 14px; }
.mini-eyebrow { font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }

/* market context cards on home */
.metric-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 720px){ .metric-strip { grid-template-columns: 1fr; } }
.metric-big { text-align: center; padding: 8px; }
.metric-big .n { font-family: var(--ff-serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.metric-big .l { margin-top: 10px; color: rgba(255,255,255,.7); font-size: .9rem; }

/* =====================================================================
   REAL LOGOS + PHOTOS
   ===================================================================== */

/* logo plate (holds a real wordmark on white) */
.logo-plate {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--cream-line); border-radius: 8px;
  padding: 8px 14px; overflow: hidden; box-shadow: var(--shadow-sm);
}
/* NB: several brand SVGs carry only a viewBox (no intrinsic width/height),
   so we MUST set an explicit height (not max-height) or they collapse to 0. */
.logo-plate .logo-img { width: auto; object-fit: contain; display: block; }
.logo-plate.is-text { font-family: var(--ff-serif); font-weight: 600; color: var(--navy); }
.logo-plate--hero { height: 60px; padding: 10px 18px; }
.logo-plate--hero .logo-img { height: 34px; max-width: 210px; }
.logo-plate--hero.is-text { font-size: 1.5rem; }
.logo-plate--card { height: 44px; padding: 7px 14px; }
.logo-plate--card .logo-img { height: 24px; max-width: 160px; }
.logo-plate--card.is-text { font-size: 1.15rem; }
.logo-plate--sm { height: 34px; padding: 5px 10px; border-radius: 6px; box-shadow: none; flex-shrink: 0; }
.logo-plate--sm .logo-img { height: 18px; max-width: 120px; }
.logo-plate--sm.is-text { font-size: .95rem; }

/* dropdown item with a logo */
.dropdown__item--logo { align-items: center; }
.dropdown__item--logo .d { color: rgba(255,255,255,.55); }

/* logo wall band under hero */
.logo-wall-band { background: var(--cream); border-bottom: 1px solid var(--cream-line); padding: 30px 0; }
.logo-wall-label { text-align: center; font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 20px; }
.logo-wall { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px 48px; }
.logo-wall__item { display: inline-flex; align-items: center; height: 34px; filter: grayscale(1); opacity: .62; transition: filter .25s, opacity .25s, transform .25s; }
.logo-wall__item:hover { filter: none; opacity: 1; transform: translateY(-2px); }
.logo-wall__item .logo-img { height: 28px; max-width: 160px; width: auto; object-fit: contain; }
@media (max-width: 620px){ .logo-wall { gap: 18px 28px; } .logo-wall__item { height: 24px; } .logo-wall__item .logo-img { height: 22px; max-width: 120px; } }

/* figure image (market photo) */
.figure { aspect-ratio: 16 / 11; }
.figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* company hero head alignment with logo plate */
.co-hero__head { align-items: center; }

/* ---------- exposé download card (company detail sidebar) ---------- */
.expose-card { margin-top: 22px; border: 1px solid var(--cream-line); border-top: 3px solid var(--gold); border-radius: var(--radius); background: var(--cream); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.expose-card__k { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.expose-card h3 { font-size: 1.15rem; margin: 7px 0 8px; }
.expose-card p { font-size: .86rem; margin-bottom: 16px; }
.expose-card .btn { width: 100%; margin-bottom: 10px; }
.expose-card .btn:last-child { margin-bottom: 0; }
