:root {
  color-scheme: dark;
  --brand-bg: #07080b;
  --brand-panel: rgba(17, 19, 24, 0.82);
  --brand-panel-strong: rgba(10, 11, 15, 0.92);
  --brand-border: rgba(255, 255, 255, 0.1);
  --brand-border-strong: rgba(255, 255, 255, 0.16);
  --brand-copy: #f2f4f7;
  --brand-muted: rgba(242, 244, 247, 0.74);
  --brand-soft: rgba(242, 244, 247, 0.56);
  --brand-accent: #d14336;
  --brand-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at top, rgba(209, 67, 54, 0.12), transparent 24%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.06), transparent 16%),
    linear-gradient(180deg, #040507 0%, #07080b 38%, #0d1016 100%);
}

body {
  min-height: 100vh;
  margin: 0;
  background: transparent;
  color: var(--brand-copy);
  font-family: "Manrope", sans-serif;
}

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

.brand-mark,
.display-title,
.section-title,
.hero-metric strong {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
}

.page-shell {
  position: relative;
  overflow-x: hidden;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(209, 67, 54, 0.12), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.05), transparent 18%);
}

.page-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 76%);
  opacity: 0.24;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: 1rem;
}

.brand-navbar {
  border: 1px solid var(--brand-border);
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.site-header.is-scrolled .brand-navbar {
  background: rgba(9, 10, 14, 0.92);
  border-color: var(--brand-border-strong);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.46);
}

.brand-menu {
  border: 1px solid var(--brand-border);
  background: rgba(9, 10, 14, 0.96);
  backdrop-filter: blur(16px);
}

.brand-link {
  gap: 0.9rem;
  color: inherit;
  text-decoration: none;
}

.brand-link small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-soft);
}

.logo-emblem {
  position: relative;
  overflow: hidden;
  height: 2.75rem;
  width: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: linear-gradient(145deg, #1b1f26, #0d0f13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 30px rgba(0, 0, 0, 0.36);
}

.logo-emblem::after {
  content: "";
  position: absolute;
  right: -30%;
  bottom: -45%;
  height: 80%;
  width: 80%;
  background: radial-gradient(circle, rgba(209, 67, 54, 0.4), transparent 62%);
}

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

.logo-grid span {
  display: block;
  height: 0.42rem;
  width: 0.42rem;
  border-radius: 999px;
  background: #fafbfd;
}

.brand-mark {
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-nav-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0 0.95rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--brand-soft);
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.brand-nav-link:hover,
.brand-nav-link:focus-visible {
  color: var(--brand-copy);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  outline: none;
}

.brand-cta,
.brand-ghost {
  border-width: 1px;
}

.brand-cta {
  border-color: rgba(209, 67, 54, 0.48);
  background: linear-gradient(180deg, #e06153 0%, #ba3025 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(209, 67, 54, 0.24);
}

.brand-cta:hover,
.brand-cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #ea6658 0%, #c7382d 100%);
  color: #fff;
}

.brand-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(11, 13, 17, 0.45);
  color: #fff;
}

.brand-ghost:hover,
.brand-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.section-title,
.display-title {
  text-transform: uppercase;
}

.section-copy {
  color: var(--brand-muted);
  line-height: 1.85;
}

.editorial-top,
.feature-grid,
.process-split,
.summary-strip {
  display: grid;
  gap: 1rem;
}

.editorial-top {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: stretch;
}

.editorial-top > .editorial-media-card {
  grid-row: span 2;
}

.editorial-top > .editorial-band {
  grid-column: 1 / -1;
}

.editorial-copy-card,
.editorial-side-card,
.feature-copy-card,
.process-panel,
.summary-panel {
  padding: 1.5rem;
}

.editorial-copy-card,
.editorial-side-card,
.feature-copy-card,
.process-panel,
.summary-panel,
.editorial-band {
  border: 1px solid var(--brand-border);
  background: linear-gradient(180deg, var(--brand-panel), var(--brand-panel-strong));
  box-shadow: var(--brand-shadow);
}

.editorial-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.editorial-side-card,
.feature-copy-card,
.process-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-media-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 2rem;
  background: #0c0e12;
  box-shadow: var(--brand-shadow);
}

.editorial-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 10, 14, 0.1), rgba(9, 10, 14, 0.38) 58%, rgba(9, 10, 14, 0.82) 100%),
    linear-gradient(130deg, rgba(209, 67, 54, 0.16), transparent 42%);
  pointer-events: none;
}

.editorial-media-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.84) brightness(0.78);
  transition: transform 0.7s ease;
}

.editorial-media-card:hover img {
  transform: scale(1.03);
}

.editorial-media-tall {
  min-height: 36rem;
}

.editorial-summary-grid,
.topic-grid,
.process-grid,
.summary-detail-grid {
  display: grid;
  gap: 1rem;
}

.editorial-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.editorial-band {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1rem;
  border-radius: 1.9rem;
}

.signal-card {
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.05rem;
}

.signal-card span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
}

.signal-card strong {
  display: block;
  margin-top: 0.8rem;
  margin-bottom: 0.55rem;
  color: var(--brand-copy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.signal-card p {
  margin: 0;
  color: var(--brand-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.rail-list {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
}

.rail-row {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rail-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.rail-row:last-child {
  padding-bottom: 0;
}

.rail-row strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand-copy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.rail-row p,
.rail-row a {
  margin: 0;
  color: var(--brand-soft);
  line-height: 1.8;
}

.feature-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: stretch;
}

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

.topic-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.7rem;
  background: linear-gradient(180deg, rgba(18, 20, 25, 0.88), rgba(10, 11, 15, 0.96));
  padding: 1.45rem 1.3rem;
  box-shadow: var(--brand-shadow);
}

.topic-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(209, 67, 54, 0.82), transparent 62%);
}

.topic-index {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.topic-card h3 {
  margin: 1.15rem 0 0;
  color: var(--brand-copy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.topic-card p {
  margin: 1rem 0 0;
  color: var(--brand-soft);
  line-height: 1.8;
}

.process-split {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: stretch;
}

.process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.process-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 1.05rem;
}

.process-card span {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.process-card strong {
  display: block;
  margin-top: 0.85rem;
  color: var(--brand-copy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.process-card p {
  margin: 0.9rem 0 0;
  color: var(--brand-soft);
  font-size: 0.92rem;
  line-height: 1.75;
}

.summary-panel {
  padding: 1.5rem;
}

.summary-strip {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: end;
}

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

.hero-stage,
.cta-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 2.5rem;
  background: #0c0e12;
  box-shadow: var(--brand-shadow);
}

.hero-stage {
  min-height: clamp(34rem, 76vh, 52rem);
}

.hero-backdrop,
.cta-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop img,
.cta-backdrop img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-backdrop img {
  filter: saturate(0.78) brightness(0.38) contrast(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.92) 0%, rgba(7, 8, 11, 0.78) 42%, rgba(7, 8, 11, 0.36) 72%, rgba(7, 8, 11, 0.72) 100%),
    linear-gradient(180deg, rgba(209, 67, 54, 0.15), transparent 28%, rgba(7, 8, 11, 0.62) 100%);
}

.hero-side-panel,
.industrial-panel,
.shell-panel,
.kpi-card,
.micro-card,
.footer-panel {
  border: 1px solid var(--brand-border);
  background: linear-gradient(180deg, var(--brand-panel), var(--brand-panel-strong));
  box-shadow: var(--brand-shadow);
}

.hero-side-panel {
  backdrop-filter: blur(16px);
}

.hero-metric {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.35rem;
  background: rgba(10, 12, 16, 0.58);
  padding: 1.1rem 1rem;
  backdrop-filter: blur(10px);
}

.hero-metric span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
}

.hero-metric strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero-metric p {
  margin: 0;
  color: var(--brand-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.metal-card,
.media-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(16, 18, 23, 0.88), rgba(8, 9, 12, 0.95));
  box-shadow: var(--brand-shadow);
}

.media-frame {
  position: relative;
}

.media-frame img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.3s ease;
}

.media-frame:hover img,
.metal-card:hover img {
  transform: scale(1.04);
}

.category-card {
  position: relative;
  min-height: 28rem;
}

.category-card img {
  position: absolute;
  inset: 0;
  filter: brightness(0.62) saturate(0.85);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.12) 0%, rgba(8, 9, 12, 0.2) 24%, rgba(8, 9, 12, 0.82) 100%),
    linear-gradient(120deg, rgba(209, 67, 54, 0.16), transparent 42%);
}

.category-card .content {
  position: relative;
  z-index: 1;
}

.metric-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.metric-row:last-child {
  padding-bottom: 0;
}

.metric-label {
  color: var(--brand-copy);
  font-weight: 600;
}

.metric-value {
  color: var(--brand-soft);
  text-align: right;
}

.note-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem 0.9rem;
  color: var(--brand-soft);
  font-size: 0.85rem;
}

.highlight-list {
  display: grid;
  gap: 0.85rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
}

.highlight-item::before {
  content: "";
  flex: none;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--brand-accent);
  box-shadow: 0 0 0 0.35rem rgba(209, 67, 54, 0.14);
}

.highlight-item strong {
  display: block;
  color: var(--brand-copy);
  margin-bottom: 0.25rem;
}

.highlight-item span {
  color: var(--brand-soft);
  line-height: 1.7;
}

.page-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.48);
  padding: 0.7rem 1rem;
  color: var(--brand-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.pillar-card,
.step-card,
.contact-link-card,
.contact-summary-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(18, 20, 25, 0.88), rgba(10, 11, 15, 0.96));
  box-shadow: var(--brand-shadow);
}

.pillar-card,
.step-card,
.contact-link-card {
  padding: 1.35rem 1.25rem;
}

.pillar-card h3,
.step-card strong,
.contact-link-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pillar-foot {
  color: var(--brand-soft);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.step-card strong {
  display: block;
  margin-top: 0.85rem;
  color: var(--brand-copy);
  font-size: 1.7rem;
  line-height: 1;
}

.step-card p {
  margin: 0.9rem 0 0;
  color: var(--brand-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.step-index {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.contact-link-card {
  min-height: 100%;
}

.contact-inline-link {
  color: var(--brand-copy);
  font-weight: 600;
  text-align: right;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-inline-link:hover,
.contact-inline-link:focus-visible {
  color: #fff;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  color: var(--brand-copy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-action::after {
  content: "→";
  font-size: 0.95rem;
}

.contact-action:hover,
.contact-action:focus-visible {
  color: #fff;
  transform: translateX(2px);
}

.contact-summary-card {
  padding: 1.15rem 1.1rem;
}

.micro-card {
  border-radius: 1.25rem;
  padding: 1.15rem 1.1rem;
}

.floating-note {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  max-width: 18rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(8, 9, 12, 0.72);
  padding: 0.9rem 1rem;
  color: var(--brand-soft);
  backdrop-filter: blur(12px);
}

.floating-note strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--brand-copy);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-backdrop img {
  filter: brightness(0.34) saturate(0.75);
}

.cta-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.9) 0%, rgba(7, 8, 11, 0.7) 42%, rgba(7, 8, 11, 0.5) 100%),
    linear-gradient(180deg, rgba(209, 67, 54, 0.22), transparent 28%, rgba(7, 8, 11, 0.82) 100%);
}

.link-muted {
  color: var(--brand-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-muted:hover,
.link-muted:focus-visible {
  color: var(--brand-copy);
}

code {
  font-family: "Barlow Condensed", sans-serif;
}

@media (max-width: 1023px) {
  .desktop-nav {
    display: none !important;
  }

  .editorial-top,
  .feature-grid,
  .process-split,
  .summary-strip {
    grid-template-columns: 1fr;
  }

  .editorial-top > .editorial-media-card {
    grid-row: auto;
  }

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

  .editorial-summary-grid,
  .topic-grid,
  .process-grid,
  .summary-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 8, 11, 0.74), rgba(7, 8, 11, 0.88) 38%, rgba(7, 8, 11, 0.96) 100%),
      linear-gradient(180deg, rgba(209, 67, 54, 0.15), transparent 18%);
  }

  .metric-row {
    flex-direction: column;
  }

  .metric-value {
    text-align: left;
  }

  .contact-inline-link {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding-top: 0.75rem;
  }

  .brand-navbar {
    min-height: 4.25rem;
    padding-inline: 0.75rem;
  }

  .brand-link {
    gap: 0;
  }

  .logo-emblem {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.9rem;
  }

  .brand-navbar .btn.btn-circle {
    min-height: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .page-shell::after {
    background-size: 48px 48px;
    opacity: 0.16;
  }

  .hero-stage,
  .cta-stage,
  .hero-side-panel,
  .industrial-panel,
  .shell-panel,
  .kpi-card,
  .editorial-media-card,
  .editorial-band,
  .signal-card,
  .topic-card,
  .process-card,
  .pillar-card,
  .step-card,
  .contact-link-card,
  .contact-summary-card,
  .metal-card,
  .media-frame,
  .footer-panel {
    border-radius: 1.75rem;
  }

  .page-note {
    display: flex;
    border-radius: 1.25rem;
  }

  .step-grid,
  .contact-detail-grid,
  .editorial-summary-grid,
  .editorial-band,
  .topic-grid,
  .process-grid,
  .summary-detail-grid {
    grid-template-columns: 1fr;
  }

  .editorial-copy-card,
  .editorial-side-card,
  .feature-copy-card,
  .process-panel,
  .summary-panel {
    padding: 1.25rem;
  }

  .hero-metric strong {
    font-size: 1.25rem;
  }

  .floating-note {
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}
