:root {
  --black: #050607;
  --black-soft: #0b0d0e;
  --panel: rgba(13, 15, 15, 0.94);
  --panel-soft: rgba(18, 20, 19, 0.92);
  --line: rgba(197, 142, 57, 0.42);
  --line-strong: rgba(221, 164, 73, 0.72);
  --gold: #c98f35;
  --gold-bright: #f1c76f;
  --gold-pale: #f6dfaa;
  --text: #f1eee6;
  --muted: #b7b0a5;
  --green: #79d15a;
  --sidebar: 219px;
  --sidebar-collapsed: 72px;
  --topbar: 45px;
  --hero-image: url("assets/hero-day.png");
  --home-stack-gap: clamp(6px, 1vh, 12px);
  --home-hero-height: clamp(190px, 28vh, 360px);
  --home-panel-height: clamp(245px, 30vh, 360px);
  --home-contact-height: clamp(68px, 9vh, 100px);
  --home-ticker-height: clamp(56px, 7vh, 78px);
  --home-footer-height: clamp(38px, 5vh, 61px);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  background:
    radial-gradient(circle at 76% 12%, rgba(188, 116, 35, 0.13), transparent 28%),
    linear-gradient(145deg, #030405 0%, #0a0b0b 48%, #050606 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-shell {
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, 1fr);
  min-height: 100vh;
  transition: grid-template-columns 260ms ease;
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 18, 18, 0.98), rgba(5, 6, 6, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 12px);
  border-right: 1px solid var(--line-strong);
  box-shadow: inset -18px 0 40px rgba(0, 0, 0, 0.4);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.sidebar-toggle {
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(241, 199, 111, 0.28);
  border-radius: 50%;
  background: rgba(5, 6, 7, 0.32);
  color: rgba(241, 199, 111, 0.62);
  cursor: pointer;
  opacity: 0.64;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    right 260ms ease;
}

.sidebar-toggle:hover {
  border-color: rgba(241, 199, 111, 0.58);
  background: rgba(16, 15, 12, 0.72);
  color: rgba(246, 223, 170, 0.94);
  opacity: 1;
}

.sidebar-toggle:focus-visible {
  outline: 1px solid rgba(241, 199, 111, 0.64);
  outline-offset: 2px;
  opacity: 1;
}

.sidebar-toggle svg {
  width: 13px;
  height: 13px;
  transition: transform 260ms ease;
}

body.sidebar-collapsed .site-shell {
  grid-template-columns: var(--sidebar-collapsed) minmax(0, 1fr);
}

body.sidebar-collapsed .brand {
  height: 88px;
  padding: 10px;
}

body.sidebar-collapsed .brand img {
  object-fit: contain;
}

body.sidebar-collapsed .nav-link {
  justify-content: center;
  gap: 0;
  padding: 0;
}

body.sidebar-collapsed .nav-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

body.sidebar-collapsed .nav-link svg {
  width: 20px;
  height: 20px;
}

body.sidebar-collapsed .sidebar-note,
body.sidebar-collapsed .line-art,
body.sidebar-collapsed .follow {
  display: none;
}

body.sidebar-collapsed .sidebar-toggle {
  top: 11px;
  right: 11px;
}

body.sidebar-collapsed .sidebar-toggle svg {
  transform: rotate(180deg);
}

.brand {
  display: block;
  height: 237px;
  border-bottom: 1px solid rgba(197, 142, 57, 0.36);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.side-nav {
  padding: 0;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 45px;
  padding: 0 27px;
  color: #d7d2ca;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.nav-link svg {
  width: 18px;
  height: 18px;
}

.nav-link.active,
.nav-link:hover {
  color: var(--gold-pale);
  background:
    linear-gradient(90deg, rgba(218, 165, 76, 0.36), rgba(218, 165, 76, 0.08) 44%, transparent),
    rgba(255, 255, 255, 0.02);
}

.nav-link.active::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #f6dfa7, #b87a25);
  content: "";
}

.sidebar-note {
  width: calc(100% - 42px);
  margin: 42px 21px 0;
  padding: 15px 15px 13px;
  border: 1px solid rgba(197, 142, 57, 0.43);
  border-radius: 4px;
  background: rgba(10, 12, 12, 0.68);
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.sidebar-note span {
  display: block;
}

.line-art {
  position: relative;
  flex: 1;
  min-height: 185px;
  margin: 30px 0 0;
  opacity: 0.58;
}

.line-art::before,
.line-art span {
  position: absolute;
  left: 50%;
  width: 154px;
  height: 154px;
  border: 1px solid rgba(197, 142, 57, 0.34);
  border-bottom: 0;
  border-right: 0;
  transform: translateX(-50%) rotate(45deg);
  content: "";
}

.line-art::before {
  top: 18px;
}

.line-art span:nth-child(1) {
  top: 66px;
  width: 103px;
  height: 103px;
}

.line-art span:nth-child(2) {
  top: 114px;
  width: 57px;
  height: 57px;
}

.line-art span:nth-child(3) {
  top: 18px;
  width: 1px;
  height: 160px;
  border-left: 1px solid rgba(197, 142, 57, 0.32);
  border-top: 0;
  transform: translateX(-50%);
}

.follow {
  display: none;
  align-items: center;
  gap: 14px;
  height: 56px;
  padding: 0 17px;
  color: var(--gold-bright);
  border-top: 1px solid rgba(197, 142, 57, 0.2);
  background: rgba(0, 0, 0, 0.22);
}

.follow span {
  margin-right: auto;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.follow a {
  width: 20px;
  height: 20px;
  color: var(--gold-bright);
}

.main {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 34% 24%, rgba(184, 109, 36, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(20, 22, 22, 0.7), rgba(5, 6, 6, 0.98) 72%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar);
  padding: 0 36px;
  border-bottom: 1px solid rgba(197, 142, 57, 0.58);
  background: rgba(5, 6, 7, 0.94);
}

.topbar-logos {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 190px;
}

.topbar-logo {
  position: relative;
  display: block;
  width: 40px;
  height: 34px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.94;
  filter: drop-shadow(0 0 8px rgba(241, 199, 111, 0.18));
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    filter 180ms ease;
}

.topbar-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
  filter: drop-shadow(0 0 11px rgba(241, 199, 111, 0.32));
}

.topbar-logo img {
  display: none;
}

.topbar-logo-holdings {
  background-image: url("assets/topbar-holdings-icon.png");
}

.topbar-logo-hospitality {
  background-image: url("assets/topbar-hospitality-icon.png");
}

.topbar-logo-financial {
  background-image: url("assets/topbar-financial-icon.png");
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.portal,
.language {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.portal {
  height: 29px;
  padding: 0 14px;
  border: 1px solid rgba(205, 146, 51, 0.8);
  border-radius: 4px;
  background: rgba(13, 14, 14, 0.78);
}

.portal svg {
  width: 15px;
  height: 15px;
}

.language {
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
}

.language svg {
  width: 15px;
  height: 15px;
}

.hero {
  position: relative;
  isolation: isolate;
  height: var(--home-hero-height);
  overflow: hidden;
  background: var(--hero-image) center right / cover no-repeat;
  border-bottom: 1px solid rgba(197, 142, 57, 0.28);
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 38%;
  max-width: 520px;
  background:
    linear-gradient(90deg, rgba(4, 5, 6, 0.38) 0%, rgba(4, 5, 6, 0.14) 70%, rgba(4, 5, 6, 0) 100%);
  pointer-events: none;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0) 78%, rgba(5, 6, 7, 0.46) 100%);
  pointer-events: none;
  content: "";
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: clamp(20px, 3.6vh, 38px);
  left: clamp(40px, 6%, 86px);
  width: min(620px, calc(100% - 88px));
}

.hero-kicker {
  margin: 0 0 8px;
  color: #f3eee7;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vh, 74px);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  color: var(--gold-pale);
  text-shadow: 0 0 18px rgba(201, 143, 53, 0.28);
}

.hero-title span:last-child {
  color: #f7f3ed;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.42);
}

.hero-divider {
  position: relative;
  width: min(430px, 82%);
  height: 18px;
  margin: 8px 0 8px;
}

.hero-divider::before,
.hero-divider::after {
  position: absolute;
  top: 50%;
  width: calc(50% - 17px);
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 142, 57, 0.25), rgba(241, 199, 111, 0.88));
  content: "";
}

.hero-divider::before {
  left: 0;
}

.hero-divider::after {
  right: 0;
  transform: scaleX(-1);
}

.hero-divider {
  background:
    linear-gradient(45deg, transparent 42%, var(--gold-bright) 43% 57%, transparent 58%) center / 14px 14px no-repeat;
}

.hero-copy p:not(.hero-kicker) {
  margin: 0 0 clamp(10px, 2vh, 22px);
  color: #f1eee6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 2.1vh, 21px);
  line-height: 1.25;
}

.hero-button {
  width: 255px;
  min-height: clamp(34px, 4.6vh, 42px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.dashboard {
  padding: 0 clamp(12px, 2vw, 20px) 0;
}

.primary-grid {
  display: grid;
  grid-template-columns: minmax(560px, 1.08fr) minmax(440px, 0.86fr) minmax(245px, 0.45fr);
  grid-auto-rows: var(--home-panel-height);
  gap: 12px;
  margin-top: 0;
}

.home-grid {
  grid-template-columns: minmax(850px, 1fr) minmax(245px, 0.32fr);
}

.home-grid .ecosystem-cards {
  gap: clamp(12px, 1.6vh, 24px);
  height: calc(100% - clamp(42px, 6vh, 52px));
  padding: 0 clamp(14px, 1.6vw, 22px) clamp(8px, 1vh, 12px);
}

.home-grid .venture-card p {
  padding-inline: clamp(14px, 1.4vw, 24px);
}

.home-grid .panel {
  height: var(--home-panel-height);
  overflow: hidden;
}

.home-grid .panel-heading {
  min-height: clamp(42px, 6vh, 52px);
}

.home-grid .venture-card {
  min-height: 0;
  height: 100%;
}

.home-grid .branch-logo-card {
  height: clamp(72px, 10.6vh, 116px);
  margin: clamp(7px, 1.4vh, 14px) auto clamp(5px, 1vh, 9px);
}

.home-grid .venture-card h3 {
  min-height: clamp(34px, 5vh, 52px);
  margin-bottom: clamp(5px, 1vh, 10px);
  font-size: clamp(16px, 2.15vh, 22px);
}

.home-grid .venture-card p {
  padding-bottom: clamp(6px, 1.2vh, 13px);
  font-size: clamp(10px, 1.4vh, 13px);
  line-height: 1.34;
}

.home-grid .card-link {
  height: clamp(34px, 4.6vh, 42px);
  padding-inline: clamp(14px, 1.4vw, 19px);
  font-size: clamp(10px, 1.35vh, 12px);
}

.home-grid .roadmap {
  padding-bottom: clamp(8px, 1.2vh, 12px);
}

.home-grid .roadmap .panel-heading.compact {
  min-height: clamp(40px, 5.8vh, 55px);
}

.home-grid .timeline {
  gap: clamp(4px, 0.8vh, 10px);
  padding: clamp(8px, 1.4vh, 17px) 0 clamp(5px, 0.8vh, 9px) 6px;
}

.home-grid .timeline li {
  min-height: clamp(32px, 4.5vh, 45px);
}

.home-grid .timeline time {
  font-size: clamp(13px, 1.75vh, 16px);
}

.home-grid .timeline p {
  font-size: clamp(8px, 1.18vh, 10.5px);
  line-height: 1.16;
}

.home-grid .roadmap > .outline-button {
  min-height: clamp(30px, 4.3vh, 35px);
}

.panel {
  min-height: 0;
  height: 360px;
  overflow: hidden;
  border: 1px solid rgba(197, 142, 57, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(22, 24, 24, 0.96), rgba(10, 12, 12, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 9px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.36);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 26px;
}

.panel-heading h1,
.panel-heading h2 {
  margin: 0;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.panel-heading a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #dfbe80;
  font-size: 10px;
}

.panel-heading a span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(205, 146, 51, 0.72);
  border-radius: 50%;
  color: var(--gold-bright);
}

.panel-heading.compact {
  min-height: 55px;
  border-bottom: 1px solid rgba(197, 142, 57, 0.32);
  margin: 0 20px;
  padding: 0 4px;
}

.panel-heading.compact h2 span {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 650;
}

.ecosystem {
  padding-bottom: 16px;
}

body.ecosystem-zoom-active {
  overflow: hidden;
}

body.ecosystem-zoom-active::before {
  position: fixed;
  inset: 0;
  z-index: 900;
  background:
    radial-gradient(circle at 50% 16%, rgba(201, 143, 53, 0.14), transparent 30%),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
  pointer-events: none;
  content: "";
}

.ecosystem-zoom {
  position: fixed;
  left: var(--zoom-left);
  top: var(--zoom-top);
  z-index: 910;
  width: var(--zoom-width);
  height: var(--zoom-height);
  margin: 0;
  padding-bottom: 0;
  opacity: 0.96;
  transform: translateZ(0);
  transition:
    left 300ms ease,
    top 300ms ease,
    width 300ms ease,
    height 300ms ease,
    opacity 180ms ease,
    border-radius 300ms ease,
    box-shadow 300ms ease;
}

.ecosystem-zoom:focus {
  outline: 0;
}

.ecosystem-zoom.is-staging {
  transition: none;
}

.ecosystem-zoom.is-closing {
  transition:
    left 300ms ease,
    top 300ms ease,
    width 300ms ease,
    height 300ms ease,
    opacity 180ms ease,
    border-radius 300ms ease,
    box-shadow 300ms ease;
}

.ecosystem-zoom.is-open {
  left: 18px;
  top: 18px;
  width: calc(100vw - 36px);
  height: calc(100vh - 36px);
  opacity: 1;
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 36px 110px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(241, 199, 111, 0.16);
}

.ecosystem-zoom .panel-heading {
  min-height: 78px;
  padding: 0 38px;
  border-bottom: 1px solid rgba(197, 142, 57, 0.32);
}

.ecosystem-zoom .panel-heading h2 {
  font-size: clamp(24px, 2vw, 32px);
}

.ecosystem-zoom .panel-heading a {
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ecosystem-zoom .ecosystem-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
  height: calc(100% - 78px);
  padding: 0 clamp(24px, 3vw, 44px) clamp(24px, 3vw, 44px);
}

.ecosystem-zoom .venture-card {
  min-height: 0;
  height: 100%;
}

.ecosystem-zoom .branch-logo-card {
  width: calc(100% - 56px);
  max-width: 360px;
  height: min(34vh, 300px);
  margin: clamp(28px, 6.5vh, 70px) auto clamp(18px, 3.4vh, 34px);
}

.ecosystem-zoom .venture-card p {
  padding: 0 clamp(26px, 3vw, 56px) 28px;
  font-size: clamp(15px, 1.12vw, 18px);
  line-height: 1.55;
}

.ecosystem-zoom .card-link {
  height: 64px;
  padding: 0 34px;
  font-size: 13px;
}

.ecosystem-page {
  min-height: calc(100vh - var(--topbar));
  padding: 20px;
}

.ecosystem-showcase {
  height: calc(100vh - var(--topbar) - 40px);
  min-height: 820px;
}

.ecosystem-showcase .panel-heading {
  min-height: 72px;
  border-bottom: 1px solid rgba(197, 142, 57, 0.32);
}

.ecosystem-page-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  height: calc(100% - 72px);
  padding: 0 28px 28px;
}

.ecosystem-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 0 15px;
}

.venture-card {
  display: flex;
  flex-direction: column;
  min-height: 288px;
  overflow: hidden;
  border: 1px solid rgba(197, 142, 57, 0.48);
  border-radius: 5px;
  background:
    radial-gradient(circle at 50% 6%, rgba(215, 157, 62, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(24, 26, 26, 0.84), rgba(10, 12, 12, 0.9));
}

.branch-logo-card {
  position: relative;
  width: calc(100% - 36px);
  max-width: 180px;
  height: 116px;
  margin: 14px auto 9px;
  overflow: hidden;
  border: 1px solid rgba(240, 195, 98, 0.56);
  border-radius: 5px;
  background: #020202;
  box-shadow:
    inset 0 0 24px rgba(201, 143, 53, 0.08),
    0 0 28px rgba(201, 143, 53, 0.13);
}

.branch-logo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.medallion {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 16px auto 7px;
  color: var(--gold-bright);
  border: 1px solid rgba(240, 195, 98, 0.9);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 24%, rgba(254, 230, 158, 0.26), transparent 26%),
    linear-gradient(145deg, rgba(20, 21, 20, 0.95), rgba(5, 6, 6, 0.95));
  box-shadow: 0 0 26px rgba(201, 143, 53, 0.18);
}

.medallion svg {
  width: 42px;
  height: 42px;
  stroke: var(--gold-bright);
}

.medallion .gold-fill {
  fill: url("#unused");
  fill: #d5a04a;
  stroke: #f2d083;
}

.medallion .dark-fill {
  fill: rgba(4, 5, 5, 0.62);
}

.venture-card h3 {
  min-height: 52px;
  margin: 0 18px 10px;
  color: #f2eee7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.ecosystem-page-cards .venture-card {
  min-height: 0;
  height: 100%;
}

.ecosystem-page-cards .branch-logo-card {
  max-width: 300px;
  height: 260px;
  margin: 54px auto 34px;
}

.ecosystem-page-cards .medallion {
  width: 98px;
  height: 98px;
  margin: 66px auto 28px;
}

.ecosystem-page-cards .medallion svg {
  width: 64px;
  height: 64px;
}

.ecosystem-page-cards .venture-card h2 {
  min-height: 78px;
  margin: 0 28px 24px;
  color: #f2eee7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.ecosystem-page-cards .venture-card p {
  padding: 0 46px 28px;
  font-size: 17px;
  line-height: 1.55;
}

.ecosystem-page-cards .card-link {
  height: 60px;
  padding: 0 32px;
  font-size: 13px;
}

.content-page {
  min-height: calc(100vh - var(--topbar));
  padding: 20px;
}

.page-panel {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--topbar) - 40px);
  min-height: 820px;
  padding: 0;
}

.news-page-panel {
  height: auto;
  min-height: calc(100vh - var(--topbar) - 40px);
  overflow: visible;
}

.coming-soon-content {
  display: grid;
  align-content: center;
  justify-items: start;
  flex: 1;
  max-width: 760px;
  padding: clamp(34px, 6vw, 76px) 28px;
}

.coming-soon-content p {
  margin: 0 0 24px;
  color: #d0c8bd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.32;
}

.portfolio-main > .portfolio-hero,
.portfolio-main > .portfolio-dashboard,
.investor-model-page .model-summary-grid,
.investor-model-page .model-dashboard-grid {
  display: none;
}

.page-heading {
  padding: 28px 28px 24px;
  border-bottom: 1px solid rgba(197, 142, 57, 0.32);
}

.page-heading-with-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.page-heading p {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.page-heading h1 {
  max-width: 840px;
  margin: 0;
  color: #f2eee7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.05;
}

.page-actions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto;
}

.update-status {
  color: rgba(246, 223, 170, 0.78);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1.6px;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

.investor-grid,
.about-grid,
.news-grid,
.contact-page-grid {
  flex: 1;
  min-height: 0;
  padding: 28px;
}

.investor-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(620px, 1.22fr);
  gap: 28px;
}

.investor-lead,
.story-block,
.feature-article,
.contact-form {
  border: 1px solid rgba(197, 142, 57, 0.42);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 0, rgba(211, 157, 68, 0.13), transparent 38%),
    rgba(7, 8, 8, 0.58);
}

.investor-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.investor-lead strong {
  display: block;
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 1;
}

.investor-lead span {
  margin-bottom: 30px;
  color: #d3ccc1;
  font-size: 16px;
  line-height: 1.45;
}

.investor-model-panel {
  min-height: 820px;
}

.model-summary-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.58fr) minmax(720px, 1.42fr);
  gap: 18px;
  padding: 22px 28px 18px;
}

.model-lead {
  min-height: 250px;
  padding: 28px 34px;
}

.model-lead strong {
  font-size: 72px;
}

.model-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.model-kpis article,
.model-card {
  border: 1px solid rgba(197, 142, 57, 0.38);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 0, rgba(211, 157, 68, 0.11), transparent 42%),
    rgba(9, 11, 11, 0.62);
}

.model-kpis article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 22px;
}

.model-kpis span {
  display: block;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
}

.model-kpis p {
  margin: 15px 0 9px;
  color: #f2eee7;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
}

.model-kpis small {
  color: #bfb7ad;
  font-size: 11px;
  line-height: 1.35;
}

.model-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(650px, 1.32fr) minmax(300px, 0.62fr) minmax(330px, 0.72fr);
  gap: 18px;
  padding: 0 28px 28px;
}

.model-card {
  min-height: 316px;
  padding: 20px;
}

.revenue-card {
  overflow: hidden;
}

.compact-heading {
  margin-bottom: 12px;
  padding-top: 0;
}

.compact-heading h2 {
  font-size: 18px;
}

.compact-heading p {
  font-size: 11px;
}

.mini-model-table {
  width: 100%;
  border-collapse: collapse;
}

.mini-model-table th,
.mini-model-table td {
  padding: 11px 9px;
  border-bottom: 1px solid rgba(197, 142, 57, 0.19);
  color: #d6d0c5;
  font-size: 11px;
  line-height: 1.25;
  text-align: right;
  white-space: nowrap;
}

.mini-model-table th {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mini-model-table th:first-child,
.mini-model-table td:first-child {
  text-align: left;
}

.mini-model-table td:first-child {
  color: #f2eee7;
  font-weight: 700;
}

.mini-model-table .total-row td {
  color: var(--gold-bright);
  font-weight: 800;
}

.funding-list {
  display: grid;
  gap: 0;
  margin: 4px 0 0;
}

.funding-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(197, 142, 57, 0.2);
}

.funding-list div:last-child {
  border-bottom: 0;
}

.funding-list dt,
.funding-list dd {
  margin: 0;
}

.funding-list dt {
  color: #d1cbc1;
  font-size: 12px;
  line-height: 1.3;
}

.funding-list dd {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  white-space: nowrap;
}

.readiness-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 6px;
}

.readiness-track article {
  min-width: 0;
  padding: 13px 8px;
  border: 1px solid rgba(197, 142, 57, 0.26);
  border-radius: 4px;
  background: rgba(5, 6, 6, 0.62);
  text-align: center;
}

.readiness-track article.ready {
  border-color: rgba(121, 209, 90, 0.45);
  background: rgba(38, 76, 32, 0.18);
}

.readiness-track span,
.readiness-track strong,
.readiness-track small {
  display: block;
}

.readiness-track span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
}

.readiness-track strong {
  margin: 9px 0 8px;
  color: #f2eee7;
  font-size: 12px;
}

.readiness-track small {
  color: #bfb7ad;
  font-size: 10px;
  line-height: 1.2;
}

.model-note {
  margin: 20px 0 0;
  color: #d1cbc1;
  font-size: 12px;
  line-height: 1.45;
}

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

.info-grid article,
.principles article,
.news-grid > article:not(.feature-article) {
  padding: 24px;
  border: 1px solid rgba(197, 142, 57, 0.38);
  border-radius: 6px;
  background: rgba(9, 11, 11, 0.62);
}

.info-grid h2,
.story-block h2,
.principles h3,
.news-grid h2,
.news-grid h3,
.contact-details h2 {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
}

.info-grid p,
.story-block p,
.principles p,
.news-grid p,
.contact-details p {
  margin: 0;
  color: #d1cbc1;
  font-size: 14px;
  line-height: 1.52;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.72fr) minmax(650px, 1.28fr);
  gap: 28px;
}

.story-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.story-block h2 {
  font-size: 28px;
}

.story-block p + p {
  margin-top: 18px;
}

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

.principles article {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.principles span {
  display: block;
  margin-bottom: 34px;
  color: rgba(241, 199, 111, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(450px, 0.9fr) repeat(3, minmax(210px, 1fr));
  gap: 18px;
}

.news-brief {
  display: grid;
  grid-template-columns: minmax(380px, 0.62fr) minmax(720px, 1.38fr);
  gap: 22px;
  flex: 0 0 auto;
  min-height: 0;
  padding: 28px;
}

.news-brief-lead {
  min-height: 0;
}

.news-brief-lead h2 {
  font-size: 28px;
}

.news-brief-stack {
  display: grid;
  gap: 18px;
  min-height: 0;
}

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

.brief-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 24px;
  border: 1px solid rgba(197, 142, 57, 0.38);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 0, rgba(211, 157, 68, 0.11), transparent 42%),
    rgba(9, 11, 11, 0.62);
}

.brief-card h3 {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.16;
  text-transform: uppercase;
}

.brief-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brief-card li {
  padding-top: 18px;
  border-top: 1px solid rgba(197, 142, 57, 0.22);
}

.brief-card p {
  margin: 0 0 12px;
  color: #d1cbc1;
  font-size: 13px;
  line-height: 1.48;
}

.brief-card a {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.deal-watch {
  display: grid;
  grid-column: 1 / -1;
  gap: 18px;
  padding: 22px 24px 24px;
  border: 1px solid rgba(197, 142, 57, 0.42);
  border-radius: 6px;
  background:
    radial-gradient(circle at 10% 0, rgba(211, 157, 68, 0.15), transparent 38%),
    rgba(9, 11, 11, 0.7);
}

.deal-watch-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: 24px;
  align-items: end;
}

.deal-watch h3 {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.14;
  text-transform: uppercase;
}

.deal-watch p {
  margin: 0;
  color: #d1cbc1;
  font-size: 13px;
  line-height: 1.48;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.deal-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 16px;
  border: 1px solid rgba(197, 142, 57, 0.24);
  border-radius: 4px;
  background: rgba(5, 6, 6, 0.5);
}

.deal-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 1.1px;
  line-height: 1.3;
  text-transform: uppercase;
}

.deal-card-topline strong {
  white-space: nowrap;
}

.deal-card h4 {
  margin: 0 0 10px;
  color: #f2eee7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.18;
}

.deal-card p {
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.42;
}

.deal-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.deal-card li {
  color: #e8e0d4;
  font-size: 11px;
  line-height: 1.36;
}

.deal-card li strong {
  color: var(--gold-bright);
}

.deal-card a {
  margin-top: auto;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.archive-list {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.archive-entry {
  display: grid;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(197, 142, 57, 0.42);
  border-radius: 6px;
  background:
    radial-gradient(circle at 12% 0, rgba(211, 157, 68, 0.12), transparent 42%),
    rgba(8, 10, 10, 0.7);
}

.archive-entry-heading {
  max-width: 960px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(197, 142, 57, 0.28);
}

.archive-entry-heading time,
.archive-list time {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.archive-entry-heading h2 {
  margin: 0;
  color: #f2eee7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
}

.archived-deal-watch {
  grid-column: auto;
}

.feature-article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.news-grid time {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.feature-article h2 {
  color: #f2eee7;
  font-size: 30px;
  text-transform: none;
}

.feature-article p {
  margin-bottom: 30px;
  font-size: 16px;
}

.news-grid > article:not(.feature-article) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-page-panel {
  height: calc(100vh - var(--topbar) - 40px);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(480px, 0.9fr) minmax(520px, 1.1fr);
  gap: 28px;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-details article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(197, 142, 57, 0.38);
  border-radius: 6px;
  background: rgba(9, 11, 11, 0.62);
}

.contact-details .round-icon {
  width: 64px;
  height: 64px;
}

.contact-form {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(197, 142, 57, 0.45);
  border-radius: 4px;
  background: rgba(3, 4, 4, 0.72);
  color: #f2eee7;
  font: inherit;
  min-height: 42px;
  padding: 10px 12px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  cursor: pointer;
}

.branch-page {
  align-items: stretch;
}

.branch-panel {
  height: auto;
  min-height: calc(100vh - var(--topbar) - 40px);
  overflow: visible;
}

.branch-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.58fr) minmax(640px, 1.42fr);
  gap: 28px;
  padding: 28px;
}

.branch-lead,
.launch-card,
.strategy-note {
  border: 1px solid rgba(197, 142, 57, 0.42);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 0, rgba(211, 157, 68, 0.13), transparent 38%),
    rgba(7, 8, 8, 0.58);
}

.branch-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.branch-lead .medallion {
  width: 96px;
  height: 96px;
  margin: 0 0 30px;
}

.branch-lead .medallion svg {
  width: 62px;
  height: 62px;
}

.branch-lead p {
  margin: 0 0 30px;
  color: #d1cbc1;
  font-size: 17px;
  line-height: 1.56;
}

.financial-service-panel .page-heading h1 {
  max-width: 1020px;
}

.financial-service-panel {
  height: auto;
  min-height: calc(100vh - var(--topbar) - 40px);
}

.price-guide-showcase {
  --price-guide-width: min(900px, 100%);
  padding: 28px;
  scroll-margin-top: calc(var(--topbar) + 20px);
}

.price-guide-heading {
  align-items: flex-start;
  max-width: var(--price-guide-width);
  margin-bottom: 22px;
  margin-right: auto;
  margin-left: auto;
}

.price-guide-pages {
  display: grid;
  gap: 28px;
  justify-items: center;
}

.price-guide-page {
  width: var(--price-guide-width);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(197, 142, 57, 0.56);
  border-radius: 8px;
  background: #050607;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(241, 199, 111, 0.08);
}

.price-guide-page img {
  display: block;
  width: 100%;
  height: auto;
}

.financial-intro-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.62fr) minmax(620px, 1.38fr);
  gap: 28px;
  padding: 28px;
}

.branch-lead .guide-link {
  margin-top: 12px;
}

.launch-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.launch-card h2,
.section-heading h2,
.strategy-note h2,
.performance-grid h3 {
  margin: 0;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
}

.launch-card h2 {
  max-width: 650px;
  font-size: 34px;
}

.launch-price {
  margin: 18px 0;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}

.launch-card p,
.strategy-note p {
  margin: 0;
  color: #d1cbc1;
  font-size: 15px;
  line-height: 1.52;
}

.launch-card p + p,
.strategy-note p + p {
  margin-top: 10px;
}

.pricing-section {
  padding: 0 28px 28px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
  padding-top: 8px;
}

.section-heading h2 {
  font-size: 24px;
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  color: #bfb7ad;
  font-size: 13px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(197, 142, 57, 0.38);
  border-radius: 6px;
  background: rgba(5, 6, 6, 0.68);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(197, 142, 57, 0.2);
  vertical-align: top;
  text-align: left;
}

.pricing-table th {
  color: var(--gold-bright);
  background: rgba(197, 142, 57, 0.09);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pricing-table td {
  color: #d4cec3;
  font-size: 13px;
  line-height: 1.42;
}

.pricing-table td:first-child {
  width: 24%;
  color: #f2eee7;
  font-weight: 700;
}

.pricing-table td:last-child {
  width: 22%;
  color: var(--gold-bright);
  font-weight: 700;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.package-table td:first-child {
  width: 18%;
}

.package-table td:last-child {
  width: 18%;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.performance-grid article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(197, 142, 57, 0.38);
  border-radius: 6px;
  background: rgba(9, 11, 11, 0.62);
}

.performance-grid h3 {
  margin-bottom: 12px;
  font-size: 17px;
  text-transform: uppercase;
}

.performance-grid p {
  margin: 0 0 18px;
  color: #d1cbc1;
  font-size: 13px;
  line-height: 1.45;
}

.performance-grid strong {
  display: block;
  color: var(--gold-bright);
  font-size: 13px;
  line-height: 1.35;
}

.strategy-note {
  margin: 0 28px 28px;
  padding: 28px;
}

.strategy-note h2 {
  margin-bottom: 14px;
  font-size: 24px;
  text-transform: uppercase;
}

.venture-card p {
  flex: 1;
  margin: 0;
  padding: 0 19px 13px;
  color: #d1cbc1;
  font-size: 13px;
  line-height: 1.46;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 19px;
  color: var(--gold-bright);
  border-top: 1px solid rgba(197, 142, 57, 0.45);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.financial {
  padding-bottom: 20px;
}

.portfolio-dashboard {
  padding-top: 0;
}

.financial-page {
  height: 360px;
}

.portfolio-model-panel {
  padding-bottom: 0;
}

.financial-body {
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(230px, 1fr);
  gap: 12px;
  padding: 20px;
}

.financial-page-body {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(420px, 1.24fr) minmax(250px, 0.72fr);
  gap: 26px;
  height: calc(100% - 55px);
  padding: 24px 28px 22px;
}

.portfolio-model-body {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(420px, 1.05fr) minmax(280px, 0.72fr);
  gap: 22px;
  height: calc(100% - 55px);
  padding: 20px 28px 18px;
}

.portfolio-model-lead strong {
  font-size: clamp(52px, 4.4vw, 72px);
}

.portfolio-model-lead .metric-row {
  gap: 8px;
  margin-bottom: 15px;
}

.portfolio-model-lead .metric-row small {
  min-height: 24px;
  margin-bottom: 7px;
  font-size: 8px;
  line-height: 1.25;
}

.portfolio-model-lead .metric-row span {
  font-size: 18px;
}

.portfolio-chart-card {
  min-width: 0;
}

.portfolio-chart-card .compact-heading {
  margin-bottom: 3px;
}

.portfolio-chart {
  grid-template-columns: 32px 1fr;
  padding-top: 0;
}

.portfolio-chart .axis-labels.y {
  height: 214px;
  padding-bottom: 10px;
}

.portfolio-chart .chart {
  max-width: 430px;
  height: 220px;
}

.portfolio-chart .axis-labels.x {
  max-width: 430px;
}

.portfolio-model-notes {
  padding-left: 20px;
  justify-content: flex-start;
}

.portfolio-model-notes h3 {
  font-size: 17px;
}

.portfolio-model-notes p {
  font-size: 12px;
}

.portfolio-model-notes .allocation-bars {
  gap: 12px;
  margin-top: 14px;
}

.portfolio-model-notes .allocation-bars span {
  font-size: 11px;
  line-height: 1.2;
}

.metrics {
  min-width: 0;
}

.eyebrow {
  margin: 2px 0 12px;
  color: #d4cec3;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.metrics strong {
  display: block;
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 4.1vw, 66px);
  font-weight: 400;
  line-height: 0.95;
}

.cagr {
  margin: 0 0 17px;
  color: #d8d2c8;
  font-size: 14px;
  font-weight: 700;
}

.cagr span {
  color: var(--green);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(197, 142, 57, 0.4);
}

.metric-row small,
.metric-row span {
  display: block;
}

.metric-row small {
  margin-bottom: 10px;
  color: #b4aca1;
  font-size: 9px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.metric-row span {
  color: #f3eee7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 35px;
  padding: 0 16px;
  color: var(--gold-bright);
  border: 1px solid rgba(205, 146, 51, 0.72);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(24, 25, 23, 0.78), rgba(5, 6, 6, 0.78));
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.outline-button svg {
  width: 18px;
  height: 18px;
}

.outline-button.full {
  width: 100%;
}

.chart-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: 1fr 25px;
  align-items: end;
  min-width: 0;
  padding-top: 8px;
}

.axis-labels {
  color: #c9c2b7;
  font-size: 11px;
}

.axis-labels.y {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  height: 190px;
  padding: 3px 0 12px;
  text-align: right;
}

.chart {
  width: 100%;
  max-width: 280px;
  height: 200px;
  color: rgba(238, 198, 109, 0.85);
}

.chart-wrap-large {
  grid-template-columns: 46px 1fr;
}

.chart-wrap-large .axis-labels.y {
  height: 238px;
}

.chart-wrap-large .chart {
  max-width: 540px;
  height: 248px;
}

.chart-wrap-large .axis-labels.x {
  max-width: 540px;
}

.grid-lines path {
  stroke: rgba(197, 142, 57, 0.25);
  stroke-dasharray: 2 3;
  stroke-width: 1;
}

.area {
  fill: url("#chartFill");
  stroke: none;
}

.line {
  fill: none;
  stroke: #f2d083;
  stroke-width: 2.2;
}

.points circle {
  fill: #f2c76b;
  stroke: #f6dfaa;
  stroke-width: 1.2;
}

.axis-labels.x {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 280px;
  padding: 0 0 0 3px;
}

.financial-notes {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 6px 0 4px 22px;
  border-left: 1px solid rgba(197, 142, 57, 0.35);
}

.financial-notes h3 {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.financial-notes p {
  margin: 0;
  color: #d0c8bd;
  font-size: 13px;
  line-height: 1.45;
}

.financial-notes.portfolio-model-notes {
  justify-content: flex-start;
}

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

.allocation-bars span {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  color: #d7d0c5;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.allocation-bars span::before,
.allocation-bars span::after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  content: "";
}

.allocation-bars span::before {
  width: 100%;
  background: rgba(197, 142, 57, 0.16);
}

.allocation-bars span::after {
  width: var(--value);
  background: linear-gradient(90deg, #b8792a, #f1c76f);
  box-shadow: 0 0 12px rgba(201, 143, 53, 0.28);
}

.allocation-bars strong {
  color: var(--gold-bright);
  font-weight: 750;
}

.roadmap {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 20px 12px;
}

.roadmap .panel-heading.compact {
  margin: 0;
}

.timeline {
  position: relative;
  display: grid;
  flex: 1;
  gap: 10px;
  margin: 0;
  padding: 17px 0 9px 6px;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 24px;
  bottom: 11px;
  left: 16px;
  width: 1px;
  background: rgba(205, 146, 51, 0.55);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 25px 48px 1fr;
  gap: 8px;
  min-height: 45px;
}

.dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  background: #171716;
  box-shadow: 0 0 0 3px rgba(201, 143, 53, 0.17);
}

.dot::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  content: "";
}

.timeline time {
  color: #f3eee7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.timeline p {
  margin: 0;
  color: #cfc7bd;
  font-size: 10.5px;
  line-height: 1.28;
}

.timeline strong {
  display: block;
  margin-bottom: 1px;
  color: #e5ded2;
  font-weight: 500;
}

.roadmap > .outline-button {
  margin-top: auto;
}

.contact-strip {
  display: grid;
  grid-template-columns: 1.45fr 1.2fr 0.95fr;
  height: var(--home-contact-height);
  min-height: 0;
  margin: var(--home-stack-gap) 0 0;
  border: 1px solid rgba(197, 142, 57, 0.42);
  border-radius: 8px;
  background: rgba(12, 14, 14, 0.88);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3);
}

.contact-strip article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  height: 100%;
  padding: clamp(10px, 1.5vh, 16px) clamp(18px, 1.8vw, 27px);
  border-right: 1px solid rgba(197, 142, 57, 0.28);
}

.contact-strip article:last-child {
  border-right: 0;
}

.round-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(42px, 5.4vh, 54px);
  height: clamp(42px, 5.4vh, 54px);
  color: var(--gold-bright);
  border: 1px solid rgba(205, 146, 51, 0.82);
  border-radius: 50%;
  background: rgba(7, 8, 8, 0.76);
}

.round-icon svg {
  width: clamp(23px, 3vh, 30px);
  height: clamp(23px, 3vh, 30px);
}

.contact-strip h3 {
  margin: 0 0 clamp(4px, 0.7vh, 7px);
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12px, 1.55vh, 15px);
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-strip article:first-child h3 {
  white-space: nowrap;
}

.contact-strip p {
  margin: 0;
  color: #d0c8bd;
  font-size: clamp(11px, 1.4vh, 13px);
  line-height: 1.3;
}

.meeting {
  justify-content: center;
}

.meeting .outline-button {
  min-height: clamp(38px, 5.4vh, 55px);
  max-width: 250px;
  justify-content: center;
}

.news-ticker {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch;
  min-height: var(--home-ticker-height);
  margin: var(--home-stack-gap) 0 0;
  overflow: hidden;
  border: 1px solid rgba(197, 142, 57, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0 50%, rgba(211, 157, 68, 0.12), transparent 44%),
    rgba(8, 9, 9, 0.92);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
}

.news-ticker-heading {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: clamp(4px, 0.8vh, 8px);
  min-width: 0;
  padding: clamp(10px, 1.5vh, 16px) 20px;
  border-right: 1px solid rgba(197, 142, 57, 0.32);
  background:
    linear-gradient(90deg, rgba(10, 11, 11, 0.98), rgba(10, 11, 11, 0.88));
}

.news-ticker-heading span {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(14px, 1.9vh, 18px);
  line-height: 1.1;
  text-transform: uppercase;
}

.news-ticker-heading a {
  color: #d8c796;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-ticker-window {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.news-ticker-window::before,
.news-ticker-window::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 68px;
  pointer-events: none;
  content: "";
}

.news-ticker-window::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 9, 9, 0.98), transparent);
}

.news-ticker-window::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 9, 9, 0.98), transparent);
}

.news-ticker-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  min-height: 100%;
  animation: ticker-scroll 135s linear infinite;
  will-change: transform;
}

.news-ticker:hover .news-ticker-track,
.news-ticker:focus-within .news-ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  position: relative;
  display: grid;
  align-content: center;
  gap: 4px;
  width: clamp(240px, 23vw, 340px);
  min-height: var(--home-ticker-height);
  padding: clamp(9px, 1.4vh, 14px) 22px;
  border-right: 1px solid rgba(197, 142, 57, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    rgba(5, 6, 6, 0.18);
}

.ticker-item:hover {
  background:
    radial-gradient(circle at 50% 0, rgba(211, 157, 68, 0.14), transparent 45%),
    rgba(11, 12, 12, 0.82);
}

.ticker-item::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 2px;
  background: rgba(241, 199, 111, 0.34);
  content: "";
}

.ticker-property::before {
  background: rgba(121, 209, 90, 0.5);
}

.ticker-kicker,
.ticker-source {
  display: block;
  color: rgba(246, 223, 170, 0.7);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 1.1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.ticker-title {
  display: block;
  color: #f2eee7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12px, 1.55vh, 15px);
  line-height: 1.16;
}

.ticker-source {
  color: var(--gold-bright);
}

@keyframes ticker-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-ticker-window {
    overflow-x: auto;
  }

  .news-ticker-track {
    animation: none;
  }
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--home-footer-height);
  min-height: 0;
  padding: 0 39px;
  color: rgba(213, 206, 194, 0.58);
}

.footer p {
  margin: 0;
  font-size: clamp(10px, 1.25vh, 12px);
}

.footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: clamp(9px, 1.15vh, 11px);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-mark {
  position: relative;
  width: 32px;
  height: 32px;
  background: none;
  filter: drop-shadow(0 0 8px rgba(201, 143, 53, 0.45));
}

.footer-mark::before,
.footer-mark::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffe7a5, #b27324 64%, #f4cd7a);
  clip-path: polygon(50% 0, 60% 39%, 100% 50%, 60% 61%, 50% 100%, 40% 61%, 0 50%, 40% 39%);
  content: "";
}

.footer-mark::after {
  inset: 8px;
  transform: rotate(45deg);
  opacity: 0.72;
}

@media (max-width: 1380px) {
  body {
    min-width: 0;
  }

  .site-shell {
    grid-template-columns: 206px minmax(0, 1fr);
  }

  .topbar-logos {
    gap: 18px;
    min-width: 172px;
  }

  .hero {
    background-position: center right;
  }

  .hero::before {
    width: 40%;
  }

  .hero-copy {
    top: 34px;
    left: 48px;
    width: 540px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-copy p:not(.hero-kicker) {
    font-size: 19px;
  }

  .primary-grid {
    grid-template-columns: minmax(520px, 1.05fr) minmax(390px, 0.9fr) minmax(238px, 0.5fr);
  }

  .home-grid {
    grid-template-columns: minmax(750px, 1fr) minmax(238px, 0.36fr);
  }

  .financial-body {
    grid-template-columns: minmax(210px, 0.78fr) minmax(210px, 1fr);
  }

  .financial-page-body {
    grid-template-columns: minmax(230px, 0.78fr) minmax(360px, 1.14fr) minmax(220px, 0.72fr);
    gap: 20px;
  }
}

@media (max-width: 1220px) {
  .hero-copy {
    left: 34px;
    width: 490px;
  }

  .hero-title {
    font-size: 58px;
  }

  .hero-divider {
    width: 390px;
  }

  .hero-button {
    width: 235px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-zoom {
    transition:
      opacity 140ms ease,
      box-shadow 140ms ease;
  }
}

@media (max-height: 880px) {
  .sidebar,
  .main {
    min-height: 100vh;
  }

  .hero-copy {
    top: clamp(12px, 2vh, 22px);
  }

  .hero-kicker {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .hero-title {
    font-size: clamp(38px, 6vh, 56px);
  }

  .hero-divider {
    height: 12px;
    margin: 4px 0;
  }

  .hero-copy p:not(.hero-kicker) {
    margin-bottom: 8px;
    font-size: clamp(13px, 1.8vh, 16px);
  }

  .hero-button {
    width: 220px;
    min-height: 30px;
  }

  .home-grid .roadmap > .outline-button {
    display: none;
  }
}

@media (min-width: 1221px) {
  :root {
    --home-stack-gap: clamp(4px, 0.7vh, 8px);
    --home-hero-height: clamp(314px, 39vh, 450px);
    --home-panel-height: clamp(220px, 27vh, 310px);
    --home-contact-height: clamp(58px, 7vh, 86px);
    --home-ticker-height: clamp(50px, 6vh, 66px);
    --home-footer-height: clamp(34px, 4vh, 48px);
  }

  .dashboard {
    padding-top: var(--home-stack-gap);
  }

  .home-grid .ecosystem-cards {
    gap: clamp(10px, 1.1vw, 18px);
    padding: 0 clamp(12px, 1.3vw, 18px) clamp(7px, 0.9vh, 11px);
  }

  .home-grid .branch-logo-card {
    height: clamp(52px, 7vh, 92px);
    margin: clamp(5px, 0.9vh, 10px) auto clamp(4px, 0.7vh, 8px);
  }

  .home-grid .venture-card p {
    font-size: clamp(9.5px, 1.18vh, 12px);
    line-height: 1.28;
  }

  .home-grid .card-link {
    height: clamp(30px, 4vh, 38px);
  }

  .contact-strip article {
    gap: clamp(9px, 0.9vw, 14px);
    padding: clamp(5px, 0.75vh, 8px) clamp(16px, 1.7vw, 25px);
  }

  .contact-strip .round-icon {
    width: clamp(36px, 4.8vh, 48px);
    height: clamp(36px, 4.8vh, 48px);
  }

  .contact-strip .round-icon svg {
    width: clamp(20px, 2.7vh, 27px);
    height: clamp(20px, 2.7vh, 27px);
  }

  .contact-strip h3 {
    margin-bottom: clamp(2px, 0.45vh, 5px);
    font-size: clamp(11px, 1.45vh, 14px);
  }

  .contact-strip p {
    font-size: clamp(10px, 1.25vh, 12px);
    line-height: 1.18;
  }

  .meeting .outline-button {
    min-height: clamp(34px, 4.8vh, 46px);
  }
}

@media (min-width: 1221px) and (max-height: 760px) {
  :root {
    --home-hero-height: clamp(290px, 40vh, 320px);
    --home-panel-height: clamp(205px, 28vh, 230px);
    --home-contact-height: 54px;
    --home-ticker-height: 46px;
    --home-footer-height: 32px;
  }

  .home-grid .branch-logo-card {
    height: clamp(48px, 6.4vh, 64px);
  }

  .home-grid .venture-card p {
    font-size: 9.25px;
    line-height: 1.22;
  }

  .contact-strip article {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .contact-strip .round-icon {
    width: 36px;
    height: 36px;
  }

  .contact-strip .round-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-strip h3 {
    margin-bottom: 2px;
    font-size: 10.5px;
  }

  .contact-strip p {
    font-size: 9.5px;
    line-height: 1.14;
  }

  .meeting .outline-button {
    min-height: 34px;
  }
}

@media (max-width: 1220px) {
  body {
    overflow-x: hidden;
  }

  .site-shell {
    display: block;
    min-height: 100vh;
  }

  .sidebar {
    position: relative;
    top: auto;
    min-height: 0;
    height: auto;
    overflow: visible;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  }

  .sidebar-toggle {
    display: none;
  }

  body.sidebar-collapsed .nav-link {
    justify-content: center;
    gap: 14px;
    padding: 0 14px;
  }

  body.sidebar-collapsed .nav-link span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  body.sidebar-collapsed .nav-link svg {
    width: 18px;
    height: 18px;
  }

  .brand {
    display: none;
  }

  .brand img {
    width: min(220px, 48vw);
    height: auto;
    max-height: calc(100% - 16px);
    object-fit: contain;
  }

  .side-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  }

  .nav-link {
    height: 46px;
    justify-content: center;
    padding: 0 14px;
    text-align: center;
  }

  .sidebar-note,
  .line-art,
  .follow {
    display: none;
  }

  .main {
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  .topbar {
    min-height: var(--topbar);
    height: auto;
    gap: 18px;
    padding: 12px 22px;
  }

  .topbar-logos {
    gap: 16px;
    min-width: 162px;
  }

  .topbar-logo {
    width: 38px;
    height: 32px;
  }

  .top-actions {
    gap: 18px;
  }

  .hero {
    height: clamp(320px, 44vw, 420px);
    background-position: center right;
  }

  .hero::before {
    width: 42%;
    max-width: 500px;
  }

  .hero-copy {
    top: clamp(28px, 5vw, 44px);
    left: clamp(24px, 5vw, 48px);
    width: min(560px, calc(100% - 48px));
  }

  .hero-title {
    font-size: clamp(52px, 7.4vw, 68px);
  }

  .hero-copy p:not(.hero-kicker) {
    font-size: clamp(17px, 2.3vw, 21px);
  }

  .dashboard,
  .content-page,
  .ecosystem-page {
    padding: clamp(14px, 2.8vw, 24px);
  }

  .panel,
  .financial-page,
  .page-panel,
  .ecosystem-showcase,
  .contact-page-panel {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .page-panel > *,
  .panel > *,
  .primary-grid > *,
  .home-grid > *,
  .investor-grid > *,
  .about-grid > *,
  .news-grid > *,
  .news-brief > *,
  .contact-page-grid > *,
  .model-summary-grid > *,
  .model-dashboard-grid > *,
  .branch-grid > *,
  .financial-intro-grid > *,
  .financial-body > *,
  .financial-page-body > *,
  .portfolio-model-body > *,
  .contact-strip > *,
  .news-ticker > * {
    min-width: 0;
  }

  .page-panel,
  .panel,
  .feature-article,
  .brief-card,
  .deal-card,
  .venture-card,
  .story-block,
  .investor-lead,
  .model-card,
  .branch-lead,
  .launch-card,
  .strategy-note,
  .contact-form,
  .contact-details article,
  .ticker-item {
    overflow-wrap: break-word;
  }

  .primary-grid,
  .home-grid,
  .investor-grid,
  .about-grid,
  .news-grid,
  .news-brief,
  .contact-page-grid,
  .model-summary-grid,
  .model-dashboard-grid,
  .branch-grid,
  .financial-intro-grid,
  .financial-body,
  .financial-page-body,
  .portfolio-model-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .primary-grid {
    grid-auto-rows: auto;
  }

  .ecosystem-cards,
  .ecosystem-page-cards,
  .brief-columns,
  .principles {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .ecosystem-page-cards,
  .ecosystem-showcase .ecosystem-page-cards {
    height: auto;
    padding: 0 24px 24px;
  }

  .ecosystem-page-cards .branch-logo-card {
    height: clamp(180px, 28vw, 260px);
    margin-top: 34px;
  }

  .page-heading h1 {
    font-size: clamp(32px, 5vw, 42px);
  }

  .page-heading-with-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-actions {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .investor-lead strong,
  .model-lead strong {
    font-size: clamp(52px, 9vw, 76px);
  }

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

  .model-dashboard-grid,
  .model-summary-grid,
  .investor-grid,
  .about-grid,
  .contact-page-grid,
  .branch-grid,
  .financial-intro-grid {
    gap: 22px;
  }

  .model-card,
  .revenue-card {
    overflow-x: auto;
  }

  .deal-watch-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

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

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

  .contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }

  .news-ticker {
    grid-template-columns: minmax(180px, 0.24fr) minmax(0, 1fr);
  }

  .ticker-item {
    width: clamp(230px, 34vw, 310px);
  }

  .contact-strip article {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(197, 142, 57, 0.28);
  }

  .contact-strip article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .meeting {
    justify-content: stretch;
  }

  .meeting .outline-button {
    max-width: none;
    width: 100%;
  }

  .footer {
    min-height: 72px;
    height: auto;
    gap: 16px;
    padding: 18px 24px;
  }

  .footer nav {
    gap: 12px;
    letter-spacing: 1.4px;
  }
}

@media (max-width: 1220px) and (min-width: 721px) {
  :root {
    --home-stack-gap: clamp(5px, 0.8vh, 10px);
    --home-hero-height: clamp(190px, 28vh, 300px);
    --home-panel-height: clamp(220px, 29vh, 320px);
    --home-contact-height: clamp(62px, 8vh, 86px);
    --home-ticker-height: clamp(52px, 6.5vh, 68px);
    --home-footer-height: clamp(34px, 4.4vh, 50px);
  }

  .hero {
    height: var(--home-hero-height);
  }

  .hero-copy {
    top: clamp(16px, 2.4vh, 28px);
  }

  .hero-title {
    font-size: clamp(38px, 6vh, 58px);
  }

  .hero-divider {
    height: 12px;
    margin: 4px 0;
  }

  .hero-copy p:not(.hero-kicker) {
    margin-bottom: 8px;
    font-size: clamp(14px, 1.8vh, 17px);
  }

  .hero-button {
    width: 220px;
    min-height: 30px;
  }

  .primary-grid.home-grid {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.34fr);
    grid-auto-rows: var(--home-panel-height);
    gap: 10px;
  }

  .home-grid .panel {
    height: var(--home-panel-height);
  }

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

  .contact-strip {
    grid-template-columns: 1.45fr 1.2fr 0.95fr;
    height: var(--home-contact-height);
  }

  .contact-strip article,
  .contact-strip article:nth-last-child(-n + 2) {
    min-height: 0;
    border-bottom: 0;
    border-right: 1px solid rgba(197, 142, 57, 0.28);
  }

  .contact-strip article:last-child {
    border-right: 0;
  }

  .news-ticker {
    grid-template-columns: 180px minmax(0, 1fr);
    min-height: var(--home-ticker-height);
  }

  .news-ticker-heading {
    padding: 10px 16px;
  }

  .ticker-item {
    min-height: var(--home-ticker-height);
  }

  .home-grid .timeline {
    gap: 3px;
  }

  .home-grid .timeline p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .home-grid .timeline strong {
    margin-bottom: 0;
  }

  .footer {
    height: var(--home-footer-height);
    min-height: 0;
    padding: 0 24px;
  }
}

@media (max-width: 720px) {
  :root {
    --topbar: 52px;
  }

  .brand {
    display: none;
  }

  .side-nav {
    display: flex;
    flex-direction: column;
  }

  .nav-link {
    height: 43px;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 18px;
    font-size: 10px;
    text-align: left;
  }

  body.sidebar-collapsed .nav-link {
    justify-content: flex-start;
    gap: 12px;
    padding: 0 18px;
  }

  .nav-link svg {
    width: 16px;
    height: 16px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
  }

  .topbar-logos {
    width: 100%;
    justify-content: center;
    gap: 20px;
    min-width: 0;
  }

  .topbar-logo {
    width: 36px;
    height: 31px;
  }

  .top-actions {
    width: 100%;
    justify-content: space-between;
  }

  .portal,
  .language {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .hero {
    height: clamp(360px, 88vw, 480px);
    background-position: 62% center;
  }

  .hero::before {
    width: 100%;
    background:
      linear-gradient(90deg, rgba(4, 5, 6, 0.34) 0%, rgba(4, 5, 6, 0.18) 72%, rgba(4, 5, 6, 0.08) 100%);
  }

  .hero-copy {
    top: 28px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .hero-kicker {
    font-size: 12px;
  }

  .hero-title {
    font-size: clamp(38px, 11.5vw, 50px);
  }

  .hero-divider {
    width: min(360px, 86%);
  }

  .hero-button {
    width: min(255px, 100%);
  }

  .dashboard,
  .content-page,
  .ecosystem-page {
    padding: 12px;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .content-page > .panel,
  .dashboard > .panel,
  .dashboard > .primary-grid,
  .dashboard > .contact-strip,
  .dashboard > .news-ticker,
  .ecosystem-page > .panel {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .page-heading,
  .news-brief,
  .investor-grid,
  .about-grid,
  .contact-page-grid,
  .model-summary-grid,
  .model-dashboard-grid,
  .branch-grid,
  .financial-intro-grid,
  .financial-body,
  .financial-page-body,
  .portfolio-model-body {
    padding: 18px 16px;
  }

  .panel-heading,
  .panel-heading.compact {
    min-height: 58px;
    margin-inline: 16px;
    padding-inline: 0;
  }

  .panel-heading h1,
  .panel-heading h2 {
    font-size: 17px;
    max-width: 310px;
  }

  .page-heading h1 {
    font-size: clamp(22px, 5.8vw, 26px);
    max-width: 315px;
    overflow-wrap: break-word;
  }

  .page-heading-with-actions {
    gap: 16px;
  }

  .page-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .update-status {
    white-space: normal;
  }

  .financial-service-panel .page-heading h1 {
    max-width: 315px;
  }

  .primary-grid,
  .home-grid,
  .ecosystem-cards,
  .ecosystem-page-cards,
  .brief-columns,
  .principles,
  .info-grid,
  .model-kpis,
  .readiness-track,
  .deal-grid,
  .performance-grid,
  .contact-strip,
  .news-ticker {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-ticker-heading {
    gap: 6px;
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(197, 142, 57, 0.3);
  }

  .news-ticker-heading span {
    font-size: 16px;
  }

  .news-ticker-window::before,
  .news-ticker-window::after {
    width: 38px;
  }

  .ticker-item {
    width: 260px;
    min-height: 88px;
    padding: 14px 18px;
  }

  .ticker-title {
    font-size: 14px;
  }

  .panel-heading,
  .panel-heading.compact {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .home-grid .ecosystem-cards,
  .ecosystem-cards,
  .ecosystem-page-cards {
    padding: 0 16px 18px;
  }

  .home-grid .venture-card p,
  .ecosystem-page-cards .venture-card p {
    padding-inline: 20px;
  }

  .venture-card h3,
  .ecosystem-page-cards .venture-card h2 {
    min-height: 0;
    font-size: clamp(22px, 7vw, 30px);
  }

  .branch-logo-card,
  .ecosystem-page-cards .branch-logo-card {
    height: clamp(160px, 48vw, 240px);
  }

  .feature-article,
  .story-block,
  .investor-lead,
  .branch-lead,
  .launch-card,
  .strategy-note,
  .brief-card,
  .deal-watch,
  .deal-card,
  .archive-entry,
  .contact-form,
  .contact-details article,
  .model-card {
    padding: 18px 16px;
  }

  .archive-list {
    padding: 18px 16px;
  }

  .archive-entry-heading h2 {
    font-size: clamp(20px, 5.6vw, 24px);
    max-width: 310px;
    overflow-wrap: break-word;
  }

  .feature-article h2,
  .news-brief-lead h2 {
    font-size: clamp(20px, 5.6vw, 24px);
    max-width: 310px;
  }

  .feature-article p,
  .news-brief-lead p,
  .branch-lead p,
  .launch-card p,
  .strategy-note p,
  .investor-lead span,
  .story-block p,
  .principles p,
  .info-grid p {
    max-width: 310px;
  }

  .launch-card h2,
  .section-heading h2,
  .strategy-note h2 {
    max-width: 310px;
    font-size: clamp(23px, 6.6vw, 30px);
  }

  .launch-price {
    font-size: clamp(34px, 9vw, 42px);
  }

  .outline-button {
    width: 100%;
    max-width: 310px;
    padding-right: 24px;
  }

  .deal-card {
    min-height: 0;
  }

  .deal-card-topline {
    flex-direction: column;
    gap: 5px;
  }

  .contact-strip article,
  .contact-strip article:nth-last-child(-n + 2) {
    min-height: 0;
    border-bottom: 1px solid rgba(197, 142, 57, 0.28);
  }

  .contact-strip article:last-child {
    border-bottom: 0;
  }

  .contact-details article {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-details p,
  .contact-details h2 {
    max-width: 310px;
  }

  .round-icon {
    width: 46px;
    height: 46px;
  }

  .round-icon svg {
    width: 24px;
    height: 24px;
  }

  .pricing-section {
    padding: 0 20px 20px;
  }

  .pricing-table {
    min-width: 760px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .chart-wrap,
  .chart-wrap-large,
  .portfolio-chart {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .chart,
  .chart-wrap-large .chart,
  .portfolio-chart .chart {
    max-width: 100%;
  }

  .financial-notes {
    padding: 18px 0 0;
    border-top: 1px solid rgba(197, 142, 57, 0.35);
    border-left: 0;
  }

  .metric-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ecosystem-zoom {
    overflow: auto;
  }

  .ecosystem-zoom.is-open {
    left: 10px;
    top: 10px;
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
  }

  .ecosystem-zoom .panel-heading {
    min-height: 64px;
    padding: 0 20px;
  }

  .ecosystem-zoom .ecosystem-cards {
    grid-template-columns: 1fr;
    height: auto;
    padding: 0 20px 20px;
  }

  .ecosystem-zoom .branch-logo-card {
    height: clamp(160px, 45vw, 230px);
    margin: 24px auto 18px;
  }
}

@media (max-width: 420px) {
  .side-nav {
    grid-template-columns: 1fr;
  }

  .top-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .news-ticker-heading {
    padding: 13px 14px;
  }

  .ticker-item {
    width: 235px;
    padding-inline: 16px;
  }

  .ticker-kicker,
  .ticker-source {
    font-size: 8.5px;
  }

  .portal {
    justify-content: center;
    width: 100%;
  }

  .language {
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(38px, 15vw, 50px);
  }

  .page-heading,
  .news-brief,
  .investor-grid,
  .about-grid,
  .contact-page-grid,
  .model-summary-grid,
  .model-dashboard-grid,
  .branch-grid,
  .financial-intro-grid,
  .financial-body,
  .financial-page-body,
  .portfolio-model-body {
    padding: 16px;
  }
}
