:root {
  --bg: #050b12;
  --bg-layer: #0a111c;
  --surface: rgba(10, 22, 35, 0.65);
  --surface-strong: rgba(9, 30, 42, 0.85);
  --text: #dffef3;
  --muted: #90a9b7;
  --primary: #00ff66;
  --secondary: #00f0ff;
  --border: rgba(145, 190, 214, 0.2);
  --shadow-primary: 0 0 0.8rem rgba(0, 255, 102, 0.5);
  --shadow-secondary: 0 0 1rem rgba(0, 240, 255, 0.45);
  --radius-lg: 1.15rem;
  --radius-md: 0.85rem;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(0, 240, 255, 0.1), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(0, 255, 102, 0.08), transparent 26%),
    linear-gradient(165deg, #02060c, #060d17 45%, #09101b);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

.ambient-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.2;
  animation: drift 15s ease-in-out infinite alternate;
}

.ambient-orb--cyan {
  top: 10%;
  left: -6rem;
  background: var(--secondary);
}

.ambient-orb--green {
  right: -8rem;
  bottom: 8%;
  background: var(--primary);
  animation-delay: -5s;
}

.ambient-orb--violet {
  top: 42%;
  left: 50%;
  background: #775cff;
  opacity: 0.14;
  animation-delay: -9s;
}

.ambient-grid {
  position: absolute;
  inset: auto -10% -8rem -10%;
  height: 38rem;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.08) 1px, transparent 1px);
  background-size: 3rem 3rem;
  transform: perspective(36rem) rotateX(62deg);
  transform-origin: bottom;
  mask-image: linear-gradient(to top, black, transparent 78%);
  animation: gridMove 12s linear infinite;
}


.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 9999;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: #00130a;
  color: var(--primary);
}

.skip-link:focus {
  left: 0.75rem;
}

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section--tinted {
  background: linear-gradient(
    180deg,
    rgba(0, 240, 255, 0.04) 0%,
    rgba(0, 255, 102, 0.025) 100%
  );
}

.eyebrow {
  color: var(--secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

p {
  margin-top: 0;
}

.section-copy {
  max-width: 65ch;
  color: var(--muted);
  margin-bottom: 2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 12, 20, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.08rem;
}

.brand__logo {
  width: 1.9rem;
  height: 1.9rem;
  object-fit: contain;
}

.brand__text {
  color: #eafff4;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.22rem auto;
  border-radius: 999px;
  background: #d8f3ff;
}

.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.1rem;
}

.nav-links a {
  color: #c8dbe7;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  padding: 0.75rem 1.35rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.45), transparent 55%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(120%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--small {
  padding: 0.58rem 1.1rem;
  font-size: 0.92rem;
}

.btn--primary {
  color: #001b0f;
  background: linear-gradient(135deg, var(--primary), #5eff9f);
  box-shadow: var(--shadow-primary), 0 0 2.2rem rgba(0, 255, 102, 0.16);
  animation: buttonPulse 3.6s ease-in-out infinite;
}

.btn--secondary {
  color: #c8f8ff;
  border-color: rgba(0, 240, 255, 0.45);
  background: rgba(0, 240, 255, 0.09);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  box-shadow: var(--shadow-secondary);
}

.hero {
  padding-top: 6.4rem;
  padding-bottom: 4rem;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 3rem 0 auto;
  height: 30rem;
  background:
    radial-gradient(circle at 70% 48%, rgba(0, 240, 255, 0.18), transparent 26%),
    radial-gradient(circle at 82% 25%, rgba(0, 255, 102, 0.12), transparent 18%);
  z-index: -1;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero__content {
  animation: riseIn 0.8s ease both;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.28);
  background: rgba(0, 240, 255, 0.07);
  color: #c8f8ff;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: inset 0 0 1rem rgba(0, 240, 255, 0.08);
}

.hero__logo {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.hero__lead {
  max-width: 58ch;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.hero__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero__chips li {
  font-size: 0.86rem;
  color: #b2fce0;
  border: 1px solid rgba(0, 255, 102, 0.22);
  background: rgba(0, 255, 102, 0.06);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
}

.hero-panel {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  position: relative;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 240, 255, 0.22);
  background:
    linear-gradient(170deg, rgba(0, 240, 255, 0.12), rgba(0, 255, 102, 0.08)),
    rgba(5, 13, 23, 0.72);
  box-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, 0.35), 0 0 4rem rgba(0, 240, 255, 0.1);
  transform: perspective(900px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transform-style: preserve-3d;
  transition: transform 0.16s ease-out, box-shadow 0.25s ease;
  overflow: hidden;
  animation: floatPanel 7s ease-in-out infinite;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -35% -20% auto;
  height: 55%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: rotate(12deg);
  animation: panelShine 6s ease-in-out infinite;
}

.hero-panel__topline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  font-size: 0.86rem;
  color: #cbfaff;
  margin-bottom: 1rem;
}

.hero-panel__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.live-dot,
.card-pulse {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 rgba(0, 255, 102, 0.55);
  animation: livePulse 1.7s ease-out infinite;
}

.hero-visual {
  position: relative;
  z-index: 1;
  height: 20rem;
  margin: 0.2rem 0 1rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 240, 255, 0.22), transparent 24%),
    radial-gradient(circle at 50% 58%, rgba(0, 255, 102, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto -8% -25% -8%;
  height: 45%;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.13) 1px, transparent 1px);
  background-size: 2rem 2rem;
  transform: perspective(28rem) rotateX(64deg);
  transform-origin: bottom;
  opacity: 0.85;
  animation: gridMove 8s linear infinite;
}

.network-graphic {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(115%, 34rem);
  max-width: none;
  opacity: 0.62;
  transform: translate(-50%, -50%) scale(1);
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 2rem rgba(0, 240, 255, 0.22));
  animation: graphicFloat 8s ease-in-out infinite;
}

.orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(0, 240, 255, 0.32);
  border-radius: 999px;
  transform-style: preserve-3d;
}

.orbit--outer {
  width: 15rem;
  height: 15rem;
  margin: -7.5rem 0 0 -7.5rem;
  transform: rotateX(68deg) rotateZ(8deg);
  animation: orbitSpin 14s linear infinite;
}

.orbit--inner {
  width: 10.5rem;
  height: 10.5rem;
  margin: -5.25rem 0 0 -5.25rem;
  border-color: rgba(0, 255, 102, 0.32);
  transform: rotateX(66deg) rotateZ(-20deg);
  animation: orbitSpinReverse 9s linear infinite;
}

.core-cube {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5.8rem;
  height: 5.8rem;
  display: grid;
  place-items: center;
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(0, 240, 255, 0.48), rgba(0, 255, 102, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 2.5rem rgba(0, 240, 255, 0.45), inset 0 0 1.2rem rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%) rotateX(58deg) rotateZ(45deg);
  animation: coreFloat 4s ease-in-out infinite;
}

.core-cube img {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
  transform: rotateZ(-45deg);
  filter: drop-shadow(0 0 0.8rem rgba(255, 255, 255, 0.55));
}

.floating-token {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 3.35rem;
  height: 2.15rem;
  border-radius: 999px;
  color: #ecfffb;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(5, 15, 26, 0.82);
  border: 1px solid rgba(0, 240, 255, 0.32);
  box-shadow: 0 0 1rem rgba(0, 240, 255, 0.24);
  animation: tokenFloat 4.5s ease-in-out infinite;
}

.floating-token--one {
  left: 10%;
  top: 18%;
}

.floating-token--two {
  right: 12%;
  top: 24%;
  animation-delay: -1.5s;
}

.floating-token--three {
  right: 22%;
  bottom: 18%;
  animation-delay: -2.7s;
}

.network-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.75), transparent);
  transform-origin: left;
  opacity: 0.75;
}

.network-line--one {
  transform: rotate(22deg);
}

.network-line--two {
  transform: rotate(158deg);
}

.glass-card,
.card,
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.glass-card {
  position: relative;
  padding: 0.8rem 0.95rem;
  overflow: hidden;
  transform: translateZ(1.5rem);
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  opacity: 0.65;
}

.card-pulse {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  width: 0.42rem;
  height: 0.42rem;
}

.glass-card p {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.glass-card strong {
  font-size: 1.1rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: 1.3rem;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card::before,
.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(0, 240, 255, 0.08), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.75s ease;
}

.card:hover::before,
.step:hover::before {
  transform: translateX(120%);
}

.card > *,
.step > * {
  position: relative;
  z-index: 1;
}

.card h3 {
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.feature-card .icon {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 0.7rem;
  border-radius: 0.8rem;
  color: var(--secondary);
  background: linear-gradient(145deg, rgba(0, 240, 255, 0.18), rgba(0, 255, 102, 0.1));
  border: 1px solid rgba(0, 240, 255, 0.22);
  box-shadow: var(--shadow-secondary);
  transform: rotateX(10deg) rotateZ(-4deg);
}

.feature-card .icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card:hover,
.feature-card:focus-within {
  border-color: rgba(0, 255, 102, 0.5);
  box-shadow: var(--shadow-primary);
  transform: translateY(-6px) rotateX(2deg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  position: relative;
  padding: 1.15rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: var(--shadow-secondary);
  transform: translateY(-5px);
}

.step span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 800;
}

.kpi p {
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}

.kpi strong {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #e5fff2;
}

.metric-bar {
  width: 100%;
  height: 0.42rem;
  margin-top: 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.metric-bar span {
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  box-shadow: 0 0 1rem rgba(0, 255, 102, 0.45);
  transform-origin: left;
  animation: fillBar 1.2s ease both;
}

.roadmap {
  border-left: 3px solid rgba(0, 240, 255, 0.42);
  background: var(--surface-strong);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: rgba(8, 20, 30, 0.85);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 1rem;
  cursor: pointer;
}

.faq-item button:hover,
.faq-item button:focus-visible {
  color: var(--secondary);
}

.faq-item div {
  color: var(--muted);
  padding: 0 1rem 1rem;
}

.final-cta__box {
  text-align: center;
  background: linear-gradient(160deg, rgba(0, 240, 255, 0.12), rgba(0, 255, 102, 0.14));
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.32);
}

.final-cta__box p {
  color: #bcd7e5;
  margin-left: auto;
  margin-right: auto;
  max-width: 56ch;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #040912;
  padding-top: 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}

.brand--footer {
  margin-bottom: 0.8rem;
}

.site-footer h3 {
  font-size: 1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: #c0d6e4;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--secondary);
}

.footer-note {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding: 1rem 0 1.35rem;
  border-top: 1px solid var(--border);
  color: #89a5b8;
}

.js-enabled .reveal-target {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-enabled .reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(3rem, -2rem, 0) scale(1.12);
  }
}

@keyframes gridMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 3rem;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: var(--shadow-primary), 0 0 2.2rem rgba(0, 255, 102, 0.16);
  }

  50% {
    box-shadow: 0 0 1.1rem rgba(0, 255, 102, 0.7), 0 0 3.2rem rgba(0, 240, 255, 0.18);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -0.55rem;
  }
}

@keyframes panelShine {
  0%,
  100% {
    transform: translateX(-45%) rotate(12deg);
  }

  50% {
    transform: translateX(55%) rotate(12deg);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.55);
  }

  100% {
    box-shadow: 0 0 0 0.6rem rgba(0, 255, 102, 0);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotateX(68deg) rotateZ(8deg);
  }

  to {
    transform: rotateX(68deg) rotateZ(368deg);
  }
}

@keyframes orbitSpinReverse {
  from {
    transform: rotateX(66deg) rotateZ(-20deg);
  }

  to {
    transform: rotateX(66deg) rotateZ(-380deg);
  }
}

@keyframes coreFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) rotateX(58deg) rotateZ(45deg) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) rotateX(58deg) rotateZ(45deg) translateY(-0.55rem);
  }
}

@keyframes tokenFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.75rem);
  }
}

@keyframes graphicFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  50% {
    transform: translate(-50%, -53%) scale(1.04) rotate(1.5deg);
  }
}

@keyframes fillBar {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1050px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links-wrap {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 0.6rem);
    flex-direction: column;
    align-items: stretch;
    background: rgba(5, 13, 22, 0.96);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.9rem;
    display: none;
  }

  .nav-links-wrap.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.6rem;
  }

  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.4rem 0;
  }

  .hero{
    padding-top: 2rem;
  }

  .hero-panel__grid {
    grid-template-columns: 1fr;
  }

  .grid--4,
  .steps {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
