/* ═══════════════════════════════════════════════════════════
   WARIIKO — Landing Page Style Apple
   Premium, minimaliste, animations fluides
   ═══════════════════════════════════════════════════════════ */

/* ─── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --bg-alt: #f0f4ff;
  --bg-card: #ffffff;
  --bg-card-hover: #f8faff;
  --text: #1a1a2e;
  --text-secondary: #555770;
  --text-muted: #8888a0;
  --accent: #2563EB;
  --accent-hover: #1d4fd8;
  --accent-light: rgba(37, 99, 235, 0.08);
  --gradient-1: #2563EB;
  --gradient-2: #0ea5e9;
  --gradient-3: #7c3aed;
  --orange: #f59e0b;
  --purple: #7c3aed;
  --cyan: #06b6d4;
  --red: #ef4444;
  --blue: #2563EB;
  --border: rgba(37, 99, 235, 0.1);
  --border-hover: rgba(37, 99, 235, 0.2);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(37, 99, 235, 0.08);
  --shadow-lg: 0 12px 40px rgba(37, 99, 235, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
  --max-width: 1200px;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── Typography ──────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted {
  color: var(--text-muted);
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

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

/* ─── Animations ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ─── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
  transition: background 0.3s;
}

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

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-w {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--accent) !important;
  color: #ffffff !important;
  padding: 8px 20px !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: scale(1.02);
}

/* Mobile menu button */
.nav-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

.nav-menu.active span:first-child {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}

.nav-menu.active span:last-child {
  transform: rotate(-45deg) translate(2.5px, -2.5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
}

.mobile-cta {
  background: var(--accent);
  color: #ffffff !important;
  padding: 14px 24px !important;
  border-radius: 100px;
  text-align: center;
  font-weight: 600;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu { display: flex; }
  .mobile-menu { display: flex; }
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 80px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(37, 99, 235, 0.05);
}

/* Hero phone mockup */
.hero-visual {
  flex: 0 0 320px;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 12px;
  border: 2px solid rgba(37, 99, 235, 0.15);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.08),
    0 40px 80px rgba(37, 99, 235, 0.15),
    0 0 120px rgba(37, 99, 235, 0.06);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0f0f23;
  border-radius: 30px;
  overflow: hidden;
}

.screen-header {
  padding: 12px 20px 8px;
}

.screen-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.status-icons {
  display: flex;
  gap: 4px;
}

.signal, .wifi, .battery {
  width: 16px;
  height: 10px;
  background: var(--text);
  border-radius: 2px;
  opacity: 0.6;
}

.battery { width: 22px; border-radius: 3px; }

.screen-app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.app-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.app-avatar {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--accent), var(--gradient-2));
  border-radius: 50%;
}

.screen-content {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tontine-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  animation: slideInCard 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.card-1 { animation-delay: 0.8s; }
.card-2 { animation-delay: 1.1s; }
.card-3 { animation-delay: 1.4s; }

@keyframes slideInCard {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.tc-icon {
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.tc-orange { color: var(--orange); }
.tc-blue { color: var(--gradient-2); }

.tc-info { flex: 1; }

.tc-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.tc-detail {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.tc-amount {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 60px;
    padding-top: calc(var(--nav-height) + 60px);
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { flex: 0 0 auto; }
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 240px;
    height: 480px;
  }
}

/* ─── Stats ───────────────────────────────────────────────── */
.stats {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline;
}

.stat-unit {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  display: inline;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ─── Section Label ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 24px auto 0;
}

/* ─── Showcase (Tontines, Payments, Messaging) ─────────────── */
.showcase {
  padding: 140px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.dark-section {
  max-width: 100%;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.dark-section > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* Tontine duo cards */
.showcase-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sc-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.sc-badge-green { background: rgba(37, 99, 235, 0.15); color: var(--accent); }
.sc-badge-orange { background: rgba(255, 152, 0, 0.15); color: var(--orange); }

.showcase-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.showcase-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.sc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.sc-list svg { color: var(--accent); flex-shrink: 0; }

@media (max-width: 768px) {
  .showcase-duo { grid-template-columns: 1fr; }
  .showcase-card { padding: 32px 24px; }
}

/* ─── Mama Tontine Section ───────────────────────────────── */
.mama-section {
  padding: 140px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, #e8f0fe 50%, var(--bg) 100%);
}

.mama-inner {
  max-width: 800px;
  margin: 0 auto;
}

.mama-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 24px;
}

.mama-features {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mama-feat {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.mama-feat:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.mf-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.mama-feat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.mama-feat span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Payment Grid ───────────────────────────────────────── */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.payment-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pm-logo {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pm-orange { background: rgba(255, 152, 0, 0.12); color: var(--orange); }
.pm-blue { background: rgba(14, 165, 233, 0.12); color: var(--gradient-2); }
.pm-wave { background: rgba(37, 99, 235, 0.12); color: var(--accent); }

.payment-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.payment-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Payment Flow */
.payment-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
}

.flow-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

.flow-check {
  background: var(--accent) !important;
  color: #fff;
}

.flow-arrow {
  color: var(--text-muted);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .payment-grid { grid-template-columns: 1fr; }
  .flow-arrow { display: none; }
  .payment-flow { flex-direction: column; }
}

/* ─── Communication Grid ─────────────────────────────────── */
.comm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.comm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.comm-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.comm-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.comm-icon-purple { background: rgba(168, 85, 247, 0.1); color: var(--purple); }
.comm-icon-orange { background: rgba(255, 152, 0, 0.1); color: var(--orange); }
.comm-icon-cyan { background: rgba(6, 182, 212, 0.1); color: var(--cyan); }
.comm-icon-green { background: rgba(37, 99, 235, 0.1); color: var(--blue); }
.comm-icon-red { background: rgba(239, 68, 68, 0.1); color: var(--red); }

.comm-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.comm-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

@media (max-width: 600px) {
  .comm-grid { grid-template-columns: 1fr; }
}

/* ─── Features List (all features) ───────────────────────── */
.features {
  padding: 140px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  align-items: flex-start;
}

.feature-item:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}

.fi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.fi-orange { background: rgba(255, 152, 0, 0.1); color: var(--orange); }
.fi-purple { background: rgba(168, 85, 247, 0.1); color: var(--purple); }
.fi-cyan { background: rgba(6, 182, 212, 0.1); color: var(--cyan); }
.fi-green { background: rgba(37, 99, 235, 0.1); color: var(--blue); }
.fi-red { background: rgba(239, 68, 68, 0.1); color: var(--red); }

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ─── How it works ────────────────────────────────────────── */
.how {
  padding: 140px 24px;
  max-width: 800px;
  margin: 0 auto;
}

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

.step {
  display: flex;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.step:last-child { border-bottom: none; }

.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(37, 99, 235, 0.12);
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
  width: 100px;
  transition: color 0.4s;
}

.step:hover .step-number {
  color: var(--accent);
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

@media (max-width: 600px) {
  .step {
    flex-direction: column;
    gap: 16px;
  }
  .step-number { font-size: 3rem; }
}

/* ─── Security ────────────────────────────────────────────── */
.security {
  padding: 140px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.security-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.security-item {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.security-item:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}

.security-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.security-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.security-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .security-grid { grid-template-columns: 1fr; }
}

/* ─── Download CTA ────────────────────────────────────────── */
.download {
  padding: 160px 24px;
  text-align: center;
}

.download-content {
  max-width: 700px;
  margin: 0 auto;
}

.download-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.download-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download, .btn-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-align: left;
}

.btn-download {
  background: var(--accent);
  color: #ffffff;
}

.btn-download:hover {
  background: var(--accent-hover);
  transform: scale(1.03);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.25);
}

.btn-coming-soon {
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: default;
}

.dl-small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.dl-big {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

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

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

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links { gap: 40px; }
}

/* ─── Smooth page load ────────────────────────────────────── */
body {
  animation: pageLoad 0.6s ease-out;
}

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

/* ─── Selection ───────────────────────────────────────────── */
::selection {
  background: var(--accent);
  color: #ffffff;
}

/* ─── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, 0.2);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(37, 99, 235, 0.35);
}
