@font-face {
  font-family: "FK Grotesk";
  src: url("assets/fonts/FKGrotesk-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FK Grotesk";
  src: url("assets/fonts/FKGrotesk-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FK Grotesk";
  src: url("assets/fonts/FKGrotesk-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --mint: #a7fb90;
  --mint-dark: #85c873;
  --mint-darker: #426439;
  --mint-darkest: #324b2b;
  --mint-lightest: #f6fef3;
  --mint-lighter: #edfee8;
  --gin: #e6f1e7;
  --gin-lightest: #fcfdfc;
  --ink: #000000;
  --ink-soft: #191919;
  --muted: #4c4c4c;
  --muted-on-dark: #a3a3a3;
  --line: #00000026;
  --line-on-dark: #ffffff26;
  --white: #ffffff;
  --black: #000000;
  --font: "FK Grotesk", Arial, sans-serif;
  --max: 1120px;
  --max-hero: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--gin-lightest);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

em {
  font-style: normal;
  color: var(--mint-darker);
}

.text-mint {
  color: var(--mint);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.tagline {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-darkest);
}

.tagline--on-dark {
  color: var(--mint);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition:
    color 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
    border-color 0.35s ease,
    background-color 0.35s ease,
    transform 0.2s ease;
}

.btn--mint {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--ink);
}

.btn--mint:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  transform: translateY(-1px);
}

.bullets {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

.bullets li {
  margin-bottom: 0.4rem;
}

.bullets--on-dark {
  color: #e8e8e8;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    url("assets/img/dot-pattern.png"),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.78));
  background-position: center, 0 0;
  background-repeat: repeat, no-repeat;
}

.nav--hero {
  position: relative;
  z-index: 3;
  padding: 0.35rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
  width: min(100% - 2.5rem, var(--max-hero));
  margin-inline: auto;
}

.brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: 8.75rem;
  height: auto;
}

.nav__menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.35rem;
}

.nav__link {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0.92;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav__link:hover {
  opacity: 0.7;
}

.nav__link.is-active {
  color: var(--mint);
  opacity: 1;
}

.nav__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--nav {
  min-height: 2.5rem;
  padding: 0.45rem 1.15rem;
  font-size: 0.9rem;
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 0 3.5rem;
}

.hero__bar {
  width: min(100% - 2.5rem, var(--max-hero));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6.5vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
  max-width: 14ch;
  animation: hero-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__lead {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.015em;
  animation: hero-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== FIGURES ========== */
.figures {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(800px 360px at 100% 0%, rgba(167, 251, 144, 0.35), transparent 55%),
    linear-gradient(180deg, var(--mint-lightest), var(--gin-lightest));
}

.figures__head {
  margin-bottom: 2.5rem;
}

.figures__intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.figures h2,
.how h2,
.split h2,
.flow h2,
.presence h2,
.about h2,
.features h2,
.infra h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.figures__intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.figures__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
}

.figures__item {
  margin: 0;
}

.figures__item dt {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.figures__item dd {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* ========== FEATURES (dark) ========== */
.features {
  padding: 5rem 0;
  background: var(--black);
  color: var(--white);
}

.features h2 {
  max-width: 22ch;
  margin-bottom: 0.75rem;
}

.features__sub {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  font-weight: 500;
}

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

.features__list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line-on-dark);
}

.features__list li:last-child {
  border-bottom: 1px solid var(--line-on-dark);
}

.features__list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.features__list .fine {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted-on-dark);
  max-width: 40rem;
}

.features__list strong {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--mint);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

/* ========== SPLIT ========== */
.split {
  padding: 5rem 0;
  background: var(--white);
}

.split__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.split__copy h3 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.1rem;
  color: var(--mint-darker);
}

.split__copy p {
  margin: 0;
  color: var(--ink-soft);
}

.split__aside {
  margin: 0;
  min-height: 100%;
  align-self: stretch;
  overflow: hidden;
  background: #111;
}

.split__aside-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
}

/* ========== HOW ========== */
.how {
  padding: 5rem 0;
  background:
    linear-gradient(180deg, var(--mint-lightest), var(--gin-lightest));
}

.how__head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: end;
}

.how__lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.how__card {
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-top: 3px solid var(--mint);
}

.how__num {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mint-darker);
  letter-spacing: 0.04em;
}

.how__card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.how__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ========== FLOW ========== */
.flow {
  padding: 5rem 0;
  background: var(--white);
}

.flow__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.75rem 0 2rem;
}

.flow__cols h3 {
  margin: 0 0 0.5rem;
  color: var(--mint-darker);
  font-size: 1.1rem;
}

.flow__cols p {
  margin: 0;
  color: var(--ink-soft);
}

.flow__diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--mint-lighter);
  border: 1px solid var(--line);
}

.flow__node {
  padding: 1.25rem;
  background: var(--mint);
  min-height: 6.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.flow__node strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.flow__node span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.flow__arrow {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mint-darkest);
  text-align: center;
  white-space: nowrap;
}

.flow__note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ========== INFRA ========== */
.infra {
  padding: 5rem 0;
  background: var(--black);
  color: var(--white);
}

.infra__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.infra h2 {
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.infra h3 {
  margin: 1.35rem 0 0.45rem;
  font-size: 1.1rem;
  color: var(--mint);
}

.infra p {
  margin: 0;
  color: #d8d8d8;
}

.infra__figure {
  margin: 0;
  position: relative;
}

.infra__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #111;
}

.infra__figure figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.infra__figure span {
  color: var(--muted-on-dark);
}

.infra__figure em {
  font-style: normal;
  color: var(--mint);
  font-weight: 500;
}

/* ========== PRESENCE ========== */
.presence {
  padding: 5rem 0;
  background: var(--mint-lightest);
}

.presence__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
}

.presence__grid article {
  padding: 1.15rem 1rem;
  background: var(--white);
  border-top: 2px solid var(--mint);
}

.presence__grid h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.presence__grid p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.presence__offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.presence__offices div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.presence__offices span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ========== ABOUT ========== */
.about {
  padding: 5rem 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.about p {
  color: var(--ink-soft);
}

.about__panel {
  padding: 1.75rem 1.5rem;
  background: var(--black);
  color: var(--white);
}

.about__panel h3 {
  margin: 0 0 0.75rem;
  color: var(--mint);
  font-size: 1.2rem;
}

.about__panel p {
  color: #d8d8d8;
  margin: 0 0 1.5rem;
}

/* ========== BIGPUSH CTA (Hearst) ========== */
.bigpush {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #0a0a0a;
}

.bigpush__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bigpush__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.bigpush__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    url("assets/img/dot-pattern.png"),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
  background-position: center, 0 0;
  background-repeat: repeat, no-repeat;
}

.bigpush__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 4.5rem 1.5rem;
  width: min(100% - 2rem, 40rem);
}

.bigpush__content h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 700;
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 1.5rem;
  background: var(--gin-lightest);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__brand img {
  width: 7.5rem;
  height: auto;
  margin-bottom: 0.85rem;
}

.footer__brand {
  flex: 1 1 16rem;
  max-width: 24rem;
}

.footer__legal {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}

.footer__link {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (max-width: 640px) {
  .footer__links {
    align-items: flex-start;
  }
}

.footer__bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.footer__copy {
  margin: 0 0 1rem;
}

.footer__company {
  max-width: 40rem;
}

.footer__company-title {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.footer__company p {
  margin: 0 0 0.3rem;
}

.footer__company p:last-child {
  margin-bottom: 0;
}

.footer__company strong {
  color: var(--ink);
  font-weight: 600;
}

/* ========== HOW IT WORKS PAGE ========== */
.page-hero {
  position: relative;
  min-height: 52svh;
  color: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111;
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background-image:
    url("assets/img/dot-pattern.png"),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.8));
  background-position: center, 0 0;
  background-repeat: repeat, no-repeat;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 0 3rem;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.page-hero__lead {
  margin: 0.9rem 0 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.hiw-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 640px;
  background: var(--white);
}

.hiw-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.hiw-intro__copy {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
}

.hiw-intro__copy h2,
.hiw-rewards h2,
.hiw-calc h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hiw-intro__copy > p {
  margin: 0 0 2rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.hiw-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.hiw-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.hiw-steps__num {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.hiw-steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--mint-darker);
}

.hiw-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.hiw-rewards {
  padding: 5rem 0;
  background: var(--mint-lightest);
}

.hiw-rewards__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.75rem 0 2.25rem;
}

.hiw-rewards__cols h3 {
  margin: 0 0 0.5rem;
  color: var(--mint-darker);
  font-size: 1.15rem;
}

.hiw-rewards__cols p {
  margin: 0;
  color: var(--ink-soft);
}

.hiw-diagram-img {
  margin: 0 0 2.5rem;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.hiw-diagram-img img {
  width: 100%;
  height: auto;
  display: block;
}

.hiw-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 0.75rem;
}

.hiw-diagram__node {
  padding: 1.5rem 1.25rem;
  background: var(--mint);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hiw-diagram__node--dark {
  background: var(--mint-dark);
}

.hiw-diagram__node strong {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.hiw-diagram__node span {
  font-size: 0.95rem;
}

.hiw-diagram__node ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.92rem;
}

.hiw-diagram__note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hiw-diagram__highlight {
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.85rem;
  background: rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  font-weight: 500;
}

.hiw-diagram__flow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mint-darkest);
  text-align: center;
  white-space: nowrap;
}

.fine-print {
  margin: 0 0 2.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.hiw-chain {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.hiw-chain h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.hiw-chain__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.25rem;
}

.hiw-chain__list li {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.hiw-chain__list span {
  font-weight: 700;
  color: var(--mint-darker);
  font-size: 0.8rem;
}

.hiw-chain > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hiw-calc {
  padding: 5rem 0;
  background: var(--white);
}

.hiw-calc__lead {
  margin: 0 0 2rem;
  max-width: 48rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.hiw-calc__table-title {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: var(--mint-darker);
}

.hiw-table-wrap {
  overflow-x: auto;
  margin-bottom: 2.5rem;
  border: 1px solid var(--line);
}

.hiw-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.hiw-table th,
.hiw-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.hiw-table th {
  background: var(--mint-lighter);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint-darkest);
}

.hiw-table td:first-child {
  font-weight: 600;
  white-space: nowrap;
}

.hiw-table td:last-child {
  font-weight: 500;
}

.hiw-table tr:last-child td {
  border-bottom: none;
}

.hiw-risks {
  padding: 1.75rem 1.5rem;
  background: var(--black);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hiw-risks h3 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.hiw-risks > p {
  margin: 0 0 1rem;
  color: #d8d8d8;
}

.hiw-risks__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.hiw-risks__list li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line-on-dark);
  color: var(--mint);
  font-weight: 500;
  font-size: 1.05rem;
}

.hiw-risks__list li:last-child {
  border-bottom: 1px solid var(--line-on-dark);
}

.hiw-risks__warn {
  margin: 0 !important;
  color: #f0f0f0 !important;
  font-size: 0.95rem;
}

.hiw-rebalance {
  padding: 1.5rem 1.35rem;
  background: var(--mint-lighter);
  border-left: 4px solid var(--mint);
}

.hiw-rebalance h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.hiw-rebalance p {
  margin: 0;
  color: var(--ink-soft);
}

/* ========== FLEET SITUATION ========== */
.fleet-status {
  padding: 3.5rem 0 0;
  background: var(--gin-lightest);
}

.fleet-status__banner {
  padding: 2rem 1.75rem;
  background: var(--black);
  color: var(--white);
}

.fleet-status__banner h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.035em;
}

.fleet-status__banner p {
  margin: 0 0 0.85rem;
  color: #d8d8d8;
  max-width: 52rem;
}

.fleet-status__banner p:last-child {
  margin-bottom: 0;
}

.fleet-market,
.fleet-charts,
.fleet-explain,
.fleet-pause,
.fleet-monitor {
  padding: 4.5rem 0;
}

.fleet-market {
  background: var(--white);
}

.fleet-charts {
  background: var(--mint-lightest);
}

.fleet-explain {
  background: var(--white);
}

.fleet-pause {
  background: var(--gin-lightest);
}

.fleet-monitor {
  background: var(--white);
}

.fleet-market h2,
.fleet-charts h2,
.fleet-explain h2,
.fleet-pause h2,
.fleet-monitor h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.fleet-lead {
  margin: 0 0 2rem;
  max-width: 48rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.fleet-drivers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fleet-drivers article {
  padding: 1.35rem 1.2rem;
  background: var(--mint-lightest);
  border-top: 3px solid var(--mint);
}

.fleet-drivers__num {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mint-darker);
}

.fleet-drivers h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

.fleet-drivers p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.fleet-charts__grid {
  display: grid;
  gap: 2rem;
}

.fleet-chart {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.fleet-chart figcaption {
  padding: 1.35rem 1.35rem 0.75rem;
}

.fleet-chart h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.fleet-chart figcaption p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.fleet-chart img {
  width: 100%;
  height: auto;
  background: #f7f7f7;
}

.fleet-explain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.fleet-explain__grid article {
  padding: 1.5rem 1.25rem;
  background: var(--mint-lightest);
}

.fleet-explain__grid h3 {
  margin: 0 0 0.55rem;
  color: var(--mint-darker);
  font-size: 1.1rem;
}

.fleet-explain__grid p {
  margin: 0;
  color: var(--ink-soft);
}

.fleet-quote {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: var(--mint);
  color: var(--ink);
}

.fleet-quote p {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.fleet-quote footer {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.fleet-pause__panel {
  padding: 2rem 1.75rem;
  background: var(--black);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.fleet-pause__panel h2 {
  color: var(--white);
}

.fleet-pause__panel p {
  margin: 0 0 0.85rem;
  color: #d8d8d8;
  max-width: 48rem;
}

.fleet-pause__panel p:last-child {
  margin-bottom: 0;
}

.fleet-yield {
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.fleet-yield h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  color: var(--mint-darker);
}

.fleet-yield p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
}

.fleet-yield p:last-child {
  margin-bottom: 0;
}

.fleet-monitor__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 0 0 1.75rem;
}

.fleet-monitor__grid article {
  padding: 1.25rem 1.1rem;
  border-top: 3px solid var(--mint);
  background: var(--mint-lightest);
}

.fleet-monitor__grid span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mint-darker);
}

.fleet-monitor__grid h3 {
  margin: 0;
  font-size: 1.05rem;
}

/* ========== ABOUT US ========== */
.about-jv,
.about-partners {
  padding: 4.5rem 0;
}

.about-jv {
  background: var(--white);
}

.about-partners {
  background: var(--mint-lightest);
}

.about-jv h2,
.about-partners h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.about-jv__lead {
  margin: 0 0 2.25rem;
  max-width: 48rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.about-jv__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-jv__points article {
  padding: 1.35rem 1.2rem;
  background: var(--mint-lightest);
  border-top: 3px solid var(--mint);
}

.about-jv__points span {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mint-darker);
}

.about-jv__points h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.about-jv__points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 100%;
}

.about-card--dark {
  background: var(--black);
  border-color: transparent;
  color: var(--white);
}

.about-card__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.about-card__logo {
  height: 1.35rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  align-self: flex-start;
}

.about-card__logo--hearst {
  height: 1.2rem;
  max-width: 8rem;
}

.about-card__label {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-card--dark .about-card__label {
  color: var(--muted-on-dark);
}

.about-card h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.about-card--dark h3 {
  color: var(--mint);
}

.about-card > p {
  margin: 0;
  flex: 1;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.about-card--dark > p {
  color: #d8d8d8;
}

.about-card .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.about-close {
  padding: 0 0 4.5rem;
  background: var(--mint-lightest);
}

.about-close__panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: var(--mint-dark);
}

.about-close__panel h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  letter-spacing: -0.03em;
}

.about-close__panel p {
  margin: 0;
  max-width: 40rem;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .about-jv__points,
  .about-cards {
    grid-template-columns: 1fr;
  }

  .fleet-drivers,
  .fleet-explain__grid,
  .fleet-monitor__grid {
    grid-template-columns: 1fr;
  }

  .hiw-intro,
  .hiw-rewards__cols,
  .hiw-diagram {
    grid-template-columns: 1fr;
  }

  .hiw-diagram__flow {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hiw-chain__list {
    grid-template-columns: 1fr;
  }

  .nav__menu {
    gap: 1rem;
  }

  .figures__intro,
  .split__grid,
  .how__head,
  .flow__cols,
  .infra__grid,
  .about__grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .features__list li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero__content {
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 560px) {
  .figures__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
