:root {
  --ink: #0A1C30;
  --ink-2: #122844;
  --ink-3: #16304f;
  --ice-1: #BAE6FD;
  --ice-2: #38BDF8;
  --ice-3: #075985;
  --white: #FFFFFF;
  --paper: #F7FAFC;
  --slate: #4B5B6E;
  --slate-light: #7A8CA1;
  --border: rgba(10, 28, 48, 0.09);
  --shadow-soft: 0 24px 60px -30px rgba(10, 28, 48, 0.35);
  --shadow-hard: 0 40px 90px -40px rgba(7, 89, 133, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

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

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice-3);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--ice-2);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ice-2), var(--ice-3));
  color: var(--white);
  box-shadow: 0 18px 40px -18px rgba(56, 189, 248, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -18px rgba(56, 189, 248, 0.7);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

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

.btn-outline:hover {
  border-color: var(--ice-2);
  color: var(--ice-3);
  transform: translateY(-2px);
}

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

header.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

header.site-header.scrolled {
  background: rgba(10, 28, 48, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  padding: 12px 0;
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.5);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 30px;
  width: auto;
}

.brand.on-light img {
  filter: none;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: background 0.3s ease, color 0.3s ease;
}

nav.main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

nav.main-nav a.active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-panel {
  display: none;
}

@media (max-width: 960px) {
  nav.main-nav {
    display: none;
  }
  .nav-cta .btn-ghost {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-panel.open {
    display: block;
    position: fixed;
    inset: 78px 16px auto 16px;
    background: rgba(10, 28, 48, 0.97);
    border-radius: 20px;
    padding: 18px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
    z-index: 99;
  }
  .mobile-panel a {
    display: block;
    padding: 14px 12px;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-panel a:last-child {
    border-bottom: none;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 120% at 15% 0%, #0e2748 0%, var(--ink) 45%, #061422 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 90px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60%;
  height: 130%;
  background: radial-gradient(circle at 60% 40%, rgba(56, 189, 248, 0.22), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: #fff;
  max-width: 15ch;
}

.hero .lede {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.hero-stats {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
}

.stat .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.ice-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px) saturate(140%);
  padding: 28px;
  box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.55);
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.6s var(--ease);
}

.ice-card:hover {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.ice-card .panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ice-card .panel-head .dot-row {
  display: flex;
  gap: 6px;
}

.ice-card .panel-head .dot-row span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.ice-card .panel-head .dot-row span:first-child {
  background: var(--ice-2);
}

.ice-tag {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.06em;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.mock-row:last-child {
  border-bottom: none;
}

.mock-row .badge {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
}

.badge.ok {
  background: rgba(56, 189, 248, 0.18);
  color: var(--ice-1);
}

.badge.warn {
  background: rgba(250, 204, 21, 0.16);
  color: #facc15;
}

.badge.mint {
  background: rgba(186, 230, 253, 0.15);
  color: var(--ice-1);
}

section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.section-head p {
  font-size: 1.08rem;
  color: var(--slate);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.band-alt {
  background: var(--ink);
  color: #fff;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(56, 189, 248, 0.35);
}

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ice-1), var(--ice-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card h3 {
  font-size: 1.24rem;
}

.card p {
  color: var(--slate);
  font-size: 0.98rem;
  margin-bottom: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ice-3);
  background: #fff;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.feature-row.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--slate);
}

.feature-list .check {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.14);
  color: var(--ice-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 2px;
}

.feature-media {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.feature-media .fm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.fm-tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--slate-light);
}

.fm-bar {
  height: 10px;
  border-radius: 8px;
  background: var(--border);
  overflow: hidden;
  margin-bottom: 8px;
}

.fm-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--ice-2), var(--ice-3));
  border-radius: 8px;
}

.deadline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
}

.deadline-item:last-child {
  border-bottom: none;
}

.deadline-item .days {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: var(--ice-3);
  background: rgba(56, 189, 248, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
}

.stat-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.stat-band::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -40%;
  width: 50%;
  height: 180%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 65%);
}

.stat-band .stat {
  position: relative;
  z-index: 1;
}

.stat-band .num {
  font-size: 2.6rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.testimonial .quote {
  font-size: 0.98rem;
  color: var(--ink);
  flex: 1;
}

.testimonial .quote::before {
  content: "\201E";
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--ice-2);
  margin-right: 2px;
}

.testimonial .quote::after {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--ice-2);
}

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

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ice-2), var(--ice-3));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.person .name {
  font-weight: 600;
  font-size: 0.94rem;
}

.person .role {
  font-size: 0.82rem;
  color: var(--slate-light);
}

.cta-band {
  background: linear-gradient(135deg, var(--ice-3), var(--ink) 70%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 52ch;
  margin: 0 auto 30px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

footer.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 28px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.92rem;
  max-width: 32ch;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--ice-1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}

.page-hero {
  padding: 160px 0 90px;
  background: radial-gradient(120% 100% at 10% 0%, #0e2748 0%, var(--ink) 55%, #061422 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 45%;
  height: 120%;
  background: radial-gradient(circle at 60% 40%, rgba(56, 189, 248, 0.18), transparent 60%);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  max-width: 18ch;
  position: relative;
  z-index: 2;
}

.page-hero .lede {
  color: rgba(255, 255, 255, 0.72);
  max-width: 50ch;
  font-size: 1.08rem;
  position: relative;
  z-index: 2;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.2em;
}

.legal-content p, .legal-content li {
  color: var(--slate);
  font-size: 0.98rem;
}

.legal-content address {
  font-style: normal;
}

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

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}

.team-card .avatar {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  margin: 0 auto 18px;
  font-size: 1.3rem;
}

.team-card .role {
  color: var(--ice-3);
  font-size: 0.88rem;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.9rem;
  color: var(--slate);
}

.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 42px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ice-2);
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.14);
}

.timeline-item .year {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ice-3);
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-item .icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.1);
  color: var(--ice-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-info-item p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
}

.field input,
.field textarea,
.field select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  background: var(--paper);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--ice-2);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.16);
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--slate-light);
  margin-top: 14px;
}

.map-note {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
  background: linear-gradient(135deg, var(--ice-1), var(--ice-2));
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: var(--ink);
}

.logo-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0.65;
}

.logo-strip span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--slate-light);
  letter-spacing: 0.02em;
}

.breadcrumb-space {
  height: 0;
}

@media (max-width: 960px) {
  .hero-grid, .feature-row, .feature-row.reverse, .contact-grid {
    grid-template-columns: 1fr;
  }
  .feature-row.reverse .feature-media {
    order: 0;
  }
  .grid-3, .team-grid, .testimonials {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .stat-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  section {
    padding: 80px 0;
  }
  .cta-band, .form-card {
    padding: 40px 26px;
  }
}

@media (max-width: 620px) {
  .container {
    padding: 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stat-band {
    grid-template-columns: 1fr 1fr;
    padding: 30px 20px;
  }
  .hero {
    padding-top: 100px;
  }
}
