:root {
  --ink: #08121f;
  --ink-soft: #26364a;
  --muted: #617087;
  --paper: #ffffff;
  --mist: #f2f6fa;
  --line: rgba(8, 18, 31, 0.12);
  --dark: #06111e;
  --dark-2: #0a1929;
  --cyan: #14afe3;
  --cyan-light: #8be6ff;
  --cyan-soft: #dff7ff;
  --lime: #b9f36b;
  --shell: 1180px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(7, 21, 37, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3 {
  font-family: "Avenir Next", Inter, Aptos, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 6.3vw, 6.2rem);
  line-height: 0.98;
  max-width: 820px;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.2vw, 4.5rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
  line-height: 1.2;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 128px 0;
}

.section-light {
  background: var(--paper);
}

.section-mist {
  background: var(--mist);
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--dark);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(6, 17, 30, 0.9);
  border-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
}

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

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 16%;
}

.brand-copy {
  display: grid;
  font-size: 0.86rem;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.brand-copy strong {
  font-weight: 800;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.62);
}

.site-nav,
.nav-links {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 30px;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--paper);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--paper);
  transition: transform 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.85rem;
}

.button-primary {
  color: #03121a;
  background: var(--cyan);
  box-shadow: 0 14px 36px rgba(20, 175, 227, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--cyan-light);
}

.button-outline {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--cyan);
}

.button-ghost {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.4);
}

.button-white {
  color: var(--ink);
  background: var(--paper);
}

.button-white:hover,
.button-white:focus-visible {
  background: #effbff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--cyan-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: #0089b7;
}

.hero {
  min-height: 100svh;
  padding: 170px 0 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.2;
}

.glow-one {
  top: -180px;
  right: 5%;
  background: var(--cyan);
}

.glow-two {
  bottom: -340px;
  left: 5%;
  background: #2438ff;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.hero-description {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.network-stage {
  position: relative;
  min-height: 510px;
}

.network-orbit {
  position: absolute;
  border: 1px solid rgba(139, 230, 255, 0.22);
  border-radius: 50%;
}

.orbit-one {
  inset: 60px 8px 56px 6px;
  transform: rotate(-13deg);
}

.orbit-two {
  inset: 118px 66px 112px 58px;
  border-style: dashed;
  animation: spin 26s linear infinite;
}

.network-centre {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: centre;
  width: 156px;
  height: 156px;
  padding: 20px;
  border: 1px solid rgba(139, 230, 255, 0.34);
  border-radius: 50%;
  background: rgba(6, 17, 30, 0.78);
  box-shadow: 0 0 80px rgba(20, 175, 227, 0.18);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.network-centre::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(20, 175, 227, 0.14);
  border-radius: inherit;
}

.network-centre img {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
}

.network-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(8, 24, 40, 0.86);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.network-node span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.node-founder {
  top: 44px;
  left: 22%;
}

.node-talent {
  top: 34%;
  right: -4px;
}

.node-capital {
  bottom: 58px;
  right: 18%;
}

.node-markets {
  bottom: 118px;
  left: -8px;
}

.network-badge {
  position: absolute;
  top: 50%;
  right: -3%;
  padding: 8px 12px;
  border-left: 2px solid var(--lime);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.network-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 175, 227, 0.65), transparent);
  transform-origin: left;
}

.line-one {
  top: 39%;
  left: 28%;
  width: 48%;
  transform: rotate(-19deg);
}

.line-two {
  top: 53%;
  left: 22%;
  width: 57%;
  transform: rotate(31deg);
}

.line-three {
  top: 63%;
  left: 14%;
  width: 48%;
  transform: rotate(-13deg);
}

.highlight-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.highlight {
  padding: 32px 28px 34px 0;
}

.highlight + .highlight {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.highlight strong {
  display: block;
  margin-bottom: 4px;
  color: var(--paper);
  font-family: "Avenir Next", Inter, Aptos, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.42rem;
}

.highlight span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

.section-heading > p,
.section-heading > div > p:last-child {
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 64px;
}

.split-heading h2 {
  max-width: 730px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.info-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card:hover {
  border-color: rgba(20, 175, 227, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.info-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--cyan-soft);
  transition: transform 0.35s ease;
}

.info-card:hover::after {
  transform: scale(1.25);
}

.card-number {
  display: inline-grid;
  place-items: centre;
  width: 46px;
  height: 46px;
  margin-bottom: 92px;
  border-radius: 50%;
  color: #007da7;
  background: var(--cyan-soft);
  font-family: "Avenir Next", Inter, Aptos, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.info-card h3,
.info-card p {
  position: relative;
  z-index: 2;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.community-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.74fr) minmax(0, 1.26fr);
  gap: 100px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 120px;
}

.sticky-heading p:not(.eyebrow) {
  margin-bottom: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #007ea8;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.role-list {
  border-top: 1px solid var(--line);
}

.role-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 0.7fr) minmax(220px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.role-icon {
  display: grid;
  place-items: centre;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #007ea8;
  background: var(--paper);
  font-family: "Avenir Next", Inter, Aptos, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 8px 26px rgba(9, 31, 50, 0.06);
}

.role-item h3 {
  margin: 8px 0 0;
}

.role-item p {
  margin: 4px 0 0;
  color: var(--muted);
}

.launchpad {
  isolation: isolate;
}

.launchpad-glow {
  position: absolute;
  top: -260px;
  right: -80px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 175, 227, 0.3), transparent 65%);
  z-index: -1;
}

.launchpad-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 90px;
  align-items: center;
}

.launchpad-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
}

.feature-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.panel-label {
  margin: 6px 8px 18px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.feature-item {
  min-height: 130px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(3, 14, 25, 0.52);
}

.feature-item span {
  display: grid;
  place-items: centre;
  width: 32px;
  height: 32px;
  margin-bottom: 30px;
  border-radius: 50%;
  color: var(--dark);
  background: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  line-height: 1.35;
}

.centred-heading {
  max-width: 830px;
  margin: 0 auto 68px;
  text-align: center;
}

.centred-heading .eyebrow {
  justify-content: center;
}

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

.step {
  position: relative;
  padding: 46px 42px 20px 0;
}

.step + .step {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.step-number {
  display: block;
  margin-bottom: 70px;
  color: #0094c5;
  font-family: "Avenir Next", Inter, Aptos, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-section {
  padding-top: 20px;
  padding-bottom: 110px;
  background: var(--paper);
}

.cta-panel {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: centre;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--paper);
  background: linear-gradient(135deg, #009dce, #0a6ea3 55%, #123a73);
  box-shadow: 0 28px 85px rgba(8, 104, 147, 0.25);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.55) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.5) 0 1px, transparent 2px);
  background-size: 54px 54px, 78px 78px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 70px 34px;
  text-align: center;
}

.cta-content .eyebrow {
  justify-content: center;
  color: #d7f8ff;
}

.cta-content h2 {
  margin-bottom: 22px;
}

.cta-content p:not(.eyebrow) {
  max-width: 690px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.site-footer {
  padding: 74px 0 30px;
  color: rgba(255, 255, 255, 0.68);
  background: #040c15;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 52px;
}

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

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
}

.footer-brand strong {
  display: block;
  margin-bottom: 3px;
  color: var(--paper);
}

.footer-brand p {
  margin: 0;
  font-size: 0.84rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-size: 0.83rem;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--cyan-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.76rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-delay {
  transition-delay: 0.15s;
}

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

@keyframes spin {
  to { transform: rotate(347deg); }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 100px 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 34px;
    padding: 100px 30px 40px;
    background: rgba(6, 17, 30, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .nav-links a {
    font-family: "Avenir Next", Inter, Aptos, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.65rem;
  }

  .site-nav .button {
    align-self: flex-start;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .network-stage {
    width: min(100%, 600px);
    min-height: 430px;
    margin: 0 auto;
  }

  .split-heading,
  .community-layout,
  .launchpad-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sticky-heading {
    position: static;
    max-width: 700px;
  }

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

  .info-card {
    min-height: 250px;
  }

  .card-number {
    margin-bottom: 50px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding: 82px 0;
  }

  .brand-copy {
    display: none;
  }

  .hero {
    padding-top: 130px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

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

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

  .network-stage {
    min-height: 390px;
    transform: scale(0.92);
  }

  .node-founder {
    left: 12%;
  }

  .node-talent {
    right: 0;
  }

  .node-capital {
    right: 10%;
  }

  .node-markets {
    left: 0;
  }

  .network-badge {
    display: none;
  }

  .highlight-strip {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .highlight {
    padding: 22px 0;
  }

  .highlight + .highlight {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .split-heading {
    gap: 30px;
  }

  .role-item {
    grid-template-columns: 48px 1fr;
    gap: 14px 18px;
  }

  .role-item p {
    grid-column: 2;
  }

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

  .feature-item {
    min-height: auto;
  }

  .feature-item span {
    margin-bottom: 22px;
  }

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

  .step,
  .step + .step {
    padding: 34px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-number {
    margin-bottom: 38px;
  }

  .cta-section {
    padding-top: 0;
  }

  .cta-panel {
    min-height: 520px;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}
