/* GAVÉ FIER — v4 (perfs allégées : -infinite-anims, -rays, -sparkles, -glow-pulse) */
:root {
  --red-1: #1a0508;
  --red-2: #2a0a10;
  --red-3: #4a0d18;
  --red-4: #6e1421;
  --red-5: #c8102e;
  --red-glow: #ff2d4a;
  --white: #ffffff;
  --gold: #ffd24a;
  --mint: #5af0d0;
  --orange: #ff8a3d;
  --shadow-card: 0 20px 50px -10px rgba(0,0,0,.6), 0 4px 12px rgba(0,0,0,.4);
  --font-display: "Bowlby One", system-ui, sans-serif;
  --font-script: "Caveat Brush", cursive;
  --font-body: "Inter", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--red-2); color: var(--white);
  font-family: var(--font-body); font-size: 16px; line-height: 1.5;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
b { font-weight: 800; }

/* TOPBAR */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: linear-gradient(to bottom, rgba(26,5,8,.92), rgba(26,5,8,.5) 70%, transparent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .3s, padding .3s;
}
.topbar.scrolled {
  background: rgba(26,5,8,.95);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 10px 20px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 32px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.topbar-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  background: white; color: var(--red-2);
  font-weight: 800; font-size: 13px;
  border-radius: 100px; letter-spacing: .3px;
  transition: transform .15s ease;
}
.topbar-cta:hover { transform: translateY(-1px) scale(1.04); }
.topbar-cta:active { transform: scale(.96); }

/* DISCREET LIVE NOTIF */
.notif {
  position: fixed; z-index: 95;
  top: 76px; right: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(20,6,10,.92);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transform: translateX(calc(100% + 32px)); opacity: 0;
  transition: transform .5s cubic-bezier(.4,1.4,.4,1), opacity .4s;
  pointer-events: none;
  max-width: calc(100vw - 32px);
}
.notif.in { transform: translateX(0); opacity: 1; }
.notif-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.notif-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 600px) {
  .notif {
    top: auto; bottom: 90px; right: 12px; left: 12px;
    transform: translateY(calc(100% + 32px));
    font-size: 12px;
  }
  .notif.in { transform: translateY(0); }
}

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  padding: 110px 20px 40px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(200,16,46,.35), transparent 60%),
    radial-gradient(ellipse at 20% 0%, rgba(110,20,33,.6), transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255,45,74,.18), transparent 50%),
    linear-gradient(180deg, var(--red-1) 0%, var(--red-2) 40%, var(--red-3) 100%);
  z-index: 0;
}
.hero-grain {
  position: absolute; inset: 0;
  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='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .25 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: .25; mix-blend-mode: overlay; pointer-events: none;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 3;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: .8px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  animation: fadeInDown .6s .1s both;
}
.eyebrow-pin {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-glow);
}

.hero-title {
  text-align: center; margin: 0;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-weight: normal;
}
.line-1 {
  font-family: var(--font-display);
  font-size: clamp(20px, 5.5vw, 38px);
  letter-spacing: 1px; line-height: 1;
  animation: fadeInUp .5s .25s both;
}
.line-big { position: relative; display: block; margin: 4px 0 6px; }
.big-text {
  font-family: var(--font-display);
  font-size: clamp(56px, 17vw, 140px);
  line-height: .9; letter-spacing: -1px;
  background: linear-gradient(180deg, #fff 0%, #fff 60%, #ffd9a8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 0 var(--red-3));
  display: inline-block;
  animation: bigPunch .8s .4s both cubic-bezier(.3,1.6,.4,1);
}
@keyframes bigPunch {
  0% { opacity: 0; transform: scale(.7); letter-spacing: 20px; }
  60% { opacity: 1; transform: scale(1.05); }
  100% { transform: scale(1); letter-spacing: -1px; }
}
.big-underline {
  position: absolute; left: 0; right: 0; bottom: -4px;
  width: 100%; height: 18px;
  stroke-dasharray: 800; stroke-dashoffset: 800;
  animation: drawLine 1s 1s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.line-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(16px, 4vw, 24px);
  background: white; color: var(--red-2);
  padding: 6px 18px 4px;
  border-radius: 6px; letter-spacing: 1.5px;
  transform: rotate(-1.5deg);
  box-shadow: 0 6px 0 rgba(0,0,0,.25), 0 12px 30px rgba(255,45,74,.4);
  animation: tagDrop .6s .8s both cubic-bezier(.4,1.6,.5,1);
}
@keyframes tagDrop {
  from { opacity: 0; transform: translateY(-30px) rotate(-15deg); }
  to { opacity: 1; transform: translateY(0) rotate(-1.5deg); }
}

/* HERO STAGE — character centered, chips around, CTA overlapping bottom */
.hero-stage {
  position: relative; width: 100%; max-width: 760px;
  display: flex; flex-direction: column; align-items: center;
  margin: 8px auto 0;
  padding-bottom: 60px; /* room for the overlapping CTA */
}
.hero-character {
  position: relative;
  display: block;
  width: clamp(260px, 70vw, 440px);
  height: auto;
  z-index: 4;
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.7));
  animation: charIn .9s .5s both;
}
@keyframes charIn {
  from { opacity: 0; transform: translateY(30px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: white; color: var(--red-2);
  font-weight: 800; font-size: 13px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.1);
  z-index: 6;
  animation: chipIn .5s both;
  white-space: nowrap;
}
.chip-emoji { font-size: 14px; }
/* Distributed around the character — left side high/low, right side high/low */
.chip-1 { top: 4%;  left: 2%;  animation-delay: 1.2s;  transform: rotate(-4deg); } /* Bons plans — top-left */
.chip-2 { top: 4%;  right: 2%; animation-delay: 1.35s; transform: rotate(3deg); }  /* Adresses — top-right */
.chip-3 { top: 38%; right: 0%; animation-delay: 1.5s;  transform: rotate(-3deg); } /* Événements — mid-right */
.chip-4 { top: 38%; left: 0%;  animation-delay: 1.65s; transform: rotate(4deg); }  /* Cadeaux — mid-left */
@keyframes chipIn {
  from { opacity: 0; transform: scale(.5); }
  to { opacity: 1; }
}

/* CTA overlaps the bottom of the character to mask the image edge */
.hero-cta-block {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 8;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 0 16px;
  animation: fadeInUp .6s 1s both;
}
.cta-mega {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; max-width: 460px;
  padding: 20px 28px;
  background: linear-gradient(180deg, var(--red-glow), var(--red-5));
  color: white;
  font-family: var(--font-display);
  font-size: clamp(18px, 4vw, 22px);
  letter-spacing: 1.5px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,.2);
  box-shadow:
    0 10px 30px rgba(255,45,74,.5),
    0 20px 60px rgba(200,16,46,.4),
    inset 0 -4px 0 rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.3);
  overflow: hidden; cursor: pointer;
  transition: transform .15s cubic-bezier(.4,1.4,.5,1);
}
.cta-mega:hover { transform: translateY(-2px) scale(1.02); }
.cta-mega:active { transform: scale(.97); }
.cta-shine {
  position: absolute; top: -50%; left: -150%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .8s ease;
}
.cta-mega:hover .cta-shine { left: 150%; }
.cta-icon { flex-shrink: 0; }
.cta-label { white-space: nowrap; }

.hero-sub {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.85);
  flex-wrap: wrap; justify-content: center;
}
.hero-sub b { color: white; font-weight: 800; }
.rating { color: var(--gold); letter-spacing: 1.5px; }

/* MARQUEE — kept but lightened */
.marquee {
  position: relative;
  margin: 50px -40px 0;
  padding: 14px 0;
  background: white; color: var(--red-2);
  overflow: hidden;
  border-top: 4px solid var(--red-3);
  border-bottom: 4px solid var(--red-3);
  transform: rotate(-2deg);
  width: calc(100% + 80px);
  z-index: 2;
}
.marquee-track {
  display: inline-flex; gap: 28px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 16px; letter-spacing: 1.5px;
  align-items: center;
  will-change: transform;
}
.marquee-track .dot { color: var(--red-glow); font-size: 8px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FEATURES */
.features {
  position: relative; padding: 80px 20px 60px;
  max-width: 1200px; margin: 0 auto;
}
.section-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  color: var(--red-glow); margin-bottom: 14px;
}
.section-eyebrow span { height: 1px; width: 40px; background: currentColor; flex-shrink: 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 72px);
  letter-spacing: -1px; line-height: .95;
  text-align: center; margin: 0 0 40px;
  font-weight: 400;
}
.title-accent {
  font-family: var(--font-script); font-weight: normal;
  color: var(--red-glow); font-size: 1.1em;
  display: inline-block; transform: rotate(-2deg);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.feat {
  position: relative;
  padding: 28px 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.feat::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
}
.feat:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.2); }
.feat-num {
  font-family: var(--font-display);
  font-size: 64px; position: absolute;
  top: 8px; right: 14px;
  color: rgba(255,255,255,.05);
  letter-spacing: -2px; pointer-events: none;
}
.feat-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
  color: white; margin-bottom: 16px;
  box-shadow: 0 10px 24px -8px var(--c1);
}
.feat h3 {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 1px;
  margin: 0 0 8px; font-weight: 400;
}
.feat p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

/* PROOF */
.proof { padding: 60px 20px 40px; max-width: 1100px; margin: 0 auto; }
.proof-stars {
  text-align: center; margin-bottom: 40px; padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.rating-big {
  color: var(--gold);
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.rating-text {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.rating-text b { font-size: 18px; color: white; font-weight: 800; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  padding: 4px;
}
.testi {
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
}
.testi-stars { color: var(--gold); margin-bottom: 10px; font-size: 14px; letter-spacing: 2px; }
.testi p { margin: 0 0 16px; font-size: 15px; line-height: 1.45; }
.testi-who { display: flex; align-items: center; gap: 10px; }
.testi-ava {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--red-2);
}
.testi-who b { display: block; font-size: 14px; }
.testi-who span { font-size: 12px; opacity: .6; }

/* HOW */
.how { padding: 80px 20px 60px; max-width: 1100px; margin: 0 auto; }
.steps {
  display: flex; align-items: stretch; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1 1 240px; max-width: 280px;
  width: 100%;
  padding: 28px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  text-align: center;
  transition: transform .25s, border-color .25s;
  box-sizing: border-box;
}
.step:hover { transform: translateY(-4px); border-color: var(--red-glow); }
.step-n {
  width: 44px; height: 44px; margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-glow), var(--red-5));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  box-shadow: 0 8px 20px -6px var(--red-glow);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: .5px;
  margin: 0 0 6px; font-weight: 400;
}
.step p { margin: 0; font-size: 14px; color: rgba(255,255,255,.7); }
.step-arrow { color: var(--red-glow); font-size: 28px; font-weight: 800; flex-shrink: 0; }

/* FINALE */
.finale { position: relative; padding: 100px 20px 60px; overflow: hidden; margin-top: 40px; }
.finale-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, var(--red-4), var(--red-1) 70%),
    var(--red-2);
}
.finale-content {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.finale-title {
  font-family: var(--font-display); margin: 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  line-height: .95; font-weight: 400;
}
.ft-1, .ft-2, .ft-4 {
  font-size: clamp(28px, 7.5vw, 56px);
  letter-spacing: -.5px;
}
.ft-3 {
  display: inline-block;
  font-size: clamp(28px, 7.5vw, 56px);
  background: white; color: var(--red-2);
  padding: 14px 22px 12px;
  line-height: 1.05;
  border-radius: 8px; letter-spacing: 1.5px;
  transform: rotate(-1deg);
  box-shadow: 0 6px 0 rgba(0,0,0,.3), 0 12px 30px rgba(255,45,74,.3);
}
.ft-4 { display: inline-flex; align-items: center; gap: .25em; flex-wrap: wrap; justify-content: center; }
.ft-logo {
  height: clamp(28px, 7vw, 50px);
  width: auto;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 4px 12px rgba(255,45,74,.4));
}
.finale-character {
  width: clamp(220px, 60vw, 360px);
  margin: 16px 0 -20px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.7));
}
.finale-bubble {
  position: absolute; top: 30%; right: 8%;
  width: 70px; height: 70px;
  background: var(--gold); color: var(--red-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  transform: rotate(15deg);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.finale-cta-block {
  width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  margin-top: 20px;
}
.cta-mega-finale { font-size: clamp(22px, 5vw, 28px); padding: 24px 32px; }

.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: black;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  text-align: left;
  transition: transform .15s, border-color .15s;
  min-width: 200px;
}
.store-btn:hover { transform: translateY(-2px); border-color: white; }
.store-btn span { display: block; line-height: 1.2; }
.store-btn small { display: block; font-size: 10px; opacity: .7; letter-spacing: .5px; }
.store-btn b { display: block; font-size: 16px; letter-spacing: .3px; }
.store-rate {
  display: block; font-style: normal;
  font-size: 11px; color: var(--gold);
  margin-top: 2px; letter-spacing: .5px;
}

/* FOOT */
.foot { padding: 40px 20px 100px; text-align: center; border-top: 1px solid rgba(255,255,255,.08); }
.foot-logo { height: 28px; width: auto; margin: 0 auto 12px; opacity: .9; }
.foot-line { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.foot-links {
  display: flex; gap: 18px; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,.5);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.foot-links a:hover { color: white; }
.foot-edit { font-size: 11px; color: rgba(255,255,255,.4); }

/* STICKY MOBILE */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, transparent, rgba(26,5,8,.95) 30%);
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.4,1.4,.4,1);
  pointer-events: none;
}
.sticky-cta.visible { transform: translateY(0); pointer-events: auto; }
.sc-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  background: linear-gradient(180deg, var(--red-glow), var(--red-5));
  color: white; border-radius: 100px;
  font-weight: 800; font-size: 15px;
  box-shadow: 0 12px 30px rgba(255,45,74,.4);
}
.sc-btn:active { transform: scale(.97); }

/* UTIL */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } }
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s, transform .7s cubic-bezier(.3,1,.4,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* RESPONSIVE */
@media (min-width: 720px) {
  .hero { padding-top: 130px; }
  .hero-stage { padding-bottom: 70px; }
  .sticky-cta { display: none; }
}
@media (min-width: 960px) {
  .feat-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .step-arrow { transform: rotate(90deg); width: 100%; text-align: center; }
  .step { max-width: 100%; }
  .topbar-cta { padding: 8px 12px; font-size: 12px; }
  .finale-bubble { width: 54px; height: 54px; font-size: 22px; right: 4%; }
  .chip { font-size: 11px; padding: 6px 10px; }
  .chip-emoji { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ========== LEGAL PAGES ========== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 130px 24px 80px;
}
.legal-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
  transition: color .2s;
}
.legal-back:hover { color: white; }
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 48px);
  letter-spacing: -.5px;
  margin: 0 0 8px;
  font-weight: 400;
}
.legal-intro {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin: 0 0 32px;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .5px;
  margin: 32px 0 12px;
  color: white;
  font-weight: 400;
}
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  margin: 0 0 12px;
}
.legal ul { padding-left: 20px; margin: 0 0 16px; }
.legal strong { color: white; font-weight: 700; }
.legal a { color: var(--red-glow); text-decoration: underline; }
