/* ═══════════════════════════════════════════════════════════════
   main.css
   Variables CSS, reset, utilitaires, layout global, loading screen
   Topps Chrome F1 2025 — Collection Tracker
═══════════════════════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --header-h: 56px; /* Hauteur nav-top */
  /* Surfaces dark */
  --bg:      #06080d;
  --s1:      #0b0e17;
  --s2:      #10141f;
  --s3:      #161b28;
  --s4:      #1c2232;
  /* Bordures */
  --border:  #1e2535;
  --border2: #273047;
  /* Couleurs */
  --red:     #e8003d;
  --orange:  #ff5500;
  --green:   #00e676;
  --gold:    #ffc107;
  --blue:    #0ea5e9;
  /* Texte */
  --t1:      #e8edf8;
  --t2:      #a8b4cc;
  --t3:      #5a6a88;
  --text:    #e8edf8;
  --sub:     #5a6a88;
  --dim:     #2d3a52;
  /* Header */
  --header-bg: rgba(6, 8, 13, 0.92);
  /* Carte */
  --card-bg:     #0b0e17;
  --card-border: #1e2535;
  /* Ombres & transitions */
  --shadow:    0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --transition: 0.18s ease;
  /* Rayons */
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

/* ─── Mode jour ─── */
[data-theme="light"] {
  --bg:      #f0f2f7;
  --s1:      #ffffff;
  --s2:      #f5f7fc;
  --s3:      #eaeef5;
  --s4:      #e0e5ef;
  --border:  #d4dae8;
  --border2: #c2cad8;
  --t1:      #0f1623;
  --t2:      #3d4a62;
  --t3:      #8a96ad;
  --text:    #0f1623;
  --sub:     #8a96ad;
  --dim:     #c8d0df;
  --header-bg:   rgba(255, 255, 255, 0.94);
  --card-bg:     #ffffff;
  --card-border: #d4dae8;
  --shadow:    0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

/* ─── Fond ambiant ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(232, 0, 61, 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(14, 165, 233, 0.04), transparent);
}

[data-theme="light"] body::before {
  background-image:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(232, 0, 61, 0.03), transparent),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(14, 165, 233, 0.02), transparent);
}

/* ─── App shell ─── */
#app {
  display: block;
  position: relative;
  z-index: 1;
}

/* Le contenu principal (cartes, onglets) */
#appMain {
  display: block;
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 24px 80px;
  width: 100%;
}

/* ─── Loading screen ─── */
#loading {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.loading-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--t1), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loading-bar {
  width: 200px;
  height: 3px;
  background: var(--s3);
  border-radius: 2px;
  overflow: hidden;
}

.loading-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 2px;
  animation: loadAnim 1.5s ease-in-out infinite;
}

.spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--red);
  animation: spin 0.8s linear infinite;
}

.loading-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t3);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes loadAnim {
  0%   { width: 0; margin-left: 0; }
  50%  { width: 60%; margin-left: 20%; }
  100% { width: 0; margin-left: 100%; }
}

/* ─── Toast ─── */
#toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--s3);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--t1);
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
#toast.ok   { border-color: rgba(0, 230, 118, 0.4); color: var(--green); }
#toast.err  { border-color: rgba(232, 0, 61, 0.4);  color: var(--red); }

/* ─── Utilitaires ─── */
.u-hidden    { display: none; }
.u-flex-1    { flex: 1; }
.u-disabled  { opacity: 0.4; pointer-events: none; }
.text-accent { color: var(--t2); }

/* ─── Progress ─── */
.progress-section {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.progress-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t3);
  white-space: nowrap;
}

.progress-track {
  flex: 1;
  height: 5px;
  background: var(--s3);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #00c853);
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.progress-pct {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--t1);
  flex-shrink: 0;
}

/* ─── Section ─── */
.section { margin-bottom: 32px; }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* ─── Tabs ─── */
.tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 18px;
  border: none;
  background: none;
  color: var(--t3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-btn:hover { color: var(--t2); }
.tab-btn.active { color: var(--red); border-bottom-color: var(--red); }

.tab-cnt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--s2);
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 0.55rem;
  margin-left: 5px;
  color: var(--t3);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
}

.tab-btn.active .tab-cnt {
  background: rgba(232, 0, 61, 0.12);
  color: var(--red);
}

/* ─── File input caché ─── */
.file-hidden { display: none; }

/* ─── États initiaux (cachés au chargement — JS gère l'affichage) ─── */
#landingScreen        { display: none; }
#landingInviteWrap    { display: none; }
#authScreen           { display: none; }
#formRegister         { display: none; }
#paneInserts          { display: none; }
#paneVariations       { display: none; }
#paneCommunity        { display: none; }
#paneCustom           { display: none; }
#composerPostType     { display: none; }
#composerCardPicker   { display: none; }
#composerPhotoInput   { display: none; }
#mPhotoImg            { display: none; }
#adminEditForm        { display: none; margin-top: 16px; }
#subCancelBtn         { display: none; }

/* ─── Panes (onglets de contenu) — base visible par défaut ─── */
#paneBase      { display: block; }
#paneInserts   { display: none; }
#paneVariations{ display: none; }
#paneCustom    { display: none; }
#paneCommunity { display: none; }


/* ═══════════════════════════════════════════════════════════════
   SCROLLBARS CUSTOM — Thème F1 Chrome 2025
   Webkit (Chrome, Safari, Edge) + Firefox
═══════════════════════════════════════════════════════════════ */

/* ── Global page ── */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

/* ── Webkit global ── */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent) 0%, #ff6b35 100%);
  border-radius: 99px;
  border: 1px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff3a1a 0%, var(--accent) 100%);
  background-clip: padding-box;
}
::-webkit-scrollbar-corner {
  background: transparent;
}

/* ── Modal (carte détail) — scrollbar encore plus fine ── */
.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-track { background: var(--s2); border-radius: 0 18px 18px 0; }
.modal::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent) 0%, #ff6b35 100%);
  border-radius: 99px;
}
.modal { scrollbar-width: thin; scrollbar-color: var(--accent) var(--s2); }

/* ── Admin panel ── */
.admin-panel::-webkit-scrollbar { width: 4px; }
.admin-panel::-webkit-scrollbar-track { background: var(--s2); border-radius: 0 18px 18px 0; }
.admin-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #9b59b6 0%, var(--accent) 100%);
  border-radius: 99px;
}
.admin-panel { scrollbar-width: thin; scrollbar-color: #9b59b6 var(--s2); }

/* ── Admin card list ── */
.admin-card-list::-webkit-scrollbar { width: 3px; }
.admin-card-list::-webkit-scrollbar-track { background: transparent; }
.admin-card-list::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 99px;
}
.admin-card-list { scrollbar-width: thin; scrollbar-color: var(--border2) transparent; }

/* ── Community feed ── */
.community-feed::-webkit-scrollbar { width: 4px; }
.community-feed::-webkit-scrollbar-track { background: transparent; }
.community-feed::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3b82f6 0%, #6366f1 100%);
  border-radius: 99px;
}
.community-feed { scrollbar-width: thin; scrollbar-color: #3b82f6 transparent; }

/* ── Composer card results dropdown ── */
.composer-card-results::-webkit-scrollbar { width: 3px; }
.composer-card-results::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 99px;
}
.composer-card-results { scrollbar-width: thin; scrollbar-color: var(--accent) transparent; }

/* ── Filter drawer (mobile) ── */
.filter-drawer::-webkit-scrollbar { width: 3px; }
.filter-drawer::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 99px;
}
.filter-drawer { scrollbar-width: thin; scrollbar-color: var(--accent) transparent; }

/* ── Offer / Sub panels ── */
.offer-panel::-webkit-scrollbar,
.sub-panel::-webkit-scrollbar { width: 4px; }
.offer-panel::-webkit-scrollbar-thumb,
.sub-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f59e0b 0%, var(--accent) 100%);
  border-radius: 99px;
}
.offer-panel { scrollbar-width: thin; scrollbar-color: #f59e0b transparent; }
.sub-panel   { scrollbar-width: thin; scrollbar-color: #f59e0b transparent; }

/* ── Tabs bar horizontal scroll ── */
.tabs::-webkit-scrollbar { height: 0; display: none; }

/* ── Migration log ── */
#migrationLog::-webkit-scrollbar { width: 3px; }
#migrationLog::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 99px;
}
#migrationLog { scrollbar-width: thin; scrollbar-color: var(--green) transparent; }


/* ── Footer légal ── */
.app-legal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 24px;
  font-size: 0.7rem;
  color: var(--t3);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.app-legal-footer a {
  color: var(--t3);
  text-decoration: none;
  transition: color 0.15s;
}
.app-legal-footer a:hover { color: var(--t2); }
.app-legal-footer span { opacity: 0.4; }

/* ═══════════════════════════════════════════════════════
   LANDING PAGE — Design Modern Light
═══════════════════════════════════════════════════════ */

#landingScreen {
  min-height: 100vh;
  background: #ffffff;
  overflow-x: hidden;
  font-family: 'Barlow', sans-serif;
  color: #1a1a2e;
}

/* ── Navbar ── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.lp-nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: .88rem;
  font-weight: 900;
  color: #1a1a2e;
  letter-spacing: .08em;
}
.lp-nav-logo small {
  display: block;
  font-size: .34rem;
  letter-spacing: .25em;
  color: rgba(0,0,0,.35);
  margin-top: 2px;
}
.lp-nav-actions { display: flex; align-items: center; gap: 10px; }
.lp-nav-login {
  background: transparent;
  border: 1px solid rgba(0,0,0,.15);
  color: #444;
  padding: 8px 20px;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.lp-nav-login:hover { border-color: #e8003d; color: #e8003d; }
.lp-nav-register {
  background: #e8003d;
  border: none;
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 2px 12px rgba(232,0,61,.25);
}
.lp-nav-register:hover { background: #c8002f; box-shadow: 0 4px 20px rgba(232,0,61,.35); transform: translateY(-1px); }

/* ── Hero ── */
.lp-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lp-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(232,0,61,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,0,61,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.lp-hero-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232,0,61,.06) 0%, transparent 70%);
  z-index: 2;
}
.lp-hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.lp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.06;
  filter: saturate(0.3);
}
.lp-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.1) 0%, rgba(248,249,255,.8) 100%);
}
.lp-hero-content {
  position: relative;
  max-width: 760px;
  z-index: 3;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,0,61,.07);
  border: 1px solid rgba(232,0,61,.18);
  color: #e8003d;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.lp-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.lp-hero-accent { color: #e8003d; }
.lp-hero-sub {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 36px;
}
.lp-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.lp-cta-primary {
  background: #e8003d;
  color: #fff;
  border: none;
  padding: 15px 36px;
  border-radius: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(232,0,61,.3);
}
.lp-cta-primary:hover { background: #c8002f; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,0,61,.4); }
.lp-cta-secondary {
  background: #fff;
  color: #444;
  border: 1.5px solid #ddd;
  padding: 15px 28px;
  border-radius: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.lp-cta-secondary:hover { border-color: #e8003d; color: #e8003d; }
.lp-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 18px 32px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.lp-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.lp-stat-n {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a1a2e;
}
.lp-stat-l { font-size: .7rem; color: #999; letter-spacing: .06em; text-transform: uppercase; }
.lp-stat-sep { width: 1px; height: 36px; background: #eee; }

/* ── Bande circuit ── */
.lp-circuit-band {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.lp-circuit-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.7) brightness(0.75);
}
.lp-circuit-band-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,.1) 30%, rgba(255,255,255,.1) 70%, rgba(255,255,255,.7) 100%);
}
.lp-circuit-quote {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(.9rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: .1em;
  text-align: center;
  padding: 0 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}

/* ── Features ── */
.lp-features {
  padding: 100px 48px;
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
}
.lp-section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 56px;
}
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-feature-card {
  background: #f8f9ff;
  border: 1px solid #eef0f8;
  border-radius: 20px;
  padding: 32px 28px;
  transition: all .25s;
}
.lp-feature-card:hover {
  border-color: rgba(232,0,61,.2);
  box-shadow: 0 8px 32px rgba(232,0,61,.08);
  transform: translateY(-3px);
  background: #fff;
}
.lp-feature-premium {
  border-color: rgba(255,152,0,.25);
  background: linear-gradient(135deg, #fffbf0, #fff8e8);
}
.lp-feature-premium:hover {
  border-color: rgba(255,152,0,.4);
  box-shadow: 0 8px 32px rgba(255,152,0,.12);
}
.lp-feature-icon { font-size: 2rem; margin-bottom: 14px; }
.lp-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.lp-feature-desc { font-size: .84rem; color: #777; line-height: 1.65; }

/* ── CTA section ── */
.lp-cta-section {
  padding: 80px 24px 100px;
  text-align: center;
  background: #f8f9ff;
}
.lp-cta-box {
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 28px;
  padding: 56px 40px;
  box-shadow: 0 8px 48px rgba(0,0,0,.07);
}
.lp-cta-box h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #1a1a2e;
  margin-bottom: 14px;
}
.lp-cta-box p { color: #888; font-size: .92rem; margin-bottom: 32px; line-height: 1.7; }

/* ── Footer ── */
.lp-footer {
  border-top: 1px solid #eee;
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  background: #fff;
}
.lp-footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: .78rem;
  font-weight: 900;
  color: #bbb;
  letter-spacing: .1em;
}
.lp-footer-logo small { display: block; font-size: .32rem; letter-spacing: .25em; margin-top: 3px; }
.lp-footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.lp-footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: .8rem;
  transition: color .15s;
}
.lp-footer-links a:hover { color: #e8003d; }
.lp-footer-copy { font-size: .72rem; color: #ccc; }

@media (max-width: 900px) {
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-nav { padding: 0 24px; }
  .lp-features { padding: 80px 24px; }
}
@media (max-width: 600px) {
  .lp-nav { padding: 0 16px; height: 56px; }
  .lp-nav-login { display: none; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-hero-stats { gap: 20px; padding: 16px 20px; }
  .lp-stat-n { font-size: 1.3rem; }
  .lp-hero { padding: 90px 20px 60px; }
}
