/* Crushendo — site vitrine · base tokens & utilities */
/* Polices chargées en non-bloquant depuis le <head> (preconnect + media=print swap)
   pour ne pas bloquer le 1er affichage mobile. Ne pas réimporter les polices ici. */

:root {
  /* Couleurs */
  --paper: #FDFAF3;
  --paper-2: #EBE3D3;
  --cream: #F5E6D3;
  --ink: #14110D;
  --ink-text: #1A1612;
  --ink-60: rgba(26, 22, 18, 0.62);
  --ink-44: rgba(26, 22, 18, 0.44);
  --ink-12: rgba(26, 22, 18, 0.12);
  --vinyl: #0A0A0A;

  --crush: #E63946;
  --crush-dim: #C72A38;
  --gold: #D4A574;
  --purple: #7B68EE;
  --success: #6B9A6B;

  /* Type */
  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body: 'Inter', -apple-system, system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --maxw: 1180px;
  --gutter: 24px;

  /* Radius */
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
}

@media (min-width: 720px) {
  :root { --gutter: 40px; }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink-text);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
  line-height: 1.5;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* Container */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Typography */
.display, h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink-text);
}
.display-i, em.eyebrow {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.kicker {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.kicker::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--crush);
}
.kicker.no-dot::before { display: none; }
.mono { font-family: var(--f-mono); font-feature-settings: 'tnum'; }

p { margin: 0; }
.lede { font-size: 17px; line-height: 1.5; color: var(--ink-60); max-width: 56ch; }

/* Hairline */
.hl { border: 0; border-top: 1px solid var(--ink-12); margin: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s, background .12s, border-color .12s;
}
.btn:hover { transform: translateY(-1px); }
.btn.crush {
  background: var(--crush);
  color: var(--cream);
}
.btn.crush:hover { background: var(--crush-dim); }
.btn.ghost {
  background: transparent;
  color: var(--ink-text);
  border-color: var(--ink-12);
}
.btn.ghost:hover { border-color: var(--ink-text); }
.btn.sm { height: 36px; padding: 0 14px; font-size: 13px; }

/* Store badge — official-ish proportions, kept on-brand */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 22px 0 20px;
  background: var(--vinyl);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .12s;
  border: 1px solid rgba(255,255,255,0.08);
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge .icon { width: 28px; height: 28px; flex-shrink: 0; }
.store-badge .lines { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.store-badge .lines .sup {
  font-family: var(--f-body); font-size: 10.5px; opacity: 0.8;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.store-badge .lines .main {
  font-family: var(--f-display); font-weight: 500; font-size: 18px; letter-spacing: -0.01em;
  margin-top: 2px;
}
.store-badge.disabled { opacity: 0.6; cursor: default; }
.store-badge.disabled:hover { transform: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 243, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-12);
}
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand .wordmark {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.022em;
  color: var(--ink-text);
}
.brand .wordmark .accent { color: var(--crush); }
.brand .vinyl-mark { width: 28px; height: 28px; }

.site-header nav {
  display: none;
  align-items: center;
  gap: 28px;
}
.site-header nav a {
  text-decoration: none;
  color: var(--ink-60);
  font-size: 14px;
  font-weight: 500;
  transition: color .12s;
}
.site-header nav a:hover { color: var(--ink-text); }
@media (min-width: 860px) {
  .site-header nav { display: inline-flex; }
}

/* Section base */
section { padding: 80px 0; }
@media (min-width: 720px) { section { padding: 112px 0; } }

/* Hero */
.hero {
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) { .hero { padding-top: 40px; padding-bottom: 44px; } }

.hero .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 920px) {
  .hero .grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}

.hero h1 {
  font-size: clamp(31px, 6.4vw, 68px);
  line-height: 0.95;
  /* Opsz bas : calme les terminaisons trop "Didone" de Fraunces (le j tout
     en courbe) tout en gardant la police. */
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 38;
}
.hero h1 .crush { color: var(--crush); }
.hero .lede { margin-top: 18px; font-size: 18px; max-width: 30ch; }
.hero .cta-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero .micro {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-44);
}

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

/* The signature vinyl */
.vinyl-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vinyl-disc {
  width: 86%;
  height: 86%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--vinyl) 0 22%, transparent 22.5%),
    repeating-radial-gradient(circle at center,
      var(--vinyl) 0 1px,
      #181816 1px 2px,
      var(--vinyl) 2px 3px);
  position: relative;
  animation: vinyl-spin 14s linear infinite;
  box-shadow:
    inset 0 0 80px rgba(255,255,255,0.04),
    0 30px 60px -30px rgba(0,0,0,0.45);
}
.vinyl-disc::after {
  /* Light sweep (sheen) */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255,255,255,0.08) 18deg,
    transparent 36deg,
    transparent 360deg
  );
  pointer-events: none;
}
/* Vinyle principal de l'app (PNG transparent, SANS cœur) — tourne lentement.
   Positionné en absolu dans .vinyl-stage (qui est position:absolute) : le %
   se résout sans ambiguïté sur le conteneur 480×480, contrairement au flex où
   l'<img> (élément remplacé) gardait sa taille intrinsèque ou s'effondrait. */
.vinyl-img {
  position: absolute;
  top: 7%; left: 7%;
  width: 86%; height: 86%;
  object-fit: contain;
  animation: vinyl-spin 20s linear infinite;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}
@media (prefers-reduced-motion: reduce) { .vinyl-img { animation: none; } }
.vinyl-spindle {
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: var(--vinyl);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

@keyframes vinyl-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .vinyl-disc { animation: none; }
}

/* Phone mockup overlap */
.phone-overlay {
  position: absolute;
  right: -4%;
  bottom: 2%;
  width: 50%;
  aspect-ratio: 9 / 19.5;
  background: var(--ink);
  border-radius: 36px;
  padding: 8px;
  box-shadow:
    0 28px 70px -18px rgba(0,0,0,0.4),
    0 0 0 1px rgba(0,0,0,0.4),
    inset 0 0 0 1.5px rgba(255,255,255,0.04);
  z-index: 4;
}
.phone-overlay .screen {
  background: #0F0D0A;
  width: 100%; height: 100%;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--cream);
  font-family: var(--f-body);
  position: relative;
}
.phone-overlay .notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 28%; height: 14px; background: #000; border-radius: 10px; z-index: 5;
}
.phone-overlay .topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px 8px;
  font-family: var(--f-mono); font-size: 8px; letter-spacing: 0.12em;
  color: rgba(245,230,211,0.6);
}
.phone-overlay .topbar .time { color: var(--cream); font-weight: 600; }
.phone-overlay .topbar .icons { display: inline-flex; gap: 4px; align-items: center; }
.phone-overlay .topbar .bar { display: inline-block; width: 12px; height: 6px; background: currentColor; border-radius: 1.5px; }
.phone-overlay .topbar .battery {
  width: 14px; height: 7px; border: 1px solid currentColor; border-radius: 2px;
  position: relative;
}
.phone-overlay .topbar .battery::after {
  content: ''; position: absolute; left: 1px; top: 1px; bottom: 1px;
  width: 70%; background: currentColor; border-radius: 1px;
}

.phone-overlay .header {
  padding: 0 14px 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-overlay .header .nav-pill {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid rgba(245,230,211,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.phone-overlay .header .title {
  font-family: var(--f-mono); font-size: 8.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,230,211,0.6);
}

.phone-overlay .photo {
  margin: 0 14px;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(140deg, #6e5648 0%, #38241a 60%, #1a0e08 100%);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.phone-overlay .photo::before {
  /* a face-ish silhouette so it reads as a portrait, not just a gradient */
  content: ''; position: absolute;
  left: 26%; right: 26%; top: 22%; bottom: 0;
  background: radial-gradient(ellipse at center top,
    rgba(255,210,180,0.25) 0%,
    rgba(255,180,140,0.10) 30%,
    transparent 55%);
  border-radius: 50% 50% 12% 12%;
}
.phone-overlay .photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,13,10,0.85), transparent 50%);
}
.phone-overlay .photo .badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 8px;
  background: rgba(15,13,10,0.55);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--f-mono); font-size: 7px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,230,211,0.85);
  border: 1px solid rgba(245,230,211,0.1);
}
.phone-overlay .photo .badge .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--success); }
.phone-overlay .photo .meta {
  position: absolute; bottom: 10px; left: 12px; right: 12px; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.phone-overlay .photo .meta .name {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(14px, 2.6vw, 20px); letter-spacing: -0.022em;
  line-height: 1; color: var(--cream);
}
.phone-overlay .photo .meta .age {
  font-family: var(--f-mono); font-size: 11px; color: rgba(245,230,211,0.7);
  margin-left: 4px;
}
.phone-overlay .photo .meta .city {
  font-size: 10px; color: rgba(245,230,211,0.55); margin-top: 3px;
  font-family: var(--f-body);
}
.phone-overlay .photo .score-pill {
  display: inline-flex; flex-direction: column; align-items: flex-end;
  text-align: right;
}
.phone-overlay .photo .score-pill .skicker {
  font-family: var(--f-mono); font-size: 6.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,230,211,0.6);
}
.phone-overlay .photo .score-pill .sval {
  font-family: var(--f-mono); font-weight: 500;
  font-size: clamp(20px, 4vw, 32px); line-height: 1;
  color: var(--crush); letter-spacing: -0.04em;
}

.phone-overlay .body {
  padding: 12px 14px 0;
  flex: 1; display: flex; flex-direction: column; gap: 8px;
}
.phone-overlay .quote {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 11px; line-height: 1.35;
  color: rgba(245,230,211,0.85);
}
.phone-overlay .track {
  display: flex; align-items: center; gap: 8px;
  padding: 8px;
  background: rgba(245,230,211,0.05);
  border: 1px solid rgba(245,230,211,0.08);
  border-radius: 10px;
  margin-top: auto;
}
.phone-overlay .track .cover {
  width: 32px; height: 32px; border-radius: 4px; flex-shrink: 0;
  background: linear-gradient(135deg, #d4a574, #8a5e3a);
  position: relative; overflow: hidden;
}
.phone-overlay .track .cover::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.25), transparent 50%);
}
.phone-overlay .track .tinfo { flex: 1; min-width: 0; }
.phone-overlay .track .ttitle {
  font-family: var(--f-body); font-size: 10.5px; font-weight: 500;
  color: var(--cream); line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.phone-overlay .track .tartist {
  font-family: var(--f-mono); font-size: 8.5px;
  color: rgba(245,230,211,0.55); margin-top: 2px;
  letter-spacing: 0.04em;
}
.phone-overlay .track .play {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--crush); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; padding-left: 1.5px;
  flex-shrink: 0;
}

.phone-overlay .actions {
  display: flex; justify-content: space-around; align-items: center;
  padding: 12px 14px 16px;
}
.phone-overlay .actions .act {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(245,230,211,0.18);
  background: transparent;
  color: rgba(245,230,211,0.7);
  font-family: var(--f-display);
  flex-shrink: 0;
}
.phone-overlay .actions .pass { width: 38px; height: 38px; font-size: 18px; }
.phone-overlay .actions .crush-btn {
  width: 50px; height: 50px; font-size: 22px;
  background: var(--crush); color: var(--cream); border: none;
  box-shadow: 0 0 0 1px rgba(230,57,70,0.4), 0 6px 18px -6px rgba(230,57,70,0.6);
}
.phone-overlay .actions .super { width: 38px; height: 38px; font-size: 16px; color: var(--gold); border-color: rgba(212,165,116,0.4); }

/* Pillars (concept) */
.pillars { background: var(--paper-2); }
.pillars .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
}
@media (min-width: 720px) { .pillars .row { grid-template-columns: repeat(3, 1fr); gap: 40px; } }

.pillar {
  background: var(--paper);
  border-radius: var(--r);
  padding: 32px 28px;
  border: 1px solid var(--ink-12);
}
.pillar .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--crush);
}
.pillar h3 {
  font-size: 28px;
  margin-top: 16px;
}
.pillar p {
  margin-top: 14px;
  color: var(--ink-60);
  font-size: 15px;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--ink-12);
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(4, 1fr); border-top: none; }
}
.step {
  padding: 32px 0;
  border-bottom: 1px solid var(--ink-12);
}
@media (min-width: 720px) {
  .step {
    padding: 36px 32px 36px 0;
    border-bottom: none;
    border-right: 1px solid var(--ink-12);
  }
  .step:last-child { border-right: none; }
}
.step .step-num {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--crush);
  letter-spacing: 0.04em;
}
.step h3 {
  font-size: 22px;
  margin-top: 14px;
}
.step p {
  margin-top: 10px;
  color: var(--ink-60);
  font-size: 14.5px;
}

/* Festival section */
.festival {
  background: var(--vinyl);
  color: var(--cream);
}
.festival .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 920px) { .festival .grid { grid-template-columns: 1.3fr 1fr; gap: 80px; } }
.festival .kicker { color: var(--gold); }
.festival .kicker::before { background: var(--gold); }
.festival h2 {
  color: var(--cream);
  font-size: clamp(36px, 6vw, 64px);
  margin-top: 16px;
}
.festival h2 .crush { color: var(--crush); }
.festival p { margin-top: 20px; color: rgba(245,230,211,0.7); font-size: 17px; max-width: 44ch; }
.festival .cta { margin-top: 32px; }

.poster {
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r);
  padding: 28px 24px;
  border: 1px solid rgba(245,230,211,0.1);
  position: relative;
}
.poster .pkicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crush);
}
.poster .ptitle {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.022em;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1;
  margin-top: 10px;
}
.poster .pdate {
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink-60);
}
.poster .lineup {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-12);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-60);
  line-height: 1.5;
}
.poster .going {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--ink-12);
  display: flex;
  align-items: center;
  gap: 12px;
}
.poster .going .avs {
  display: inline-flex;
}
.poster .going .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  background: linear-gradient(135deg, #d49b88, #8a4d4d);
  margin-left: -8px;
}
.poster .going .av:nth-child(1) { background: linear-gradient(135deg, #d49b88, #8a4d4d); margin-left: 0; }
.poster .going .av:nth-child(2) { background: linear-gradient(135deg, #b4a08c, #5e4a3e); }
.poster .going .av:nth-child(3) { background: linear-gradient(135deg, #c4b6d4, #553e6e); }
.poster .going .av:nth-child(4) { background: linear-gradient(135deg, #d4c2a4, #7e6840); }
.poster .going .lbl {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--ink-60);
}
.poster .going .lbl .num { color: var(--crush); font-weight: 600; }

/* Download */
.download {
  text-align: center;
}
.download h2 {
  font-size: clamp(40px, 7vw, 64px);
}
.download .lede { margin: 20px auto 0; max-width: 38ch; }
.download .badges {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.download .qr-block {
  margin-top: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px;
  background: var(--paper-2);
  border-radius: var(--r);
}
.download .qr {
  width: 132px;
  height: 132px;
  background: var(--paper);
  border: 1px solid var(--ink-12);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download .qr svg { width: 100%; height: 100%; }
.download .qr-text {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.download .waitlist {
  margin-top: 40px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.download .waitlist form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.download .waitlist input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--ink-12);
  background: var(--paper);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink-text);
  outline: none;
}
.download .waitlist input:focus { border-color: var(--crush); }
.download .reassure {
  margin-top: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-44);
}

/* Footer */
.footer {
  background: var(--vinyl);
  color: var(--cream);
  padding: 64px 0 40px;
}
.footer .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 720px) {
  .footer .row { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,230,211,0.5);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer a {
  color: rgba(245,230,211,0.8);
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: color .12s;
}
.footer a:hover { color: var(--crush); }
/* Les BOUTONS du footer ne doivent pas hériter du `display:block` des liens
   footer ci-dessus, sinon ils s'étirent en barre rouge pleine largeur (« bug
   tout en bas »). On restaure le inline-flex du .btn. */
.footer a.btn { display: inline-flex; }
.footer .colophon {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,230,211,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(245,230,211,0.4);
}

.footer .brand-block .wordmark {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: var(--cream);
}
.footer .brand-block .wordmark .accent { color: var(--crush); }
.footer .brand-block p {
  margin-top: 14px;
  color: rgba(245,230,211,0.55);
  font-size: 14px;
  max-width: 28ch;
  font-family: var(--f-display);
  font-style: italic;
}

/* ════════════════ LANCEMENT (waitlist — CTA principal) ════════════════ */
.launch {
  background:
    radial-gradient(120% 90% at 50% 0%, var(--cream) 0%, var(--paper-2) 60%, var(--paper-2) 100%);
  text-align: center;
  border-top: 1px solid var(--ink-12);
}
.launch h2 {
  font-size: clamp(33px, 6.2vw, 64px);
  margin-top: 16px;
}
.launch h2 .crush { color: var(--crush); }
.launch .lede { margin: 22px auto 0; max-width: 46ch; }

.launch-form {
  max-width: 560px;
  margin: 36px auto 0;
  text-align: left;
}
.launch-form .lf-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) {
  .launch-form .lf-row { grid-template-columns: 1fr 1fr; }
  .launch-form .lf-row input[name="email"] { grid-column: 1 / -1; }
}
.launch-form input,
.launch-form select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--ink-12);
  background: var(--paper);
  border-radius: 12px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink-text);
  outline: none;
  transition: border-color .12s;
  -webkit-appearance: none;
  appearance: none;
}
.launch-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-60) 50%),
    linear-gradient(135deg, var(--ink-60) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  color: var(--ink-60);
}
.launch-form input::placeholder { color: var(--ink-44); }
.launch-form input:focus,
.launch-form select:focus { border-color: var(--crush); }
/* Honeypot anti-bot : invisible, hors-flux, ignoré des humains. */
.launch-form .hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.launch-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-60);
  cursor: pointer;
}
.launch-form .consent input[type="checkbox"] {
  flex: none;
  width: 18px; height: 18px;
  margin-top: 1px;
  accent-color: var(--crush);
  cursor: pointer;
}
.launch-form .consent a { color: var(--crush); text-decoration: underline; text-underline-offset: 2px; }
.launch-form .btn { width: 100%; margin-top: 18px; }
.btn.lg { height: 56px; font-size: 16px; }
.launch-form .lf-note {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-44);
}
.launch-form .lf-msg {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  min-height: 1px;
}
.launch-form .lf-msg.err { color: var(--crush-dim); font-weight: 500; }
.launch .reassure {
  margin-top: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-44);
}

/* État succès : remplace le formulaire après inscription */
.launch-success {
  max-width: 480px;
  margin: 36px auto 0;
  padding: 36px 28px;
  background: var(--paper);
  border: 1px solid var(--ink-12);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px -28px rgba(20,17,13,0.25);
}
.launch-success .ls-vinyl {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  background:
    radial-gradient(circle at 50% 50%, var(--crush) 0 13px, var(--paper) 13px 16px, var(--vinyl) 16px 31px, #1f1f1f 31px 32px, var(--vinyl) 32px 100%);
  box-shadow: 0 8px 22px -8px rgba(0,0,0,0.4);
  animation: vinyl-spin 9s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .launch-success .ls-vinyl { animation: none; } }
.launch-success h3 { font-size: 26px; }
.launch-success p { margin: 14px auto 18px; color: var(--ink-60); font-size: 15px; max-width: 34ch; }

/* Bannière « un·e ami·e t'invite » (quand on arrive via ?ref=) */
.ls-invited {
  max-width: 560px; margin: 0 auto 18px;
  background: rgba(230,57,70,0.08); border: 1px solid rgba(230,57,70,0.25);
  color: var(--crush-dim); border-radius: 12px; padding: 12px 16px;
  font-size: 14px; text-align: center;
}

/* Bloc parrainage dans la carte de succès */
.launch-success .ls-pos { font-size: 15px; margin: 8px auto 2px; color: var(--ink-60); }
.launch-success .ls-pos b { color: var(--crush); }
.ls-ref { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--ink-12); text-align: left; }
.ls-ref-h { font-weight: 600; font-size: 15px; text-align: center; color: var(--ink-text); margin-bottom: 14px; }
.ls-linkbox { display: flex; gap: 8px; }
.ls-link {
  flex: 1; min-width: 0; height: 44px; padding: 0 14px;
  border: 1px solid var(--ink-12); border-radius: 10px; background: var(--paper-2);
  font-family: var(--f-mono); font-size: 12px; color: var(--ink-text); outline: none;
}
.ls-copy {
  height: 44px; padding: 0 18px; border: none; border-radius: 10px; cursor: pointer;
  background: var(--ink-text); color: var(--cream); font-weight: 600; font-size: 14px;
  white-space: nowrap; flex: none; transition: background .12s;
}
.ls-copy:hover { background: var(--crush); }
.ls-share { display: flex; gap: 8px; margin-top: 10px; }
.ls-sh {
  flex: 1; text-align: center; height: 40px; line-height: 38px;
  border: 1px solid var(--ink-12); border-radius: 10px; text-decoration: none;
  font-weight: 500; font-size: 13px; color: var(--ink-text); transition: border-color .12s, color .12s;
}
.ls-sh:hover { border-color: var(--crush); color: var(--crush); }
.ls-count { text-align: center; margin-top: 16px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .04em; color: var(--ink-60); text-transform: uppercase; }
.ls-count b { color: var(--crush); font-size: 14px; }
.ls-tiers { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.ls-tiers li {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: var(--ink-60); padding: 8px 12px;
  background: var(--paper-2); border-radius: 10px;
}
.ls-tiers li span {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--crush); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-weight: 600; font-size: 12px;
}

/* Legal page layout (shared) */
.legal-shell { background: var(--paper); }
.legal-shell main {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px var(--gutter) 96px;
}
.legal-shell .kicker { margin-bottom: 18px; }
.legal-shell h1 {
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1;
  margin-bottom: 32px;
}
.legal-shell h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-shell p, .legal-shell ul {
  color: var(--ink-text);
  font-size: 15px;
  line-height: 1.6;
  margin: 12px 0;
}
.legal-shell ul { padding-left: 20px; }
.legal-shell li { margin: 6px 0; }
.legal-shell .meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-44);
  text-transform: uppercase;
  border-top: 1px solid var(--ink-12);
  padding-top: 24px;
  margin-top: 48px;
}
