:root {
  --bg: #040611;
  --bg-2: #0a0f1f;
  --surface: rgba(10, 16, 30, 0.46);
  --surface-strong: rgba(8, 13, 24, 0.72);
  --line: rgba(197, 220, 255, 0.12);
  --line-strong: rgba(225, 237, 255, 0.2);
  --text: #f8fbff;
  --muted: rgba(222, 232, 245, 0.78);
  --muted-soft: rgba(202, 213, 226, 0.58);
  --blue: #9ed1ff;
  --blue-strong: #4c9fff;
  --blue-deep: #17305f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: min(1180px, calc(100% - 32px));
  --header-offset: 108px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}
body {
  margin: 0;
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  background: #000;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
[id] {
  scroll-margin-top: var(--header-offset);
}
.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;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  pointer-events: none;
  animation: moonlinePageFadeBg 1100ms ease-out both;
}
.bg-video,
.starfield,
.bg-vignette,
.moon-wrap {
  position: absolute;
  inset: 0;
}
.starfield {
  background: linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.52));
  opacity: 1;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: brightness(0.34) saturate(0.72) contrast(1.08);
}

.moon-wrap {
  display: grid;
  place-items: start center;
  padding-top: 7vh;
  perspective: 1600px;
}



.moon::before,
.moon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.moon::before {
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.26) 0 8%, transparent 18%),
    radial-gradient(circle at 68% 38%, rgba(255,255,255,0.08) 0 10%, transparent 22%),
    radial-gradient(circle at 70% 68%, rgba(0,0,0,0.14) 0 14%, transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.08) 0 10%, transparent 30% 100%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.moon::after {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 60%, rgba(0, 0, 0, 0.10) 80%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(120deg, rgba(255,255,255,0.12) 0 8%, transparent 22% 100%);
  mix-blend-mode: soft-light;
  opacity: 0.84;
}
.moon-halo {
  width: min(62vw, 860px);
  aspect-ratio: 1;
  border-radius: 50%;
  justify-self: center;
  align-self: start;
  margin-top: calc(min(38vw, 430px) * -0.98);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 38%, transparent 70%);
  filter: blur(22px);
}

.bg-vignette {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.84) 66%, rgba(0, 0, 0, 1) 100%),
    radial-gradient(circle at 50% 0%, transparent 0, rgba(0,0,0,0.04) 34%, rgba(0,0,0,0.86) 78%);
}


.container { width: var(--container); margin: 0 auto; }
.section { position: relative; padding: 104px 0; }
.first-section { padding-top: 68px; }
.centered-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.top-gap { margin-top: 34px; }
.top-gap-lg { margin-top: 42px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(4, 7, 18, 0.78), rgba(4, 7, 18, 0.28));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-shell {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: rgba(235, 243, 255, 0.78);
}
.desktop-nav a,
.mobile-nav a,
.button {
  transition: transform 220ms ease, color 220ms ease, border-color 220ms ease, background 220ms ease;
}
.desktop-nav a:hover,
.mobile-nav a:hover { color: #fff; }
.menu-toggle,
.mobile-nav { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: linear-gradient(135deg, #fafdff 0%, #cfe6ff 52%, #8ac2ff 100%);
  color: #07111f;
  font-weight: 700;
  border-color: rgba(255,255,255,0.32);
  box-shadow: 0 14px 34px rgba(92, 163, 255, 0.22);
}
.button.secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.hero-stack {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: rgba(239,245,255,0.94);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow.soft { background: rgba(143, 191, 255, 0.06); }
.hero-kicker {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  font-size: 0.84rem;
  letter-spacing: 0.34em;
  color: var(--muted-soft);
}
.hero-kicker .line {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
}
h1,
h2 {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
}
h1 {
  margin-top: 26px;
  max-width: 10ch;
  font-size: clamp(4rem, 9vw, 7rem);
}
h2 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  max-width: 13ch;
  margin: 18px auto 0;
}
.hero-copy,
.section-lead,
.faq-answer p,
.feature-card p,
.audience-card p,
.step-card p,
.product-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.85;
}
.hero-copy {
  margin-top: 24px;
  max-width: 50rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
}
.section-lead {
  max-width: 52rem;
  margin: 22px auto 0;
}
.section-lead.compact { max-width: 44rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.hero-slider-section,
.hero-slider-section.first-section {
  padding: 0;
  overflow: hidden;
}
.hero-slider {
  position: relative;
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  isolation: isolate;
}
.hero-slider::before,
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-slider::before {
  background:
    radial-gradient(circle at 72% 22%, rgba(140, 191, 255, 0.14), transparent 24%),
    radial-gradient(circle at 78% 52%, rgba(113, 160, 255, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(2, 5, 12, 0.96) 0%, rgba(2, 5, 12, 0.82) 34%, rgba(2, 5, 12, 0.4) 58%, rgba(2, 5, 12, 0.18) 100%);
  z-index: -1;
}
.hero-slider::after {
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  z-index: -1;
}
.hero-slider-stage {
  position: relative;
  height: clamp(620px, calc(100vh - 240px), 760px);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(48px, 0, 0);
  transition: opacity 720ms ease, transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  z-index: 2;
}
.hero-slide-shell {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  padding: 42px 0 16px;
}
.hero-slide-copy {
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 18px;
  max-width: 35rem;
  text-align: left;
}
.hero-slide-copy > * {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 620ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-slide.is-active .hero-slide-copy > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.hero-slide.is-active .hero-slide-copy > :nth-child(1) { transition-delay: 70ms; }
.hero-slide.is-active .hero-slide-copy > :nth-child(2) { transition-delay: 130ms; }
.hero-slide.is-active .hero-slide-copy > :nth-child(3) { transition-delay: 190ms; }
.hero-slide.is-active .hero-slide-copy > :nth-child(4) { transition-delay: 250ms; }
.hero-slide.is-active .hero-slide-copy > :nth-child(5) { transition-delay: 320ms; }
.hero-slide-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8, 12, 22, 0.58);
  color: rgba(223, 235, 255, 0.84);
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.hero-slide-step {
  margin: 0;
  color: rgba(124, 152, 205, 0.42);
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(4.8rem, 11vw, 8rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
}
.hero-slide-title {
  margin: 0;
  max-width: 8ch;
  color: #f9fbff;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.hero-slide-text {
  margin: 0;
  max-width: 31rem;
  color: rgba(223, 234, 247, 0.82);
  font-size: clamp(1rem, 1.9vw, 1.22rem);
  line-height: 1.82;
}
.hero-slider-actions {
  justify-content: flex-start;
  margin-top: 10px;
}
.hero-slide-media {
  position: relative;
  display: block;
  height: clamp(420px, 62vh, 760px);
  width: 100%;
  padding: 0;
  border-radius: min(42px, 4vw);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: zoom-in;
  appearance: none;
  -webkit-appearance: none;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  background:
    linear-gradient(180deg, rgba(15, 21, 35, 0.36), rgba(9, 13, 24, 0.72)),
    radial-gradient(circle at 70% 30%, rgba(162, 203, 255, 0.08), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 28px 70px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}
.hero-slide-media:focus-visible {
  outline: 2px solid rgba(245, 250, 255, 0.96);
  outline-offset: 5px;
}
.hero-slide-media::before,
.hero-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-slide-media::before {
  background: linear-gradient(90deg, rgba(2, 5, 12, 0.48) 0%, rgba(2, 5, 12, 0.08) 36%, transparent 100%);
  z-index: 1;
}
.hero-slide-media::after {
  background: radial-gradient(circle at 68% 44%, rgba(127, 178, 255, 0.12), transparent 26%);
  z-index: 1;
}
.hero-slide-glow {
  position: absolute;
  inset: auto auto 12% 56%;
  width: min(24vw, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 164, 255, 0.3), rgba(111, 164, 255, 0.08) 38%, transparent 72%);
  filter: blur(20px);
  transform: translateX(-50%);
  opacity: 0.56;
  z-index: 0;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-media-position, 82% center);
  transform: scale(1.05);
  opacity: 0;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 680ms ease;
}
.hero-slide.is-active img {
  opacity: 1;
  transform: scale(1);
}
.hero-slider-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  padding-bottom: 30px;
  position: relative;
  z-index: 3;
}
.hero-slider-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.hero-slider-arrow {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(9, 13, 24, 0.72);
  color: var(--text);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.hero-slider-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 231, 255, 0.18);
  background: rgba(12, 17, 29, 0.9);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}
.hero-slider-arrow:focus-visible,
.hero-slider-dot:focus-visible {
  outline: 2px solid rgba(255,255,255,0.92);
  outline-offset: 3px;
}
.hero-slider-arrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.hero-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(217, 230, 250, 0.26);
  cursor: pointer;
  transition: width 260ms ease, background 260ms ease, transform 260ms ease;
}
.hero-slider-dot.is-active {
  width: 30px;
  background: linear-gradient(90deg, rgba(223, 239, 255, 0.98), rgba(137, 188, 255, 0.94));
  box-shadow: 0 0 18px rgba(121, 171, 255, 0.22);
}
.hero-slider-count {
  margin: 0;
  color: rgba(222, 232, 246, 0.74);
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(2, 5, 12, 0.78);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.hero-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.hero-lightbox-dialog {
  position: relative;
  width: min(1320px, calc(100vw - 56px));
  max-height: calc(100vh - 56px);
  padding: 26px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(16, 22, 37, 0.92), rgba(9, 13, 24, 0.96)),
    radial-gradient(circle at top right, rgba(134, 184, 255, 0.1), transparent 40%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 32px 80px rgba(0, 0, 0, 0.44);
}
.hero-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(8, 12, 22, 0.86);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.hero-lightbox-close:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 231, 255, 0.18);
  background: rgba(12, 17, 29, 0.92);
}
.hero-lightbox-close:focus-visible {
  outline: 2px solid rgba(255,255,255,0.92);
  outline-offset: 3px;
}
.hero-lightbox-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.hero-lightbox-media img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.hero-visual {
  position: relative;
  margin-top: 56px;
  width: min(100%, 540px);
  min-height: 460px;
  display: grid;
  place-items: center;
  will-change: transform;
  --parallax-y: 0px;
  --parallax-rotate: 0deg;
  transform: translate3d(0, var(--parallax-y), 0) rotate(var(--parallax-rotate));
  transition: transform 220ms ease-out;
}
.device-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(191, 219, 255, 0.14);
  box-shadow: inset 0 0 28px rgba(188, 214, 255, 0.06), 0 0 40px rgba(125, 176, 255, 0.06);
}
.orbit-one {
  width: 370px;
  height: 370px;
  animation: spin 26s linear infinite;
}
.orbit-two {
  width: 500px;
  height: 500px;
  animation: spin-reverse 34s linear infinite;
}
.product-glass,
.glass-panel {
  background: linear-gradient(180deg, rgba(17, 24, 41, 0.46), rgba(9, 14, 27, 0.7));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}
.product-glass::before,
.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
}
.product-glass::after,
.glass-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(149, 201, 255, 0.14), transparent 42%);
  pointer-events: none;
}
.product-glass {
  width: min(100%, 390px);
  border-radius: var(--radius-xl);
  padding: 22px 22px 24px;
}
.floating-card {
  animation: floaty 7s ease-in-out infinite;
}
.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.tiny-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}
.tiny-pill.muted { color: var(--muted-soft); }
.hero-product {
  width: min(82%, 290px);
  margin: 24px auto 18px;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.42));
}
.product-copy {
  display: grid;
  gap: 8px;
}
.product-copy strong { font-size: 1.06rem; }

.quote-band {
  margin-top: 42px;
  border-radius: var(--radius-xl);
  padding: 34px;
  display: grid;
  gap: 12px;
  --parallax-y: 0px;
  --parallax-rotate: 0deg;
  transform: translate3d(0, var(--parallax-y), 0) rotate(var(--parallax-rotate));
  transition: transform 220ms ease-out;
}
.quote-band p {
  margin: 0;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: rgba(244,248,255,0.9);
}
.quote-band .highlight {
  color: var(--blue);
}
.touch-story-section {
  padding-top: 24px;
  background:
    radial-gradient(circle at 78% 18%, rgba(145, 196, 255, 0.1), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(92, 136, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
  overflow: visible;
}
.touch-story-shell {
  position: relative;
  display: grid;
  gap: 28px;
  margin-top: 44px;
}
.touch-story-head {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}
.touch-story-head h2 {
  margin: 0;
  max-width: 10ch;
}
.touch-story-head .section-lead {
  margin: 0;
  max-width: 44rem;
}
.touch-story-meta {
  display: flex;
  justify-content: center;
}
.touch-story-counter {
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(8, 12, 22, 0.56);
  color: rgba(236, 243, 255, 0.78);
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.touch-story-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}
.touch-story-viewport {
  min-width: 0;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 16px;
  perspective: 1200px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--touch-story-inset, 0px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  --touch-story-inset: 0px;
}
.touch-story-viewport::-webkit-scrollbar {
  display: none;
}
.touch-story-nav {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(10, 15, 27, 0.76);
  color: var(--text);
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
}
.touch-story-nav:hover {
  border-color: rgba(205, 229, 255, 0.18);
  background: rgba(14, 21, 36, 0.88);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}
.touch-story-nav:focus-visible {
  outline: 2px solid rgba(255,255,255,0.92);
  outline-offset: 3px;
}
.touch-story-nav:disabled {
  opacity: 0.34;
  box-shadow: none;
  cursor: default;
}
.touch-story-nav svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.touch-story-rail {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  padding-inline: var(--touch-story-inset);
}
.touch-step-card {
  position: relative;
  flex: 0 0 min(54vw, 480px);
  min-width: min(54vw, 480px);
  min-height: 260px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  text-align: center;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(12, 18, 31, 0.34), rgba(7, 11, 21, 0.58)),
    radial-gradient(circle at top right, rgba(140, 195, 255, 0.04), transparent 56%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  opacity: 0.52;
  filter: saturate(0.72) brightness(0.74);
  transform: translate3d(0, 14px, 0) scale(0.92);
  transform-origin: center center;
  will-change: transform, opacity, filter;
  transition:
    border-color 260ms ease,
    box-shadow 320ms ease,
    background 320ms ease,
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
}
.touch-step-card::before {
  content: "";
  position: absolute;
  inset: 16px 20px auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), transparent 70%);
  opacity: 0.48;
  transition: opacity 300ms ease;
}
.touch-step-card::after {
  opacity: 0.52;
  background:
    radial-gradient(circle at 84% 4%, rgba(158, 209, 255, 0.1), transparent 34%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08));
  transition: opacity 320ms ease;
}
.touch-step-card.is-near {
  opacity: 0.72;
  filter: saturate(0.88) brightness(0.88);
  transform: translate3d(0, 8px, 0) scale(0.965);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.touch-step-card.is-active {
  border-color: rgba(203, 228, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(20, 29, 49, 0.56), rgba(10, 15, 28, 0.72)),
    radial-gradient(circle at top right, rgba(140, 195, 255, 0.11), transparent 54%);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.28),
    0 0 36px rgba(117, 170, 255, 0.12),
    0 0 0 1px rgba(255,255,255,0.03);
  opacity: 1;
  filter: saturate(1) brightness(1);
  transform: translate3d(0, -4px, 0) scale(1.015);
}
.touch-step-card.is-near::before,
.touch-step-card.is-near::after {
  opacity: 0.7;
}
.touch-step-card.is-active::before,
.touch-step-card.is-active::after {
  opacity: 1;
}
.touch-step-card h3 {
  margin: 0;
  max-width: 11ch;
  color: #f8fbff;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.touch-step-card p:last-child {
  margin: 0;
  max-width: 31ch;
  color: rgba(226, 236, 247, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}
.touch-step-copy {
  margin: 0;
  max-width: 34ch;
  color: rgba(236, 242, 251, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 500;
  line-height: 1.64;
  text-align: center;
}
/* Future enhancement: add premium motion back here only after this base layout is validated. */
.section-highlight {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    radial-gradient(circle at 50% 0%, rgba(117, 170, 255, 0.1), transparent 42%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.step-grid,
.feature-grid,
.audience-grid {
  display: grid;
  gap: 18px;
}
.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.feature-grid,
.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.step-card,
.feature-card,
.audience-card,
.cta-panel {
  border-radius: var(--radius-lg);
}
.step-card,
.feature-card,
.audience-card {
  padding: 26px;
  text-align: left;
  min-height: 100%;
  will-change: transform;
  --parallax-y: 0px;
  --parallax-rotate: 0deg;
  transform: translate3d(0, var(--parallax-y), 0) rotate(var(--parallax-rotate));
  transition: transform 220ms ease-out;
}
.step-number,
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.step-number {
  font-weight: 700;
  letter-spacing: 0.08em;
}
.feature-icon {
  font-size: 1.35rem;
}
.step-card h3,
.feature-card h3,
.audience-card h3 {
  margin: 18px 0 10px;
  font-size: 1.16rem;
}

.faq-shell { max-width: 860px; }
.faq-list {
  display: grid;
  gap: 16px;
}
.faq-item {
  border-radius: var(--radius-lg);
  text-align: left;
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}
.faq-answer p {
  padding: 0 24px 22px;
  margin: 0;
}
.faq-symbol {
  font-size: 1.5rem;
  transition: transform 220ms ease;
}
.faq-item.active .faq-symbol { transform: rotate(45deg); }

.final-cta { padding-top: 78px; }
.cta-panel {
  padding: 42px 26px;
  border-radius: var(--radius-xl);
}
.center-actions { justify-content: center; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(5, 9, 20, 0.54);
}
.footer-shell {
  min-height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-brand { flex-shrink: 0; }
.footer-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
  text-align: right;
}
.footer-meta p { margin: 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}
.footer-links a {
  color: var(--muted);
  transition: color 220ms ease, transform 220ms ease;
}
.footer-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.legal-hero {
  padding-bottom: 38px;
}
.legal-hero .centered-content {
  max-width: 860px;
}
.legal-hero h1 {
  margin-top: 24px;
  max-width: 12ch;
  font-size: clamp(3.4rem, 8vw, 5.8rem);
}
.legal-meta {
  margin-top: 18px;
  color: var(--muted-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.legal-shell {
  max-width: 920px;
}
.legal-card {
  padding: 38px 34px;
  text-align: left;
}
.legal-card + .legal-card {
  margin-top: 18px;
}
.legal-block {
  display: grid;
  gap: 14px;
}
.legal-block + .legal-block {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.legal-card h2,
.legal-card h3 {
  margin: 0;
  max-width: none;
}
.legal-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.06;
}
.legal-card h3 {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--text);
}
.legal-card p,
.legal-card li,
.legal-card small {
  color: var(--muted);
  line-height: 1.85;
}
.legal-card p {
  margin: 0;
}
.legal-card strong {
  color: var(--text);
}
.legal-card a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 12px;
}
.legal-list.plain {
  list-style: none;
  padding-left: 0;
}
.legal-subhead {
  color: var(--text);
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.legal-note {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
main,
.site-footer {
  animation: moonlinePageFade 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.terms-consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  width: min(430px, calc(100vw - 32px));
  border-radius: 30px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
  transition: opacity 260ms ease, transform 260ms ease;
}
.terms-consent-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}
.terms-consent-body {
  display: grid;
  gap: 14px;
  padding: 22px 22px 18px;
  text-align: left;
}
.terms-consent-kicker,
.terms-consent-links-title {
  margin: 0;
  color: var(--muted-soft);
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.terms-consent-title {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.terms-consent-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
.terms-consent-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.terms-consent-actions .button {
  min-width: 148px;
}
.terms-consent-links {
  display: grid;
  gap: 12px;
  padding: 16px 22px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(123, 174, 255, 0.04));
}
.terms-consent-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.terms-consent-link-list a {
  display: inline-flex;
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.terms-consent-link-list a:hover {
  color: #dff1ff;
}
.terms-consent-accept:focus-visible,
.terms-consent-link-list a:focus-visible {
  outline: 2px solid rgba(255,255,255,0.92);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  --reveal-y: 34px;
  --parallax-y: 0px;
  --parallax-rotate: 0deg;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-y)), 0) rotate(var(--parallax-rotate));
  transition: opacity 720ms ease, transform 720ms ease;
}
.reveal.visible {
  opacity: 1;
  --reveal-y: 0px;
}
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 170ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 310ms; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }
@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
@keyframes moonlinePageFade {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes moonlinePageFadeBg {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-bg,
  main,
  .site-footer {
    animation: none;
  }
  .hero-slide,
  .hero-slide-copy > *,
  .hero-slide img,
  .hero-slider-arrow,
  .hero-slider-dot {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .desktop-nav,
  .desktop-cta { display: none; }
  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    color: var(--text);
  }
  .menu-toggle span {
    width: 18px;
    height: 1.8px;
    background: currentColor;
    transition: transform 200ms ease, opacity 200ms ease;
  }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav {
    display: grid;
    gap: 12px;
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 240ms ease, opacity 200ms ease, transform 200ms ease, padding 200ms ease;
    background: rgba(4, 7, 18, 0.9);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .mobile-nav.open {
    max-height: 380px;
    padding: 8px 16px 16px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-button { width: 100%; }
  .footer-shell {
    padding: 24px 0;
    flex-direction: column;
    text-align: center;
  }
  .footer-meta {
    justify-items: center;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .hero-slider-stage {
    height: clamp(560px, calc(100vh - 250px), 680px);
  }
  .hero-slide-shell {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 26px;
  }
  .hero-slide-title {
    font-size: clamp(3rem, 6vw, 4.8rem);
  }
  .hero-slide-media {
    height: clamp(360px, 54vh, 620px);
  }
  .touch-step-card {
    flex-basis: min(58vw, 416px);
    min-width: min(58vw, 416px);
  }
}

@media (max-width: 760px) {
  :root { --header-offset: 96px; }
  .section { padding: 88px 0; }
  .first-section { padding-top: 42px; }
  .hero-slider-section,
  .hero-slider-section.first-section { padding: 0; }
  .hero-stack { min-height: auto; padding: 36px 0 0; }
  .hero-slider {
    min-height: clamp(760px, calc(100svh - 96px), 940px);
    grid-template-rows: auto auto;
  }
  .hero-slider-stage {
    height: clamp(680px, calc(100svh - 210px), 820px);
  }
  .hero-slide {
    transform: translate3d(0, 26px, 0);
  }
  .hero-slide-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 38px 0 10px;
  }
  .hero-slide-copy {
    max-width: none;
    gap: 14px;
  }
  .hero-slide-step {
    font-size: clamp(4rem, 18vw, 6rem);
  }
  .hero-slide-title {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }
  .hero-slide-text {
    max-width: none;
    font-size: 1rem;
    line-height: 1.74;
  }
  .hero-slider-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .hero-slide-media {
    width: min(86vw, 336px);
    max-width: 100%;
    height: min(36vh, 288px);
    justify-self: center;
    margin-inline: auto;
    border-radius: 30px;
  }
  .hero-slide:nth-child(n + 2) .hero-slide-media img {
    object-fit: contain;
    object-position: center center;
  }
  .hero-slide-glow {
    inset: auto auto 10% 58%;
    width: min(44vw, 220px);
  }
  .hero-slider-footer {
    padding-bottom: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-slider-nav {
    width: 100%;
    justify-content: space-between;
  }
  .hero-slider-dots {
    flex: 1 1 auto;
    justify-content: center;
  }
  .hero-lightbox {
    padding: 16px;
  }
  .hero-lightbox-dialog {
    width: min(100%, calc(100vw - 20px));
    max-height: calc(100vh - 20px);
    padding: 16px;
    border-radius: 24px;
  }
  .hero-lightbox-close {
    top: 10px;
    right: 10px;
    width: 46px;
    height: 46px;
    font-size: 1.45rem;
  }
  .hero-lightbox-media img {
    max-height: calc(100vh - 88px);
    border-radius: 18px;
  }
  h1 { font-size: clamp(3rem, 16vw, 5rem); }
  h2 { font-size: clamp(2.5rem, 12vw, 4rem); max-width: 10ch; }
  .hero-kicker { letter-spacing: 0.2em; }
  .hero-kicker .line { width: 38px; }
  .feature-grid,
  .audience-grid,
  .step-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; width: 100%; }
  .orbit-one { width: 260px; height: 260px; }
  .orbit-two { width: 340px; height: 340px; }
  .moon { width: min(62vw, 320px); }
  .moon-halo { width: min(94vw, 520px); margin-top: calc(min(62vw, 320px) * -1.02); }
  .quote-band { padding: 24px; }
  .touch-story-shell {
    gap: 18px;
    margin-top: 28px;
  }
  .touch-story-head {
    gap: 14px;
  }
  .touch-story-carousel {
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "viewport viewport viewport"
      ". prev next";
    gap: 12px;
  }
  .touch-story-viewport { grid-area: viewport; }
  .touch-story-nav-prev { grid-area: prev; }
  .touch-story-nav-next { grid-area: next; }
  .touch-story-nav {
    width: 50px;
    height: 50px;
  }
  .touch-story-viewport {
    padding-bottom: 10px;
  }
  .touch-story-rail {
    gap: 16px;
  }
  .touch-step-card {
    flex-basis: min(66vw, 256px);
    min-width: min(66vw, 256px);
    min-height: 244px;
    padding: 18px 16px;
    justify-content: center;
    opacity: 0.62;
    transform: translate3d(0, 10px, 0) scale(0.96);
  }
  .touch-step-copy {
    max-width: 29ch;
    font-size: 0.96rem;
    line-height: 1.58;
  }
  .touch-step-card.is-near {
    opacity: 0.8;
    transform: translate3d(0, 6px, 0) scale(0.985);
  }
  .touch-step-card.is-active {
    transform: translate3d(0, 0, 0) scale(1);
  }
  .touch-step-card::before {
    inset: 22px 22px auto;
  }
  .legal-hero { padding-bottom: 28px; }
  .legal-card { padding: 28px 24px; }
  .legal-block + .legal-block {
    margin-top: 24px;
    padding-top: 24px;
  }
  .terms-consent-banner {
    right: 16px;
    bottom: 16px;
    width: min(420px, calc(100vw - 24px));
  }
}

@media (max-width: 540px) {
  :root { --container: min(100% - 22px, 1180px); }
  .nav-shell { gap: 14px; }
  .brand span { font-size: 0.88rem; }
  .brand img { width: 34px; height: 34px; }
  .hero-slide-badge {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }
  .hero-slider-arrow {
    width: 48px;
    height: 48px;
  }
  .hero-slider-count {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
  }
  .hero-slide-media {
    width: min(84vw, 284px);
    height: min(31vh, 228px);
    border-radius: 24px;
  }
  .button { width: 100%; }
  .hero-actions { width: 100%; }
  .hero-copy,
  .section-lead { font-size: 0.96rem; }
  .quote-band p { font-size: clamp(1.4rem, 8vw, 2rem); }
  .step-card,
  .feature-card,
  .audience-card,
  .cta-panel { padding: 22px; }
  .terms-consent-banner {
    left: 11px;
    right: 11px;
    bottom: 11px;
    width: auto;
    border-radius: 24px;
  }
  .terms-consent-body {
    gap: 12px;
    padding: 18px 18px 14px;
  }
  .terms-consent-body,
  .terms-consent-links {
    padding-left: 18px;
    padding-right: 18px;
  }
  .terms-consent-copy {
    font-size: 0.94rem;
    line-height: 1.62;
  }
  .terms-consent-actions {
    flex-direction: column;
  }
  .terms-consent-actions .button {
    width: 100%;
    min-height: 48px;
  }
  .terms-consent-link-list {
    flex-direction: column;
    gap: 10px;
  }
}


/* ===== Typography refresh: tech premium ===== */
body {
  font-family: 'Inter', Arial, sans-serif;
}

.brand,
.desktop-nav,
.mobile-nav,
.button,
.eyebrow,
.hero-kicker,
h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
}

h1, h2 {
  letter-spacing: -0.03em;
}

h3 {
  letter-spacing: -0.01em;
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(130,180,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 12px 24px rgba(0,0,0,0.16);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: #dff0ff;
  stroke-width: 2;
}

.step-card h3,
.audience-card h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.topic-inline-icon {
  width: 20px;
  height: 20px;
  color: #cfe6ff;
  stroke-width: 2.2;
  flex: 0 0 auto;
}

.feature-card,
.step-card,
.audience-card {
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.feature-card:hover,
.step-card:hover,
.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(202, 226, 255, 0.24);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}
