:root {
  --bg: #06080f;
  --bg-soft: #0c1018;
  --text: #f4f7fb;
  --text-muted: #8b9cb0;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #39d2c0;
  --accent-2: #9489f5;
  --gradient: linear-gradient(135deg, #a78bfa 0%, #39d2c0 100%);
  --glow: rgba(148, 137, 245, 0.35);
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* Theme shifts while scrolling */
body[data-story-theme="feedback"] {
  --glow: rgba(148, 137, 245, 0.4);
  --accent: #9489f5;
}

body[data-story-theme="scan"] {
  --glow: rgba(57, 210, 192, 0.45);
  --accent: #39d2c0;
}

body[data-story-theme="feedback"] {
  --glow: rgba(148, 137, 245, 0.4);
  --accent: #9489f5;
}

body[data-story-theme="tan"] {
  --glow: rgba(255, 107, 179, 0.35);
  --accent: #ff6bb3;
}

body[data-story-theme="path"] {
  --glow: rgba(255, 213, 79, 0.35);
  --accent: #ffd54f;
}

body[data-story-theme="memory"] {
  --glow: rgba(121, 242, 255, 0.35);
  --accent: #79f2ff;
}

body[data-story-theme="topics"] {
  --glow: rgba(167, 139, 250, 0.4);
  --accent: #a78bfa;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.8s var(--ease);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  transition: background 0.3s var(--ease), border-color 0.3s;
}

.site-header.is-scrolled {
  background: rgba(6, 8, 15, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
  width: min(100% - 2.5rem, 1320px);
  margin-inline: auto;
}

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

.brand-name {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(
    120deg,
    #e9d5ff 0%,
    #c4b5fd 18%,
    #9489f5 38%,
    #39d2c0 72%,
    #79f2ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(148, 137, 245, 0.22));
}

.brand-name--footer {
  font-size: 1.35rem;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(57, 210, 192, 0.18));
}

.site-footer .brand-mark {
  width: 44px;
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a:not(.btn) {
  padding: 0.45rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient);
  color: #06080f;
}

.btn-play {
  background: #fff;
  color: #06080f;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.btn-play__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}

/* —— Scroll story (Framer-style) —— */
.scroll-story {
  position: relative;
  min-height: 100vh;
}

.scroll-story__ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  transition: background 1s var(--ease), transform 1.2s var(--ease);
}

.ambient-orb--a {
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  top: -10%;
  right: -5%;
  background: var(--glow);
}

.ambient-orb--b {
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  bottom: 10%;
  left: -10%;
  background: rgba(57, 210, 192, 0.12);
}

.ambient-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black, transparent);
}

/* Progress dots */
.story-progress {
  position: fixed;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.story-progress__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-progress__dot span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: transform 0.35s var(--ease-spring), background 0.35s, box-shadow 0.35s;
}

.story-progress__dot.is-active span {
  transform: scale(1.6);
  background: var(--accent);
  box-shadow: 0 0 16px var(--glow);
}

.story-progress__dot:hover span {
  background: rgba(255, 255, 255, 0.5);
}

/* Layout: steps left, phone right */
.scroll-story__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 48vw);
  gap: 0;
  max-width: 1440px;
  margin-inline: auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem) 0 clamp(2.5rem, 4vw, 4rem);
  position: relative;
  z-index: 1;
}

.scroll-story__steps {
  padding-top: 5.5rem;
}

.story-step {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0 5rem;
  position: relative;
}

.story-step__mobile-phone {
  display: none;
}

/* Step content animations */
.step-content > * {
  opacity: 0.25;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.7s var(--ease-spring),
    filter 0.65s var(--ease);
}

.story-step.is-active .step-content > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.story-step.is-active .step-content > *:nth-child(1) {
  transition-delay: 0ms;
}

.story-step.is-active .step-content > *:nth-child(2) {
  transition-delay: 60ms;
}

.story-step.is-active .step-content > *:nth-child(3) {
  transition-delay: 120ms;
}

.story-step.is-active .step-content > *:nth-child(4) {
  transition-delay: 180ms;
}

.story-step.is-active .step-content > *:nth-child(5) {
  transition-delay: 240ms;
}

.story-step.is-active .step-content > *:nth-child(6) {
  transition-delay: 300ms;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.step-content h1,
.step-content h2 {
  margin: 0 0 1.25rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.step-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
}

.step-content h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 1.75rem;
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 32rem;
}

.hero-actions {
  margin-bottom: 2rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.stat-pill {
  padding: 0.65rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.stat-pill strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.stat-pill span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.stat-pill--ghost {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Varied step layouts */
.feature-chips {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 22rem;
}

.feature-chips li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.95rem;
}

.chip-icon {
  font-size: 1.2rem;
}

.float-card {
  display: inline-block;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(148, 137, 245, 0.15), rgba(57, 210, 192, 0.08));
  border: 1px solid var(--border-strong, rgba(148, 137, 245, 0.25));
  transform: rotate(-2deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.float-card__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.float-card__value {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.03em;
  display: block;
}

.float-card__hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 18rem;
}

.step-note {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 30rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--accent);
}

.quote-card {
  margin: 0 0 1.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: 20px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
  max-width: 28rem;
}

.quote-card p {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-cloud span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.path-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  max-width: 20rem;
}

.path-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
}

.path-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.path-dot--done {
  background: linear-gradient(135deg, #ffd54f, #ffb300);
  box-shadow: 0 0 12px rgba(255, 213, 79, 0.5);
}

.path-dot--active {
  background: linear-gradient(135deg, #79f2ff, #39d2c0);
  box-shadow: 0 0 14px rgba(57, 210, 192, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

.path-dot--side {
  background: linear-gradient(135deg, #ff6bb3, #ff2e93);
}

.big-stat {
  display: flex;
  align-items: baseline;
  margin: 0.5rem 0 1rem;
  font-family: "Outfit", sans-serif;
}

.big-stat__number {
  font-size: clamp(4.5rem, 12vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.big-stat__suffix {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--accent);
  margin-left: 0.2rem;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  max-width: 20rem;
  margin-bottom: 1.75rem;
}

.topic-grid span {
  padding: 0.7rem;
  text-align: center;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}

.story-step.is-active .topic-grid span {
  animation: topic-pop 0.5s var(--ease-spring) backwards;
}

.story-step.is-active .topic-grid span:nth-child(1) {
  animation-delay: 0.35s;
}
.story-step.is-active .topic-grid span:nth-child(2) {
  animation-delay: 0.42s;
}
.story-step.is-active .topic-grid span:nth-child(3) {
  animation-delay: 0.49s;
}
.story-step.is-active .topic-grid span:nth-child(4) {
  animation-delay: 0.56s;
}
.story-step.is-active .topic-grid span:nth-child(5) {
  animation-delay: 0.63s;
}
.story-step.is-active .topic-grid span:nth-child(6) {
  animation-delay: 0.7s;
}

@keyframes topic-pop {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
}

/* Sticky phone — massive on right */
.scroll-story__phone-col {
  position: relative;
}

.scroll-story__phone-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 5rem 0 2rem;
}

.phone-glow {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(52vw, 580px);
  height: min(75vh, 820px);
  background: radial-gradient(ellipse at center, var(--glow), transparent 68%);
  transition: background 0.9s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.phone-stack {
  position: relative;
  z-index: 1;
  width: min(50vw, 560px);
  height: min(92vh, 960px);
  margin-right: -4%;
}

.phone-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0;
  transform: scale(0.9) translateY(40px) rotate(2deg);
  filter: drop-shadow(0 48px 100px rgba(0, 0, 0, 0.55));
  transition:
    opacity 0.55s var(--ease),
    transform 0.7s var(--ease-spring),
    filter 0.55s;
  pointer-events: none;
}

.phone-stack img.is-active {
  opacity: 1;
  transform: scale(var(--parallax-scale, 1)) translateY(var(--parallax-y, 0)) rotate(0deg);
  z-index: 2;
}

.phone-stack img.is-exiting {
  opacity: 0;
  transform: scale(0.94) translateY(-24px) rotate(-1deg);
  z-index: 1;
}

.phone-caption {
  position: relative;
  z-index: 2;
  margin: 1rem 0 0;
  padding-right: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
  opacity: 0.7;
  transition: opacity 0.4s, color 0.6s;
}

/* Marquee */
.marquee-band {
  border-block: 1px solid var(--border);
  padding: 1.1rem 0;
  overflow: hidden;
  background: var(--bg-soft);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee-track span:nth-child(odd) {
  color: var(--text);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pulse cards */
.pulse-cards {
  padding: 4rem 0;
}

.pulse-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pulse-card {
  padding: 1.75rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.pulse-card:hover {
  transform: translateY(-6px);
  border-color: rgba(148, 137, 245, 0.3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.pulse-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.pulse-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
}

.pulse-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Reveal (below fold) */
.reveal-group .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-group.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group.is-visible .reveal-item:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-group.is-visible .reveal-item:nth-child(3) {
  transition-delay: 160ms;
}

/* FAQ + CTA + Footer */
.section-faq {
  padding: 4rem 0 3rem;
}

.section-faq h2 {
  margin: 0 0 2rem;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.faq-list {
  max-width: 40rem;
  margin-inline: auto;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-soft);
}

.faq-item summary {
  padding: 1rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cta-panel {
  padding: 3rem 0 5rem;
  text-align: center;
}

.cta-panel h2 {
  margin: 0 0 1.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 600;
  text-decoration: none;
}

.footer-note {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-store-badges {
  margin-top: 1.25rem;
}

.nav-store-badges {
  margin-left: 0.35rem;
}

@media (max-width: 900px) {
  .nav-store-badges {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .step-content > *,
  .phone-stack img,
  .marquee-track {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .story-step.is-active .step-content > * {
    filter: none;
  }

  .phone-stack img:not(.is-active) {
    display: none;
  }
}

/* Mobile: stacked, phone per section */
@media (max-width: 1023px) {
  .story-progress {
    display: none;
  }

  .scroll-story__layout {
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
  }

  .scroll-story__phone-col {
    display: none;
  }

  .story-step {
    min-height: auto;
    padding: 3.5rem 0;
    text-align: center;
  }

  .story-step__mobile-phone {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }

  .story-step__mobile-phone img {
    height: min(52vh, 480px);
    width: auto;
    filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.5));
  }

  .step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .lead,
  .quote-card,
  .feature-chips,
  .path-list,
  .topic-grid {
    margin-inline: auto;
  }

  .float-card {
    transform: none;
  }

  .pulse-cards__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .brand-name {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 1.25rem;
    right: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(6, 8, 15, 0.96);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}
