*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #070b10;
  --bg-elevated: #0c1219;
  --bg-card: #111820;
  --bg-card-hover: #161f2a;
  --text: #f0f4f8;
  --text-muted: #8b9aab;
  --cyan: #00d4e8;
  --cyan-dim: #00a8b8;
  --cyan-soft: rgba(0, 212, 232, 0.1);
  --cyan-glow: rgba(0, 212, 232, 0.35);
  --yellow: #fbbf24;
  --green: #34d399;
  --purple: #a78bfa;
  --pink: #fb7185;
  --border: rgba(255, 255, 255, 0.07);
  --radius: 16px;
  --radius-lg: 24px;
  --max-width: 1140px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.container.narrow {
  max-width: 720px;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 40% at 10% 0%, rgba(0, 212, 232, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 30% at 90% 10%, rgba(0, 168, 184, 0.08), transparent 50%);
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 16, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.logo-sm .logo-img {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}

.nav-link {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.nav-link-muted {
  opacity: 0.65;
}

/* Typography */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan), #5eead4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-intro {
  margin-inline: auto;
}

section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-intro {
  color: var(--text-muted);
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-intro.center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--cyan);
  color: #041014;
  box-shadow: 0 8px 32px var(--cyan-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--cyan-glow);
  text-decoration: none;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Store badges — official assets */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.store-badges--center {
  justify-content: center;
  position: relative;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-badge-link--apple,
.store-badge-link--google {
  height: 54px;
}

.store-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  text-decoration: none;
}

.store-badge-img--apple,
.store-badge-img--google {
  display: block;
  height: 54px;
  width: auto;
}

.hero-secondary-link {
  margin-top: 0.25rem;
}

/* App screens — clean screenshots, natural phone proportions */
.app-screen {
  --phone-width: 220px;
  width: var(--phone-width);
  max-width: 100%;
  margin-inline: auto;
  flex-shrink: 0;
  align-self: start;
}

.app-screen--hero {
  --phone-width: 240px;
  animation: float 6s ease-in-out infinite;
}

.app-screen--gallery {
  --phone-width: 170px;
}

.app-screen--featured {
  --phone-width: 185px;
}

.app-screen--side {
  --phone-width: 220px;
}

.app-screen-inner {
  width: 100%;
  line-height: 0;
}

.app-screen-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-device {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: start;
}

.device-glow {
  position: absolute;
  width: 260px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 212, 232, 0.18), transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Legacy device-frame — same no-crop rules */
.device-frame {
  position: relative;
  width: min(100%, 200px);
  margin-inline: auto;
  padding: 2px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(0, 212, 232, 0.45), rgba(0, 212, 232, 0.08));
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.device-frame.sm {
  width: min(100%, 200px);
}

.device-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Hero */
.hero {
  padding: 2.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--cyan-soft);
  border: 1px solid rgba(0, 212, 232, 0.25);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.lead-sub {
  font-size: 0.95rem;
  color: var(--cyan-dim);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-bullets svg {
  color: var(--cyan);
  flex-shrink: 0;
}

.hero-bullets--aside {
  align-self: center;
  justify-self: end;
  max-width: 280px;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  gap: 0.85rem;
}

.hero-bullets--aside li {
  font-size: 0.95rem;
  color: var(--text);
}

/* Important To Read */
.important-read {
  padding: 0 0 2.5rem;
  margin-top: 0;
}

.important-card {
  background: linear-gradient(135deg, rgba(0, 212, 232, 0.08), rgba(0, 168, 184, 0.03));
  border: 2px solid rgba(0, 212, 232, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 212, 232, 0.08);
}

.important-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem;
  background: rgba(0, 212, 232, 0.12);
  border-bottom: 1px solid rgba(0, 212, 232, 0.25);
}

.important-header svg {
  color: var(--cyan);
  flex-shrink: 0;
}

.important-header h2 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.important-body {
  padding: 1.75rem 1.75rem 2rem;
  max-width: 720px;
  margin-inline: auto;
}

.important-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.important-principle {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: var(--text) !important;
  padding-left: 1rem;
  border-left: 3px solid var(--cyan);
}

.important-quote {
  font-size: 1.15rem !important;
  font-weight: 700;
  font-style: italic;
  color: var(--text) !important;
  text-align: center;
  padding: 1rem 0;
}

.important-rules {
  font-weight: 600;
  color: var(--text) !important;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 12px;
  padding: 1rem 1.25rem !important;
}

.important-guarantee {
  font-weight: 700;
  color: var(--cyan) !important;
  font-size: 1.05rem !important;
  background: var(--cyan-soft);
  border-radius: 12px;
  padding: 1rem 1.25rem !important;
}

.important-disclaimer {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.important-disclaimer strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.5rem;
}

.important-cta {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: var(--cyan) !important;
  text-align: center;
  margin-bottom: 0 !important;
  margin-top: 1.5rem !important;
}

/* Problem & Solution */
.problem {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.solution {
  padding: 3rem 0 6rem;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
  overflow: visible;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  overflow: visible;
}

.solution-visual {
  margin: 0;
  padding: 0 0 2rem;
  overflow: visible;
  text-align: center;
}

.solution-visual img {
  display: inline-block;
  width: min(100%, 260px);
  height: auto;
  vertical-align: top;
}

/* How it works */
.how-it-works {
  padding: 3rem 0;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.flow-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.flow-card:hover {
  border-color: rgba(0, 212, 232, 0.3);
  transform: translateY(-3px);
}

.flow-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(0, 212, 232, 0.4);
}

.flow-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--cyan-soft);
  border-radius: 12px;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.flow-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.flow-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mission-parts {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.mission-parts h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.part-item {
  padding: 1rem;
  background: var(--bg-elevated);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.part-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

/* Levels */
.levels {
  padding: 3rem 0;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.level-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.2s;
}

.level-card:hover {
  transform: translateY(-4px);
}

.level-num {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.level-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0.35rem 0 0.75rem;
}

.level-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.level-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.level-1 .level-num { color: var(--cyan); }
.level-1 { border-top: 3px solid var(--cyan); }

.level-2 .level-num { color: var(--green); }
.level-2 { border-top: 3px solid var(--green); }

.level-3 .level-num { color: var(--purple); }
.level-3 { border-top: 3px solid var(--purple); }

.level-4 .level-num { color: var(--pink); }
.level-4 { border-top: 3px solid var(--pink); }

/* Features */
.features {
  padding: 3rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(0, 212, 232, 0.25);
  transform: translateY(-3px);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--cyan-soft);
  border-radius: 12px;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.feature-icon.xp { color: var(--yellow); background: rgba(251, 191, 36, 0.1); }
.feature-icon.streak { color: #f97316; background: rgba(249, 115, 22, 0.1); }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Screenshots */
.screenshots {
  padding: 3rem 0 6rem;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
  overflow: visible;
}

.screenshot-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  align-items: start;
  justify-items: center;
  max-width: 960px;
  margin-inline: auto;
}

.screenshot-item {
  text-align: center;
  width: 100%;
  margin: 0;
}

.screenshot-item img {
  display: inline-block;
  width: min(100%, 170px);
  height: auto;
  vertical-align: top;
}

.screenshot-item figcaption {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Why */
.why {
  padding: 3rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.why-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.why-list svg {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

.why-list strong {
  color: var(--text);
}

/* Pricing */
.pricing {
  padding: 3rem 0;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 720px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.price-card.featured {
  border-color: rgba(0, 212, 232, 0.4);
  box-shadow: 0 0 40px rgba(0, 212, 232, 0.1);
}

.price-badge {
  position: absolute;
  top: -10px;
  right: 1.5rem;
  background: var(--cyan);
  color: #041014;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.price-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-card li svg {
  color: var(--cyan);
  flex-shrink: 0;
}

/* Download */
.download {
  padding: 3rem 0 2rem;
}

.download-card {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, rgba(0, 212, 232, 0.12), rgba(0, 168, 184, 0.05));
  border: 1px solid rgba(0, 212, 232, 0.25);
  border-radius: var(--radius-lg);
  text-align: center;
}

.download-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 232, 0.15), transparent 60%);
  pointer-events: none;
}

.download-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.download-card h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.download-card > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  position: relative;
}

.fine-print {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  position: relative;
}

/* Link cards */
.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.link-card:hover {
  border-color: rgba(0, 212, 232, 0.35);
  transform: translateY(-2px);
  text-decoration: none;
}

.link-card-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--cyan-soft);
  border-radius: 12px;
  color: var(--cyan);
}

.link-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.link-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.link-arrow {
  margin-left: auto;
  color: var(--cyan);
}

.support-links {
  padding: 1.5rem 0 3rem;
}

/* Legal pages */
.legal-page {
  padding: 3rem 0 5rem;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-content {
  max-width: 42rem;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.callout {
  background: var(--cyan-soft);
  border: 1px solid rgba(0, 212, 232, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0 2rem;
  color: var(--text);
}

.steps-list {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.steps-list li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.delete-visual {
  margin: 2rem 0;
  max-width: 280px;
}

.delete-visual .device-frame {
  margin: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--bg-elevated);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--text);
}

/* Responsive */
@media (max-width: 1100px) {
  .screenshot-showcase {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    max-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .screenshot-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: auto;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .solution-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-bullets--aside {
    justify-self: stretch;
    max-width: none;
  }

  .solution-grid .app-screen,
  .why-grid .app-screen,
  .solution-visual {
    order: -1;
  }

  .screenshot-showcase {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    max-width: none;
  }

  .screenshot-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: auto;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .store-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .store-badge-link--apple,
  .store-badge-link--google {
    height: 50px;
  }

  .store-badge-img--apple,
  .store-badge-img--google {
    height: 50px;
  }

  .btn {
    width: 100%;
  }
}
