@font-face {
  font-family: "Silka";
  src: url("../fonts/silka-light-webfont.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Silka";
  src: url("../fonts/silka-regular-webfont.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Silka";
  src: url("../fonts/silka-medium-webfont.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Silka";
  src: url("../fonts/silka-semibold-webfont.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Silka";
  src: url("../fonts/silka-bold-webfont.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700 900;
}

:root {
  color-scheme: light;
  --brand-ocean: #00f2fe;
  --brand-blue: #4facfe;
  --brand-purple: #c471f5;
  --brand-gradient: linear-gradient(142deg, #00f2fe 14.14%, #4facfe 50.81%, #c471f5 80.97%);
  --ink: #2c2b2f;
  --ink-soft: #404142;
  --paper: #f9f9f9;
  --paper-deep: #e6e9ec;
  --white: #ffffff;
  --line: #e6e9ec;
  --line-dark: rgba(255, 255, 255, 0.16);
  --muted: #57595f;
  --muted-light: #7c7d83;
  --complete: var(--brand-blue);
  --active: var(--brand-purple);
  --registered: var(--brand-purple);
  --live: #36d39b;
  --error: #e2556b;
  --pending: #acadb1;
  --hero-width: 1200px;
  font-family: "Silka", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 4px;
}

.hero {
  height: min(76svh, 720px);
  min-height: 560px;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #0b1015;
  background-image: url("assets/lightspeed-flare.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(3, 7, 11, 0.12);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 2px;
  background: var(--brand-gradient);
  opacity: 0.34;
}

.site-nav {
  width: min(var(--hero-width), calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 1;
  animation: nav-enter 620ms ease-out both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-logo {
  width: 108px;
  height: auto;
  display: block;
}

.brand-product {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-actions,
.data-state {
  display: flex;
  align-items: center;
}

.nav-actions {
  gap: 22px;
}

.data-state {
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 500;
}

.data-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-purple);
}

.data-state.is-live .data-dot {
  background: var(--live);
  animation: pulse 2.4s ease-in-out infinite;
}

.data-state.is-error .data-dot {
  background: var(--error);
  animation: none;
}

.nav-link {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding: 7px 0;
  transition: border-color 180ms ease, color 180ms ease;
}

.nav-link:hover {
  border-color: var(--brand-ocean);
  color: var(--brand-ocean);
}

.hero-content {
  width: min(var(--hero-width), calc(100% - 48px));
  margin: auto;
  padding: 30px 0 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--brand-ocean);
  animation: hero-enter 640ms 80ms ease-out both;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: 78px;
  line-height: 1;
  font-weight: 300;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.46), 0 0 26px rgba(70, 188, 231, 0.22), 0 3px 28px rgba(0, 0, 0, 0.72);
  animation: hero-enter 700ms 150ms ease-out both;
}

.hero-copy {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
  animation: hero-enter 700ms 220ms ease-out both;
}

.hero-progress {
  width: min(720px, 100%);
  margin-top: 34px;
  text-align: left;
  animation: hero-enter 700ms 300ms ease-out both;
}

.progress-heading,
.progress-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.progress-heading {
  margin-bottom: 11px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.progress-heading strong {
  font-size: 30px;
  line-height: 1;
}

.progress-track {
  width: 100%;
  height: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.progress-fill {
  width: 0;
  height: 100%;
  display: block;
  background: var(--brand-gradient);
  box-shadow: 0 0 18px rgba(79, 172, 254, 0.58);
  transition: width 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-stages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.progress-stages span {
  position: relative;
  padding-top: 8px;
  transition: color 240ms ease;
}

.progress-stages span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.24);
  transition: width 240ms ease, background 240ms ease;
}

.progress-stages span.is-complete {
  color: rgba(255, 255, 255, 0.78);
}

.progress-stages span.is-complete::before {
  width: 100%;
  background: var(--complete);
}

.progress-stages span.is-active {
  color: var(--white);
}

.progress-stages span.is-active::before {
  width: 50%;
  background: var(--active);
}

.progress-meta {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.95);
}

.steps-section,
.impact-section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--brand-gradient);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 46px;
}

.section-heading h2,
.finalizer-heading h2,
.follow-band h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 600;
}

.section-heading > p,
.finalizer-heading > p:last-child,
.follow-band > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

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

.milestone {
  min-height: 304px;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 28px;
  border: 0;
  border-radius: 0;
  background: var(--white);
  position: relative;
  box-shadow: none;
  transition: background 180ms ease;
}

.milestone:hover {
  background: #f6f8fa;
}

.milestone::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--pending);
}

.milestone.is-complete::before {
  background: var(--complete);
}

.milestone.is-active {
  background: #fbf8fd;
}

.milestone.is-active::before {
  background: var(--active);
}

.milestone.is-live::before {
  background: var(--brand-gradient);
}

.milestone-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.step-number,
.step-status,
.step-evidence,
.impact-index {
  font-size: 12px;
  font-weight: 600;
}

.step-number,
.impact-index {
  color: var(--muted);
}

.step-status {
  color: var(--pending);
  text-transform: uppercase;
}

.is-complete .step-status {
  color: #2c83cf;
}

.is-active .step-status {
  color: #8750ad;
}

.is-live .step-status {
  color: #137e86;
}

.milestone h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 600;
}

.milestone p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.step-evidence {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.4;
}

.finalizer-band {
  background: var(--ink);
  color: var(--white);
  box-shadow: inset 0 2px 0 rgba(79, 172, 254, 0.34), inset 0 -1px 0 rgba(196, 113, 245, 0.18);
  position: relative;
  overflow: hidden;
}

.finalizer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 42px 72px;
  padding: 84px 0;
}

.finalizer-heading .section-label {
  color: var(--brand-ocean);
}

.finalizer-heading h2 {
  font-weight: 400;
  text-shadow: 0 0 20px rgba(79, 172, 254, 0.14);
}

.finalizer-heading > p:last-child {
  max-width: 600px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.64);
}

.finalizer-count {
  align-self: end;
  text-align: right;
}

.finalizer-count > div {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.finalizer-count strong {
  color: var(--brand-ocean);
  font-size: 76px;
  line-height: 0.9;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .finalizer-count strong,
  .settlement-step.is-final strong {
    background: var(--brand-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.finalizer-count span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 30px;
  font-weight: 600;
}

.finalizer-count p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 600;
}

.finalizer-meter {
  --segments: 21;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(var(--segments), minmax(3px, 1fr));
  gap: 4px;
  min-height: 54px;
}

.meter-segment {
  min-width: 0;
  height: 54px;
  border-radius: 2px;
  background: var(--ink-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: background 400ms ease, transform 400ms ease, box-shadow 400ms ease;
}

.meter-segment.is-registered {
  background: var(--registered);
}

.meter-segment.is-active {
  background: var(--brand-ocean);
  transform: translateY(-4px);
  box-shadow: 0 0 16px rgba(79, 172, 254, 0.34);
}

.meter-legend {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-top: -26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.meter-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-swatch {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 2px;
  background: var(--ink-soft);
}

.legend-swatch.is-active {
  background: var(--brand-ocean);
}

.legend-swatch.is-registered {
  background: var(--registered);
}

.checkpoint-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4px;
  border-top: 1px solid var(--line-dark);
}

.checkpoint-stats > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px 0 0;
  border-right: 1px solid var(--line-dark);
}

.checkpoint-stats > div:not(:first-child) {
  padding-left: 24px;
}

.checkpoint-stats > div:last-child {
  border-right: 0;
}

.checkpoint-stats strong {
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}

.checkpoint-stats span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.impact-section {
  padding-bottom: 104px;
}

.settlement-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr) 76px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin-bottom: 48px;
  padding: 34px 0 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.settlement-step {
  min-width: 0;
}

.settlement-step > span {
  display: block;
  margin-bottom: 18px;
  color: #8750ad;
  font-size: 11px;
  font-weight: 600;
}

.settlement-step strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
}

.settlement-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.settlement-step.is-final strong {
  color: #2c83cf;
}

.settlement-connector {
  width: 100%;
  height: 1px;
  background: var(--line);
  position: relative;
}

.settlement-connector::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--muted);
  border-right: 1px solid var(--muted);
  transform: rotate(45deg);
}

.settlement-connector.is-fast {
  height: 2px;
  background: var(--brand-gradient);
  box-shadow: 0 0 14px rgba(79, 172, 254, 0.28);
}

.settlement-connector.is-fast::after {
  border-color: var(--brand-purple);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.impact-grid article {
  min-height: 236px;
  padding: 30px 36px 36px 0;
  border-right: 1px solid var(--line);
}

.impact-grid article:not(:first-child) {
  padding-left: 36px;
}

.impact-grid article:last-child {
  border-right: 0;
}

.impact-index {
  color: #8750ad;
}

.impact-grid h3 {
  margin: 34px 0 10px;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 600;
}

.impact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.assurance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  background: var(--ink);
  color: var(--white);
  position: relative;
}

.assurance-strip::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--brand-gradient);
}

.assurance-strip > div {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-right: 1px solid var(--line-dark);
}

.assurance-strip > div:last-child {
  border-right: 0;
}

.assurance-strip span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.assurance-strip strong {
  font-size: 15px;
  font-weight: 600;
  text-align: right;
}

.follow-band {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 54px;
  padding: 76px max(24px, calc((100% - 1200px) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.follow-band > div > p:last-child {
  max-width: 700px;
  margin-top: 14px;
}

.follow-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.primary-link,
.secondary-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-link {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(44, 43, 47, 0.12);
}

.primary-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--brand-gradient);
}

.primary-link:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
}

.secondary-link {
  border: 1px solid var(--line);
  color: var(--ink);
}

.secondary-link:hover {
  border-color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

footer {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100% - 1200px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.footer-brand img {
  width: 88px;
  height: auto;
  display: block;
}

.footer-brand span {
  padding-left: 11px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes nav-enter {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(54, 211, 155, 0); }
  50% { box-shadow: 0 0 0 6px rgba(54, 211, 155, 0.16); }
}

@media (max-width: 980px) {
  h1 {
    font-size: 66px;
  }

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

  .section-heading,
  .follow-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .follow-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .hero {
    height: min(86svh, 680px);
    min-height: 620px;
    background-position: 62% bottom;
    background-size: auto 116%;
  }

  .site-nav,
  .hero-content,
  .steps-section,
  .impact-section,
  .finalizer-inner {
    width: min(100% - 32px, 1200px);
  }

  .site-nav {
    min-height: 64px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-link {
    display: none;
  }

  .data-state {
    max-width: 160px;
    font-size: 11px;
  }

  .hero-content {
    padding-bottom: 28px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-progress {
    margin-top: 26px;
  }

  .progress-heading strong {
    font-size: 26px;
  }

  .progress-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .progress-stages {
    gap: 7px;
    font-size: 9px;
  }

  .progress-stages span::before {
    width: 12px;
  }

  .steps-section,
  .impact-section {
    padding: 70px 0;
  }

  .section-heading {
    gap: 18px;
  }

  .section-heading h2,
  .finalizer-heading h2,
  .follow-band h2 {
    font-size: 34px;
  }

  .milestone-list,
  .impact-grid,
  .checkpoint-stats,
  .assurance-strip {
    grid-template-columns: 1fr;
  }

  .milestone {
    min-height: 250px;
    padding: 28px 24px 24px;
  }

  .finalizer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 68px 0;
  }

  .finalizer-count {
    text-align: left;
  }

  .finalizer-count > div {
    justify-content: flex-start;
  }

  .finalizer-count strong {
    font-size: 62px;
  }

  .finalizer-meter,
  .checkpoint-stats {
    grid-column: 1;
  }

  .finalizer-meter {
    min-height: 38px;
  }

  .meter-segment {
    height: 38px;
  }

  .meter-legend {
    justify-content: flex-start;
    gap: 16px;
    margin-top: -18px;
  }

  .checkpoint-stats > div,
  .checkpoint-stats > div:not(:first-child) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .checkpoint-stats > div:last-child {
    border-bottom: 0;
  }

  .impact-grid {
    border-bottom: 0;
  }

  .settlement-story {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 28px 0 32px;
  }

  .settlement-step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
  }

  .settlement-step > span {
    grid-row: 1 / 3;
    margin: 5px 0 0;
  }

  .settlement-step strong {
    font-size: 24px;
  }

  .settlement-step p {
    grid-column: 2;
  }

  .settlement-connector,
  .settlement-connector.is-fast {
    width: 1px;
    height: 32px;
    margin: 8px 0 8px 13px;
  }

  .settlement-connector::after {
    top: auto;
    right: -3px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .impact-grid article,
  .impact-grid article:not(:first-child) {
    min-height: 190px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .assurance-strip > div {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .assurance-strip > div:last-child {
    border-bottom: 0;
  }

  .follow-band {
    padding: 54px 16px;
  }

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

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 620px;
  }

  h1 {
    font-size: 43px;
  }

  .brand-logo {
    width: 92px;
  }

  .brand-product {
    padding-left: 9px;
    font-size: 10px;
  }
}

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

  .data-state.is-live .data-dot,
  .progress-fill,
  .meter-segment,
  .milestone,
  .site-nav,
  .hero .eyebrow,
  h1,
  .hero-copy,
  .hero-progress,
  .primary-link,
  .secondary-link {
    animation: none;
    transition: none;
  }
}
