:root {
  --navy-950: #061224;
  --navy-900: #0b1b38;
  --navy-800: #12305f;
  --navy-700: #1b4689;
  --ink-900: #121826;
  --ink-700: #5f6b7b;
  --paper-100: #f7f4ee;
  --paper-200: #eee8dc;
  --paper-300: #e3dac8;
  --white: #f8fafc;
  --gold: #b59765;
  --line: rgba(18, 24, 38, 0.1);
  --line-strong: rgba(255, 255, 255, 0.12);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --shadow: 0 22px 70px rgba(8, 18, 36, 0.08);
  --shadow-deep: 0 28px 90px rgba(0, 0, 0, 0.18);
  --radius-lg: 30px;
  --radius-md: 22px;
  --header-height: 88px;
  --page-tabs-offset: 138px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  color: var(--ink-900);
  font-family: "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(181, 151, 101, 0.08), transparent 22%),
    linear-gradient(180deg, var(--paper-100) 0%, #f4f1ea 52%, #fbfaf7 100%);
}

body[data-page="home"] {
  background:
    radial-gradient(circle at top right, rgba(181, 151, 101, 0.08), transparent 18%),
    linear-gradient(180deg, #071526 0%, #08172b 48%, #0a1830 100%);
}

img {
  display: block;
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(247, 244, 238, 0.82);
  border-bottom: 1px solid rgba(18, 24, 38, 0.06);
}

body[data-page="home"] .site-header {
  background: rgba(7, 21, 38, 0.84);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
}

.header-left,
.header-right,
.header-socials {
  display: flex;
  align-items: center;
}

.header-left {
  gap: 26px;
}

.header-right {
  gap: 12px;
}

.header-socials {
  gap: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink-900);
  text-decoration: none;
}

.brand img {
  height: 52px;
  width: auto;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

body[data-page="home"] .brand img {
  height: 56px;
}

.global-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.global-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink-700);
  text-decoration: none;
  font-size: 0.94rem;
  transition: background 180ms ease, color 180ms ease;
}

.global-nav a.is-active {
  color: var(--white);
  background: var(--navy-900);
}

body[data-page="home"] .global-nav a {
  color: rgba(248, 250, 252, 0.74);
}

body[data-page="home"] .global-nav a.is-active {
  color: var(--navy-950);
  background: var(--paper-200);
}

.header-icon,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-icon {
  width: 40px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 999px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.76);
}

.header-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.contact-link {
  padding: 0 16px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 600;
}

.header-icon:hover,
.contact-link:hover {
  border-color: rgba(18, 48, 95, 0.18);
}

body[data-page="home"] .header-icon {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

body[data-page="home"] .contact-link {
  color: var(--navy-950);
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--paper-200);
}

.market-strip {
  padding: 12px 0 0;
}

.market-strip .shell {
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

body[data-page="home"] .market-strip .shell {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.ticker-tape-widget {
  position: relative;
  min-height: 52px;
}

.widget-placeholder {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.ticker-tape-widget > .widget-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  color: rgba(248, 250, 252, 0.74);
}

.ticker-tape-widget .tradingview-widget-container__widget,
.symbol-overview-widget .tradingview-widget-container__widget {
  position: relative;
  z-index: 1;
}

.page {
  padding: 28px 0 80px;
}

.hero {
  display: grid;
  gap: 28px;
}

.home-stage {
  position: relative;
  overflow: visible;
  margin-top: 8px;
  padding: 18px 0 18px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-stage::before {
  content: none;
}

.home-stage::after {
  content: none;
}

.stage-motion {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
}

.stage-photo {
  position: absolute;
  inset: 42% -4% 2% -4%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.18;
}

.stage-photo-skyline {
  background-image:
    linear-gradient(180deg, rgba(7, 21, 38, 0.98) 0%, rgba(7, 21, 38, 0.72) 26%, rgba(7, 21, 38, 0.18) 56%, rgba(7, 21, 38, 0.72) 100%),
    linear-gradient(90deg, rgba(7, 21, 38, 0.54) 0%, rgba(7, 21, 38, 0.16) 20%, rgba(7, 21, 38, 0.08) 50%, rgba(7, 21, 38, 0.16) 80%, rgba(7, 21, 38, 0.54) 100%),
    url("assets/images/andrea-de-santis-nLzvyh_LlEg-unsplash.jpg");
  filter: saturate(0.76) contrast(1.04) brightness(0.72);
}

.stage-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.12;
}

.stage-glow-a {
  inset: auto auto 10% 56%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(111, 146, 214, 0.12), transparent 72%);
  animation: stageFloat 14s ease-in-out infinite alternate;
}

.stage-glow-b {
  inset: 8% 2% auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(181, 151, 101, 0.12), transparent 74%);
  animation: stageFloat 12s ease-in-out infinite alternate-reverse;
}

.stage-chart {
  position: absolute;
  inset: 6% -6% 14% -6%;
  width: 112%;
  height: auto;
  opacity: 0.34;
  animation: stageDrift 18s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.78) 16%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0.78) 84%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.78) 16%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0.78) 84%, rgba(0, 0, 0, 0) 100%);
}

.stage-grid-line {
  stroke: rgba(248, 250, 252, 0.05);
  stroke-width: 1;
}

.stage-benchmark {
  fill: none;
  stroke: rgba(248, 250, 252, 0.11);
  stroke-width: 1.75;
  stroke-dasharray: 10 12;
}

.stage-track {
  fill: none;
  stroke-width: 2.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage-track-healthcare {
  stroke: rgba(216, 195, 156, 0.92);
}

.stage-track-tmt {
  stroke: rgba(129, 167, 239, 0.88);
}

.stage-track-fig {
  stroke: rgba(141, 118, 80, 0.9);
}

.home-hero {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  min-height: 620px;
  z-index: 1;
  padding: 28px 0 44px;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 24%, rgba(181, 151, 101, 0.08), transparent 22%),
    linear-gradient(90deg, rgba(7, 21, 38, 0.86) 0%, rgba(7, 21, 38, 0.7) 18%, rgba(7, 21, 38, 0.28) 44%, rgba(7, 21, 38, 0.16) 100%);
  z-index: 0;
}

.eyebrow,
.eyebrow-dark,
.detail-label,
.note-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold);
}

.eyebrow-dark,
.detail-label,
.note-label {
  color: var(--navy-800);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 14px;
  max-width: 13ch;
  font-size: clamp(3.2rem, 8vw, 5.9rem);
  line-height: 0.95;
  font-weight: 600;
}

h2 {
  max-width: 15ch;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 0.98;
  font-weight: 600;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.02;
  font-weight: 600;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-note,
.page-summary,
.section-intro p:last-child,
.explorer-copy p,
.process-strip p,
.governance-card p,
.note-card p,
.disclosure-card p,
.allocation-detail p,
.risk-card p,
.pathway-strip p,
.research-card p,
.fact-card span,
.fact-card strong {
  line-height: 1.68;
}

.hero-note,
.page-summary,
.section-intro p:last-child,
.explorer-copy p,
.process-strip p,
.governance-card p,
.note-card p,
.disclosure-card p,
.allocation-detail p,
.risk-card p,
.pathway-strip p,
.research-card p {
  color: var(--ink-700);
}

.hero-note {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.02rem;
}

.home-stage .hero-copy h1,
.home-stage .hero-copy .hero-subhead,
.home-stage .hero-copy .hero-note {
  color: var(--white);
}

.hero-subhead {
  margin: 10px 0 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-stage .hero-note {
  color: rgba(248, 250, 252, 0.74);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(248, 250, 252, 0.78);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-grid div,
.launch-card,
.fact-card,
.governance-card,
.disclosure-card,
.risk-card,
.research-card {
  border: 1px solid rgba(18, 24, 38, 0.08);
  box-shadow: var(--shadow);
}
.panel-grid span,
.fact-card span {
  display: block;
  color: var(--ink-700);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-panel,
.document-figure,
.allocation-card,
.allocation-detail,
.symbol-overview-shell,
.execution-shell,
.role-panel {
  box-shadow: var(--shadow-deep);
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(181, 151, 101, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(11, 27, 56, 0.5) 0%, rgba(6, 18, 36, 0.58) 100%);
  backdrop-filter: blur(18px) saturate(120%);
}

.framework-panel {
  padding: 22px;
}

.framework-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.framework-tab {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(248, 250, 252, 0.72);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.framework-tab.is-active {
  color: var(--navy-950);
  background: var(--paper-200);
  border-color: var(--paper-200);
}

.framework-stage {
  display: grid;
  grid-template-columns: minmax(240px, 270px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
}

.framework-figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  min-height: 276px;
  display: grid;
  place-items: center;
}

.framework-figure::before {
  content: "";
  position: absolute;
  inset: 10% -18% -10% 44%;
  background: radial-gradient(circle, rgba(181, 151, 101, 0.16), transparent 70%);
  animation: stageFloat 10s ease-in-out infinite alternate;
}

.framework-figure::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    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: 28px 28px;
  opacity: 0.36;
}

.framework-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 18px;
}

.framework-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.framework-copy h3 {
  margin-top: 0;
  max-width: 15ch;
  font-size: 1.48rem;
}

.framework-copy p {
  max-width: 34ch;
  margin-top: 14px;
  color: rgba(248, 250, 252, 0.82);
  line-height: 1.72;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.panel-grid div {
  min-height: 90px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.panel-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
}

.panel-grid span {
  color: rgba(248, 250, 252, 0.58);
}

.launch-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
  padding-top: 18px;
  margin-top: 4px;
}

.launch-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  min-height: 152px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-900);
  text-decoration: none;
}

.launch-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-stage .launch-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.home-stage .launch-card .launch-card-label,
.home-stage .launch-card p {
  color: rgba(248, 250, 252, 0.68);
}

.launch-card .launch-card-label {
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.launch-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 14px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.16);
}

.home-stage .launch-card .launch-card-icon {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.launch-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.launch-card strong {
  max-width: 15ch;
  font-size: 1.12rem;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.launch-card p {
  margin: 0;
  max-width: 26ch;
  color: var(--ink-700);
  font-size: 0.9rem;
  line-height: 1.6;
}

.home-section {
  margin-top: 28px;
  padding: 34px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 34px;
  background: rgba(247, 244, 238, 0.96);
  box-shadow: var(--shadow);
}

body[data-page="home"] .home-section {
  background: rgba(247, 244, 238, 0.98);
}

.home-section,
.content-section {
  padding-top: 84px;
}

.section-intro {
  display: grid;
  gap: 10px;
  max-width: 78ch;
}

.explorer-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.explorer-tabs,
.role-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.explorer-tab,
.allocation-bar,
.role-tab,
.thumb,
.carousel-button,
.accordion-trigger {
  font: inherit;
  cursor: pointer;
  appearance: none;
}

.explorer-tab,
.allocation-bar,
.role-tab,
.thumb {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(18, 24, 38, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-700);
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.explorer-tab.is-active,
.allocation-bar.is-active,
.role-tab.is-active,
.thumb.is-active {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.explorer-display,
.allocation-detail,
.note-card,
.governance-board,
.symbol-overview-shell,
.execution-shell,
.role-panel {
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.explorer-display {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.explorer-chart {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  border-radius: 50%;
  background:
    conic-gradient(
      #dbc9a9 0deg 144deg,
      #7093d8 144deg 270deg,
      #826b47 270deg 360deg
    );
  transition: transform 380ms ease;
}

.explorer-chart::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(18, 24, 38, 0.06);
}

.explorer-chart::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  z-index: 2;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: 0 0 0 6px rgba(18, 70, 137, 0.08);
}

[data-active-sector="healthcare"] .explorer-chart {
  transform: rotate(-72deg);
}

[data-active-sector="tmt"] .explorer-chart {
  transform: rotate(-207deg);
}

[data-active-sector="fig"] .explorer-chart {
  transform: rotate(-315deg);
}

.chart-core {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
}

.chart-core strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.chart-core span {
  display: block;
  margin-top: 6px;
  color: var(--ink-700);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.explorer-copy h3,
.allocation-detail h3,
.role-panel h3 {
  margin-top: 14px;
  max-width: 18ch;
}

.explorer-copy p,
.allocation-detail p,
.role-panel p {
  margin-top: 14px;
}

.process-strip,
.overview-grid,
.two-column-grid,
.disclosure-grid,
.portfolio-structure,
.execution-shell,
.risk-grid,
.research-grid,
.pathway-strip,
.team-shell {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.process-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-strip article,
.pathway-strip article {
  min-height: 170px;
  padding: 22px;
  border-top: 1px solid rgba(18, 24, 38, 0.1);
}

.process-strip span,
.pathway-strip span {
  color: var(--navy-800);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.process-strip strong,
.pathway-strip strong {
  display: block;
  margin-top: 14px;
  font-size: 1.15rem;
}

.process-strip p,
.pathway-strip p {
  margin-top: 10px;
  font-size: 0.95rem;
}

.inner-page .page-hero {
  padding-top: 28px;
}

.page-summary {
  max-width: 60ch;
  margin: 18px 0 0;
  font-size: 1rem;
}

.page-tabs {
  position: sticky;
  top: var(--page-tabs-offset);
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding: 10px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 18px;
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: blur(14px);
}

.page-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink-700);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.page-tabs a.is-active {
  color: var(--white);
  background: var(--navy-900);
}

.overview-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fact-card {
  min-height: 132px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.fact-card strong {
  display: block;
  margin-top: 18px;
  font-size: 1.08rem;
}

.document-figure,
.report-figure {
  padding: 18px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
}

.document-figure figcaption,
.report-figure figcaption {
  margin-top: 14px;
  color: var(--ink-700);
  font-size: 0.88rem;
}

.accordion-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.accordion-item {
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 72px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: var(--ink-900);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.accordion-icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 14px;
  height: 2px;
  background: var(--ink-700);
  transform: translateY(-50%);
}

.accordion-icon::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 180ms ease;
}

.accordion-item.is-open .accordion-icon::after {
  transform: translateY(-50%) rotate(0deg);
}

.accordion-panel {
  padding: 0 22px 22px;
}

.accordion-panel p {
  margin: 0;
  color: var(--ink-700);
}

.two-column-grid {
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
}

.governance-stack {
  display: grid;
  gap: 14px;
}

.governance-card,
.note-card,
.disclosure-card,
.risk-card,
.research-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.governance-card span,
.note-card .note-label {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.governance-card p,
.note-card p,
.disclosure-card p,
.risk-card p,
.research-card p {
  margin: 0;
  font-size: 0.96rem;
}

.disclosure-grid,
.risk-grid,
.research-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.research-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.research-entry {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 288px;
  padding: 24px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.research-entry::before {
  content: "";
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: var(--navy-900);
}

.research-entry[data-research-accent="fig"]::before {
  background: #826b47;
}

.research-entry[data-research-accent="tmt"]::before {
  background: #7093d8;
}

.research-entry[data-research-accent="industrial"]::before {
  background: #49607c;
}

.research-entry[data-research-accent="mna"]::before {
  background: #b59765;
}

.research-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.research-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 999px;
  color: var(--ink-700);
  background: rgba(247, 244, 238, 0.9);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.research-entry-copy {
  display: grid;
  gap: 12px;
}

.research-company {
  color: var(--ink-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.research-entry h3 {
  margin: 0;
  max-width: 20ch;
  font-size: 1.24rem;
  line-height: 1.14;
}

.research-entry p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

.research-entry-footer {
  display: flex;
  justify-content: flex-start;
  margin-top: auto;
}

.research-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.research-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.research-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.research-callout h3 {
  margin-top: 12px;
  max-width: 22ch;
}

.research-callout p {
  margin: 12px 0 0;
  max-width: 52ch;
}

.research-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.research-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.research-button-primary {
  color: var(--white);
  background: var(--navy-900);
}

.research-button-secondary {
  border: 1px solid rgba(18, 24, 38, 0.1);
  color: var(--ink-900);
  background: rgba(247, 244, 238, 0.92);
}

.research-directory {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.research-directory-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.research-directory-copy {
  display: grid;
  gap: 8px;
}

.research-directory-title {
  font-size: 1.02rem;
  line-height: 1.4;
}

.portfolio-structure {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.allocation-card,
.allocation-detail {
  padding: 24px;
}

.construction-panel {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.construction-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.construction-header h3,
.market-widget-copy h3 {
  margin-top: 12px;
  max-width: 20ch;
}

.scenario-tabs,
.scenario-filters,
.market-range-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scenario-tab,
.scenario-filter,
.market-range-tab {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(18, 24, 38, 0.1);
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.8);
  color: var(--ink-700);
  font: inherit;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.scenario-tab.is-active,
.scenario-filter.is-active,
.market-range-tab.is-active {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.construction-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
}

.position-stage {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.position-scale {
  position: relative;
  min-height: 264px;
  color: var(--ink-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.position-scale span {
  position: absolute;
  left: 0;
  transform: translateY(50%);
}

.position-scale span:nth-child(1) {
  top: 0;
  transform: none;
}

.position-scale span:nth-child(2) {
  top: 20%;
}

.position-scale span:nth-child(3) {
  top: 66.666%;
}

.position-scale span:nth-child(4) {
  bottom: 0;
  transform: none;
}

.position-canvas {
  position: relative;
  overflow: hidden;
  min-height: 264px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(rgba(18, 24, 38, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 24, 38, 0.04) 1px, transparent 1px),
    rgba(247, 244, 238, 0.64);
  background-size: 100% calc(100% / 6), calc(100% / 12) 100%, auto;
}

.position-band,
.position-line {
  position: absolute;
  inset-inline: 12px;
  pointer-events: none;
}

.position-band-target {
  top: 20%;
  bottom: 33.333%;
  border: 1px dashed rgba(18, 48, 95, 0.16);
  border-radius: 16px;
  background: rgba(18, 70, 137, 0.06);
}

.position-line-cap {
  top: 0;
  border-top: 1px solid rgba(181, 151, 101, 0.55);
}

.position-line-floor {
  top: 66.666%;
  border-top: 1px solid rgba(18, 48, 95, 0.18);
}

.position-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  height: 230px;
}

.position-slot {
  display: grid;
  gap: 8px;
  align-content: end;
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.position-slot.is-dimmed {
  opacity: 0.28;
  filter: saturate(0.7);
}

.position-slot.is-emphasis {
  transform: translateY(-4px);
}

.position-slot-fill {
  height: var(--slot-height, 14%);
  min-height: 24px;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(180deg, rgba(18, 48, 95, 0.92), rgba(8, 18, 36, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.position-slot-healthcare .position-slot-fill {
  background: linear-gradient(180deg, #d8c39c, #b59765);
}

.position-slot-tmt .position-slot-fill {
  background: linear-gradient(180deg, #81a7ef, #5479c1);
}

.position-slot-fig .position-slot-fill {
  background: linear-gradient(180deg, #8d7650, #655237);
}

.position-slot-empty .position-slot-fill {
  height: 16%;
  background: rgba(18, 24, 38, 0.08);
  box-shadow: inset 0 0 0 1px rgba(18, 24, 38, 0.04);
}

.position-slot-label,
.position-slot-value {
  display: block;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.position-slot-label {
  color: var(--ink-700);
  font-size: 0.62rem;
  font-weight: 700;
}

.position-slot-value {
  color: var(--ink-900);
  font-size: 0.68rem;
  font-weight: 700;
}

.construction-copy {
  display: grid;
  gap: 18px;
}

.construction-focus-card {
  padding: 18px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 20px;
  background: rgba(247, 244, 238, 0.74);
}

.construction-body {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.72;
}

.construction-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.construction-stat {
  min-height: 98px;
  padding: 16px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 18px;
  background: rgba(247, 244, 238, 0.74);
}

.construction-stat span {
  display: block;
  color: var(--ink-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.construction-stat strong {
  display: block;
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.3;
}

.allocation-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.allocation-summary div {
  padding: 16px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 18px;
  background: rgba(247, 244, 238, 0.72);
}

.allocation-summary span {
  display: block;
  color: var(--ink-700);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.allocation-summary strong {
  display: block;
  margin-top: 12px;
  font-size: 1.2rem;
}

.allocation-graphic {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 22px;
}

.allocation-bars {
  display: grid;
  gap: 12px;
}

.allocation-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.allocation-bar b {
  font-weight: 700;
}

.detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--navy-900);
  background: rgba(18, 70, 137, 0.07);
  font-size: 0.86rem;
  font-weight: 700;
}

.report-figure {
  margin-top: 24px;
}

.market-widget-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  margin-top: 26px;
}

.market-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.committee-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 241, 234, 0.92) 100%);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.committee-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(18, 48, 95, 0.92), rgba(181, 151, 101, 0.78));
}

.committee-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 48, 95, 0.16);
  box-shadow: 0 22px 58px rgba(8, 18, 36, 0.1);
}

.committee-photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: radial-gradient(circle at top right, rgba(181, 151, 101, 0.16), transparent 26%), linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}

.committee-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 280ms ease;
}

.committee-card:hover .committee-photo {
  transform: scale(1.02);
}

.committee-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 18px 18px;
}

.committee-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.committee-role {
  margin: 0;
  color: var(--navy-800);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.committee-headline h3 {
  margin: 8px 0 0;
  font-size: 1.14rem;
  line-height: 1.12;
}

.profile-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 999px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.profile-linkedin:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: var(--navy-900);
}

.profile-linkedin svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.market-widget-copy {
  padding: 24px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.market-widget-copy p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.7;
}

.market-focus-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 20px;
  background: rgba(247, 244, 238, 0.72);
}

.market-focus-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.08rem;
}

.market-compass {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.market-compass-card {
  display: block;
  width: 100%;
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 20px;
  background: rgba(247, 244, 238, 0.7);
  text-align: left;
  appearance: none;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.market-compass-card:hover,
.market-compass-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(18, 48, 95, 0.16);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(8, 18, 36, 0.08);
}

.market-compass-card.is-active .market-compass-icon {
  color: var(--white);
  background: var(--navy-900);
}

.market-compass-icon,
.risk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--navy-900);
  background: rgba(18, 70, 137, 0.08);
}

.market-compass-icon svg,
.risk-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.market-compass strong {
  display: block;
  margin-top: 16px;
  font-size: 1.05rem;
}

.market-compass-copy {
  display: block;
  margin-top: 8px;
  color: var(--ink-700);
  font-size: 0.9rem;
  line-height: 1.55;
}

.symbol-overview-shell {
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(181, 151, 101, 0.16), transparent 24%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}

.symbol-overview-widget {
  position: relative;
  min-height: 460px;
  border-radius: 22px;
  overflow: hidden;
}

.symbol-overview-widget > .widget-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 460px;
  justify-content: center;
  text-align: center;
  color: rgba(248, 250, 252, 0.74);
}

.execution-shell {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 22px;
}

.execution-viewer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.execution-frame {
  max-width: 360px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 32px;
  background: linear-gradient(180deg, #1a2230, #0d121b);
  box-shadow: var(--shadow-deep);
}

.execution-frame img {
  width: 100%;
  border-radius: 22px;
}

.carousel-button {
  min-width: 78px;
  min-height: 46px;
  border: 1px solid rgba(18, 24, 38, 0.12);
  border-radius: 999px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.78);
}

.execution-detail {
  padding-left: 12px;
}

.execution-detail h3 {
  margin-top: 12px;
  max-width: 14ch;
}

.execution-detail p {
  margin-top: 14px;
  color: var(--ink-700);
  line-height: 1.7;
}

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

.execution-meta-card {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 18px;
  background: rgba(247, 244, 238, 0.72);
}

.execution-meta-card span {
  display: block;
  color: var(--ink-700);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.execution-meta-card strong {
  display: block;
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.execution-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.execution-thumb {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.execution-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1.45;
  object-fit: cover;
  border-radius: 12px;
}

.execution-thumb span {
  color: var(--ink-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.execution-thumb.is-active {
  border-color: rgba(18, 48, 95, 0.16);
  box-shadow: 0 18px 40px rgba(8, 18, 36, 0.1);
}

.execution-thumb.is-active span {
  color: var(--navy-900);
}

.risk-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.risk-card-head strong {
  font-size: 1.02rem;
}

.team-shell {
  grid-template-columns: 280px minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: start;
}

.role-panel {
  padding: 26px;
  min-height: 320px;
}

.role-panel h3 {
  margin-top: 12px;
  max-width: 14ch;
}

.structure-visual {
  padding: 22px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.structure-visual p {
  margin: 16px 0 0;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.pathway-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-footer {
  margin-top: 88px;
  padding: 64px 0 32px;
  background:
    radial-gradient(circle at top right, rgba(181, 151, 101, 0.12), transparent 20%),
    linear-gradient(180deg, #f5f1e8 0%, #fbfaf7 100%);
  border-top: 1px solid rgba(18, 24, 38, 0.08);
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
}

.footer-brand-block {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ink-900);
  text-decoration: none;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  box-shadow: 0 14px 28px rgba(8, 18, 36, 0.08);
}

.footer-brand-text {
  display: grid;
  gap: 6px;
}

.footer-brand-text strong {
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-brand-text span {
  color: var(--ink-700);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-note {
  max-width: 42ch;
  margin: 0;
  color: var(--ink-700);
  font-size: 0.96rem;
  line-height: 1.7;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 4px 0 0;
}

.footer-column span {
  color: var(--ink-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: var(--ink-900);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--navy-900);
}

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-contact-list p {
  display: grid;
  gap: 2px;
}

.footer-contact-list strong {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-list span {
  color: var(--ink-700);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 999px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 18px;
  margin-top: 6px;
  border-top: 1px solid rgba(18, 24, 38, 0.08);
}

.footer-legal p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.86rem;
}

.is-hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 460ms ease, transform 460ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes stageFloat {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes stageDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-18px, 12px, 0) scale(1.02);
  }
}

@media (max-width: 1120px) {
  .home-hero,
  .overview-grid,
  .two-column-grid,
  .portfolio-structure,
  .construction-grid,
  .market-widget-panel,
  .execution-shell,
  .team-shell,
  .explorer-grid {
    grid-template-columns: 1fr;
  }

  .launch-links,
  .process-strip,
  .construction-stat-grid,
  .execution-meta,
  .disclosure-grid,
  .risk-grid,
  .research-feature-grid,
  .research-grid,
  .pathway-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-tabs {
    top: 126px;
  }

  .committee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-compass,
  .execution-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-panel {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .research-callout,
  .research-directory-item {
    grid-template-columns: 1fr;
  }

  .research-actions {
    justify-content: flex-start;
  }

  .header-shell {
    gap: 18px;
  }

  .header-left {
    flex-wrap: wrap;
    gap: 18px;
  }

  .stage-chart {
    inset: 8% -10% 16% -10%;
    width: 120%;
    opacity: 0.28;
  }

  .stage-glow-a {
    inset: auto auto 10% 30%;
  }

  .stage-photo {
    inset: 46% -10% 2% -10%;
    opacity: 0.14;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 1220px);
  }

  .header-shell {
    align-items: stretch;
    flex-direction: column;
    padding: 14px 0;
  }

  .header-left,
  .header-right {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .header-left {
    gap: 14px;
  }

  .header-right {
    gap: 10px;
  }

  .brand img {
    height: 48px;
  }

  .global-nav {
    gap: 6px;
  }

  .global-nav a,
  .page-tabs a {
    min-height: 38px;
  }

  .launch-links,
  .process-strip,
  .fact-grid,
  .disclosure-grid,
  .risk-grid,
  .research-feature-grid,
  .research-grid,
  .pathway-strip,
  .panel-grid,
  .allocation-summary,
  .allocation-graphic,
  .construction-stat-grid,
  .execution-meta,
  .market-compass,
  .execution-thumbs,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  h3 {
    font-size: 1.3rem;
  }

  .hero-panel,
  .framework-panel,
  .explorer-display,
  .allocation-card,
  .allocation-detail,
  .symbol-overview-shell,
  .execution-shell,
  .role-panel,
  .market-widget-copy,
  .document-figure,
  .governance-card,
  .note-card,
  .disclosure-card,
  .risk-card,
  .research-card,
  .launch-card,
  .fact-card {
    padding: 20px;
  }

  .framework-stage {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding: 22px 0 30px;
  }

  .stage-photo {
    inset: 48% -12% 4% -12%;
    opacity: 0.12;
  }

  .stage-chart {
    inset: 22% -26% 16% -26%;
    width: 152%;
    opacity: 0.16;
  }

  .stage-glow-a {
    inset: auto auto 4% 10%;
    width: 180px;
    height: 180px;
  }

  .stage-glow-b {
    inset: 10% -10% auto auto;
    width: 140px;
    height: 140px;
  }

  .page-tabs {
    top: 138px;
  }

  .research-callout {
    padding: 20px;
  }

  .execution-viewer {
    grid-template-columns: 1fr;
  }

  .execution-frame {
    max-width: 320px;
  }

  .construction-header,
  .market-widget-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .position-stage {
    grid-template-columns: 1fr;
  }

  .position-scale {
    display: none;
  }

  .position-grid {
    gap: 6px;
    grid-template-columns: repeat(12, minmax(18px, 1fr));
  }

  .position-slot-label,
  .position-slot-value {
    letter-spacing: 0.08em;
  }

  .position-slot-label {
    font-size: 0.54rem;
  }

  .position-slot-value {
    font-size: 0.6rem;
  }

  .committee-grid {
    grid-template-columns: 1fr;
  }

  .hero-tags {
    gap: 8px;
  }

  .hero-tags span {
    min-height: 32px;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }

  .execution-detail {
    padding-left: 0;
  }

  .footer-panel {
    gap: 24px;
  }

  .footer-legal {
    flex-direction: column;
  }
}
