/* ============================================================
   POLARIS LEADS — SITE STYLES
   Shared across all pages. Imports design system tokens.
   ============================================================ */

@import url("./colors_and_type.css");

:root {
  --nav-h: 78px;
  --site-pad: 64px;
  /* === Unified page-wide gradient mode — all section backgrounds transparent === */
  --bg-deep:     transparent;
  --bg-green:    transparent;
  --bg-mix-in:   transparent;
  --bg-mix-out:  transparent;
  /* Subtle glow overlays still allowed for accent on some sections */
  --section-glow: radial-gradient(circle at 50% 0%, rgba(45,107,82,0.18), transparent 60%);
}

html {
  scroll-behavior: smooth;
  background: transparent;
}
body {
  background: transparent;
  min-height: 100vh;
  color: var(--fg-primary);
  overflow-x: hidden;
  position: relative;  /* stacking context root for body::before */
}
/* SINGLE source of truth for the page background: a viewport-fixed gradient
   that always fills the visible viewport exactly. No seam possible since it's
   the only gradient on the page. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(135deg,
    #1f4a3c 0%,
    #1a3d32 18%,
    #132a24 42%,
    #0f2218 68%,
    #0a1612 86%,
    #060a08 100%
  );
}
[data-screen-label] { scroll-margin-top: 100px; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ===== NAVBAR ===== */
.nav-wrap {
  position: sticky; top: 24px; z-index: 100;
  padding: 0 var(--site-pad);
}
.nav {
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(244,240,235,0.10);
  border-radius: 999px;
  padding: 12px 14px 12px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.30);
  max-width: 1320px; margin: 0 auto;
}
.nav .brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav .brand img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-links a {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(244,240,235,0.65); transition: color 200ms;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--fg-primary); }
.nav-links a.gold { color: var(--polaris-gold); }
.nav-links a.gold:hover { color: var(--polaris-gold-warm); }

.nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.pill {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 22px; border-radius: 999px; border: 0; cursor: pointer;
  transition: all 280ms var(--ease-out);
}
.pill-primary { background: var(--polaris-white-warm); color: var(--polaris-black-deep); }
.pill-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(244,240,235,0.18); }
.pill-ghost { background: transparent; color: var(--polaris-white-warm); border: 1px solid rgba(244,240,235,0.22); }
.pill-ghost:hover { border-color: rgba(244,240,235,0.45); }

/* mobile burger */
.burger { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--fg-primary); margin: 5px 0; transition: all 200ms; }

/* ===== BUTTONS ===== */
.btn {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 18px 32px; border: 0; border-radius: 8px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 280ms var(--ease-out);
  text-decoration: none;
}
.btn-primary { background: var(--polaris-white-warm); color: var(--polaris-black-deep); box-shadow: 0 4px 16px rgba(0,0,0,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.45); }
.btn-secondary {
  background: rgba(255,255,255,0.06); color: var(--polaris-white-warm);
  border: 1px solid rgba(244,240,235,0.22);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.10); border-color: rgba(244,240,235,0.40); transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, #C9A84C 0%, #E0C46C 50%, #C9A84C 100%);
  color: var(--polaris-black-deep);
  box-shadow: 0 8px 24px rgba(201,168,76,0.30);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.45); }
.btn-arrow { display: inline-block; transition: transform 280ms var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== LAYOUT PRIMITIVES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--site-pad); }
section { padding: 120px var(--site-pad); position: relative; }
.section-head { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: end; margin-bottom: 80px; }
.section-head.center { display: block; text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; margin-bottom: 80px; }
.section-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--polaris-green-accent); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--polaris-green-accent); }
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(40px, 5.6vw, 64px);
  font-weight: 700; letter-spacing: -3px; line-height: 0.95;
  color: var(--polaris-white-warm); margin: 0;
}
.section-head p { font-size: 17px; font-weight: 300; line-height: 1.7; color: rgba(244,240,235,0.65); max-width: 480px; margin: 0; }
.section-head.center p { margin: 16px auto 0; }

/* ===== EYEBROW & BADGE ===== */
.eyebrow-line {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(244,240,235,0.65); margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow-line::before { content: ""; width: 32px; height: 1px; background: var(--polaris-green-accent); }
.eyebrow-line.gold { color: var(--polaris-gold); }
.eyebrow-line.gold::before { background: var(--polaris-gold); }

.badge-dot {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(244,240,235,0.14);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(244,240,235,0.85);
  backdrop-filter: blur(20px);
}
.badge-dot .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #5fbf94;
  box-shadow: 0 0 0 4px rgba(95,191,148,0.18);
  animation: pulse 2s var(--ease-out) infinite;
}
.badge-dot.gold { border-color: var(--polaris-gold-border); }
.badge-dot.gold .dot { background: var(--polaris-gold); box-shadow: 0 0 0 4px rgba(201,168,76,0.18); }
.badge-dot.amber .dot { background: #E0C46C; box-shadow: 0 0 0 4px rgba(224,196,108,0.20); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(95,191,148,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(95,191,148,0.05); }
}

/* ===== HERO BASE ===== */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 80px) var(--site-pad) 140px;
  margin-top: calc(var(--nav-h) * -1);
  background: transparent;  /* unified body gradient shows through */
}
.hero::before {
  content: ""; position: absolute; left: -300px; top: 80px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(45,107,82,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.7'/></svg>");
}
.hero-inner { max-width: 1280px; margin: 0 auto; padding-top: 80px; position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 800; letter-spacing: -4px; line-height: 0.92;
  color: var(--polaris-white-warm); margin: 0 0 28px;
  max-width: 12ch;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; position: relative; }
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px;
  height: 14px; background: rgba(45,107,82,0.45); z-index: -1; border-radius: 2px;
}
.hero p.lead {
  font-size: 19px; font-weight: 300; line-height: 1.65;
  color: rgba(244,240,235,0.75); max-width: 540px; margin: 0 0 40px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* hero stats */
.hero-stats {
  display: flex; gap: 56px; margin-top: 64px; padding-top: 32px;
  border-top: 1px solid rgba(244,240,235,0.10);
  flex-wrap: wrap;
}
.stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 700; letter-spacing: -1.2px; color: var(--polaris-white-warm); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(244,240,235,0.45); margin-top: 8px; }

/* ===== SURFACES ===== */
.surface-glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(244,240,235,0.10);
  border-radius: 16px;
}

/* ===== LEAD CARD (re-used everywhere) ===== */
.lead-card {
  background: rgba(255,255,255,0.04); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(244,240,235,0.14);
  border-radius: 20px; padding: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.lead-card.tilt { transform: rotate(-1.2deg); }
.lead-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 8px; }
.lead-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.lead-id { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; color: rgba(244,240,235,0.45); }
.badge {
  font-family: var(--font-body); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; padding: 5px 10px; border-radius: 999px; text-transform: uppercase;
}
.b-exclusive { background: var(--polaris-white-warm); color: var(--polaris-black-deep); }
.b-verified { background: rgba(45,107,82,0.20); color: #5fbf94; border: 1px solid rgba(45,107,82,0.50); }
.b-coming { background: rgba(201,168,76,0.12); color: var(--polaris-gold); border: 1px solid var(--polaris-gold-border); }
.lead-person { display: flex; gap: 16px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid rgba(244,240,235,0.10); }
.avatar { width: 52px; height: 52px; border-radius: 999px; background: linear-gradient(135deg, #2d6b52, #132a24); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--polaris-white-warm); flex-shrink: 0; }
.lead-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -0.4px; color: var(--polaris-white-warm); }
.lead-contact { font-size: 12px; font-weight: 300; color: rgba(244,240,235,0.65); margin-top: 2px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.lead-contact .verified-pip { color: #5fbf94; font-weight: 600; letter-spacing: 0.5px; }
.lead-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; padding: 20px 0; border-bottom: 1px solid rgba(244,240,235,0.10); }
.lead-stat-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(244,240,235,0.45); margin-bottom: 4px; }
.lead-stat-value { font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: -0.3px; color: var(--polaris-white-warm); }
.lead-project { font-size: 13px; font-weight: 300; line-height: 1.6; color: rgba(244,240,235,0.85); padding-top: 16px; }

/* ===== CONVERSION RAIL (4 metrics) ===== */
.convert-rail {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(244,240,235,0.10);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.convert-cell { padding: 36px 32px; border-right: 1px solid rgba(244,240,235,0.08); }
.convert-cell:last-child { border-right: 0; }
.convert-cell .num { font-family: var(--font-display); font-size: 48px; font-weight: 700; letter-spacing: -2px; color: var(--polaris-white-warm); line-height: 1; }
.convert-cell .num small { font-size: 24px; font-weight: 600; color: rgba(244,240,235,0.55); }
.convert-cell .label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(244,240,235,0.55); margin-top: 12px; }
.convert-cell .desc { font-size: 13px; font-weight: 300; color: rgba(244,240,235,0.65); margin-top: 8px; line-height: 1.5; }

/* ===== CHANNELS (3 cards) ===== */
.channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ch-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(244,240,235,0.10);
  border-radius: 16px; padding: 32px;
  transition: all 280ms var(--ease-out);
  position: relative;
}
.ch-card:hover { border-color: rgba(244,240,235,0.30); transform: translateY(-2px); }
.ch-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(45,107,82,0.20); border: 1px solid rgba(45,107,82,0.40);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.ch-icon svg { stroke: var(--polaris-white-warm); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ch-card h4 { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.4px; color: var(--polaris-white-warm); margin: 0 0 10px; }
.ch-card p { font-size: 14px; font-weight: 300; line-height: 1.65; color: rgba(244,240,235,0.65); margin: 0 0 20px; }
.ch-row { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid rgba(244,240,235,0.10); }
.ch-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(244,240,235,0.45); }
.ch-status { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #5fbf94; display: flex; align-items: center; gap: 6px; }
.ch-status .dot { width: 6px; height: 6px; border-radius: 999px; background: #5fbf94; }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(244,240,235,0.10); padding: 24px 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 24px; }
.faq-q-text { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -0.4px; color: var(--polaris-white-warm); flex: 1; line-height: 1.3; text-wrap: balance; }
.faq-plus {
  width: 28px; height: 28px; border: 1px solid rgba(244,240,235,0.30);
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
  color: rgba(244,240,235,0.70); font-size: 16px; font-weight: 300;
  transition: all 280ms var(--ease-out); flex-shrink: 0;
}
.faq-item.open .faq-plus { background: var(--polaris-white-warm); color: var(--polaris-black-deep); border-color: var(--polaris-white-warm); transform: rotate(45deg); }
.faq-a { font-size: 15px; font-weight: 300; line-height: 1.7; color: rgba(244,240,235,0.75); margin-top: 16px; max-width: 720px; }
.faq-item:not(.open) .faq-a { display: none; }

/* ===== FINAL CTA — D: green → dark (clôture narrative) ===== */
.final-cta {
  text-align: center;
  background: var(--bg-mix-out);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(45,107,82,0.20), transparent 65%);
  pointer-events: none;
}
.final-cta::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.7'/></svg>");
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 {
  font-family: var(--font-display); font-size: clamp(48px, 7vw, 88px);
  font-weight: 700; letter-spacing: -3.5px; line-height: 0.95;
  color: var(--polaris-white-warm); margin: 0 auto 24px;
  max-width: 14ch; text-wrap: balance;
}
.final-cta .lead-sub { font-size: 19px; font-weight: 300; line-height: 1.6; color: rgba(244,240,235,0.70); max-width: 600px; margin: 0 auto 40px; }
.final-cta .actions { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }
.final-cta .reassure {
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(244,240,235,0.45);
  display: inline-flex; gap: 24px; flex-wrap: wrap; justify-content: center;
}
.final-cta .reassure span { display: inline-flex; align-items: center; gap: 8px; }
.final-cta .reassure span::before {
  content: ""; width: 4px; height: 4px; border-radius: 999px;
  background: var(--polaris-green-accent);
  box-shadow: 0 0 0 4px rgba(45,107,82,0.20);
}

/* ===== FOOTER ===== */
footer.site-footer {
  background: var(--polaris-black-deep);
  padding: 96px var(--site-pad) 32px;
  border-top: 1px solid rgba(244,240,235,0.10);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,240,235,0.10);
}
.footer-brand img { height: 64px; width: auto; display: block; margin-bottom: 24px; }
.footer-brand p { font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(244,240,235,0.65); max-width: 320px; margin: 0; }
.footer-col h4 { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(244,240,235,0.45); margin: 0 0 18px; }
.footer-col a { display: block; font-size: 14px; font-weight: 300; color: rgba(244,240,235,0.85); padding: 5px 0; transition: color 200ms; }
.footer-col a:hover { color: var(--polaris-white-warm); }
.footer-col a.gold { color: var(--polaris-gold); }
.footer-col a.gold:hover { color: var(--polaris-gold-warm); }
.footer-legal {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding-top: 24px; font-size: 12px; font-weight: 300;
  color: rgba(244,240,235,0.45);
}
.footer-legal-meta { display: inline-flex; gap: 18px; flex-wrap: wrap; }
.footer-legal-meta span { display: inline-flex; align-items: center; gap: 8px; }
.footer-legal-meta span::before {
  content: ""; width: 3px; height: 3px; border-radius: 999px;
  background: rgba(244,240,235,0.30);
}

/* ===== ANIMATIONS ===== */

/* 1. Reveal on scroll */
.reveal { opacity: 0; transform: translateY(40px) scale(0.97); filter: blur(8px); transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* 2. Shimmer on primary CTA */
.btn.btn-primary { position: relative; overflow: hidden; }
.btn.btn-primary::after { content: ''; position: absolute; top: 0; left: -80%; width: 55%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent); animation: btn-shimmer 2.8s ease-in-out infinite; pointer-events: none; }
@keyframes btn-shimmer { 0%, 25% { left: -80%; } 75%, 100% { left: 140%; } }

/* 3. Social proof toast */
.lead-toast { position: fixed; bottom: 28px; left: 28px; z-index: 8000; display: flex; align-items: center; gap: 12px; background: rgba(10,10,10,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(244,240,235,0.14); border-radius: 14px; padding: 14px 18px; max-width: 300px; transform: translateY(16px); opacity: 0; transition: opacity 380ms, transform 380ms var(--ease-out); pointer-events: none; }
.lead-toast.show { opacity: 1; transform: translateY(0); }
.lead-toast-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--polaris-green-accent); flex-shrink: 0; box-shadow: 0 0 8px rgba(45,107,82,0.8); animation: toast-pulse 2s ease-in-out infinite; }
@keyframes toast-pulse { 0%, 100% { box-shadow: 0 0 8px rgba(45,107,82,0.8); } 50% { box-shadow: 0 0 16px rgba(45,107,82,1); } }
.lead-toast-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--polaris-white-warm); line-height: 1.35; }
.lead-toast-text span { font-size: 11px; color: rgba(244,240,235,0.50); letter-spacing: 0.3px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-grid, .section-head, .faq-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .channels-grid, .values-grid, .pricing-grid, .pillars-grid { grid-template-columns: 1fr !important; }
  .convert-rail { grid-template-columns: 1fr 1fr; }
  .convert-cell { border-right: 0; border-bottom: 1px solid rgba(244,240,235,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tier-grid-5 { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 760px) {
  :root { --site-pad: 20px; }
  .nav-links, .nav-actions { display: none; }
  .burger { display: block; }
  section { padding: 64px var(--site-pad); }
  .hero { padding: calc(var(--nav-h) + 24px) var(--site-pad) 64px; }
  .hero-inner { padding-top: 24px; }
  .convert-rail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tier-grid-5 { grid-template-columns: 1fr !important; }

  /* === MOBILE TYPOGRAPHY — readable scale === */
  .hero h1 { font-size: clamp(40px, 11vw, 56px) !important; letter-spacing: -2.5px; max-width: 100%; line-height: 1; margin-bottom: 22px; }
  .hero h1 em::after { height: 10px; bottom: 4px; }
  .hero p.lead { font-size: 16px; margin-bottom: 32px; }

  /* Section h2 caps */
  section h2 { font-size: clamp(28px, 7vw, 44px) !important; letter-spacing: -1.5px; line-height: 1.05; }

  /* === HERO STATS — clean 2x2 grid === */
  .hero-stats { display: grid !important; grid-template-columns: 1fr 1fr; gap: 24px 20px; margin-top: 40px; padding-top: 28px; }
  .stat-num { font-size: 28px; letter-spacing: -1px; }
  .stat-label { font-size: 10px; letter-spacing: 1.5px; }

  /* Hero actions stack full-width */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* === ROI MINI — tighter padding === */
  .roi-band { padding: 56px 16px !important; }
  .roi-mini { padding: 24px 18px !important; gap: 24px; }
  .roi-band-head { margin-bottom: 32px; }

  /* === TIMELINE — reduce padding === */
  .timeline { padding-left: 44px; }
  .timeline-item .dot { left: -44px; width: 32px; height: 32px; font-size: 11px; }
  .timeline-item h4 { font-size: 18px; }

  /* === COMPARE TABLE — improve readability === */
  .compare-row, .compare-row.head { padding: 12px 12px !important; font-size: 11px !important; }
  .compare-row .feature { font-size: 12px; }

  /* === STATS STRIP — 2x2 grid, tighter === */
  .stats-strip { padding: 56px var(--site-pad) !important; }
  .stats-strip-grid .stat-num-big { font-size: 32px !important; }
  .stats-strip-grid .stat-lbl { font-size: 10px; letter-spacing: 1px; }

  /* === PROFILES — tighter cards === */
  .profile-card { padding: 28px 22px; }
  .profile-card h3 { font-size: 19px; }

  /* === PACK PRICING — readable === */
  .pack { padding: 32px 24px; }
  .pack-price { font-size: 48px; }
  .pack.featured { transform: none !important; }

  /* === FAQ — tighter === */
  .faq-q-text { font-size: 15px; }
  .faq-a { font-size: 14px; }

  /* === REVIEW CARDS — tighter === */
  .review-card { padding: 28px 24px; }

  /* === TRUST/REASSURE PILLS WRAP === */
  .reassure { flex-wrap: wrap; gap: 14px; }
  .reassure span { font-size: 10px; }

  /* === LEAD TOAST — hidden on mobile (intrusive + width artifacts) === */
  .lead-toast { display: none !important; }

  /* === Disable cursor trail and floating dots on mobile (perf + relevance) === */
  .cursor-trail { display: none !important; }
}

/* === Even smaller phones (iPhone SE etc.) === */
@media (max-width: 380px) {
  :root { --site-pad: 16px; }
  .hero h1 { font-size: 36px !important; }
  .pack-price { font-size: 42px; }
  .stat-num { font-size: 24px; }
  .compare-row, .compare-row.head { grid-template-columns: 1.4fr 1fr 0.9fr !important; padding: 10px 10px !important; }
}

/* ============================================
   MOBILE NAV DRAWER (burger menu)
   ============================================ */
@media (max-width: 760px) {
  /* When body.nav-mobile-open is set: full-screen overlay menu */
  body.nav-mobile-open { overflow: hidden; }
  /* CRITICAL: backdrop-filter creates a containing block for fixed-positioned
     descendants. We must neutralize it on the nav while the drawer is open,
     otherwise .nav-links with position:fixed is contained inside .nav instead
     of covering the viewport. */
  body.nav-mobile-open .nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }
  body.nav-mobile-open .nav-links {
    display: flex !important;
    position: fixed; inset: 0;
    background: rgba(10,16,13,0.96);
    backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
    z-index: 198;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 28px;
    animation: nav-drawer-in 320ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  body.nav-mobile-open .nav-links a {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--polaris-white-warm);
    padding: 6px 12px;
  }
  body.nav-mobile-open .nav-links a.gold { color: var(--polaris-gold); }
  body.nav-mobile-open .nav-actions {
    display: flex !important;
    position: fixed; left: 24px; right: 24px; bottom: 40px;
    z-index: 199;
  }
  body.nav-mobile-open .nav-actions .pill {
    flex: 1; text-align: center; padding: 18px 24px;
    font-size: 13px;
  }
  /* Burger morphs into X */
  body.nav-mobile-open .burger {
    position: fixed; top: 36px; right: 22px; z-index: 200;
  }
  body.nav-mobile-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.nav-mobile-open .burger span:nth-child(2) { opacity: 0; }
  body.nav-mobile-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  @keyframes nav-drawer-in {
    0% { opacity: 0; transform: translateY(-12px); }
    100% { opacity: 1; transform: translateY(0); }
  }
}

/* ============================================
   GLOBAL ANIMATIONS & UX ENHANCEMENTS
   ============================================ */

/* 1. Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--polaris-green-accent), #5fbf94);
  z-index: 9999;
  pointer-events: none;
  transition: width 80ms linear;
  box-shadow: 0 0 12px rgba(45,107,82,0.50);
}

/* 2. Magnetic buttons — base transition for smooth follow */
.btn-primary, .btn-gold, .pack-cta-primary, .modal-cta {
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms ease, background 260ms ease;
  will-change: transform;
}

/* 3. Cursor trail (desktop hero only) */
.cursor-trail {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(45,107,82,0.85), rgba(45,107,82,0));
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-trail.active { opacity: 1; }
}

/* 4. Floating decorative dots (hero background) */
.floating-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.floating-dot {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 999px;
  background: rgba(45,107,82,0.55);
  box-shadow: 0 0 8px rgba(45,107,82,0.45);
  animation: float-up 18s linear infinite;
}
.floating-dot.alt { background: rgba(244,240,235,0.30); box-shadow: 0 0 6px rgba(244,240,235,0.20); width: 2px; height: 2px; }
@keyframes float-up {
  0% { transform: translateY(110vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-20vh) translateX(40px); opacity: 0; }
}

/* 5. Scroll line — DISABLED (was creating vertical line through every section) */
.scroll-line { display: none !important; }

/* 6. Mobile sticky CTA bar */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(10,12,11,0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(244,240,235,0.10);
  padding: 12px 16px;
  z-index: 900;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-sticky-cta.show { transform: translateY(0); }
.mobile-sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 200ms ease;
}
.mobile-sticky-cta a:active { transform: scale(0.97); }
.mobile-sticky-cta a.primary {
  background: var(--polaris-white-warm);
  color: var(--polaris-black-deep);
}
.mobile-sticky-cta a.secondary {
  background: rgba(255,255,255,0.06);
  color: var(--polaris-white-warm);
  border: 1px solid rgba(244,240,235,0.18);
}

/* 7. Trust bar (under hero) */
.trust-bar {
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(244,240,235,0.08);
  border-bottom: 1px solid rgba(244,240,235,0.08);
  padding: 22px var(--site-pad);
  backdrop-filter: blur(20px);
}
.trust-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 32px 48px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(244,240,235,0.55);
}
.trust-bar-inner .trust-item {
  display: inline-flex; align-items: center; gap: 8px;
}
.trust-bar-inner .trust-item::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--polaris-green-accent);
  box-shadow: 0 0 8px rgba(45,107,82,0.60);
}
.trust-bar-inner .trust-sep {
  width: 1px; height: 16px; background: rgba(244,240,235,0.12);
}
@media (max-width: 760px) {
  .trust-bar-inner { gap: 16px 24px; font-size: 9.5px; letter-spacing: 1.5px; }
  .trust-bar-inner .trust-sep { display: none; }
}

/* 8. Pricing toggle visual haptic — flash on switch */
@keyframes price-flash {
  0% { color: var(--polaris-green-accent); transform: scale(1.06); }
  100% { color: var(--polaris-white-warm); transform: scale(1); }
}
.pack .price-value.flashing,
.pack .strike-value.flashing {
  animation: price-flash 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* 9. Hero parallax — base styles */
.parallax-target { transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1); will-change: transform; }

/* 10. Stagger entry for hero stats */
.hero-stats > div { opacity: 0; transform: translateY(12px); transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1); }
.hero-stats > div.in { opacity: 1; transform: translateY(0); }

/* 11. ROI band — centered, full-width section below hero */
.roi-band {
  background: var(--bg-mix-in);  /* C: dark → green (intro glow) */
  padding: 100px var(--site-pad);
  position: relative; overflow: hidden;
}
.roi-band::before {
  content: ""; position: absolute; inset: 0;
  background: var(--section-glow);
  pointer-events: none;
}
.roi-band .container { position: relative; z-index: 2; }
.roi-band-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.roi-band-head h2 {
  font-family: var(--font-display); font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700; letter-spacing: -2.5px; line-height: 1.0;
  color: var(--polaris-white-warm); margin: 16px 0 14px; text-wrap: balance;
}
.roi-band-head p {
  font-size: 16px; font-weight: 300; line-height: 1.65;
  color: rgba(244,240,235,0.65); margin: 0;
}
.roi-mini {
  max-width: 880px; margin: 0 auto;
  padding: 40px 48px;
  background: linear-gradient(160deg, rgba(45,107,82,0.12), rgba(45,107,82,0.03));
  border: 1px solid rgba(45,107,82,0.35);
  border-radius: 20px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
  box-shadow: 0 32px 72px rgba(0,0,0,0.40);
  backdrop-filter: blur(20px);
}
.roi-controls { display: flex; flex-direction: column; gap: 14px; }
.roi-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.roi-row label { font-size: 13px; font-weight: 500; color: rgba(244,240,235,0.75); letter-spacing: 0.3px; }
.roi-row .val { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--polaris-white-warm); }
.roi-mini input[type="range"] {
  width: 100%;
  -webkit-appearance: none; appearance: none;
  height: 4px; background: rgba(244,240,235,0.12); border-radius: 999px; outline: none;
}
.roi-mini input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--polaris-green-accent);
  cursor: pointer; border: 2px solid var(--polaris-white-warm);
  box-shadow: 0 0 16px rgba(45,107,82,0.55);
}
.roi-mini input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--polaris-green-accent); cursor: pointer;
  border: 2px solid var(--polaris-white-warm);
}
.roi-result {
  display: flex; flex-direction: column; gap: 20px;
  padding-left: 48px; border-left: 1px solid rgba(244,240,235,0.12);
  text-align: center;
}
.roi-result > div { display: flex; flex-direction: column; gap: 4px; }
.roi-result .num {
  font-family: var(--font-display); font-size: clamp(36px, 4vw, 48px); font-weight: 800; letter-spacing: -2px;
  background: linear-gradient(135deg, #5fbf94 0%, var(--polaris-green-accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.0;
}
.roi-result .lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(244,240,235,0.50); }
.roi-fineprint {
  text-align: center; max-width: 880px; margin: 24px auto 0;
  font-size: 11px; color: rgba(244,240,235,0.40); letter-spacing: 0.3px;
}
@media (max-width: 760px) {
  .roi-band { padding: 64px 20px; }
  .roi-mini { grid-template-columns: 1fr; gap: 32px; padding: 28px 24px; }
  .roi-result { padding-left: 0; padding-top: 28px; border-left: 0; border-top: 1px solid rgba(244,240,235,0.12); flex-direction: row; justify-content: space-around; }
}

/* 12. Compare table (Polaris vs concurrents) */
.compare-section {
  background: var(--bg-mix-out);  /* D: green → dark (exit) */
  position: relative; overflow: hidden;
}
.compare-section::before {
  content: ""; position: absolute; inset: 0;
  background: var(--section-glow);
  transform: scaleY(-1);
  pointer-events: none;
}
.compare-section .container { position: relative; z-index: 2; }
.compare-table {
  max-width: 1100px; margin: 0 auto;
  border: 1px solid rgba(244,240,235,0.10);
  border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(20px);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(244,240,235,0.06);
  font-size: 13px;
}
.compare-row:last-child { border-bottom: 0; }
.compare-row.head {
  background: rgba(255,255,255,0.04);
  font-family: var(--font-display); font-size: 12px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(244,240,235,0.65);
  padding: 22px 24px;
}
.compare-row.head .polaris-col {
  color: var(--polaris-green-accent); position: relative;
}
.compare-row.head .polaris-col::after {
  content: "✦"; margin-left: 6px; color: var(--polaris-green-accent);
}
.compare-row .feature { color: var(--polaris-white-warm); font-weight: 500; }
.compare-row .cell { text-align: center; color: rgba(244,240,235,0.70); }
.compare-row .cell.polaris-col { color: var(--polaris-green-accent); font-weight: 700; }
.compare-row .yes { color: var(--polaris-green-accent); font-size: 16px; }
.compare-row .no { color: rgba(244,240,235,0.30); font-size: 16px; }
@media (max-width: 1100px) {
  .compare-row, .compare-row.head { grid-template-columns: 1.5fr 1fr 1fr; padding: 14px 16px; font-size: 12px; }
  .compare-row .hide-mobile { display: none; }
}

/* 13. Timeline "Comment ça démarre" */
.timeline-section { background: var(--bg-green); }  /* A: green flat */
.timeline { max-width: 920px; margin: 0 auto; position: relative; padding-left: 56px; }
.timeline::before {
  content: ""; position: absolute; left: 18px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(180deg, var(--polaris-green-accent) 0%, rgba(45,107,82,0.10) 100%);
}
.timeline-item { position: relative; padding: 14px 0 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item .dot {
  position: absolute; left: -56px; top: 18px;
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--polaris-green-primary);
  border: 2px solid var(--polaris-green-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  color: var(--polaris-green-accent);
  box-shadow: 0 0 18px rgba(45,107,82,0.30);
}
.timeline-item .day-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--polaris-green-accent); margin-bottom: 6px;
}
.timeline-item h4 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: -0.5px; line-height: 1.2;
  color: var(--polaris-white-warm); margin: 0 0 10px;
}
.timeline-item p {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(244,240,235,0.70); margin: 0; max-width: 580px;
}

/* 14. Polaris en chiffres (live counters strip) */
.stats-strip {
  background: var(--bg-mix-in);  /* C: dark → green (live data feel) */
  padding: 80px var(--site-pad);
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: ""; position: absolute; inset: 0;
  background: var(--section-glow);
  pointer-events: none;
}
.stats-strip-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative; z-index: 2;
}
.stats-strip-grid .stat-block { text-align: center; }
.stats-strip-grid .stat-num-big {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800; letter-spacing: -2px; line-height: 1;
  background: linear-gradient(135deg, #5fbf94 0%, var(--polaris-green-accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.stats-strip-grid .stat-num-big .live-pulse {
  width: 8px; height: 8px; border-radius: 999px;
  background: #ff4444; margin-left: 6px;
  animation: live-pulse 1.6s ease-in-out infinite;
  align-self: center;
}
@keyframes live-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}
.stats-strip-grid .stat-lbl {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(244,240,235,0.55);
}
@media (max-width: 760px) {
  .stats-strip-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* 15. "Pour qui c'est" profiles */
.profiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.profile-card {
  padding: 36px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(244,240,235,0.10);
  border-radius: 16px;
  position: relative; overflow: hidden;
  transition: all 280ms var(--ease-out);
}
.profile-card.recommended {
  background: linear-gradient(160deg, rgba(45,107,82,0.14), rgba(45,107,82,0.02));
  border-color: rgba(45,107,82,0.45);
}
.profile-card:hover { transform: translateY(-4px); border-color: rgba(244,240,235,0.22); }
.profile-card .tag {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: var(--polaris-green-accent); color: var(--polaris-white-warm);
  margin-bottom: 20px;
}
.profile-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: -0.6px; line-height: 1.2;
  color: var(--polaris-white-warm); margin: 0 0 14px;
}
.profile-card p {
  font-size: 14px; font-weight: 300; line-height: 1.65;
  color: rgba(244,240,235,0.65); margin: 0 0 24px;
}
.profile-card .reco {
  padding-top: 18px; border-top: 1px solid rgba(244,240,235,0.10);
  font-size: 12px; color: rgba(244,240,235,0.55);
}
.profile-card .reco strong { color: var(--polaris-white-warm); font-weight: 600; }
@media (max-width: 1100px) { .profiles-grid { grid-template-columns: 1fr; } }

/* "Bien plus que des leads" 6-card grid — safe responsive */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1100px) {
  .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .bonus-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   AURORA — drifting ambient halos behind everything
   ============================================ */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Ensure all primary page content sits above the aurora.
   IMPORTANT: do NOT include .nav-wrap or [data-mount="nav"] here — they need
   their own position: sticky + z-index: 100 to stay on top while scrolling. */
body > section,
body > footer,
body > .legal-page-wrap,
.site-footer { position: relative; z-index: 1; }

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.50;
  mix-blend-mode: screen;
  will-change: transform;
}
.aurora-orb.o1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, #2d6b52 0%, transparent 70%);
  top: -120px; left: -160px;
  animation: aurora-drift-1 26s ease-in-out infinite;
}
.aurora-orb.o2 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, #4fa67c 0%, transparent 70%);
  top: 25%; right: -220px;
  animation: aurora-drift-2 32s ease-in-out infinite;
}
.aurora-orb.o3 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, #1a8a5f 0%, transparent 70%);
  top: 58%; left: 12%;
  animation: aurora-drift-3 28s ease-in-out infinite;
}
.aurora-orb.o4 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #3da876 0%, transparent 70%);
  bottom: -100px; right: 18%;
  animation: aurora-drift-4 36s ease-in-out infinite;
}
@keyframes aurora-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(90px, 70px) scale(1.10); }
}
@keyframes aurora-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-110px, 90px) scale(0.93); }
}
@keyframes aurora-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, -80px) scale(1.08); }
}
@keyframes aurora-drift-4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-90px, -60px) scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .aurora-orb { animation: none; }
}
@media (max-width: 760px) {
  .aurora-orb { filter: blur(70px); opacity: 0.35; }
  .aurora-orb.o1 { width: 380px; height: 380px; }
  .aurora-orb.o2 { width: 440px; height: 440px; }
  .aurora-orb.o3 { width: 360px; height: 360px; }
  .aurora-orb.o4 { width: 320px; height: 320px; }
}
