:root {
  --bg: #09090F;
  --bg-2: #0F0F1A;
  --bg-3: #141420;
  --fg: #F5F0E8;
  --fg-2: #A09890;
  --fg-3: #6B6560;
  --accent-red: #E5383B;
  --accent-blue: #1E3A8A;
  --accent-gold: #F5A623;
  --accent-green: #2ECC71;
  --border: rgba(229, 56, 59, 0.15);
  --border-bright: rgba(229, 56, 59, 0.35);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 32px;
  background: rgba(9, 9, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-2);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex: 1;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-link {
  font-size: 13px;
  color: var(--fg-2);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.2s;
  padding: 6px 12px;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  padding: 8px 20px;
  background: var(--accent-red);
  color: white;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #c22f32; transform: translateY(-1px); }

/* ── HERO — World Cup Stadium ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}

/* Stadium atmosphere background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    /* Dark gradient base */
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(30, 58, 138, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(229, 56, 59, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 90%, rgba(245, 166, 35, 0.12) 0%, transparent 50%),
    /* Dark base */
    #09090F;
}

/* Stadium light beams */
.hero-stadium-lights {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.stadium-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: light-pulse 6s ease-in-out infinite;
}
.stadium-light-1 { width: 400px; height: 400px; background: rgba(245, 166, 35, 0.8); top: -100px; left: 10%; animation-delay: 0s; }
.stadium-light-2 { width: 300px; height: 300px; background: rgba(255, 255, 255, 0.9); top: -60px; right: 15%; animation-delay: 2s; }
.stadium-light-3 { width: 200px; height: 200px; background: rgba(229, 56, 59, 0.6); bottom: 20%; left: 5%; animation-delay: 4s; }

/* Field lines */
.hero-field-lines {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 40%;
  background:
    linear-gradient(to bottom, transparent 0%, rgba(9,9,15,0.9) 100%),
    repeating-linear-gradient(
      to right,
      transparent,
      transparent 8%,
      rgba(229, 56, 59, 0.06) 8%,
      rgba(229, 56, 59, 0.06) 8.3%
    );
  pointer-events: none;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}

/* Grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229, 56, 59, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 56, 59, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

/* Floating WC orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float-orb 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb-1 { width: 300px; height: 300px; background: var(--accent-red); top: 15%; right: -80px; animation-delay: 0s; }
.hero-orb-2 { width: 200px; height: 200px; background: var(--accent-blue); bottom: 30%; left: -60px; animation-delay: 3s; }
.hero-orb-3 { width: 150px; height: 150px; background: var(--accent-gold); top: 40%; right: 20%; animation-delay: 5s; }

@keyframes light-pulse {
  0%, 100% { opacity: 0.12; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.1); }
}
@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* WC 2026 Badge */
.hero-wc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 6px 16px 6px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.hero-wc-badge svg { width: 16px; height: 16px; }

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-headline .highlight {
  background: linear-gradient(135deg, var(--accent-red) 0%, #c22f32 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subheadline */
.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.55;
  font-weight: 400;
}

/* Freshener showcase — real product renders */
.hero-fresheners {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-freshener-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-freshener-render {
  filter: drop-shadow(0 8px 32px rgba(229, 56, 59, 0.3));
  transition: transform 0.3s ease;
}
.hero-freshener-render:hover { transform: translateY(-6px) scale(1.05); }
.hero-freshener-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.hero-freshener-country {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-gold);
}

/* Scents row */
.hero-scent-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-scent-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.hero-scent-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  background: rgba(229, 56, 59, 0.12);
  color: var(--accent-red);
  border: 1px solid rgba(229, 56, 59, 0.2);
}

/* CTA Row */
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent-red);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(229, 56, 59, 0.35);
}
.btn-primary:hover {
  background: #c22f32;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(229, 56, 59, 0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: var(--fg-2);
  border: 1px solid rgba(160, 152, 144, 0.2);
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  border-color: rgba(229, 56, 59, 0.5);
  color: var(--fg);
  transform: translateY(-1px);
}

/* ── MANIFESTO — World Cup Edition ── */
.manifesto {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(229, 56, 59, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.manifesto-wc-icon {
  margin-bottom: 32px;
  opacity: 0.7;
}
.manifesto-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
  margin: 0 auto 40px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
  line-height: 1.2;
}
.manifesto-body p {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.manifesto-body p:last-child { margin-bottom: 0; }
.manifesto-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--fg);
  display: block;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── FEATURES ── */
.features {
  padding: 100px 32px;
  background: var(--bg);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(30, 58, 138, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.features-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.features-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.features-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.features-sub {
  font-size: 16px;
  color: var(--fg-2);
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.feature-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15,15,26,0.8) 0%, rgba(9,9,15,0.6) 100%);
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  backdrop-filter: blur(8px);
}
.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(229, 56, 59, 0.12);
}
.feature-icon {
  margin-bottom: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 56, 59, 0.1);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.feature-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* ── FLAG SHOWCASE — World Cup Nations ── */
.flag-showcase {
  padding: 100px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.flag-showcase-inner { max-width: 1200px; margin: 0 auto; }
.flag-showcase-header {
  text-align: center;
  margin-bottom: 56px;
}
.flag-showcase-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.flag-showcase-sub { font-size: 16px; color: var(--fg-2); }
.flag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}
.flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  cursor: pointer;
}
.flag-item:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
  background: rgba(229, 56, 59, 0.04);
}
.flag-item-emoji { font-size: 32px; line-height: 1; }
.flag-item-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-2);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ── SOCIAL PROOF ── */
.social-proof {
  padding: 100px 32px;
  background: var(--bg);
  position: relative;
}
.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 100%, rgba(245, 166, 35, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.social-proof-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.social-proof-header { text-align: center; margin-bottom: 64px; }
.social-proof-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.social-proof-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.social-proof-sub { font-size: 16px; color: var(--fg-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.testimonial-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-2);
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--border-bright); }
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}
.testimonial-location {
  font-size: 12px;
  color: var(--fg-3);
}
.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--accent-green);
  font-family: var(--font-display);
  font-weight: 600;
}

/* Community pride banner */
.community-banner {
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.community-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(229, 56, 59, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.community-banner-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 4vw, 36px);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  position: relative;
}
.community-banner-text {
  font-size: 16px;
  color: var(--fg-2);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
  position: relative;
}

/* ── TRUST SIGNALS ── */
.trust-bar {
  padding: 48px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
  letter-spacing: 0.03em;
}
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(229, 56, 59, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── CLOSING CTA ── */
.closing {
  padding: 120px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(229, 56, 59, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.closing-wc-icon { margin-bottom: 32px; }
.closing-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 36px;
}
.closing-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
  margin: 0 auto 24px;
}
.closing-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--accent-gold);
  margin-bottom: 32px;
}
.closing-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 4px;
}
.closing-price-note {
  font-size: 14px;
  color: var(--fg-3);
  margin-bottom: 32px;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-3);
  max-width: 260px;
  line-height: 1.5;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 14px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--font-display);
}
.footer-links a:hover { color: var(--fg); }
.footer-copy {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 32px auto 0;
  font-size: 12px;
  color: rgba(160, 152, 144, 0.4);
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 48px; }
  .hero-fresheners { gap: 14px; }
  .manifesto, .features, .flag-showcase, .social-proof, .closing { padding: 64px 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 24px; }
  .manifesto-stats { gap: 24px; }
  .flag-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-freshener-render svg { width: 80px !important; height: auto !important; }
  .community-banner { padding: 32px 20px; }

/* ── PRODUCT SHOWCASE ── */
.product-showcase {
  padding: 100px 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.product-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(229,56,59,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 50%, rgba(30,58,138,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.product-showcase-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.product-showcase-header { text-align: center; margin-bottom: 56px; }
.product-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.product-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--fg);
}
.product-sub { font-size: 16px; color: var(--fg-2); }

.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--bg-2);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.product-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.product-card-featured {
  border-color: rgba(245,166,35,0.3);
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(245,166,35,0.04) 100%);
}
.product-card-featured:hover {
  border-color: rgba(245,166,35,0.5);
  box-shadow: 0 16px 48px rgba(245,166,35,0.12);
}
.product-card-visual {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--border);
  min-height: 240px;
}
.product-card-visual svg { filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3)); transition: transform 0.3s ease; }
.product-card:hover .product-card-visual svg { transform: scale(1.05); }
.product-card-body { padding: 28px; }
.product-card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-red);
  background: rgba(229,56,59,0.12);
  border: 1px solid rgba(229,56,59,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.product-card-tag-gold {
  color: var(--accent-gold);
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.25);
}
.product-card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 8px;
}
.product-card-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-card-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--accent-red);
  color: white;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.product-card-cta:hover { background: #c22f32; transform: translateY(-1px); }
.product-card-featured .product-card-cta {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #d4881a 100%);
  color: #000;
}
.product-card-featured .product-card-cta:hover { background: linear-gradient(135deg, #d4881a 0%, #b87610 100%); transform: translateY(-1px); }

/* Scents strip */
.product-scents {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-scents-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-scent-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.product-scent-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-2);
}
.scent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── DIASPORA BANNER ── */
.diaspora-banner {
  background: linear-gradient(135deg, var(--bg-3) 0%, #1a1428 50%, var(--bg-2) 100%);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 24px;
  padding: 48px 56px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.diaspora-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.diaspora-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.diaspora-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 4vw, 36px);
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 14px;
  position: relative;
}
.diaspora-body {
  font-size: 15px;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
  position: relative;
}
.diaspora-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  flex-wrap: wrap;
}
.diaspora-stat { text-align: center; }
.diaspora-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--fg);
  display: block;
}
.diaspora-stat-label {
  font-size: 11px;
  color: var(--fg-3);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.diaspora-divider {
  width: 1px;
  height: 40px;
  background: rgba(245,166,35,0.2);
}

/* ── TRUST BAR CONTACT ── */
.trust-contact {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--fg-2);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.trust-contact a {
  color: var(--accent-gold);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
}
.trust-contact a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 48px; }
  .hero-fresheners { gap: 14px; }
  .manifesto, .features, .flag-showcase, .social-proof, .closing, .product-showcase { padding: 64px 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 24px; }
  .manifesto-stats { gap: 24px; }
  .flag-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
  .product-cards { grid-template-columns: 1fr; gap: 16px; }
  .product-card-visual { min-height: 200px; }
  .diaspora-banner { padding: 36px 24px; }
  .diaspora-stats { gap: 20px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-freshener-render svg { width: 80px !important; height: auto !important; }
  .community-banner { padding: 32px 20px; }
  .product-cards { grid-template-columns: 1fr; }
  .diaspora-stats { flex-direction: column; gap: 16px; }
  .diaspora-divider { display: none; }
}
}