:root {
  --black: #030402;
  --ink: #101210;
  --graphite: #252525;
  --stone: #d7d1c6;
  --paper: #f4efe5;
  --muted: #a9a092;
  --brass: #b89461;
  --sage: #1a2212;
  --line: rgba(244, 239, 229, 0.16);
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  color: var(--paper);
  transition: background 300ms ease, border-color 300ms ease, padding 300ms ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(3, 4, 2, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 13px;
  font-weight: 800;
  color: var(--paper);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 13px;
  font-weight: 800;
  color: var(--brass);
}

.nav-investor {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(184, 148, 97, 0.5);
  background: rgba(3, 4, 2, 0.5);
  color: var(--brass);
  cursor: pointer;
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav a,
.header-cta,
.button {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a:hover,
.header-cta:hover {
  color: var(--paper);
}

.header-cta {
  justify-self: end;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 148, 97, 0.5);
  padding: 0 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass);
}

.mobile-sticky-cta {
  display: none;
}

.hero,
.contact {
  position: relative;
  min-height: 92svh;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center bottom;
  filter: grayscale(1) contrast(1.05);
  transform: translateY(calc(var(--scroll, 0) * 0.08px));
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 4, 2, 0.9) 0%, rgba(3, 4, 2, 0.58) 44%, rgba(3, 4, 2, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 4, 2, 0.88) 0%, rgba(3, 4, 2, 0.1) 58%, rgba(3, 4, 2, 0.82) 100%);
}

.hero-content {
  width: min(760px, calc(100% - 40px));
  padding: 22svh 0 0 clamp(20px, 8vw, 110px);
}

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(58px, 8.6vw, 112px);
  line-height: 0.88;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--paper);
  font-size: 22px;
  font-weight: 500;
}

.hero-copy {
  max-width: 620px;
  color: rgba(244, 239, 229, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 20px;
}

.hero-facts span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(244, 239, 229, 0.16);
  background: rgba(3, 4, 2, 0.32);
  padding: 7px 11px;
  color: rgba(244, 239, 229, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(244, 239, 229, 0.18);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--brass);
  border-color: var(--brass);
  color: #111;
}

.button.ghost {
  color: var(--paper);
}

.hero-foot {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  display: flex;
  gap: 18px;
  color: rgba(244, 239, 229, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-foot span + span {
  padding-left: 18px;
  border-left: 1px solid rgba(244, 239, 229, 0.24);
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-black {
  background: var(--black);
}

.section-panel {
  background: var(--graphite);
  color: var(--paper);
}

.credibility {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.credibility-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 2fr;
  align-items: center;
  gap: 28px;
}

.credibility-copy p:last-child {
  margin: 0;
  color: rgba(244, 239, 229, 0.68);
  font-size: 15px;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.partner-row span {
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 239, 229, 0.12);
  background: #000;
  padding: 18px 22px;
}

.partner-row img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 64px;
  object-fit: contain;
}

.partner-row span:nth-child(3) img {
  max-width: 148px;
  max-height: 78px;
}

.partner-row span:nth-child(4) img {
  max-width: 220px;
}

.split,
.terms-grid,
.operate-grid,
.diligence-grid,
.team-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  padding: clamp(78px, 11vw, 150px) 0;
}

.section-copy p,
.contact-panel p {
  color: rgba(244, 239, 229, 0.76);
  font-size: 18px;
}

.thesis-panel {
  border: 1px solid rgba(244, 239, 229, 0.14);
  background:
    linear-gradient(135deg, rgba(184, 148, 97, 0.16), transparent 44%),
    rgba(3, 4, 2, 0.34);
}

.panel-line {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  padding: 28px;
  border-bottom: 1px solid rgba(244, 239, 229, 0.12);
}

.panel-line:last-child {
  border-bottom: 0;
}

.panel-line span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.panel-line strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1;
}

.fund-terms {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.terms-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.terms-grid .section-heading {
  margin-bottom: 0;
}

.terms-panel {
  border: 1px solid rgba(184, 148, 97, 0.38);
  background: rgba(244, 239, 229, 0.04);
}

.term-line {
  display: grid;
  grid-template-columns: minmax(130px, 0.48fr) 1fr;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(244, 239, 229, 0.12);
}

.term-line:last-child {
  border-bottom: 0;
}

.term-line span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.term-line strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.05;
}

.image-band {
  height: clamp(260px, 38vw, 520px);
  overflow: hidden;
  background: var(--sage);
}

.image-band img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08);
}

.operate {
  border-top: 1px solid var(--line);
}

.operate-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.bullet-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.diamond-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.diamond-list li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 24px;
  color: rgba(244, 239, 229, 0.78);
  font-size: 17px;
}

.diamond-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--brass);
  transform: rotate(45deg);
}

.diligence {
  border-top: 1px solid rgba(244, 239, 229, 0.08);
  border-bottom: 1px solid rgba(244, 239, 229, 0.08);
}

.diligence-grid {
  grid-template-columns: 0.82fr 1.18fr;
}

.diligence-list {
  display: grid;
  gap: 16px;
}

.diligence-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(244, 239, 229, 0.14);
  background:
    linear-gradient(135deg, rgba(184, 148, 97, 0.12), transparent 45%),
    rgba(3, 4, 2, 0.24);
}

.diligence-list article > span {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.diligence-list h3 {
  margin-bottom: 8px;
}

.diligence-list p {
  grid-column: 2;
  margin: 0;
  color: rgba(244, 239, 229, 0.7);
}

.positioning .section-inner {
  padding: clamp(76px, 10vw, 140px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.risk-stage {
  width: min(650px, 100%);
  overflow: visible;
}

.risk-caption {
  max-width: 650px;
  margin: -10px 0 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 2vw, 20px);
  font-style: italic;
  text-align: center;
}

.risk-chart {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-bg {
  fill: #000;
}

.chart-band {
  fill: rgba(184, 148, 97, 0.24);
}

.chart-axis {
  fill: none;
  stroke: var(--paper);
  stroke-width: 4;
}

.chart-return-path {
  fill: none;
  stroke: rgba(244, 239, 229, 0.3);
  stroke-width: 6;
  stroke-dasharray: 24 14;
}

.chart-guide {
  fill: none;
  stroke: rgba(244, 239, 229, 0.74);
  stroke-width: 3;
  stroke-dasharray: 10 7;
}

.chart-point circle {
  fill: var(--paper);
}

.chart-point text,
.chart-zone,
.chart-x-label,
.chart-y-label,
.chart-y-arrow {
  fill: var(--paper);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.chart-point text {
  font-size: 13px;
}

.gcp-ring {
  fill: var(--black) !important;
  stroke: var(--brass);
  stroke-width: 13;
}

.gcp-core {
  fill: var(--brass) !important;
}

.gcp-name {
  fill: var(--brass) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 21px !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em;
  text-transform: none !important;
}

.gcp-sub {
  fill: var(--brass) !important;
  font-size: 12px !important;
}

.chart-y-label,
.chart-x-label {
  fill: var(--brass);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.chart-y-arrow {
  fill: var(--brass);
  font-size: 18px;
}

.chart-zone {
  fill: var(--brass);
  font-size: 11px;
}

.coming-soon-page {
  min-height: 100svh;
}

.coming-soon {
  min-height: 100svh;
}

.coming-soon-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
}

.coming-soon-media,
.coming-soon-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.coming-soon-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: grayscale(1) contrast(1.06) brightness(0.58);
}

.coming-soon-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 4, 2, 0.96) 0%, rgba(3, 4, 2, 0.78) 48%, rgba(3, 4, 2, 0.3) 100%),
    linear-gradient(0deg, rgba(3, 4, 2, 0.88) 0%, rgba(3, 4, 2, 0.08) 60%, rgba(3, 4, 2, 0.7) 100%);
}

.coming-soon-content {
  max-width: 720px;
}

.coming-soon-brand {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: clamp(64px, 10vw, 118px);
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.5;
  text-transform: uppercase;
}

.coming-soon-content h1 {
  max-width: 760px;
  margin: 0 0 24px;
}

.coming-soon-content p:not(.kicker) {
  max-width: 600px;
  margin: 0 0 34px;
  color: rgba(244, 239, 229, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

.compare {
  padding: clamp(74px, 10vw, 132px) 0;
}

.comparison {
  border: 1px solid rgba(244, 239, 229, 0.14);
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.85fr repeat(3, 1fr);
  min-height: 64px;
  border-bottom: 1px solid rgba(244, 239, 229, 0.12);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > * {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-right: 1px solid rgba(244, 239, 229, 0.12);
  color: rgba(244, 239, 229, 0.7);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.comparison-row > *:last-child {
  border-right: 0;
}

.comparison-row strong {
  background: rgba(184, 148, 97, 0.25);
  color: var(--paper);
  text-transform: uppercase;
}

.comparison-head > * {
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
}

.footnote {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(244, 239, 229, 0.58);
  font-size: 13px;
  font-style: italic;
}

.team-list {
  display: grid;
  gap: 22px;
}

.team-member {
  display: grid;
  grid-template-columns: 128px 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(244, 239, 229, 0.14);
  background: rgba(3, 4, 2, 0.28);
}

.team-member > div {
  min-width: 0;
}

.avatar {
  width: 128px;
  aspect-ratio: 1;
  border: 2px solid rgba(184, 148, 97, 0.62);
  border-radius: 50%;
  background: var(--black);
  object-fit: cover;
  box-shadow: 0 0 0 7px rgba(244, 239, 229, 0.05);
  filter: brightness(1.04) contrast(1.03);
}

.team-member p {
  margin: 0;
  color: rgba(244, 239, 229, 0.66);
}

.contact {
  min-height: auto;
  background:
    linear-gradient(135deg, rgba(26, 34, 18, 0.96), rgba(3, 4, 2, 0.96)),
    var(--black);
}

.contact-grid {
  padding: clamp(78px, 10vw, 134px) 0;
}

.contact-intro {
  max-width: 560px;
  color: rgba(244, 239, 229, 0.76);
  font-size: 18px;
}

.contact-panel {
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(184, 148, 97, 0.44);
  background: rgba(244, 239, 229, 0.04);
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 239, 229, 0.18);
  border-radius: 0;
  background: rgba(3, 4, 2, 0.52);
  color: var(--paper);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(184, 148, 97, 0.82);
  box-shadow: 0 0 0 3px rgba(184, 148, 97, 0.12);
}

.form-consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--brass);
}

.form-consent span {
  color: rgba(244, 239, 229, 0.7) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.contact-form .button {
  width: fit-content;
  border-radius: 0;
  cursor: pointer;
}

.contact-form .button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.next-steps {
  border-top: 1px solid rgba(244, 239, 229, 0.12);
  padding-top: 22px;
}

.next-steps h3 {
  margin-bottom: 14px;
}

.next-steps .diamond-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0 !important;
  color: rgba(244, 239, 229, 0.72) !important;
  font-size: 14px !important;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 900px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    background: rgba(3, 4, 2, 0.92);
    border-color: var(--line);
    backdrop-filter: blur(18px);
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(184, 148, 97, 0.35);
    background: rgba(3, 4, 2, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .site-header.is-menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(244, 239, 229, 0.1);
    padding: 0 8px;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav-investor {
    display: flex;
    margin-top: 4px;
    border: 1px solid rgba(184, 148, 97, 0.5) !important;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
  }

  .header-cta {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 16px;
    z-index: 28;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brass);
    background: var(--brass);
    color: #111;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-cta-visible + .mobile-sticky-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-content {
    width: min(100% - 36px, 660px);
    padding: 16svh 0 0 20px;
  }

  .hero-foot {
    left: 20px;
    right: 20px;
    flex-wrap: wrap;
  }

  .credibility-grid,
  .split,
  .terms-grid,
  .operate-grid,
  .diligence-grid,
  .team-grid,
  .contact-grid,
  .bullet-columns {
    grid-template-columns: 1fr;
  }

  .team-list {
    width: 100%;
  }

  .team-member {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    max-width: 100%;
    overflow: hidden;
    padding: clamp(22px, 5vw, 28px);
    text-align: center;
  }

  .team-member h3 {
    max-width: 100%;
    font-size: clamp(22px, 5.8vw, 28px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .team-member p {
    max-width: 100%;
    font-size: clamp(15px, 4vw, 17px);
    overflow-wrap: anywhere;
  }

  .avatar {
    width: clamp(112px, 28vw, 128px);
  }

  #thesis,
  #terms,
  #compare,
  #team,
  #contact {
    scroll-margin-top: 92px;
  }

  .partner-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .diligence-list article {
    grid-template-columns: 44px 1fr;
    padding: 20px;
  }

  .comparison {
    display: grid;
    gap: 14px;
    border: 0;
    overflow: visible;
  }

  .comparison-row.comparison-head {
    display: none;
  }

  .comparison-row {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(244, 239, 229, 0.14);
    background: rgba(3, 4, 2, 0.18);
  }

  .comparison-row > * {
    display: grid;
    grid-template-columns: minmax(112px, 0.58fr) 1fr;
    gap: 14px;
    align-items: start;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 239, 229, 0.1);
    padding: 14px 16px;
    font-size: 14px;
  }

  .comparison-row > *::before {
    content: attr(data-label);
    color: var(--brass);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 10px;
    font-weight: 800;
  }

  .comparison-row > span:first-child {
    display: block;
    background: rgba(244, 239, 229, 0.04);
    color: var(--paper);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.05;
  }

  .comparison-row > span:first-child::before {
    display: none;
  }

  .comparison-row > strong {
    background: rgba(184, 148, 97, 0.22);
  }

  .comparison-row > *:last-child {
    border-bottom: 0;
  }

  .risk-stage {
    width: min(650px, 100%);
    margin-inline: auto;
  }

  .chart-point text {
    font-size: 12px;
  }

  .gcp-name {
    font-size: 18px !important;
  }

  .gcp-sub {
    font-size: 11px !important;
  }

  .chart-y-label,
  .chart-x-label {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .brand {
    letter-spacing: 0.16em;
    font-size: 10px;
  }

  .hero {
    min-height: calc(88svh - 82px);
  }

  .hero-media img {
    object-position: 78% bottom;
    filter: grayscale(1) contrast(1.05) brightness(0.48);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 4, 2, 0.98) 0%, rgba(3, 4, 2, 0.88) 62%, rgba(3, 4, 2, 0.48) 100%),
      linear-gradient(0deg, rgba(3, 4, 2, 0.9) 0%, rgba(3, 4, 2, 0.12) 56%, rgba(3, 4, 2, 0.82) 100%);
  }

  h1 {
    font-size: clamp(54px, 17vw, 80px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  #contact h2 {
    font-size: clamp(34px, 10vw, 40px);
  }

  .team-grid,
  .contact-grid {
    gap: 28px;
    padding: 58px 0;
  }

  body {
    padding-bottom: 72px;
  }

  .hero-facts {
    gap: 8px;
  }

  .hero-facts span {
    min-height: 32px;
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  .partner-row {
    grid-template-columns: 1fr;
  }

  .partner-row span {
    height: 112px;
  }

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

  .term-line {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .risk-stage {
    width: 100%;
    height: auto;
    margin-bottom: 34px;
  }

  .risk-chart {
    width: 100%;
    min-width: 0;
  }

  .risk-stage {
    overflow: visible;
    padding-bottom: 0;
  }

  .risk-caption {
    margin-top: 4px;
    font-size: 15px;
  }

  .coming-soon-hero {
    align-items: end;
    min-height: 100svh;
    padding: 28px 20px 42px;
  }

  .coming-soon-shade {
    background:
      linear-gradient(90deg, rgba(3, 4, 2, 0.98) 0%, rgba(3, 4, 2, 0.86) 64%, rgba(3, 4, 2, 0.52) 100%),
      linear-gradient(0deg, rgba(3, 4, 2, 0.92) 0%, rgba(3, 4, 2, 0.18) 55%, rgba(3, 4, 2, 0.78) 100%);
  }

  .coming-soon-brand {
    margin-bottom: 72px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .coming-soon-content p:not(.kicker) {
    font-size: 17px;
  }

  .team-member {
    gap: 14px;
    padding: 22px;
  }

  .avatar {
    width: 112px;
  }

  .contact-panel {
    padding: 22px;
  }

  .diligence-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .diligence-list p {
    grid-column: auto;
  }

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

  .hero-actions {
    margin-top: 28px;
  }

  .hero-foot {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 22px 20px 0;
    padding-bottom: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
