/* ─────────────────────────────────────────
   Design System Tokens
   ───────────────────────────────────────── */

:root {
  /* Warm grayscale */
  --noir: #1A1714;
  --anthracite: #2C2925;
  --graphite: #524E47;
  --gris: #8A8580;
  --argent: #B5B0A8;
  --perle: #E2DDD5;
  --neige: #F5F1EB;
  --blanc: #FDFBF7;

  /* Accent */
  --olive: #6B6B3C;
  --olive-mid: #8A8A52;
  --olive-light: rgba(107, 107, 60, 0.08);
  --olive-dark: #3C3C2C;

  /* Fonts */
  --font-display: 'EB Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 80px;
  --space-3xl: 120px;

  /* Layout */
  --header-h: 56px;
  --max-w: 1200px;
}

/* ─────────────────────────────────────────
   Reset
   ───────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--space-md));
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--noir);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Page load fade-in */
body {
  animation: pageLoad 0.4s ease-out;
}

@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

/* ─────────────────────────────────────────
   Layout
   ───────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: var(--space-2xl);
  text-align: center;
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────
   Skip Link
   ───────────────────────────────────────── */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--olive);
  color: #FFFFFF;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  z-index: 200;
  transition: top 0.15s;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ─────────────────────────────────────────
   Header
   ───────────────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(253, 251, 247, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}

.header.is-scrolled {
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--perle);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--noir);
  position: relative;
}

.wordmark::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--olive);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--graphite);
  padding: 12px 0;
  transition: color 0.15s;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--noir);
}

.nav-link--cta {
  color: var(--blanc);
  background: var(--olive);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: opacity 0.15s;
}

.nav-link--cta:hover {
  color: var(--blanc);
  opacity: 0.85;
}

/* Hamburger */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 18px;
  position: relative;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--noir);
  position: absolute;
  left: 0;
  transition: transform 0.2s, opacity 0.2s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ─────────────────────────────────────────
   Hero
   ───────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-lg) var(--space-xl);
  overflow: hidden;
}

/* Animated gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    var(--blanc) 0%,
    #F0EBE3 25%,
    var(--neige) 50%,
    #EAE5D8 75%,
    var(--blanc) 100%
  );
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Film grain texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--olive);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease-out 0.1s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-md);
  color: var(--anthracite);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease-out 0.2s forwards;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--olive);
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease-out 0.5s forwards;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--graphite);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease-out 0.7s forwards;
}

.hero-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease-out 0.9s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero screenshot */
.hero-screenshot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin-top: var(--space-2xl);
  opacity: 0;
  transform: perspective(1200px) rotateX(6deg) translateY(40px);
  animation: screenshotReveal 1s ease-out 1.1s forwards;
}

.hero-screenshot img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--perle);
  box-shadow:
    0 20px 60px rgba(26, 23, 20, 0.12),
    0 8px 24px rgba(26, 23, 20, 0.06);
}

@keyframes screenshotReveal {
  to {
    opacity: 1;
    transform: perspective(1200px) rotateX(2deg) translateY(0);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--argent);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 1.5s forwards, scrollBounce 2s ease-in-out 2.3s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────
   Buttons
   ───────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--olive);
  color: var(--blanc);
  padding: 14px 28px;
  box-shadow: 0 2px 8px rgba(107, 107, 60, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(107, 107, 60, 0.3);
}

.btn-cta {
  background: var(--blanc);
  color: var(--olive-dark);
  padding: 16px 36px;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(253, 251, 247, 0.2);
}

.btn-cta:hover {
  box-shadow: 0 4px 16px rgba(253, 251, 247, 0.3);
}

/* ─────────────────────────────────────────
   Social Proof Bar
   ───────────────────────────────────────── */

.social-proof {
  border-top: 1px solid var(--perle);
  border-bottom: 1px solid var(--perle);
  padding: var(--space-md) 0;
  background: var(--neige);
}

.social-proof-text {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gris);
  font-style: italic;
}

/* ─────────────────────────────────────────
   Container Narrow
   ───────────────────────────────────────── */

.container--narrow {
  max-width: 680px;
}

/* ─────────────────────────────────────────
   Section Title Variant
   ───────────────────────────────────────── */

.section-title--left {
  text-align: left;
}

/* ─────────────────────────────────────────
   Problem Section
   ───────────────────────────────────────── */

.section--problem {
  background: var(--blanc);
}

.problem-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.problem-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--graphite);
  line-height: 1.75;
}

.problem-close {
  font-family: var(--font-display) !important;
  font-style: italic;
  font-size: 1.15rem !important;
  color: var(--anthracite) !important;
  font-weight: 400 !important;
  padding-top: var(--space-md);
  border-top: 1px solid var(--perle);
}

.problem-body[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.problem-body[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   Steps Section
   ───────────────────────────────────────── */

/* ─────────────────────────────────────────
   Videos Section
   ───────────────────────────────────────── */

/* ─────────────────────────────────────────
   Videos Section
   ───────────────────────────────────────── */

.section--videos {
  background: var(--blanc);
}

.video-player[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.video-player[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Main video */
.video-main {
  width: 100%;
  max-width: 960px;
  margin: 0 auto var(--space-md);
}

.video-main video {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--perle);
  background: var(--noir);
}

/* Thumbnails row */
.video-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 960px;
  margin: 0 auto;
}

.video-thumb {
  background: none;
  border: 2px solid var(--perle);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
  text-align: left;
}

.video-thumb:hover {
  border-color: var(--olive-mid);
}

.video-thumb.is-active {
  border-color: var(--olive);
}

.video-thumb video {
  width: 100%;
  display: block;
  pointer-events: none;
}

.video-thumb-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--graphite);
  padding: var(--space-sm) var(--space-sm);
  letter-spacing: 0.03em;
}

.video-thumb.is-active .video-thumb-label {
  color: var(--olive);
  font-weight: 500;
}

/* ─────────────────────────────────────────
   Benefits Section
   ───────────────────────────────────────── */

.section--benefits {
  background: var(--neige);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.benefit-card {
  position: relative;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  border: 1px solid var(--perle);
  border-radius: 16px;
  background: var(--blanc);
  overflow: hidden;
  cursor: default;
}

.benefit-card[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-card[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card[data-reveal].is-visible:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 23, 20, 0.08);
  border-color: var(--olive-mid);
}

.benefit-number {
  position: absolute;
  top: -8px;
  right: var(--space-lg);
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 400;
  line-height: 1;
  color: var(--olive-light);
  pointer-events: none;
  user-select: none;
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--anthracite);
  margin-bottom: var(--space-sm);
}

.benefit-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--graphite);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   Testimonial Section
   ───────────────────────────────────────── */

.section--testimonial {
  background: var(--neige);
}

.testimonial[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  color: var(--anthracite);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gris);
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────
   Features Carousel (legacy — unused)
   ───────────────────────────────────────── */

/* Controls: counter + arrows */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.carousel-counter {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gris);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.carousel-arrows {
  display: flex;
  gap: var(--space-sm);
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--perle);
  background: var(--blanc);
  color: var(--graphite);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.carousel-arrow:hover {
  background: var(--olive);
  color: var(--blanc);
  border-color: var(--olive);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-arrow:disabled:hover {
  background: var(--blanc);
  color: var(--graphite);
  border-color: var(--perle);
}

/* Wrapper & Track */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 max(var(--space-lg), calc((100vw - 380px) / 2)) var(--space-lg);
  scrollbar-width: none;
  cursor: grab;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel:active {
  cursor: grabbing;
}

/* Cards */
.carousel-card {
  position: relative;
  flex: 0 0 min(380px, 80vw);
  min-height: 280px;
  scroll-snap-align: center;
  background: var(--blanc);
  border: 1px solid var(--perle);
  border-radius: 16px;
  overflow: hidden;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Large decorative number */
.carousel-number {
  position: absolute;
  top: -8px;
  right: var(--space-lg);
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 400;
  line-height: 1;
  color: var(--olive-light);
  pointer-events: none;
  user-select: none;
  transition: color 0.3s ease;
}

.carousel-card:hover .carousel-number {
  color: rgba(107, 107, 60, 0.15);
}

/* Scroll reveal */
.carousel-card[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.carousel-card[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 23, 20, 0.1);
  border-color: var(--olive);
}

.carousel-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--anthracite);
}

.carousel-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--graphite);
  line-height: 1.6;
}

/* Progress bar */
.carousel-progress {
  max-width: var(--max-w);
  margin: var(--space-lg) auto 0;
  padding: 0 var(--space-lg);
  height: 2px;
  background: var(--perle);
  border-radius: 1px;
  overflow: hidden;
}

.carousel-progress-bar {
  height: 100%;
  width: 16.66%;
  background: var(--olive);
  border-radius: 1px;
  transition: width 0.3s ease;
}

/* ─────────────────────────────────────────
   CTA Section
   ───────────────────────────────────────── */

.cta-section {
  background: var(--olive-dark);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--blanc);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.cta-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--argent);
  margin-bottom: var(--space-xl);
}

/* ─────────────────────────────────────────
   Footer
   ───────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--perle);
  padding: var(--space-lg) 0;
  background: var(--neige);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--graphite);
}

.footer-link {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--olive);
  transition: opacity 0.15s;
  cursor: pointer;
}

.footer-link:hover {
  opacity: 0.7;
}

/* ─────────────────────────────────────────
   Reduced Motion
   ───────────────────────────────────────── */

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

  .hero-title,
  .hero-tagline,
  .hero-subtitle,
  .hero-actions,
  .hero-screenshot,
  .scroll-indicator {
    opacity: 1;
    transform: none;
  }

  .hero-screenshot {
    transform: perspective(1200px) rotateX(2deg);
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-bg {
    animation: none;
    background-position: 50% 50%;
  }

  .scroll-indicator {
    display: none;
  }
}

/* ─────────────────────────────────────────
   Responsive — Tablet
   ───────────────────────────────────────── */

@media (max-width: 1023px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-card {
    flex: 0 0 min(340px, 80vw);
    min-height: 240px;
  }
}

/* ─────────────────────────────────────────
   Responsive — Mobile
   ───────────────────────────────────────── */

@media (max-width: 767px) {
  .hamburger {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: var(--blanc);
    border-left: 1px solid var(--perle);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-h) + var(--space-lg)) var(--space-lg) var(--space-lg);
    gap: var(--space-md);
    transition: right 0.25s ease;
    z-index: 105;
  }

  .nav.is-open {
    right: 0;
  }

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

  .step {
    gap: var(--space-lg);
  }

  .step-number {
    font-size: 2.5rem;
    width: 48px;
  }

  .carousel-card {
    flex: 0 0 min(300px, 85vw);
    min-height: 220px;
  }

  .carousel-number {
    font-size: 5rem;
  }

  .carousel-arrows {
    gap: var(--space-xs);
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-screenshot {
    margin-top: var(--space-xl);
  }

  .hero-screenshot img {
    transform: none;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .cta-section {
    padding: var(--space-2xl) 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .scroll-indicator {
    display: none;
  }
}
