/* DOGYM marketing landing — source of truth: dogym-landing/index.html.
 * Self-contained design system (dark, Bebas Neue + Manrope). Loaded only on
 * the public homepage (web/landing.html); does not affect app/auth/account
 * pages, which use web.css. */

:root {
  --bg: #0a0a0a;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --brand: #2fbd6a;
  --brand-glow: rgba(47,189,106,0.15);
  --brand-dim: rgba(47,189,106,0.10);
  --text-primary: #f0f0f0;
  --text-secondary: #888;
  --text-tertiary: #444;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --radius: 20px;
  --radius-sm: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NOISE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

/* ── NAV — floating glass pill ── */
nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding: 10px 12px 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(18,18,18,0.7);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 22px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: 12px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 500;
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--text-primary); background: rgba(255,255,255,0.08); }

/* account / login entry — integrates the marketing page with the web app */
.nav-auth {
  color: var(--text-primary);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 600;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--border-hover);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.nav-auth:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); }

.nav-cta {
  background: var(--brand);
  color: #000;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 0.95vw, 15px);
  padding: 9px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-left: 4px;
}

.nav-cta:hover { background: #3fd67c; transform: scale(1.04); }

/* ── BURGER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-mobile-overlay.open { display: flex; }

.nav-mobile-overlay a {
  color: var(--text-primary);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-mobile-overlay a:hover { color: var(--brand); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 140px 80px 80px;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

/* ambient glow */
.hero::after {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(47,189,106,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47,189,106,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-text { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-dim);
  border: 1px solid rgba(47,189,106,0.2);
  color: var(--brand);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-logo-img {
  height: clamp(48px, 5vw, 80px);
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 6px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-title span {
  color: var(--brand);
  font-size: 0.48em;
  display: block;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.hero-subtitle {
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 12px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-subtitle2 {
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #000;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.1vw, 17px);
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 32px rgba(47,189,106,0.25);
}

.btn-primary:hover {
  background: #3fd67c;
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(47,189,106,0.4);
}

/* ── HERO PHONES ── */
.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 640px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.phone-mockup {
  position: absolute;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

.phone-main {
  width: 250px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-left {
  width: 210px;
  bottom: 40px;
  left: 10px;
  z-index: 2;
  transform: rotate(-6deg);
  opacity: 0.7;
}

.phone-right {
  width: 210px;
  bottom: 40px;
  right: 10px;
  z-index: 2;
  transform: rotate(6deg);
  opacity: 0.7;
}

.phone-mockup img,
.phone-mockup video { width: 100%; display: block; background: #000; }

.glow-orb {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(47,189,106,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ── SECTION COMMON ── */
section { padding: 120px 80px; }

.section-eyebrow {
  display: inline-block;
  color: var(--brand);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.95;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 540px;
}

/* ── SECTION DIVIDER ── */
.divider {
  height: 1px;
  margin: 0 80px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

/* ── FEATURES — bento grid ── */
.features { background: transparent; }

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .section-subtitle { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(32px, 2.6vw, 44px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.feature-card.feat-accent {
  background: linear-gradient(180deg, rgba(47,189,106,0.10) 0%, rgba(47,189,106,0.02) 100%);
  border-color: rgba(47,189,106,0.22);
}

.feature-card.feat-accent:hover {
  border-color: rgba(47,189,106,0.35);
}

.feat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 3vw, 48px);
  color: var(--text-tertiary);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.feature-card.feat-accent .feat-num { color: rgba(47,189,106,0.45); }

.feat-cat-name {
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feat-headline {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.feature-card.feat-accent .feat-list {
  border-top-color: rgba(47,189,106,0.18);
}

.feat-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feat-li-icon {
  width: 36px; height: 36px;
  background: var(--brand-dim);
  border: 1px solid rgba(47,189,106,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.feature-card.feat-accent .feat-li-icon {
  background: var(--brand);
  color: #000;
  border-color: var(--brand);
}

.feat-li-title {
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.3;
}

.feat-li-desc {
  font-size: clamp(13px, 0.95vw, 15px);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── HOW IT WORKS ── */
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how-steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: all 0.2s;
}

.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 3.5vw, 52px);
  color: var(--text-tertiary);
  line-height: 1;
  min-width: 52px;
  transition: color 0.3s;
}

.step:hover .step-num { color: var(--brand); }

.step-title { font-size: clamp(18px, 1.3vw, 22px); font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: clamp(15px, 1.1vw, 17px); color: var(--text-secondary); line-height: 1.7; }

.how-phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.how-phone img {
  width: 260px;
  border-radius: 32px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}

.how-phone::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(47,189,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── VIDEO EXERCISES ── */
.videos {
  position: relative;
  overflow: hidden;
}

.videos::before {
  content: '';
  position: absolute;
  top: 20%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47,189,106,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.videos-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.videos-header .section-subtitle { margin: 0 auto; }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.video-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.3s, border-color 0.3s;
}

.video-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(47,189,106,0.3);
}

.video-tile video,
.video-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.3s, transform 0.5s;
  display: block;
}

.video-tile:hover video,
.video-tile:hover img {
  filter: brightness(0.75);
  transform: scale(1.04);
}

.video-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.video-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
}

.video-name {
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.video-muscle {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.videos-footnote {
  margin-top: 36px;
  text-align: center;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--text-tertiary);
  position: relative;
  z-index: 2;
}

/* ── SHOWCASE — infinite scroll ── */
.showcase {
  background: transparent;
  overflow: hidden;
  padding: 120px 0;
}

.showcase-header {
  padding: 0 80px;
  margin-bottom: 56px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

/* fade edges */
.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 40s linear infinite;
  padding: 20px 0;
}

.carousel-track:hover { animation-play-state: paused; }

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-item {
  flex: 0 0 auto;
  width: clamp(180px, 15vw, 240px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.3s;
}

.carousel-item:hover { transform: scale(1.04) translateY(-4px); }
.carousel-item img { width: 100%; display: block; }

/* ── EARLY ACCESS ── */
.early-access {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.early-access::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47,189,106,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.early-content { position: relative; z-index: 2; }

.early-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-dim);
  border: 1px solid rgba(47,189,106,0.2);
  color: var(--brand);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

/* ── FINAL CTA + FOOTER ── */
.final {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 80px 48px;
}

.final::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(47,189,106,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-content { position: relative; z-index: 2; }

.final .section-title {
  font-size: clamp(52px, 6vw, 88px);
  margin-bottom: 24px;
}

.final .section-subtitle {
  margin: 0 auto 48px;
  font-size: clamp(17px, 1.3vw, 20px);
}

.store-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.store-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.store-icon {
  font-size: 28px;
  display: flex;
  align-items: center;
}

.store-label { font-size: clamp(11px, 0.8vw, 13px); color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em; text-align: left; }
.store-name { font-size: clamp(16px, 1.2vw, 19px); font-weight: 700; line-height: 1.2; text-align: left; }

.final-footer {
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--brand); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  font-size: clamp(12px, 0.85vw, 13px);
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: center;
}

.footer-legal span { display: inline-flex; align-items: center; }
.footer-legal .sep { color: var(--text-tertiary); }
.footer-legal a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--brand); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom img { height: 22px; opacity: 0.35; }
.footer-bottom span { font-size: clamp(12px, 0.9vw, 14px); color: var(--text-tertiary); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .hero { padding: 130px 48px 80px; }
  section { padding: 100px 48px; }
  .divider { margin: 0 48px; }
  .showcase-header { padding: 0 48px; }
  .final { padding: 100px 48px 40px; }
}

@media (max-width: 1080px) {
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  nav {
    top: 12px;
    padding: 8px 12px 8px 16px;
  }
  .nav-links { display: none; }
  .nav-auth { display: none; }
  .nav-burger { display: flex; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    text-align: center;
    gap: 40px;
  }
  .hero-subtitle { margin: 0 auto 16px; }
  .hero-subtitle2 { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-phones { height: 380px; }
  .phone-left, .phone-right { display: none; }
  .phone-main { width: 200px; }
  section { padding: 80px 24px; }
  .divider { margin: 0 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .how { grid-template-columns: 1fr; }
  .how-phone { order: -1; }
  .how-phone img { width: 200px; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .showcase { padding: 80px 0; }
  .showcase-header { padding: 0 24px; }
  .carousel-wrapper::before,
  .carousel-wrapper::after { width: 40px; }
  .final { padding: 80px 24px 32px; }
  .store-buttons { margin-bottom: 64px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .early-access { padding: 80px 24px; }
}
