/* ─────────────────────────────────────────────
   MEMORA — Landing Page Styles
   Brand gradient: #667eea → #764ba2
───────────────────────────────────────────── */

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

:root {
  --primary: #667eea;
  --secondary: #764ba2;
  --primary-light: rgba(102, 126, 234, 0.12);
  --text-dark: #2c3e50;
  --text-mid: #4a5568;
  --text-muted: #6c757d;
  --bg: #f8f9fa;
  --bg-white: #ffffff;
  --border: #e9ecef;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12);
  --shadow-primary: 0 8px 28px rgba(102, 126, 234, .32);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Container ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(233, 236, 239, .6);
  transition: box-shadow .3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 64px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-logo-icon svg {
  width: 18px;
  height: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

/* ── Language Switcher ── */
.lang-switcher {
  display: flex;
  background: var(--bg);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--border);
  gap: 2px;
  margin-left: 8px;
}

.lang-btn {
  border: none;
  background: none;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 9px;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

@media (max-width: 960px) {
  .nav-inner {
    gap: 16px;
  }

  .lang-switcher {
    order: 2;
    margin-left: auto;
    margin-right: 8px;
  }
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all .3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--border);
}

.nav-mobile a {
  padding: 10px 0;
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

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

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  top: -200px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  bottom: -100px;
  left: -80px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(102, 126, 234, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 126, 234, .06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid rgba(102, 126, 234, .25);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: var(--shadow-primary);
  transition: transform .2s, box-shadow .2s;
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(102, 126, 234, .4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  color: var(--text-mid);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: white;
  transition: all .2s;
}

.btn-ghost svg {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-ghost:hover svg {
  transform: scale(1.1);
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-platforms>span {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.platform-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* Preview window */
.hero-preview {
  position: relative;
}

.preview-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(102, 126, 234, .18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.preview-window {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 0, 0, .06);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform .4s ease;
}

.preview-window:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(1deg);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f4f5f8;
  border-bottom: 1px solid #e9ecef;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.window-title {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0 auto;
}

.window-content {
  padding: 0;
}

.preview-canvas {
  background: #F7FAFC;
  background-image:
    linear-gradient(rgba(102, 126, 234, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 126, 234, .05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.preview-tree {
  width: 100%;
  height: auto;
  display: block;
}

/* ─────────────────────────────────────────────
   STATS
───────────────────────────────────────────── */
.stats {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 48px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ─────────────────────────────────────────────
   FEATURES
───────────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--bg);
}

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

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

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

.feature-card--large {
  grid-column: span 1;
  grid-row: span 2;
}

.feature-card--wide {
  grid-column: span 2;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(102, 126, 234, .25);
}

.feature-card--large {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card--accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-color: transparent;
  color: white;
}

.feature-card--accent h3 {
  color: white;
}

.feature-card--accent p {
  color: rgba(255, 255, 255, .8);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: color-mix(in srgb, var(--icon-color) 14%, transparent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--icon-color);
}

.feature-card--accent .feature-icon {
  background: rgba(255, 255, 255, .2);
  color: white;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card--large h3 {
  font-size: 1.25rem;
}

.feature-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 12px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 600;
  border-radius: 100px;
}

/* ─────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-white);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(102, 126, 234, .35);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step-content p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-connector {
  flex-shrink: 0;
  height: 2px;
  width: 80px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  margin-top: 31px;
  opacity: .35;
}

/* ─────────────────────────────────────────────
   DOWNLOAD
───────────────────────────────────────────── */
.download {
  position: relative;
  padding: 100px 0;
  background: #0f0e17;
  overflow: hidden;
  color: white;
}

.download-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.download-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .25;
}

.blob-a {
  width: 700px;
  height: 700px;
  background: var(--primary);
  top: -200px;
  left: -200px;
}

.blob-b {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  bottom: -200px;
  right: -100px;
}

.section-header--light {
  position: relative;
  z-index: 1;
}

.section-tag--light {
  background: rgba(102, 126, 234, .2);
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(102, 126, 234, .4);
}

.section-title--light {
  color: white;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, .6);
}

.download-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.download-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: background .2s, border-color .2s, transform .2s;
  position: relative;
}

.download-card:hover {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(102, 126, 234, .5);
  transform: translateY(-4px);
}

.download-card--featured {
  background: rgba(102, 126, 234, .15);
  border-color: rgba(102, 126, 234, .5);
  box-shadow: 0 0 0 1px rgba(102, 126, 234, .4), 0 16px 48px rgba(102, 126, 234, .2);
}

.download-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.download-card-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .75);
}

.download-card-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.download-card-info p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 6px;
}

.download-arch {
  display: inline-block;
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .06);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.download-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: auto;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .9);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: all .2s;
  margin-top: auto;
  cursor: pointer;
}

.btn-download:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-1px);
}

.btn-download--featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(102, 126, 234, .4);
}

.btn-download--featured:hover {
  background: linear-gradient(135deg, #7b91f0 0%, #8a5cb5 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, .5);
}

.download-note {
  text-align: center;
  color: rgba(255, 255, 255, .4);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: #0a0914;
  color: rgba(255, 255, 255, .5);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .nav-logo {
  color: white;
  margin-bottom: 14px;
  display: inline-flex;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .45);
}

.footer-brand .nav-logo-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.footer-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.footer-col a {
  text-decoration: none;
  color: rgba(255, 255, 255, .4);
  font-size: .9rem;
  transition: color .2s;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, .8);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: .82rem;
  color: rgba(255, 255, 255, .3);
  flex-wrap: wrap;
  gap: 12px;
}

/* ─────────────────────────────────────────────
   TOAST
───────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: white;
  color: var(--text-dark);
  padding: 14px 24px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .16);
  font-size: .9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  opacity: 0;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), opacity .3s ease;
  white-space: nowrap;
  border: 1px solid var(--border);
}

.toast svg {
  color: var(--primary);
  flex-shrink: 0;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-preview {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
  }

  .preview-window {
    transform: none !important;
  }

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

  .feature-card--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .feature-card--wide {
    grid-column: span 2;
  }

  .download-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 32px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    max-width: 460px;
    margin: 0 auto;
  }

  .step-connector {
    width: 2px;
    height: 48px;
    margin-top: 0;
  }

  .stat-item {
    padding: 16px 24px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 110px 0 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .nav-links,
  .btn-nav {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

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

  .feature-card--large {
    grid-column: span 1;
  }

  .feature-card--wide {
    grid-column: span 1;
  }

  .stats-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-item {
    padding: 16px 0;
    align-items: flex-start;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    gap: 32px;
  }

  .features,
  .how-it-works,
  .download {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
}