/* Footify Landing — brand tokens from app CommonStyles */
:root {
  --primary: #2ECC71;
  --primary-light: #4AE183;
  --primary-dark: #006D37;
  --secondary: #006497;
  --background: #F3FCF1;
  --card: #FFFFFF;
  --surface: #E8F0E5;
  --text: #161D17;
  --text-secondary: #3D4A3E;
  --border: #BBCBBB;
  --font-display: 'Lexend', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(22, 29, 23, 0.08);
  --shadow-lg: 0 24px 64px rgba(22, 29, 23, 0.14);
  --shadow-glow: 0 0 60px rgba(46, 204, 113, 0.25);
  --header-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; height: auto; }

img.logo-img,
img.app-logo-img,
img.download-panel-icon {
  max-width: none;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Ambient background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orb-drift 20s var(--ease-out) infinite alternate;
}

.orb-1 {
  width: 480px;
  height: 480px;
  background: rgba(46, 204, 113, 0.22);
  top: -120px;
  right: -80px;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: rgba(0, 100, 151, 0.12);
  bottom: 20%;
  left: -100px;
  animation-delay: -7s;
  animation-duration: 25s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: rgba(74, 225, 131, 0.18);
  top: 45%;
  right: 15%;
  animation-delay: -14s;
  animation-duration: 18s;
}

@keyframes orb-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.08); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 0.08s);
}

.reveal.reveal-delay-1 { transition-delay: 0.1s; }
.reveal.reveal-delay-2 { transition-delay: 0.2s; }
.reveal.reveal-delay-3 { transition-delay: 0.3s; }
.reveal.reveal-delay-4 { transition-delay: 0.4s; }

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(243, 252, 241, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.4s;
}

.header.scrolled {
  border-color: rgba(187, 203, 187, 0.6);
  box-shadow: 0 8px 32px rgba(22, 29, 23, 0.06);
  background: rgba(243, 252, 241, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s var(--ease-spring);
}

.logo:hover { transform: scale(1.02); }

.logo-img {
  width: 44px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(46, 204, 113, 0.3));
  transition: filter 0.3s, transform 0.3s var(--ease-spring);
  flex-shrink: 0;
}

.logo:hover .logo-img {
  filter: drop-shadow(0 6px 20px rgba(46, 204, 113, 0.45));
  transform: rotate(-3deg) scale(1.05);
}

.logo-img--sm {
  width: 36px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.25s;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.35s var(--ease-out);
}

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

.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(46, 204, 113, 0.35);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(46, 204, 113, 0.45) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

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

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid rgba(46, 204, 113, 0.25);
  box-shadow: 0 2px 12px rgba(46, 204, 113, 0.1);
  backdrop-filter: blur(8px);
}

.badge::before {
  content: '';
  width: 8px;
  height: 8px;
  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: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 4.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.35s var(--ease-out);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s var(--ease-spring);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #25b865 50%, var(--primary-dark) 100%);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 6px 24px rgba(46, 204, 113, 0.4);
}

.btn-primary:hover {
  background-position: 100% 100%;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(46, 204, 113, 0.45);
}

.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(187, 203, 187, 0.5);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  width: fit-content;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary-dark);
}

.stat span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

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

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.hero-logo-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.phone-mockup {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.phone-frame {
  width: 290px;
  background: linear-gradient(145deg, #2a2a2a 0%, #111 100%);
  border-radius: 40px;
  padding: 14px;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255,255,255,0.08) inset,
    var(--shadow-glow);
  animation: phone-float 7s var(--ease-out) infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotateY(-6deg) rotateX(3deg); }
  50% { transform: translateY(-16px) rotateY(-4deg) rotateX(2deg); }
}

.phone-notch {
  width: 88px;
  height: 7px;
  background: #222;
  border-radius: 4px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: var(--background);
  border-radius: 30px;
  padding: 22px 18px;
  min-height: 440px;
  overflow: hidden;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary-dark);
  margin-bottom: 22px;
}

.app-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: contain;
}

.app-card {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateX(20px);
  animation: card-slide-in 0.7s var(--ease-out) forwards;
  animation-delay: calc(0.6s + var(--i, 0) * 0.15s);
}

@keyframes card-slide-in {
  to { opacity: 1; transform: translateX(0); }
}

.app-card--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
}

.app-card--primary .app-card-label { opacity: 0.9; color: rgba(255,255,255,0.85); }

.app-card--accent {
  border-color: transparent;
  border-left: 4px solid var(--secondary);
  background: linear-gradient(90deg, rgba(0,100,151,0.06) 0%, var(--card) 40%);
}

.app-card-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 600;
}

.app-card strong {
  display: block;
  font-size: 1.0625rem;
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.app-balance {
  font-size: 1.375rem !important;
  color: var(--primary-dark);
}

.app-progress {
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  margin: 10px 0 8px;
  overflow: hidden;
}

.app-progress-bar {
  height: 100%;
  background: rgba(255,255,255,0.9);
  border-radius: 4px;
  animation: progress-fill 1.5s var(--ease-out) 1.2s forwards;
  width: 0 !important;
}

@keyframes progress-fill {
  to { width: 86% !important; }
}

.app-poll {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.poll-yes, .poll-no {
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.poll-yes { background: rgba(46, 204, 113, 0.2); color: var(--primary-dark); }
.poll-no { background: rgba(186, 26, 26, 0.1); color: #BA1A1A; }

/* Features */
.features {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--card) 0%, rgba(255,255,255,0.6) 100%);
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.2vw, 2.375rem);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.65;
}

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

.feature-card {
  background: var(--background);
  border: 1px solid rgba(187, 203, 187, 0.6);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.35s,
    background 0.35s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(22, 29, 23, 0.1);
  border-color: rgba(46, 204, 113, 0.35);
  background: #fff;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease-spring);
}

.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-4deg); }

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

.feature-icon--green {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(46, 204, 113, 0.08) 100%);
  color: var(--primary-dark);
}

.feature-icon--blue {
  background: linear-gradient(135deg, rgba(0, 100, 151, 0.15) 0%, rgba(0, 100, 151, 0.06) 100%);
  color: var(--secondary);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* Steps */
.steps {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--primary-dark) 0%, #003d24 50%, #004d2e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.steps::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(46, 204, 113, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(74, 225, 131, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.section-head--light { position: relative; }
.section-head--light .section-tag { color: var(--primary-light); }
.section-head--light h2 { color: #fff; }

.steps-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}

.step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-light);
  transition: transform 0.4s var(--ease-spring), background 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
}

.step:hover .step-num {
  transform: scale(1.12);
  background: rgba(46, 204, 113, 0.25);
  box-shadow: 0 0 32px rgba(46, 204, 113, 0.4);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.step p {
  font-size: 0.9375rem;
  opacity: 0.88;
  line-height: 1.6;
}

/* Download */
.download {
  padding: 120px 0;
}

.download-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  background: var(--card);
  border: 1px solid rgba(187, 203, 187, 0.5);
  border-radius: 28px;
  padding: 64px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.download-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.12) 0%, transparent 65%);
  top: -100px;
  right: -80px;
  pointer-events: none;
}

.download-content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.download-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.download-content > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.65;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
  min-width: 168px;
  border: 1px solid rgba(255,255,255,0.08);
}

.store-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.store-btn svg { width: 30px; height: 30px; flex-shrink: 0; }

.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 600;
  font-size: 1rem;
}

.store-btn small {
  font-size: 0.625rem;
  font-weight: 400;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.download-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.download-note a {
  color: var(--secondary);
  font-weight: 600;
  transition: color 0.2s;
}

.download-note a:hover { color: var(--primary-dark); }

.download-visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: min(100%, 380px);
}

.download-panel {
  background: linear-gradient(155deg, #f8fff6 0%, #eef9eb 50%, #e4f5e0 100%);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    0 16px 48px rgba(46, 204, 113, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.download-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(46, 204, 113, 0.15);
}

.download-panel-icon {
  width: 44px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(46, 204, 113, 0.3));
  flex-shrink: 0;
}

.download-panel-header strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.download-panel-header span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.download-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.download-highlights li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(187, 203, 187, 0.4);
  border-radius: var(--radius-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.3s;
}

.download-highlights li:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(22, 29, 23, 0.06);
  border-color: rgba(46, 204, 113, 0.35);
}

.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg { width: 22px; height: 22px; }

.highlight-icon--green {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.22) 0%, rgba(46, 204, 113, 0.08) 100%);
  color: var(--primary-dark);
}

.highlight-icon--blue {
  background: linear-gradient(135deg, rgba(0, 100, 151, 0.16) 0%, rgba(0, 100, 151, 0.06) 100%);
  color: var(--secondary);
}

.download-highlights li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.download-highlights li span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.download-panel-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.panel-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.panel-tag--outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid rgba(46, 204, 113, 0.45);
  box-shadow: none;
}

/* Footer */
.footer {
  padding: 56px 0 36px;
  border-top: 1px solid rgba(187, 203, 187, 0.5);
  background: rgba(255,255,255,0.5);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.logo--footer { margin-bottom: 10px; }

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 300px;
  line-height: 1.6;
}

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

.footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.25s, transform 0.25s;
}

.footer-links a:hover {
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding-top: 20px;
  border-top: 1px solid rgba(187, 203, 187, 0.4);
}

.footer-copy a {
  color: var(--primary-dark);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-copy a:hover { color: var(--primary); }

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

  .reveal { opacity: 1; transform: none; }
  .phone-mockup { transition: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { margin-inline: auto; }
  .hero-visual { order: -1; }
  .phone-frame { animation: phone-float-mobile 6s var(--ease-out) infinite; }
  @keyframes phone-float-mobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-list { grid-template-columns: 1fr; gap: 48px; }
  .steps-list::before { display: none; }
  .download-inner {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }
  .download-content > p { margin-inline: auto; }
  .store-buttons { justify-content: center; }
  .download-visual { width: 100%; max-width: 420px; margin-inline: auto; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.35s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta { text-align: center; width: 100%; }

  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .stat-divider { display: none; }
  .download-inner { padding: 40px 24px; }
  .download-panel { padding: 24px 20px; }
}
