:root {
  color-scheme: dark;
  --ink: #f5f2ea;
  --muted: #b9b2a4;
  --soft: #d8d0bf;
  --black: #040405;
  --panel: #101112;
  --panel-2: #171718;
  --line: rgba(245, 242, 234, 0.16);
  --gold: #ffffff;
  --jade: #ffffff;
  --stable: #7da7ff;
  --growth: #e8b15e;
  --asset: #ffffff;
  --reserve: #8b949e;
  --legal: #62d0c6;
  --ops: #d66b6b;
  --red: #c65f5f;
  --blue: #7aa8ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #040405 0%, #0a0b0c 45%, #050506 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 4, 5, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-cta,
.button.primary {
  color: #080807;
  background: #ffffff;
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.section,
.section-band,
.strip {
  padding-right: 4vw;
  padding-left: 4vw;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  min-height: calc(100vh - 76px);
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 4, 5, 0.96) 0%, rgba(4, 4, 5, 0.78) 35%, rgba(4, 4, 5, 0.12) 70%, rgba(4, 4, 5, 0.5) 100%),
    linear-gradient(180deg, rgba(4, 4, 5, 0.28) 0%, rgba(4, 4, 5, 0.86) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 4vw 2.2rem;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 242, 234, 0.42), transparent);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.54) contrast(1.1);
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 34px;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: #171717;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.hero-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 1.25rem;
  font-size: clamp(4rem, 8vw, 8.4rem);
  font-weight: 520;
  line-height: 0.9;
  letter-spacing: 0;
}

h1 span {
  display: block;
  margin-bottom: 0.15em;
  font-size: 0.58em;
  font-weight: 220;
  line-height: 0.95;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 640px;
  color: var(--soft);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.fine-print {
  max-width: 720px;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-logo-orbit {
  position: absolute;
  right: 10%;
  top: 10%;
  display: grid;
  place-items: center;
  width: clamp(148px, 18vw, 240px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(4, 4, 5, 0.34);
  box-shadow:
    0 0 0 16px rgba(255, 255, 255, 0.05),
    0 28px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
}

.hero-logo-orbit img {
  width: 62%;
  height: 62%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-stat-card {
  position: absolute;
  width: min(100%, 280px);
  padding: 1rem;
  border: 1px solid rgba(245, 242, 234, 0.2);
  border-radius: 8px;
  background: rgba(8, 9, 10, 0.62);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.hero-stat-card.main {
  right: 5%;
  bottom: 14%;
}

.hero-stat-card.secondary {
  left: 12%;
  bottom: 3%;
}

.hero-stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat-card strong {
  display: block;
  margin-top: 0.45rem;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.hero-stat-card small {
  display: block;
  margin-top: 0.5rem;
  color: var(--soft);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.metrics div {
  min-height: 138px;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metric-value {
  display: block;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.metric-label {
  display: block;
  max-width: 210px;
  margin-top: 0.7rem;
  color: var(--muted);
}

.section {
  padding-top: clamp(4rem, 9vw, 8rem);
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 2.5rem;
}

.section-heading p:not(.eyebrow),
.map-copy p,
.cta-section p,
.compare-hero p {
  color: var(--soft);
  font-size: 1.05rem;
}

.section-heading.compact {
  max-width: 780px;
}

.model-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 17, 18, 0.72);
  box-shadow: var(--shadow);
}

.composition-panel {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  min-height: 380px;
  padding: 1.5rem;
}

.donut {
  display: grid;
  place-items: center;
  width: 210px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(var(--stable) 0 65%, var(--growth) 65% 100%);
  box-shadow: 0 0 0 1px var(--line), 0 28px 80px rgba(0, 0, 0, 0.36);
}

.donut span {
  display: grid;
  place-items: center;
  width: 126px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #080807;
  box-shadow: inset 0 0 0 1px var(--line);
  color: #f5f2ea;
  font-weight: 900;
  text-align: center;
}

.donut strong,
.donut small {
  display: block;
}

.donut strong {
  font-size: 2.2rem;
  line-height: 1;
}

.donut small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.panel-copy {
  margin-bottom: 1rem;
  color: var(--muted);
}

.legend {
  display: grid;
  gap: 0.7rem;
  color: var(--soft);
}

.legend span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.swatch {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

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

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

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

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

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

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

.allocation-panel {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-height: 380px;
  padding: 1.5rem;
}

.stacked-bar {
  display: flex;
  align-items: center;
  height: 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.seg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 42px;
  color: #070707;
  font-weight: 900;
  font-size: 0.82rem;
}

.seg.asset {
  background: var(--asset);
}

.seg.reserve {
  color: #ffffff;
  background: var(--reserve);
}

.seg.legal {
  color: #06110f;
  background: var(--legal);
}

.seg.ops {
  color: #ffffff;
  background: var(--ops);
}

.allocation-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  color: var(--soft);
  font-size: 0.92rem;
}

.allocation-legend span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.asset-pool-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.asset-card {
  min-height: 300px;
  padding: 1.1rem;
  background: #0b0c0d;
}

.asset-card span {
  display: block;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asset-card h3 {
  min-height: 3.2rem;
}

.asset-card strong {
  display: block;
  margin: 1.25rem 0 0.8rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.asset-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.stable-card {
  border-top: 4px solid var(--stable);
}

.growth-card {
  border-top: 4px solid var(--growth);
}

.access-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.timeline-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-compare article {
  min-height: 260px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 17, 18, 0.8);
}

.timeline-compare .highlight {
  border-color: rgba(98, 208, 198, 0.45);
  background: linear-gradient(145deg, rgba(98, 208, 198, 0.16), rgba(16, 17, 18, 0.82));
}

.timeline-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-compare h3 {
  margin: 1.25rem 0;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  line-height: 0.9;
}

.timeline-compare p {
  color: var(--soft);
}

.check-list {
  display: grid;
  gap: 0.5rem;
  margin: 1.1rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.check-list li {
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
}

.document-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #050506;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.document-grid article {
  display: grid;
  align-content: space-between;
  min-height: 130px;
  padding: 1rem;
  background: #0b0c0d;
}

.document-grid span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.8rem;
  font-weight: 900;
}

.document-grid strong {
  color: var(--ink);
  font-size: 1rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.workflow-visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050506;
  box-shadow: var(--shadow);
}

.workflow-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.95) contrast(1.02);
}

.workflow-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.38));
}

.workflow-label {
  position: absolute;
  z-index: 2;
  min-width: 150px;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(5, 5, 6, 0.68);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.workflow-label span {
  display: block;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 900;
}

.workflow-label strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.step-review {
  left: 4%;
  bottom: 8%;
}

.step-eligibility {
  left: 23%;
  bottom: 8%;
}

.step-docs {
  left: 43%;
  bottom: 8%;
}

.step-allocation {
  right: 22%;
  bottom: 8%;
  border-color: rgba(232, 177, 94, 0.42);
}

.step-reporting {
  right: 4%;
  bottom: 8%;
}

.process-list li {
  min-height: 260px;
  padding: 1.25rem;
  background: #0b0c0d;
}

.process-list span {
  color: var(--gold);
  font-weight: 900;
}

.process-list p {
  color: var(--muted);
  font-size: 0.95rem;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 2rem;
  align-items: center;
}

.visual-key {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
  color: var(--soft);
}

.visual-key span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.asset-visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050506;
  box-shadow: var(--shadow);
}

.asset-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.92) contrast(1.02);
}

.asset-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.34)),
    radial-gradient(circle at 48% 44%, transparent 0 18%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.42) 100%);
}

.visual-label {
  position: absolute;
  z-index: 2;
  max-width: 230px;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(5, 5, 6, 0.68);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.visual-label span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-label strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.25;
}

.label-a {
  left: 4%;
  top: 10%;
  border-color: rgba(125, 167, 255, 0.42);
}

.label-b {
  right: 4%;
  top: 18%;
  border-color: rgba(232, 177, 94, 0.42);
}

.label-c {
  left: 10%;
  bottom: 10%;
  border-color: rgba(125, 167, 255, 0.42);
}

.label-core {
  left: 42%;
  top: 43%;
  transform: translate(-50%, -50%);
  border-color: rgba(98, 208, 198, 0.42);
}

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

.risk-grid article {
  min-height: 220px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(198, 95, 95, 0.08);
}

.risk-grid p {
  color: var(--soft);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.cta-section > div {
  max-width: 760px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 4vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.compare-hero {
  max-width: 980px;
}

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

.compare-grid .panel {
  padding: 1.5rem;
}

.compare-grid li,
.compare-grid p {
  color: var(--soft);
}

.muted-panel {
  opacity: 0.78;
}

.notes-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.notes-table div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.notes-table div:last-child {
  border-bottom: 0;
}

.notes-table strong,
.notes-table span {
  padding: 1rem;
}

.notes-table strong {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.notes-table span {
  color: var(--soft);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .model-grid,
  .timeline-compare,
  .map-section,
  .compare-grid,
  .asset-pool-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

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

  .process-list {
    grid-template-columns: 1fr;
  }

  .cta-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand span {
    max-width: 180px;
    line-height: 1.1;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .visual-label {
    position: static;
    max-width: none;
    margin: 0.5rem;
    transform: none;
  }

  .workflow-label {
    position: static;
    min-width: 0;
    margin: 0.5rem;
  }

  .hero-logo-orbit {
    right: 8%;
    top: 4%;
  }

  .hero-stat-card.main,
  .hero-stat-card.secondary {
    left: auto;
    right: auto;
    bottom: auto;
  }

  .hero-stat-card.main {
    left: 0;
    top: 48%;
  }

  .hero-stat-card.secondary {
    right: 0;
    top: 72%;
  }

  .metrics,
  .risk-grid {
    grid-template-columns: 1fr;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .donut {
    width: min(100%, 220px);
  }

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

  .notes-table div {
    grid-template-columns: 1fr;
  }
}
.statement-section {
  min-height: 100vh;
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(7rem, 12vw, 10rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #000000;
}

.statement-kicker {
  margin: 0 auto 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  text-align: center;
}

.statement-words {
  display: grid;
  justify-items: center;
}

.statement-words span {
  display: block;
  color: #ffffff;
  font-size: clamp(4.2rem, 11vw, 10rem);
  font-weight: 720;
  line-height: 0.95;
  letter-spacing: 0;
}

.statement-words span:nth-child(1) {
  color: rgba(255, 255, 255, 0.5);
}

.statement-words span:nth-child(2) {
  color: #ffffff;
}

.statement-words span:nth-child(3) {
  color: rgba(255, 255, 255, 0.78);
}

.statement-words span:nth-child(4) {
  color: rgba(255, 255, 255, 0.58);
}

.statement-sub {
  margin: 1.3rem auto 0;
  color: rgba(255, 255, 255, 0.24);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  text-align: center;
}
