@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Yantramanav:wght@300;400;500;700;900&display=swap");

:root {
  --gold: #eeb402;
  --gold-dark: #c89500;
  --blue: #21487d;
  --navy: #112744;
  --navy-2: #213550;
  --ice: #f1f7fc;
  --ink: #1a1a1a;
  --body: #444;
  --line: #d7d7d7;
  --white: #fff;
  --shadow: 2px 7px 30px rgba(0, 0, 0, 0.18);
  --max: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: "Yantramanav", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--ink);
}

p {
  margin: 0 0 15px;
  color: var(--body);
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  line-height: 1;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 25;
  width: 100%;
  background: transparent;
}

.nav-shell {
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: 300px;
  max-width: 34vw;
  color: #fff;
}

.brand-mark {
  display: block;
  width: 100%;
  aspect-ratio: 395 / 114;
  background: url("/assets/original/logo-5.png") center / contain no-repeat;
  color: transparent;
  font-size: 0;
}

.brand-name {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  color: #fff;
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 700;
  line-height: 1;
  padding: 9px 14px 7px;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--gold);
  color: var(--gold);
}

.site-nav a[href="/contact/"] {
  display: none;
}

.button.header-cta {
  display: none;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 0;
  background: rgba(17, 39, 68, 0.35);
  color: #fff;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.button,
button.button,
.bannersub {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 10px 38px;
  text-transform: uppercase;
}

.button:hover,
button.button:hover,
.bannersub:hover {
  background: var(--blue);
  color: #fff;
}

.button.secondary {
  background: var(--blue);
  color: #fff;
}

.button.secondary:hover {
  background: var(--gold);
  color: var(--ink);
}

.contact-tab {
  position: fixed;
  right: -56px;
  top: 52%;
  z-index: 50;
  display: inline-flex;
  min-width: 168px;
  justify-content: center;
  border-radius: 5px 5px 0 0;
  background: var(--gold);
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  padding: 13px 20px;
  text-transform: none;
  transform: rotate(-90deg);
  transform-origin: center;
}

.contact-tab:hover {
  background: var(--blue);
  color: #fff;
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)), url("/assets/original/index.jpg") center / cover no-repeat;
}

.page-hero {
  min-height: 560px;
  padding-top: 120px;
  text-align: center;
}

.page-hero.about {
  background-image: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)), url("/assets/original/index.jpg");
}

.page-hero.team {
  background-image: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)), url("/assets/original/team-banner.jpg");
}

.page-hero.fund {
  background-image: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)), url("/assets/original/fund-banner.jpg");
}

.page-hero.press-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)), url("/assets/original/press.jpg");
}

.page-hero.contact-hero,
.page-hero.legal-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)), url("/assets/original/index.jpg");
}

.hero-grid {
  display: block;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding-top: 115px;
}

.hero .eyebrow,
.hero .lead,
.hero .hero-note,
.market-board {
  display: none;
}

.hero h1 {
  max-width: 1320px;
  color: #fff;
  font-size: clamp(52px, 7.4vw, 118px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-top: 24px;
  color: var(--gold);
  font-size: clamp(62px, 8vw, 126px);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.hero h1 em {
  display: block;
  color: var(--gold);
  font-size: clamp(90px, 10vw, 160px);
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.hero-actions .secondary {
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding-inline: 0;
}

.hero-actions .secondary:hover {
  background: transparent;
  color: var(--gold);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero .lead,
.page-hero .eyebrow {
  display: none;
}

.band {
  padding: 70px 0;
  background: #fff;
}

.band.white {
  background: #fff;
}

.band.deep,
.awards-band {
  background: var(--blue);
  color: #fff;
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 44px;
}

.section-head > div:first-child,
.split-title {
  border-right: 1px solid var(--line);
  padding: 30px 30px 30px 0;
}

.section-head h2,
.split-title h2 {
  color: var(--gold);
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
}

.section-head .eyebrow,
.split-title .eyebrow {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-head .eyebrow::before {
  display: none;
}

.section-head > p,
.split-copy p {
  color: var(--ink);
  font-size: clamp(22px, 2.25vw, 34px);
  font-weight: 300;
  line-height: 1.35;
}

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

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

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

.card,
.panel {
  min-width: 0;
  background: #fff;
}

.card {
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 0;
}

.card h3 {
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
}

.card p {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.number,
.avatar {
  display: none;
}

.number-card {
  padding: 34px;
}

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

.award-grid img,
.featured-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.award-grid img:hover,
.featured-grid img:hover,
.team-photo img:hover {
  box-shadow: 2px 7px 30px rgba(255, 255, 255, 0.45);
  transform: scale(1.05);
}

.side-title {
  color: var(--gold);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 0.95;
  text-align: right;
  text-transform: uppercase;
}

.awards-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 46px;
  align-items: center;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  gap: 40px;
  align-items: center;
}

.quote {
  margin: 0;
  color: var(--gold);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.band.deep p {
  color: #fff;
}

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

.person-card {
  display: block;
  box-shadow: none;
  text-align: center;
}

.person-card .team-photo {
  overflow: hidden;
  background: #fff;
}

.person-card img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.person-card .person-copy {
  min-height: 156px;
  background: #fff;
  padding: 20px 12px 26px;
}

.person-card h3 {
  font-size: 30px;
}

.role {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: Roboto, Arial, sans-serif;
  font-size: 21px;
  line-height: 1.3;
}

.top-selling,
.press h2 {
  margin-bottom: 42px;
  color: var(--ink);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.ready {
  background: linear-gradient(rgba(17, 39, 68, 0.78), rgba(17, 39, 68, 0.78)), url("/assets/original/index.jpg") center / cover no-repeat;
  padding: 100px 0;
  text-align: center;
}

.ready h2 {
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

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

.press-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  padding: 34px 24px 42px;
  text-align: center;
}

.press-card img {
  width: 120px;
  margin: 0 auto 20px;
}

.press-card p {
  min-height: 145px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 38px;
  align-items: center;
}

.split img {
  width: 100%;
  box-shadow: none;
}

.content-block h2,
.panel h3,
.legal-copy h2 {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
}

.content-block p,
.panel p,
.legal-copy p,
.mini-list li {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.55;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  border-left: 5px solid var(--gold);
  padding-left: 14px;
}

.notice {
  border-left: 6px solid var(--gold);
  background: var(--ice);
  margin-bottom: 34px;
  padding: 22px 26px;
}

.contact-card {
  display: grid;
  gap: 20px;
}

.form {
  display: grid;
  gap: 15px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: 18px Roboto, Arial, sans-serif;
  padding: 14px 15px;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.legal-copy {
  max-width: 1100px;
}

.legal-copy h2 {
  margin-top: 32px;
  font-size: 34px;
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: 44px;
  align-items: start;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.disclaimer {
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.footer-logo img {
  width: 170px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  background: var(--navy-2);
  padding: 20px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  background: var(--navy-2);
  margin-top: 20px;
  padding: 20px;
}

.copyright {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 8px;
  }

  .brand {
    width: 260px;
  }

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

  .awards-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .side-title {
    text-align: left;
  }
}

@media (max-width: 860px) {
  .section-inner,
  .nav-shell,
  .hero-grid {
    width: min(100% - 30px, var(--max));
  }

  .site-header {
    position: absolute;
  }

  .nav-shell {
    min-height: 92px;
  }

  .brand {
    width: 220px;
    max-width: 72vw;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 92px;
    right: 15px;
    display: none;
    width: min(330px, calc(100vw - 30px));
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(17, 39, 68, 0.98);
    padding: 12px;
  }

  .site-nav[data-open] {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
    padding: 13px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-grid {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 72px);
  }

  .hero h1 span {
    font-size: clamp(46px, 12vw, 80px);
    letter-spacing: 0.03em;
  }

  .hero h1 em {
    font-size: clamp(74px, 18vw, 108px);
  }

  .page-hero {
    min-height: 430px;
  }

  .section-head,
  .quote-band,
  .split {
    grid-template-columns: 1fr;
  }

  .section-head > div:first-child,
  .split-title {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 24px;
  }

  .section-head > p,
  .split-copy p,
  .content-block p,
  .panel p,
  .legal-copy p,
  .mini-list li {
    font-size: 19px;
  }

  .grid.three,
  .grid.two,
  .press-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .brand {
    width: 190px;
  }

  .button,
  button.button,
  .bannersub {
    width: 100%;
    padding-inline: 20px;
  }

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

  .award-grid,
  .featured-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-tab {
    right: -63px;
    font-size: 20px;
  }

  .band {
    padding: 52px 0;
  }
}

/* Modernization pass: preserve the original DCM visual language with tighter, app-like scale. */
:root {
  --gold: #f2b705;
  --blue: #1f5c8f;
  --navy: #091827;
  --navy-2: #13283f;
  --ice: #f5f8fb;
  --ink: #101927;
  --body: #526070;
  --line: #dbe3ec;
  --shadow: 0 18px 48px rgba(9, 24, 39, 0.12);
  --max: 1180px;
}

body {
  background: var(--ice);
  color: var(--ink);
  font-size: 16px;
}

p {
  color: var(--body);
  font-size: 16px;
  line-height: 1.72;
}

.section-inner,
.nav-shell,
.hero-grid {
  width: min(var(--max), calc(100% - 48px));
}

.site-header {
  position: fixed;
  background: rgba(9, 24, 39, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 76px;
  gap: 24px;
}

.brand {
  width: 220px;
  max-width: 40vw;
}

.site-nav {
  gap: 6px;
}

.site-nav a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 10px 14px 8px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(242, 183, 5, 0.14);
  border-color: rgba(242, 183, 5, 0.38);
  color: #fff;
}

.button,
button.button,
.bannersub {
  min-height: 44px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  padding: 10px 22px;
}

.button:hover,
button.button:hover,
.bannersub:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-1px);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button.secondary:hover {
  background: #fff;
  color: var(--ink);
}

.contact-tab {
  right: -47px;
  min-width: 140px;
  border-radius: 8px 8px 0 0;
  font-size: 17px;
  padding: 10px 16px;
}

.hero,
.page-hero {
  background-position: center;
}

.hero {
  min-height: min(850px, 92vh);
  padding: 112px 0 56px;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding-top: 0;
}

.hero-grid > * {
  min-width: 0;
}

.hero .eyebrow,
.hero .lead,
.hero .hero-note,
.market-board {
  display: block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-family: "Yantramanav", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.96;
  text-wrap: balance;
}

.hero h1 span {
  margin-top: 12px;
  font-size: clamp(44px, 5.7vw, 82px);
  letter-spacing: 0.035em;
}

.hero h1 em {
  font-size: clamp(58px, 7vw, 96px);
  letter-spacing: 0;
}

.hero .lead {
  max-width: 610px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.62;
}

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

.hero-actions .secondary {
  padding-inline: 22px;
}

.hero-actions .secondary:hover {
  background: #fff;
  color: var(--ink);
}

.hero-note {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.market-board {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(9, 24, 39, 0.68);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  color: #fff;
  max-width: 100%;
  overflow: hidden;
  backdrop-filter: blur(22px);
}

.board-header {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 20px;
}

.board-title,
.board-status {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-status {
  border: 1px solid rgba(46, 204, 164, 0.38);
  border-radius: 999px;
  color: #79e5c8;
  padding: 7px 10px 5px;
}

.board-body {
  display: grid;
  gap: 22px;
  padding: 24px;
}

.investor-summary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 22px;
}

.investor-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

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

.donut {
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#2dd4bf 0 44%, var(--gold) 44% 68%, #67aaf9 68% 85%, #80d073 85% 100%);
  box-shadow: inset 0 0 0 22px rgba(9, 24, 39, 0.95);
}

.allocation-list {
  display: grid;
  gap: 11px;
}

.allocation-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.allocation-row strong {
  color: #fff;
}

.swatch {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.swatch.teal {
  background: #2dd4bf;
}

.swatch.gold {
  background: var(--gold);
}

.swatch.blue {
  background: #67aaf9;
}

.swatch.green {
  background: #80d073;
}

.chart {
  display: flex;
  height: 132px;
  align-items: end;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  padding: 18px;
}

.chart i {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #f2b705, rgba(242, 183, 5, 0.24));
}

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

.metric {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.3;
}

.page-hero {
  min-height: 420px;
  padding-top: 120px;
}

.page-hero h1 {
  font-size: clamp(44px, 6vw, 68px);
}

.band {
  padding: 72px 0;
}

.section-head {
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
  gap: 34px;
  margin-bottom: 34px;
}

.section-head > div:first-child,
.split-title {
  padding: 18px 28px 18px 0;
}

.section-head h2,
.split-title h2,
.content-block h2,
.panel h3,
.legal-copy h2 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
}

.section-head .eyebrow,
.split-title .eyebrow {
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
}

.section-head .eyebrow::before {
  display: block;
}

.section-head > p,
.split-copy p {
  color: var(--body);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.card,
.panel,
.press-card,
.person-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(9, 24, 39, 0.08);
}

.card h3 {
  font-size: 22px;
  line-height: 1.2;
}

.card p {
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

.number-card {
  padding: 26px;
}

.awards-layout {
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 34px;
}

.award-grid,
.featured-grid {
  gap: 14px;
}

.award-grid img,
.featured-grid img {
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  object-fit: contain;
  padding: 14px;
}

.side-title {
  font-size: clamp(34px, 4.4vw, 54px);
}

.quote-band {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 34px;
}

.quote {
  font-size: clamp(34px, 4.4vw, 56px);
}

.team-grid {
  gap: 18px;
}

.person-card {
  overflow: hidden;
  background: #fff;
}

.person-card img {
  aspect-ratio: 1 / 0.96;
}

.person-card .person-copy {
  min-height: 112px;
  padding: 18px 14px 20px;
}

.person-card h3 {
  font-size: 22px;
}

.role {
  color: var(--body);
  font-size: 15px;
}

.top-selling,
.press h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 4.2vw, 52px);
}

.ready {
  padding: 78px 0;
}

.ready h2 {
  font-size: clamp(34px, 4.8vw, 58px);
}

.press-grid {
  gap: 18px;
}

.press-card {
  min-height: 288px;
  background: #fff;
  padding: 28px 22px 30px;
}

.press-card img {
  width: 92px;
}

.press-card p {
  min-height: 96px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.42;
}

.split {
  gap: 34px;
}

.split img {
  max-height: 390px;
  border-radius: 8px;
  object-fit: cover;
}

.content-block p,
.panel p,
.legal-copy p,
.mini-list li {
  color: var(--body);
  font-size: 17px;
  line-height: 1.7;
}

.notice {
  border-left-width: 4px;
  border-radius: 8px;
}

.field input,
.field textarea {
  border-color: var(--line);
  border-radius: 8px;
  font-size: 16px;
}

.site-footer {
  background: #081522;
}

.footer-grid {
  grid-template-columns: minmax(0, 0.7fr) minmax(220px, 0.3fr);
}

.footer-links {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .market-board {
    max-width: 640px;
  }
}

@media (max-width: 860px) {
  .section-inner,
  .nav-shell,
  .hero-grid {
    width: min(100% - 30px, var(--max));
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand {
    width: 190px;
  }

  .site-nav {
    top: 76px;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .hero {
    min-height: auto;
    padding: 116px 0 54px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 62px);
  }

  .hero h1 span {
    font-size: clamp(38px, 11vw, 64px);
  }

  .hero h1 em {
    font-size: clamp(54px, 15vw, 84px);
  }

  .page-hero {
    min-height: 340px;
    padding-top: 104px;
  }

  .awards-layout,
  .quote-band,
  .section-head,
  .split {
    grid-template-columns: 1fr;
  }

  .awards-layout {
    gap: 24px;
  }

  .side-title {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .section-inner,
  .nav-shell,
  .hero-grid {
    width: calc(100% - 32px);
  }

  .brand {
    width: 174px;
  }

  .button,
  button.button,
  .bannersub {
    width: auto;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.04;
  }

  .hero h1 span {
    max-width: 340px;
    font-size: clamp(34px, 9vw, 42px);
    letter-spacing: 0.01em;
    line-height: 1.04;
  }

  .hero h1 em {
    font-size: clamp(50px, 14vw, 66px);
    line-height: 0.92;
  }

  .hero .lead {
    max-width: 340px;
    font-size: 16px;
  }

  .hero-note {
    max-width: 330px;
  }

  .market-board {
    display: none;
  }

  .board-header {
    min-height: auto;
    gap: 10px;
    padding: 16px;
  }

  .board-title,
  .board-status {
    font-size: 11px;
  }

  .board-status {
    display: none;
  }

  .board-body {
    padding: 18px;
  }

  .chart {
    gap: 4px;
    padding: 14px;
  }

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

  .donut {
    width: 132px;
  }

  .metrics,
  .award-grid,
  .featured-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .award-grid img,
  .featured-grid img {
    height: 118px;
  }

  .contact-tab {
    display: none;
  }

  .band {
    padding: 54px 0;
  }
}

/* Footer and awards refinement pass. */
.awards-band {
  background: linear-gradient(180deg, #174b77 0%, #123c61 100%);
}

.awards-layout {
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: start;
}

.side-title {
  order: -1;
  color: #fff;
  line-height: 1;
  text-align: left;
}

.side-title::after {
  display: block;
  width: 54px;
  height: 3px;
  background: var(--gold);
  margin-top: 18px;
  content: "";
}

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

.award-grid a {
  display: grid;
  min-width: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(4, 19, 32, 0.18);
  overflow: hidden;
}

.award-grid img {
  height: 150px;
  border: 0;
  background: transparent;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #07131f;
  padding: 34px 0;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.site-footer .brand {
  width: 190px;
  max-width: none;
  margin-bottom: 16px;
}

.site-footer .disclaimer,
.site-footer p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 8px;
}

.footer-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  padding: 9px 13px 7px;
  text-transform: uppercase;
}

.footer-links a:hover {
  background: rgba(242, 183, 5, 0.14);
  color: #fff;
}

@media (max-width: 1180px) {
  .awards-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .awards-layout {
    gap: 22px;
  }

  .side-title {
    order: -1;
    font-size: clamp(32px, 10vw, 42px);
  }

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

  .award-grid a {
    background: transparent;
    box-shadow: none;
    min-width: 0;
  }

  .award-grid img {
    width: 100%;
    height: clamp(210px, 54vw, 270px);
    max-height: none;
    border: 0;
    border-radius: 0;
    object-fit: contain;
    padding: 0;
  }

  .site-footer {
    padding: 30px 0;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
  }

  .site-footer .brand {
    width: 176px;
    margin-bottom: 14px;
  }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-radius: 8px;
    padding: 6px;
  }
}

@media (max-width: 420px) {
  .award-grid {
    gap: 10px;
  }
}

/* Contact page spacing refinement. */
.contact-layout {
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  align-items: start;
}

.contact-layout > * {
  min-width: 0;
}

.contact-form-panel,
.contact-card .panel {
  width: 100%;
  max-width: 100%;
  padding: 28px;
}

.contact-form-panel .form {
  gap: 14px;
}

.contact-form-panel .field {
  gap: 6px;
}

.contact-form-panel .field label {
  color: var(--body);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.contact-form-panel .field input,
.contact-form-panel .field textarea {
  min-height: 44px;
  padding: 11px 13px;
}

.contact-form-panel .field textarea {
  min-height: 132px;
}

.contact-card {
  gap: 16px;
}

.contact-card .panel h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.15;
}

.contact-card .panel p {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.55;
}

.contact-card .panel p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-panel,
  .contact-card .panel {
    padding: 22px;
  }
}
