:root {
  --ink: #08121f;
  --navy: #0d1b2a;
  --panel: #112240;
  --line: #1d3557;
  --blue: #3b82f6;
  --blue-soft: #93c5fd;
  --amber: #d97706;
  --gold: #f59e0b;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --quiet: #7b8798;
  --paper: #f6f7f9;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  align-items: center;
  background: rgba(8, 18, 31, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(203, 213, 225, 0.12);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5vw;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(8, 18, 31, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
}

.brand strong {
  color: var(--blue);
  font-weight: 700;
}

nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover {
  color: var(--text);
}

.language-link {
  border: 1px solid rgba(203, 213, 225, 0.28);
  border-radius: var(--radius);
  color: var(--text);
  margin-left: 4px;
  padding: 6px 10px;
}

.language-link:hover {
  border-color: rgba(245, 158, 11, 0.65);
  color: var(--gold);
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 18, 31, 0.96), rgba(8, 18, 31, 0.78) 42%, rgba(8, 18, 31, 0.28)),
    linear-gradient(0deg, var(--ink), rgba(8, 18, 31, 0) 38%);
}

.hero-content {
  max-width: 760px;
  padding: 22vh 5vw 220px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 108px);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 28px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.18;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  padding: 12px 20px;
}

.primary-action {
  background: var(--gold);
  color: #111827;
}

.secondary-action {
  border: 1px solid rgba(203, 213, 225, 0.28);
  color: var(--text);
}

.hero-panel {
  background: rgba(17, 34, 64, 0.84);
  border: 1px solid rgba(203, 213, 225, 0.14);
  border-radius: var(--radius);
  bottom: 46px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  left: 5vw;
  max-width: 900px;
  overflow: hidden;
  position: absolute;
  right: 5vw;
  z-index: 2;
}

.hero-panel div {
  background: rgba(8, 18, 31, 0.36);
  padding: 22px;
}

.hero-panel strong {
  color: var(--gold);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.hero-panel span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 8px;
}

section {
  padding: 100px 5vw;
}

.intro,
.timeline-contact {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.intro {
  background: var(--paper);
  color: #101827;
}

.intro .eyebrow,
.structure .eyebrow {
  color: #1d4ed8;
}

.intro-copy p:not(.eyebrow),
.section-heading p,
.portfolio-grid p,
.terms-list span,
.fee-grid p,
.scenario-grid p,
.contact-card p,
.timeline p,
footer {
  color: var(--muted);
}

.intro-copy p:not(.eyebrow) {
  color: #4b5563;
  font-size: 18px;
  max-width: 700px;
}

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

.leader-grid article,
.thesis-grid article,
.portfolio-grid article,
.fee-grid article,
.scenario-grid article,
.contact-card,
.timeline {
  border-radius: var(--radius);
}

.leader-grid article {
  background: white;
  border: 1px solid #e5e7eb;
  color: #111827;
  min-height: 230px;
  padding: 24px;
}

.leader-grid span,
.scenario-grid span,
.valuation-grid span,
.terms-list span,
.fee-grid span {
  color: var(--quiet);
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.leader-grid .aum {
  background: #10213e;
  color: var(--text);
}

.leader-grid p {
  color: #5b6472;
}

.leader-grid .aum p {
  color: var(--muted);
}

.band {
  background: var(--navy);
}

.section-heading {
  margin: 0 auto 46px;
  max-width: 980px;
  text-align: center;
}

.section-heading.split {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) 360px;
  max-width: none;
  text-align: left;
}

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

.thesis-grid article,
.portfolio-grid article,
.scenario-grid article {
  background: #10213d;
  border: 1px solid rgba(203, 213, 225, 0.12);
  padding: 26px;
}

.thesis-grid span {
  color: var(--gold);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 26px;
}

.valuations {
  background: #f8fafc;
  color: #111827;
}

.valuations .section-heading p {
  color: #64748b;
}

.valuations .eyebrow {
  color: #1d4ed8;
}

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

.valuation-grid article {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  min-height: 170px;
  padding: 22px;
}

.valuation-grid .large {
  background: #0f1f38;
  color: var(--text);
  grid-column: span 2;
  grid-row: span 2;
  min-height: 354px;
}

.valuation-grid strong {
  color: var(--amber);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  margin: 22px 0 12px;
}

.valuation-grid article:not(.large) strong {
  font-size: 38px;
}

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

.portfolio-grid article div {
  align-items: start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.portfolio-grid strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  white-space: nowrap;
}

ul {
  color: var(--muted);
  margin: 18px 0 0;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.structure {
  background: var(--paper);
  color: #111827;
}

.terms-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.terms-list {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  overflow: hidden;
}

.terms-list div {
  align-items: center;
  border-bottom: 1px solid #eef2f7;
  display: grid;
  gap: 18px;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 72px;
  padding: 18px 24px;
}

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

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

.fee-grid article {
  background: #10213e;
  color: var(--text);
  min-height: 168px;
  padding: 24px;
}

.fee-grid strong {
  color: var(--gold);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.scenarios {
  background: #0b1726;
}

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

.scenario-grid article {
  min-height: 430px;
}

.scenario-grid .featured {
  border-color: rgba(245, 158, 11, 0.54);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.16), var(--shadow);
  transform: translateY(-12px);
}

.scenario-grid div {
  border-top: 1px solid rgba(203, 213, 225, 0.14);
  margin-top: 18px;
  padding-top: 18px;
}

.scenario-grid strong {
  color: var(--gold);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.scenario-grid small {
  color: var(--muted);
}

.timeline-contact {
  background:
    linear-gradient(90deg, rgba(8, 18, 31, 0.98), rgba(17, 34, 64, 0.96)),
    var(--navy);
}

.contact-card,
.timeline {
  background: rgba(8, 18, 31, 0.54);
  border: 1px solid rgba(203, 213, 225, 0.14);
  padding: 34px;
}

.contact-card h2 {
  color: var(--text);
}

dl {
  margin: 30px 0 0;
}

dl div {
  border-top: 1px solid rgba(203, 213, 225, 0.12);
  display: grid;
  gap: 18px;
  grid-template-columns: 90px minmax(0, 1fr);
  padding: 16px 0;
}

dt {
  color: var(--blue-soft);
  font-weight: 800;
}

dd {
  margin: 0;
}

dd a {
  color: var(--gold);
}

.timeline article {
  border-left: 2px solid var(--line);
  padding: 0 0 26px 24px;
  position: relative;
}

.timeline article::before {
  background: var(--blue);
  border-radius: 999px;
  content: "";
  height: 12px;
  left: -7px;
  position: absolute;
  top: 7px;
  width: 12px;
}

.timeline span {
  color: var(--blue-soft);
  display: block;
  font-weight: 800;
  margin-bottom: 4px;
}

.timeline strong {
  display: block;
  font-size: 18px;
}

footer {
  background: #060d16;
  border-top: 1px solid rgba(203, 213, 225, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 28px 5vw;
}

footer p {
  margin: 0;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero-content {
    padding-top: 18vh;
  }

  .hero-panel,
  .intro,
  .section-heading.split,
  .terms-layout,
  .timeline-contact {
    grid-template-columns: 1fr;
  }

  .leader-grid,
  .thesis-grid,
  .portfolio-grid,
  .scenario-grid,
  .valuation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .valuation-grid .large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
  }

  .scenario-grid .featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 16vh 5vw 300px;
  }

  .hero-panel,
  .leader-grid,
  .thesis-grid,
  .portfolio-grid,
  .scenario-grid,
  .valuation-grid,
  .fee-grid {
    grid-template-columns: 1fr;
  }

  .valuation-grid .large {
    grid-column: span 1;
  }

  .hero-panel {
    bottom: 24px;
  }

  section {
    padding: 72px 5vw;
  }

  .terms-list div,
  dl div {
    grid-template-columns: 1fr;
  }
}
