/* =================================================================
   TOMBOLA OLAMI MONTPELLIER — Rolex green direction
   Palette : champagne paper + Rolex green + gold accent
   ================================================================= */

:root {
  --ink: #111513;
  --ink-soft: #2f3632;
  --muted: #65706b;

  --paper: #f6f5ef;
  --paper-2: #efece0;
  --surface: #ffffff;
  --line: #d8d4c7;
  --line-soft: #e6e2d3;

  --green: #073f2a;
  --green-bright: #0a5539;
  --green-dark: #042b1c;
  --green-soft: rgba(7,63,42,.08);

  --gold: #b8944f;
  --gold-bright: #d4af72;
  --gold-soft: rgba(184,148,79,.14);

  --danger: #9d2d21;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(17,21,19,.05), 0 4px 10px rgba(17,21,19,.04);
  --shadow-md: 0 8px 22px rgba(17,21,19,.08), 0 18px 48px rgba(17,21,19,.07);
  --shadow-lg: 0 12px 32px rgba(17,21,19,.10), 0 32px 80px rgba(17,21,19,.12);
  --shadow-green: 0 12px 28px rgba(7,63,42,.28), 0 2px 6px rgba(7,63,42,.16);

  --duration: .25s;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; }

/* =================================================================
   SHELL + NAV
   ================================================================= */

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(7,63,42,.04), transparent 65%),
    radial-gradient(50% 40% at 100% 100%, rgba(184,148,79,.06), transparent 65%),
    var(--paper);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 12px 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(246,245,239,.90);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(17,21,19,.10));
  transition: transform var(--duration) var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.03); }

/* =================================================================
   BOUTONS
   ================================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: none;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: var(--shadow-green);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), filter var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.16), transparent 45%);
  pointer-events: none;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(7,63,42,.36), 0 2px 6px rgba(7,63,42,.20);
  filter: brightness(1.06);
}
.button:active { transform: translateY(0); }
.button.light {
  color: var(--green);
  background: #fff;
  border: 1.5px solid var(--green);
  box-shadow: 0 4px 12px rgba(7,63,42,.10);
}
.button.light:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}
.button.danger { background: linear-gradient(135deg, #c84545, var(--danger)); }
.button.small { min-height: 38px; padding: 0 14px; font-size: 13px; }
.button:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* =================================================================
   HERO
   ================================================================= */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 56px;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 36px 48px 40px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), rgba(184,148,79,.04));
  border: 1px solid rgba(184,148,79,.30);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,148,79,.20);
}

.hero h1 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: .98;
  letter-spacing: -.035em;
  margin: 18px 0 18px;
  color: var(--ink);
  max-width: 760px;
  font-variation-settings: "opsz" 96;
}
.hero h1::first-line { color: var(--green-dark); }

.hero p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  align-items: center;
}
.cta-subtext {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .04em;
  font-style: italic;
}

/* Facts — bento de cartes claires */
.hero-facts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 24px;
  max-width: 600px;
}
.hero-facts > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 15px 16px;
}
.hero-facts > div:nth-child(1),
.hero-facts > div:nth-child(2),
.hero-facts > div:nth-child(5) {
  grid-column: span 2;
}
.hero-facts > div:nth-child(3),
.hero-facts > div:nth-child(4) {
  grid-column: span 3;
  order: 1;
}
.hero-facts span {
  display: block;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.hero-facts strong {
  display: block;
  margin-top: 7px;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

/* Hero media — montre rectangulaire propre, plus de crop circulaire */
.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.watch-frame {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 0.666;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
/* Halo radial vert+or derrière la montre détourée */
.watch-frame::before {
  content: "";
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(closest-side at 50% 45%, rgba(7,63,42,.18), transparent 60%),
    radial-gradient(closest-side at 50% 65%, rgba(184,148,79,.16), transparent 55%);
  z-index: -1;
  filter: blur(20px);
  animation: watchHaloPulse 6s ease-in-out infinite;
}
@keyframes watchHaloPulse {
  0%, 100% { opacity: .85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
/* Ombre portée au sol */
.watch-frame::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: -2%;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(7,63,42,.30), transparent 70%);
  z-index: -2;
  filter: blur(8px);
}
.watch-frame img,
.watch-stack .watch-photo {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(7,63,42,.25)) drop-shadow(0 4px 10px rgba(0,0,0,.10));
}

/* =================================================================
   WATCH STACK : photo + aiguilles superposées
   ================================================================= */
.watch-stack {
  position: relative;
  display: inline-block;
  height: 100%;
  /* Centre du cadran sur la nouvelle photo (Datejust acier 1024x1537) */
  --dial-x: 49%;
  --dial-y: 32%;
  /* Diamètre marker-to-marker du cadran */
  --dial-w: 62%;
}
.watch-stack .watch-photo {
  position: relative;
  z-index: 1;
}
.watch-stack .watch-dial {
  position: absolute;
  top: var(--dial-y);
  left: var(--dial-x);
  width: var(--dial-w);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
/* Aiguilles : pivot aligné sur le centre du cadran via transform-origin + translate */
.watch-stack .hand {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  /* Pivot percentages dans l'image source : --px / --py */
  /* Translate négatif = on pousse l'image pour que son pivot atterrisse à (50%,50%) */
  transform: translate(calc(-1 * var(--px)), calc(-1 * var(--py)))
             rotate(var(--rot, 0deg));
  transform-origin: var(--px) var(--py);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.35));
  will-change: transform;
}
/* Heure */
.watch-stack .hand-hour {
  --px: 7.6%;
  --py: 50%;
  width: 32%;
  z-index: 3;
}
/* Minute */
.watch-stack .hand-minute {
  --px: 4.2%;
  --py: 50%;
  width: 48%;
  z-index: 4;
}
/* Seconde (avec contre-poids) — même axe vertical 50% que les autres */
.watch-stack .hand-second {
  --px: 19.8%;
  --py: 50%;
  width: 56%;
  z-index: 5;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.45));
}

/* Intro : la montre dans le stack remplit le wrap */
.intro-watch-wrap .watch-stack {
  height: 100%;
  position: relative;
  opacity: 0;
  filter: blur(28px) brightness(.4);
  transform: scale(1.5) translateY(8vh);
  animation: introWatchEnter 1.4s cubic-bezier(.18,.84,.30,1) 1.75s forwards;
}

.floating-ticket {
  position: absolute;
  right: -10px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 200px;
  padding: 18px 22px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-dark) 100%);
  box-shadow: var(--shadow-green);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.floating-ticket strong {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}
.floating-ticket span {
  font-size: 12px;
  opacity: .82;
  font-weight: 500;
}
.floating-ticket:hover,
.floating-ticket:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(7,63,42,.36);
  outline: none;
}

/* =================================================================
   COMPTE A REBOURS
   ================================================================= */

/* Compte à rebours — carte pleine largeur */
.hero-countdown {
  max-width: 600px;
  margin-top: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 15px 20px 17px;
}
.hero-countdown-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.hero-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.hero-countdown .metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.hero-countdown .metric::before { content: none; }
#countdown .metric strong {
  order: 1;
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--green-dark);
  color: var(--green-dark);
  animation: none;
}
.hero-countdown .metric span {
  order: 2;
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1320px);
  margin: 24px auto 56px;
  padding: 0 48px;
  gap: 14px;
}
.metric {
  position: relative;
  padding: 22px 18px;
  background: linear-gradient(180deg, #fff, var(--paper-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  overflow: hidden;
}
.metric::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}
.metric span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--green-dark);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}

/* =================================================================
   SECTIONS
   ================================================================= */

.section { padding: 68px 48px; }
.section-inner { width: min(100%, 1320px); margin: 0 auto; }
.section-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  align-items: flex-end;
}
.section-header h2 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--ink);
}
.section-header p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #fffcf3 100%);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step::before {
  content: "0" counter(step);
  counter-increment: step;
  display: inline-block;
  margin-bottom: 14px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--green-bright);
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}
.step::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 88px;
  width: 28px;
  height: 2px;
  background: var(--gold);
  opacity: .6;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Section dark (ticket preview) */
.section.dark {
  color: #fff;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(7,63,42,.30), transparent 70%),
    linear-gradient(180deg, #121714 0%, #0a0d0b 100%);
}
.section.dark .section-header h2 { color: #fff; }
.section.dark .section-header p { color: rgba(255,255,255,.65); }
.section.dark .eyebrow {
  background: linear-gradient(135deg, rgba(212,175,114,.20), rgba(212,175,114,.05));
  border-color: rgba(212,175,114,.45);
  color: var(--gold-bright);
}

.ticket-preview {
  width: 100%;
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.40);
  border: 1px solid rgba(212,175,114,.20);
}
.ticket-preview img { display: block; width: 100%; height: auto; }

/* =================================================================
   TIRAGE LIVE
   ================================================================= */

.home-draw {
  display: none;
  width: min(100%, 1320px);
  margin: 26px auto 0;
  border-radius: var(--radius-lg);
  color: #fff;
  background: #06090a;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212,175,114,.22);
  position: relative;
  overflow: hidden;
}
.home-draw::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
  z-index: 5;
}
.draw-stage-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.30) 50%, rgba(0,0,0,.55) 100%),
    url('assets/stage-tirage.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  pointer-events: none;
  z-index: 0;
}
.home-draw.active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  padding: 48px 56px 18px;
  min-height: 640px;
  animation: drawSlideIn .6s var(--ease);
}
.draw-presenter {
  position: relative;
  z-index: 2;
  text-align: center;
  align-self: end;
  margin-bottom: -6px;
}
.draw-presenter::before {
  content: "";
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 122%;
  height: 116%;
  background: radial-gradient(ellipse 55% 72% at 50% 24%, rgba(255,225,160,.20) 0%, rgba(255,225,160,.08) 38%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.draw-presenter::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 36px;
  background: radial-gradient(ellipse at center, rgba(255,225,160,.50) 0%, rgba(255,225,160,.18) 32%, transparent 75%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}
#presenter-video { position: absolute; width: 2px; height: 2px; opacity: 0; pointer-events: none; }
#presenter-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 420px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 400 / 480;
  margin: 0 auto;
  filter: drop-shadow(0 26px 36px rgba(0,0,0,.55)) drop-shadow(0 0 26px rgba(255,210,140,.14));
}
.draw-side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.draw-text { max-width: 580px; margin: 0; }
.draw-spin {
  position: relative;
  width: 320px;
  max-width: 100%;
  opacity: 0;
  transform: scale(0.92);
  max-height: 0;
  overflow: hidden;
  transition: opacity .55s var(--ease), transform .55s var(--ease), max-height .55s var(--ease), margin .55s var(--ease);
  pointer-events: none;
}
.draw-spin.shown {
  opacity: 1;
  transform: scale(1);
  max-height: 600px;
  margin: 4px 0;
}

/* Cadran des chiffres gagnants — révélation chiffre par chiffre */
.draw-cadran {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 14px;
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  max-height: 0;
  overflow: hidden;
  transition: opacity .9s var(--ease), transform .9s var(--ease), max-height .9s var(--ease), margin .9s var(--ease);
  pointer-events: none;
}
.draw-cadran.shown {
  opacity: 1;
  transform: translateY(0) scale(1);
  max-height: 200px;
  margin-top: 8px;
}
.cadran-slot {
  width: 88px;
  height: 118px;
  border-radius: 14px;
  background: linear-gradient(180deg, #15211a 0%, #060807 100%);
  border: 2px solid rgba(212,175,114,.35);
  box-shadow:
    0 0 28px rgba(212,175,114,.16),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -10px 22px rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.cadran-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, transparent 35%);
  pointer-events: none;
}
.cadran-slot .digit {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--gold-bright) 0%, #fff5d8 38%, var(--gold) 75%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity .35s var(--ease), transform .55s cubic-bezier(.34,1.56,.64,1);
  filter: drop-shadow(0 0 14px rgba(212,175,114,.50));
}
.cadran-slot.filled .digit {
  opacity: 1;
  transform: scale(1);
}
.cadran-slot.filled {
  border-color: rgba(212,175,114,.75);
  box-shadow:
    0 0 38px rgba(212,175,114,.40),
    0 0 8px rgba(212,175,114,.25),
    inset 0 1px 0 rgba(255,255,255,.15),
    inset 0 -10px 22px rgba(0,0,0,.5);
  animation: cadranFlash .65s var(--ease);
}
@keyframes cadranFlash {
  0%   { box-shadow: 0 0 0 0 rgba(212,175,114,0),
                     inset 0 1px 0 rgba(255,255,255,.15),
                     inset 0 -10px 22px rgba(0,0,0,.5); }
  45%  { box-shadow: 0 0 70px 10px rgba(212,175,114,.65),
                     inset 0 1px 0 rgba(255,255,255,.25),
                     inset 0 -10px 22px rgba(0,0,0,.5); }
  100% { box-shadow: 0 0 38px rgba(212,175,114,.40),
                     0 0 8px rgba(212,175,114,.25),
                     inset 0 1px 0 rgba(255,255,255,.15),
                     inset 0 -10px 22px rgba(0,0,0,.5); }
}
.draw-spin::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(closest-side, rgba(255,225,160,.22), transparent 70%);
  pointer-events: none;
  filter: blur(10px);
  z-index: 0;
}
#rotating-watch { position: absolute; width: 2px; height: 2px; opacity: 0; pointer-events: none; }
#rotating-watch-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.55)) drop-shadow(0 0 22px rgba(255,210,140,.18));
}
.draw-result {
  position: relative;
  margin: 0;
}
.draw-result::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--gold), transparent);
  border-radius: 2px;
}
.home-draw .eyebrow {
  color: var(--gold-bright);
  background: rgba(212,175,114,.18);
  border-color: rgba(212,175,114,.45);
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.home-draw .eyebrow::before {
  box-shadow: 0 0 0 4px rgba(212,175,114,.30);
}
.sound-gate {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6,11,8,.88);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.sound-gate.show { display: flex; }
.sound-gate-box { text-align: center; max-width: 380px; }
.sound-gate-title {
  margin: 0 0 20px;
  color: #fff;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
}
.sound-gate-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 17px 34px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d9a3, #d4af72);
  color: #1a1614;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(212,175,114,.45);
  transition: filter .15s;
}
.sound-gate-btn:hover { filter: brightness(1.07); }
.sound-gate-skip {
  display: block;
  margin: 18px auto 0;
  background: none;
  border: 0;
  color: rgba(255,255,255,.55);
  font: 500 13px/1 'Inter', sans-serif;
  text-decoration: underline;
  cursor: pointer;
}
@media (max-width: 1100px) {
  #presenter-canvas { max-width: 380px; }
}
@keyframes drawSlideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.home-draw h2 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  margin: 14px 0 0;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -.022em;
  line-height: 1.1;
  color: #fff;
}
.home-draw p {
  color: rgba(255,255,255,.75);
  margin: 12px auto 0;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  max-width: 600px;
}

.draw-number {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(76px, 11vw, 148px);
  line-height: 1;
  letter-spacing: -.055em;
  background: linear-gradient(135deg, var(--gold-bright) 0%, #fff5d8 35%, var(--gold) 70%, var(--gold-bright) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pulse 1.2s ease-in-out infinite, shineMove 4s linear infinite;
  filter: drop-shadow(0 0 30px rgba(212,175,114,.35));
}
@keyframes shineMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
#draw-winner {
  margin: 18px 0 0;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.005em;
}

/* =================================================================
   PAGES (checkout / success / cancel)
   ================================================================= */

.page {
  min-height: 100vh;
  padding: 48px 24px 80px;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(7,63,42,.05), transparent 70%),
    var(--paper);
}
.narrow { width: min(100%, 720px); margin: 0 auto; }
.page .brand { margin-bottom: 24px; }

.page-title { margin: 18px 0 28px; }
.page-title h1 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  margin: 14px 0 12px;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink);
}
.page-title p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.checkout-panel { box-shadow: var(--shadow-md); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.form-grid > .full { grid-column: 1 / -1; }
.field label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.input, .textarea, .select {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fffdf6;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--green-bright);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(7,63,42,.12);
}
.textarea { min-height: 110px; padding: 14px 16px; resize: vertical; }

/* Pricing display in checkout */
.price-card {
  position: relative;
  padding: 20px 22px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-dark) 100%);
  box-shadow: var(--shadow-green);
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 180%;
  background: radial-gradient(closest-side, rgba(255,255,255,.16), transparent);
}
.price-card span {
  display: block;
  color: rgba(255,255,255,.80);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.price-card strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}
.price-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 500;
}

.pricing-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-soft), rgba(184,148,79,.04));
  border: 1px solid rgba(184,148,79,.30);
}

/* =================================================================
   PAGE CHECKOUT — layout 2 colonnes
   ================================================================= */
.checkout-page {
  min-height: 100vh;
  padding: 20px 24px 40px;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(7,63,42,.05), transparent 70%),
    radial-gradient(40% 30% at 100% 100%, rgba(184,148,79,.08), transparent 70%),
    var(--paper);
}
.checkout-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
}

/* Header compact */
.checkout-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  padding: 12px 0;
}
.checkout-head .brand-logo { height: 52px; }
.checkout-head-title { display: flex; flex-direction: column; gap: 4px; }
.checkout-head-title h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0;
  line-height: 1.1;
}
.checkout-head-title .eyebrow {
  font-size: 10px;
  padding: 3px 10px;
  letter-spacing: .14em;
  align-self: flex-start;
}
.checkout-head-stat {
  text-align: right;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(184,148,79,.10), rgba(184,148,79,.02));
  border: 1px solid rgba(184,148,79,.30);
  border-radius: var(--radius-sm);
}
.cs-label { display:block; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.cs-val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--green-dark); letter-spacing: -.02em; }

/* Layout 2 colonnes */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-areas:
    "form tickets"
    "form pay";
  grid-template-rows: 1fr auto;
  gap: 22px;
  align-items: start;
}
.checkout-form { grid-area: form; }
.checkout-tickets { grid-area: tickets; }
.checkout-pay-block { grid-area: pay; }

/* === Colonne gauche : formulaire === */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(17,21,19,.06);
}
.cof-section { display: flex; flex-direction: column; gap: 10px; }
.cof-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cof-full { grid-column: 1 / -1; }
.checkout-form .field { display: grid; gap: 4px; }
.checkout-form .field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.checkout-form .input {
  min-height: 42px;
  padding: 0 12px;
  font-size: .95rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fffdf6;
}
.checkout-form .input:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(7,63,42,.10);
  outline: none;
}

.cof-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(184,148,79,.06);
  border: 1px solid rgba(184,148,79,.20);
  border-radius: 8px;
  font-size: .8rem;
  line-height: 1.4;
  color: var(--ink-soft);
  margin-top: 4px;
}
.cof-terms input[type=checkbox] {
  margin: 2px 0 0;
  accent-color: var(--green-bright);
  width: 16px; height: 16px;
  flex-shrink: 0;
}

/* === Bloc tickets (droite desktop, top mobile) === */
.checkout-tickets {
  position: sticky;
  top: 16px;
  padding: 22px 22px 20px;
  background:
    radial-gradient(70% 50% at 100% 0%, rgba(184,148,79,.14), transparent 70%),
    linear-gradient(180deg, #fffdf6, #fbf6e3);
  border: 1px solid rgba(184,148,79,.32);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(17,21,19,.10);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checkout-pay-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px;
  background: linear-gradient(180deg, #fff, #fbf6e3);
  border: 1px solid rgba(184,148,79,.32);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(17,21,19,.10);
}

.cof-custom {
  display: grid;
  gap: 4px;
  margin-top: -2px;
}
.cof-custom label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.cof-custom .input {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 1rem;
  font-weight: 700;
}

/* Récap prix */
.cof-summary {
  padding: 14px 16px;
  background: linear-gradient(180deg, #fff, #fcf7e6);
  border: 1px solid rgba(7,63,42,.10);
  border-radius: 12px;
}
.cof-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: .88rem;
  color: var(--ink-soft);
}
.cof-summary-line strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -.01em;
}
.cof-summary-discount strong { color: #c8260f; }
.cof-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px solid rgba(7,63,42,.12);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.cof-summary-total strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.85rem;
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: -.03em;
}

/* CTA payer */
.cof-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-dark));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7,63,42,.32);
  transition: transform .12s ease, box-shadow .15s ease, filter .15s ease;
}
.cof-pay:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(7,63,42,.40);
  filter: brightness(1.06);
}
.cof-pay:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.cof-pay-note {
  margin: 0;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
}

/* RESPONSIVE checkout */
@media (max-width: 980px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tickets"
      "form"
      "pay";
  }
  .checkout-tickets { position: static; }
  .checkout-head { grid-template-columns: auto 1fr; }
  .checkout-head-stat { grid-column: 1 / -1; justify-self: stretch; display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; }
  .cs-val { font-size: 1.1rem; }
}
@media (max-width: 600px) {
  .checkout-page { padding: 14px 14px 32px; }
  .checkout-head { padding: 6px 0; margin-bottom: 14px; gap: 12px; }
  .checkout-head .brand-logo { height: 38px; }
  .checkout-head-title h1 { font-size: 1.2rem; }
  .checkout-form { padding: 18px 14px; gap: 12px; }
  .cof-grid { grid-template-columns: 1fr; }
  .checkout-tickets { padding: 16px 14px; gap: 10px; }
  .checkout-tickets .cof-title { font-size: .92rem; }
  .checkout-pay-block { padding: 14px 16px; }
  .cof-summary-total strong { font-size: 1.5rem; }
  /* Vignettes très compactes */
  .checkout-tickets .tier-chips {
    grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
    gap: 6px;
  }
  .checkout-tickets .tier-chip {
    padding: 10px 4px 8px;
    gap: 0;
  }
  .checkout-tickets .tier-chip .chip-badge {
    font-size: 8.5px;
    padding: 1px 5px;
    top: -6px;
  }
  .checkout-tickets .tier-chip .chip-qty { font-size: 1.2rem; margin: 0; }
  .checkout-tickets .tier-chip .chip-qty-label { font-size: 9px; font-weight: 600; color: var(--muted); }
  .checkout-tickets .tier-chip .chip-chances {
    font-size: 8.5px;
    padding: 1px 4px;
    margin: 3px 0 2px;
  }
  .checkout-tickets .tier-chip .chip-total { font-size: .92rem; }
}

/* =================================================================
   VIGNETTES TARIFS (checkout, compact)
   ================================================================= */
.tier-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(98px, 1fr));
  gap: 8px;
}
.tier-chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 8px 10px;
  background: linear-gradient(180deg, #fff, #fbf9ee);
  border: 2px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: all .15s ease;
  box-shadow: 0 2px 6px rgba(17,21,19,.04);
}
.tier-chip:hover {
  border-color: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(7,63,42,.10);
}
.tier-chip.active {
  background: linear-gradient(180deg, #fff, #e7f2ec);
  border-color: var(--green);
  box-shadow: 0 6px 16px rgba(7,63,42,.18), inset 0 0 0 1px var(--green);
}
.tier-chip.active::before {
  content: "✓";
  position: absolute;
  top: -7px; right: -7px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(7,63,42,.30);
}
.tier-chip .chip-badge {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  padding: 2px 8px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(184,148,79,.40);
  white-space: nowrap;
}
.tier-chip .chip-qty {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
  margin-top: 2px;
}
.tier-chip .chip-qty-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tier-chip .chip-chances {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .02em;
  padding: 1px 6px;
  background: rgba(184,148,79,.14);
  border-radius: 999px;
  margin: 2px 0;
}
.tier-chip.active .chip-chances {
  background: rgba(7,63,42,.10);
  color: var(--green-dark);
}
.tier-chip .chip-total {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -.02em;
}

/* =================================================================
   SECTION TARIFS DÉGRESSIFS — vrai design premium
   ================================================================= */
.pricing-hero {
  position: relative;
  padding: 90px 40px;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(184,148,79,.18), transparent 65%),
    radial-gradient(50% 40% at 100% 100%, rgba(7,63,42,.30), transparent 65%),
    linear-gradient(180deg, #0d1b14 0%, #060b08 50%, #0a1410 100%);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,114,.18);
  border-bottom: 1px solid rgba(212,175,114,.18);
}
.pricing-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
}
.pricing-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pricing-hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/></svg>");
  opacity: .18;
  mix-blend-mode: screen;
}
.pricing-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin: 0 auto;
}
.pricing-headline {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-eyebrow {
  display: inline-block;
  padding: 8px 22px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(212,175,114,.40);
  background: rgba(212,175,114,.06);
  border-radius: 999px;
  text-shadow: 0 0 16px rgba(212,175,114,.40);
}
.pricing-headline h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 18px 0 14px;
  color: #fff;
}
.pricing-headline h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-bright) 0%, #fff5d8 40%, var(--gold) 80%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(212,175,114,.40));
  animation: shineMove 4s linear infinite;
}
.pricing-headline p {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,.72);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}
.pricing-headline p strong {
  color: var(--gold-bright);
  font-weight: 800;
}

/* Cards grid */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.ptc {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 26px;
  border-radius: 18px;
  isolation: isolate;
  transition: transform .25s cubic-bezier(.2,.7,.2,1),
              box-shadow .25s cubic-bezier(.2,.7,.2,1);
}

/* Vignettes non-meilleur : 4 niveaux de stylisation, du plus léger au plus riche
   Les barres au sommet ont été retirées. */
.ptc-tier-1 {
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(184,148,79,.16), transparent 60%),
    linear-gradient(160deg, #fefcf2 0%, #f5ecd0 100%);
  border: 1px solid rgba(184,148,79,.32);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 24px 50px -20px rgba(0,0,0,.35),
    0 10px 22px -8px rgba(184,148,79,.18);
  color: var(--ink);
}

.ptc-tier-2 {
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(184,148,79,.22), transparent 60%),
    linear-gradient(160deg, #faf2dd 0%, #e6d4a6 100%);
  border: 1px solid rgba(184,148,79,.45);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 28px 56px -20px rgba(0,0,0,.40),
    0 12px 24px -8px rgba(184,148,79,.25);
  color: var(--ink);
}

.ptc-tier-3 {
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(184,148,79,.32), transparent 65%),
    linear-gradient(160deg, #f5e8c4 0%, #d4b87a 100%);
  border: 1px solid rgba(184,148,79,.60);
  color: #2a2418;
  box-shadow:
    0 1px 0 rgba(255,255,255,.55) inset,
    0 32px 64px -20px rgba(0,0,0,.45),
    0 14px 28px -8px rgba(184,148,79,.35);
}

.ptc-tier-4 {
  background:
    radial-gradient(90% 70% at 50% 100%, rgba(140,108,52,.40), transparent 60%),
    linear-gradient(165deg, #d4b87a 0%, #8a6f3a 100%);
  border: 1.5px solid rgba(140,108,52,.65);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,235,180,.30) inset,
    0 36px 70px -20px rgba(0,0,0,.55),
    0 16px 32px -8px rgba(140,108,52,.45);
}
.ptc-tier-4 .ptc-discount-num {
  background: linear-gradient(135deg, #fff5d8, #fff, #ffd97a);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(255,255,255,.35));
}
.ptc-tier-4 .ptc-discount-label,
.ptc-tier-4 .ptc-qty,
.ptc-tier-4 .ptc-price-new { color: #fff; }
.ptc-tier-4 .ptc-price-new {
  background: linear-gradient(135deg, #fff, #ffe9a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ptc-tier-4 .ptc-price-old { color: rgba(255,255,255,.45); text-decoration-color: rgba(255,255,255,.45); }
.ptc-tier-4 .ptc-price-unit { color: rgba(255,255,255,.70); }
.ptc-tier-4 .ptc-total {
  background: rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.18);
}
.ptc-tier-4 .ptc-total-label { color: rgba(255,255,255,.70); }
.ptc-tier-4 .ptc-total-amount { color: #fff; }
.ptc-tier-4 .ptc-savings { color: #ffe9a8; }
.ptc-tier-4 .ptc-cta {
  background: linear-gradient(135deg, #fff, #ffe9a8);
  color: #2a2418 !important;
  box-shadow: 0 10px 22px rgba(255,255,255,.20);
}

.ptc:not(.ptc-best):hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 40px 80px -20px rgba(0,0,0,.55),
    0 18px 36px -8px rgba(184,148,79,.40);
}
.ptc-best {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(212,175,114,.30), transparent 70%),
    linear-gradient(180deg, #1a1614 0%, #0d0908 100%);
  color: #fff;
  border: 1.5px solid rgba(212,175,114,.55);
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(212,175,114,.20),
    0 40px 80px -20px rgba(212,175,114,.30),
    0 20px 40px -10px rgba(0,0,0,.55);
}
.ptc-best:hover {
  transform: translateY(-10px) scale(1.03);
}
.ptc-best {
  border: 1.5px solid var(--gold-bright);
}

/* Discount block — gros chiffres */
.ptc-discount {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(0,0,0,.10);
}
.ptc-best .ptc-discount { border-bottom-color: rgba(212,175,114,.20); }
.ptc-discount-num {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #8a1c0a 0%, #c8260f 60%, #8a1c0a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 16px rgba(140,28,10,.20));
  padding-right: .08em; /* assure que le % ne se fait pas couper */
}
.ptc-best .ptc-discount-num {
  background: linear-gradient(135deg, var(--gold-bright) 0%, #fff5d8 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(212,175,114,.45));
}
.ptc-discount-base {
  font-size: clamp(22px, 2.8vw, 32px) !important;
  background: linear-gradient(135deg, #6b6457, #94897c) !important;
  -webkit-background-clip: text;
  background-clip: text;
}
.ptc-discount-label {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(140,28,10,.70);
}
.ptc-best .ptc-discount-label { color: var(--gold-bright); }

/* Quantity */
.ptc-qty {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 2px;
}
.ptc-qty span {
  font-weight: 600;
  font-size: 0.7em;
  opacity: .75;
}
.ptc-chances {
  font-size: .82rem;
  margin-bottom: 14px;
  opacity: .80;
}
.ptc-chances strong {
  font-weight: 800;
  color: inherit;
  padding: 1px 7px;
  background: rgba(184,148,79,.22);
  border-radius: 999px;
  margin: 0 2px;
}
.ptc-best .ptc-chances strong {
  background: rgba(255,235,180,.20);
  color: var(--gold-bright);
}
/* Tier-4 : fond bronze-or, on assombrit le pill pour qu'il ressorte */
.ptc-tier-4 .ptc-chances {
  opacity: 1;
  color: rgba(255,255,255,.92);
}
.ptc-tier-4 .ptc-chances strong {
  background: #1a1614;
  color: #fff5d8;
}

/* Prices line */
.ptc-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.ptc-price-old {
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,.4);
  text-decoration-thickness: 2px;
  color: rgba(0,0,0,.40);
  font-size: 1rem;
  font-weight: 600;
}
.ptc-best .ptc-price-old {
  color: rgba(255,255,255,.40);
  text-decoration-color: rgba(255,255,255,.40);
}
.ptc-price-new {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--green-dark);
}
.ptc-best .ptc-price-new {
  background: linear-gradient(135deg, var(--gold-bright), #fff5d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ptc-price-unit {
  font-size: 0.78rem;
  color: rgba(0,0,0,.55);
  font-weight: 600;
}
.ptc-best .ptc-price-unit { color: rgba(255,255,255,.65); }

/* Total */
.ptc-total {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(7,63,42,.06);
  border: 1px solid rgba(7,63,42,.10);
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ptc-best .ptc-total {
  background: rgba(212,175,114,.10);
  border-color: rgba(212,175,114,.25);
}
.ptc-total-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
}
.ptc-best .ptc-total-label { color: rgba(255,255,255,.65); }
.ptc-total-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}
.ptc-best .ptc-total-amount { color: #fff; }
.ptc-savings {
  margin-top: 4px;
  font-size: 11px;
  color: #c8260f;
  font-weight: 700;
  letter-spacing: .02em;
}
.ptc-best .ptc-savings { color: var(--gold-bright); }

/* CTA */
.ptc-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: #fff !important;
  border-radius: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .98rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -.005em;
  box-shadow: 0 10px 22px rgba(7,63,42,.30);
  transition: transform .15s ease, box-shadow .2s ease, filter .15s ease;
}
.ptc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7,63,42,.40);
  filter: brightness(1.06);
}
.ptc-cta svg { transition: transform .2s ease; }
.ptc-cta:hover svg { transform: translateX(3px); }
.ptc-best .ptc-cta {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: #1a1614 !important;
  box-shadow: 0 10px 22px rgba(212,175,114,.45);
}
.ptc-best .ptc-cta:hover {
  box-shadow: 0 16px 32px rgba(212,175,114,.60);
}
.pricing-box strong { font-size: 15px; font-weight: 700; color: var(--ink); }
.pricing-box span { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.pricing-tiers { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.pricing-tiers span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

/* Notices */
.notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(184,148,79,.30);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  background: rgba(255,247,223,.7);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}
.notice input[type="checkbox"] {
  margin-right: 6px;
  accent-color: var(--green-bright);
  width: 18px;
  height: 18px;
}
.error { color: var(--danger); font-weight: 700; }

/* =================================================================
   ADMIN
   ================================================================= */

.admin-layout {
  display: grid;
  grid-template-columns: 282px minmax(0, 1fr);
  min-height: 100vh;
  background: var(--paper);
}
.admin-sidebar {
  min-height: 100vh;
  padding: 24px 22px;
  color: #fff;
  background: linear-gradient(180deg, #0b1411 0%, #050807 100%);
  border-right: 1px solid rgba(212,175,114,.10);
}
.admin-sidebar .brand-logo { height: 50px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.40)); }
.admin-sidebar p { color: rgba(255,255,255,.55); font-size: 13px; margin-top: 8px; }
.admin-sidebar nav { display: grid; gap: 8px; margin-top: 30px; }
.admin-sidebar a, .admin-sidebar button {
  display: flex; width: 100%; min-height: 44px; align-items: center; gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.04);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.admin-sidebar a:hover, .admin-sidebar button:hover {
  background: rgba(7,63,42,.50);
  color: #fff;
  border-color: rgba(184,148,79,.40);
}
.admin-main { padding: 28px; }
.admin-top {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  margin-bottom: 20px; padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.admin-top h1 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--ink);
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.admin-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.admin-card span {
  color: var(--muted);
  font-size: 11px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
}
.admin-card strong {
  display: block;
  margin-top: 10px;
  font-size: 30px;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -.02em;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
table { width: 100%; min-width: 1080px; border-collapse: collapse; }
th, td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  font-size: 14px;
  line-height: 1.45;
  vertical-align: top;
}
th {
  background: var(--paper-2);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
tbody tr:hover { background: var(--green-soft); }

.status {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(7,63,42,.10);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.download-list, .ticket-admin-list { display: flex; flex-wrap: wrap; gap: 8px; }
.settings-block { margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.settings-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.settings-heading h2 { margin: 10px 0 0; font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.settings-heading p { max-width: 560px; margin: 4px 0 0; color: var(--muted); line-height: 1.5; }
.tier-editor { display: grid; gap: 8px; }
.tier-head, .tier-row { display: grid; grid-template-columns: 110px 150px minmax(0, 1fr); gap: 10px; align-items: center; }
.tier-head { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .10em; }
.tier-row { padding: 10px; border: 1px solid var(--line-soft); border-radius: var(--radius-sm); background: #fbfaf5; }

/* =================================================================
   FOOTER
   ================================================================= */

.site-footer {
  margin-top: 60px;
  padding: 28px 48px;
  background: linear-gradient(180deg, transparent, rgba(7,63,42,.04));
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.site-footer a { color: var(--green-bright); font-weight: 600; }
.footer-link {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--green-bright);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.footer-link:hover { color: var(--green-dark); }

/* Modal mentions */
.mentions-modal {
  border: none;
  border-radius: 16px;
  padding: 0;
  width: min(720px, 92vw);
  max-height: 86vh;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  overflow: hidden;
}
.mentions-modal::backdrop {
  background: rgba(7,15,11,.65);
  backdrop-filter: blur(4px);
}
.mentions-modal h2 {
  margin: 0;
  padding: 22px 28px 16px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--green-dark);
  border-bottom: 1px solid var(--line);
}
.mentions-modal .modal-body {
  padding: 20px 28px 26px;
  overflow-y: auto;
  max-height: calc(86vh - 80px);
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.mentions-modal .modal-body p { margin: 0 0 12px; }
.mentions-modal .modal-body p:last-child { margin-bottom: 0; }
.mentions-modal .modal-body h3 {
  margin: 22px 0 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mentions-modal .modal-body h3:first-child { margin-top: 0; }
.mentions-modal .modal-body a {
  color: var(--green-bright);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mentions-modal .modal-body strong { color: var(--ink); }
.modal-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 32px; height: 32px;
  border: none;
  background: rgba(0,0,0,.05);
  color: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background .15s, transform .12s;
}
.modal-close:hover { background: rgba(0,0,0,.12); transform: rotate(90deg); }
@media (max-width: 600px) {
  .mentions-modal h2 { font-size: 1.1rem; padding: 18px 20px 12px; }
  .mentions-modal .modal-body { padding: 16px 20px 20px; }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 40px 28px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-draw.active { grid-template-columns: 1fr; gap: 22px; padding: 40px 28px 48px; min-height: 0; }
  .home-draw.active #presenter-canvas { width: 360px; }
  .draw-spin { width: 280px; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { min-height: auto; }
  .metrics { padding: 0 28px; }
  .section { padding: 56px 28px; }
}

@media (max-width: 760px) {
  html, body { overflow-x: hidden; }
  .nav { min-height: 64px; padding: 8px 16px; }
  .nav .button { padding: 0 14px; min-height: 40px; font-size: 12px; }
  .brand-logo { height: 38px; }
  .hero { padding: 20px 16px 32px; gap: 24px; }
  .hero h1 { font-size: clamp(34px, 9vw, 56px); margin: 10px 0 12px; }
  .hero p { font-size: 15px; }
  .eyebrow { font-size: 10px; padding: 6px 12px; letter-spacing: .12em; }
  .cta-row { gap: 10px; }
  .button { font-size: 14px; min-height: 48px; padding: 0 20px; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts > div { padding: 13px 14px; }
  .hero-facts > div:nth-child(1),
  .hero-facts > div:nth-child(2) { grid-column: span 1; }
  .hero-facts > div:nth-child(3),
  .hero-facts > div:nth-child(4) { grid-column: span 2; order: 0; }
  .hero-facts strong { font-size: 15px; }
  .hero-countdown { padding: 14px 16px 16px; }
  .hero-countdown-grid { gap: 6px; }
  #countdown .metric strong { font-size: 30px; }
  .hero-media {
    min-height: auto;
    padding: 10px 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }
  /* watch-frame : ratio aligné sur l'image pour éviter le letterboxing */
  .watch-frame {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 0.666;
    margin: 0 auto;
  }
  .floating-ticket {
    position: static !important;
    right: auto; bottom: auto; top: auto; left: auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    align-items: center; text-align: center;
    padding: 14px 18px;
    transform: none !important;
  }
  .floating-ticket strong { font-size: 28px; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 16px; gap: 10px; margin: 20px auto 32px; }
  .metric { padding: 14px 10px; min-height: 0; }
  .metric strong { font-size: 28px; margin-top: 6px; }
  .metric span { font-size: 9.5px; letter-spacing: .12em; }
  .metric::before { height: 2px; }
  .section { padding: 36px 16px; }
  .section-header { display: block; margin-bottom: 24px; }
  .section-header h2 { font-size: clamp(26px, 7.5vw, 38px); }
  .section-header p { margin-top: 10px; font-size: 14px; }
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .step { padding: 20px 18px; }
  .step::before { width: 36px; height: 36px; font-size: 18px; margin-bottom: 12px; }
  .home-draw.active { padding: 26px 18px 32px; margin-top: 14px; gap: 16px; }
  .home-draw.active #presenter-canvas { width: 260px; }
  .draw-spin { width: 220px; }
  .home-draw h2 { font-size: 24px; margin-top: 10px; }
  .home-draw p { font-size: 13.5px; margin-top: 10px; }
  #draw-winner { font-size: 19px; margin-top: 14px; }
  .panel { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .page { padding: 24px 16px 60px; }
  .page-title h1 { font-size: clamp(28px, 8.5vw, 44px); }
  .page-title p { font-size: 14px; }
  .admin-main { padding: 20px 18px; }
  .admin-top h1 { font-size: 26px; }
  table { min-width: 720px; }
  .site-footer { padding: 18px 16px; font-size: 12px; line-height: 1.6; }
  /* anti-débordement */
  .ticket-preview { margin-top: 20px; }
}
@media (max-width: 380px) {
  .hero { padding: 16px 12px 24px; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 44px); }
  .nav .button { font-size: 11px; padding: 0 10px; }
  .brand-logo { height: 32px; }
  .watch-frame { max-width: 240px; }
  .metric strong { font-size: 18px; }
  .metric span { font-size: 8px; }
}

/* Pricing tiers responsive */
@media (max-width: 1000px) {
  .pricing-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .pricing-hero { padding: 60px 18px; }
  .pricing-headline { margin-bottom: 38px; }
  .pricing-cards { grid-template-columns: 1fr; gap: 18px; }
  .ptc-best { transform: none; }
  .ptc-best:hover { transform: translateY(-4px); }
  .ptc { padding: 26px 22px 22px; }
  .ptc-discount-num { font-size: clamp(46px, 16vw, 64px); }
  .ptc-total-amount { font-size: 1.7rem; }
  /* Vignettes checkout */
  .tier-chips { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tier-chip { padding: 14px 12px; }
  .tier-chip .chip-qty { font-size: .95rem; }
  .tier-chip .chip-total { font-size: 1.05rem; }
  .tier-chip .chip-badge { font-size: 10px; padding: 3px 8px; }
}
@media (max-width: 420px) {
  .tier-chips { grid-template-columns: 1fr; }
}

/* =================================================================
   WOW FACTOR — accents, grain, glow, ornaments
   ================================================================= */

/* Subtle film grain on hero + dark sections */
.site-shell::before,
.section.dark::before,
.home-draw::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/></svg>");
}
.site-shell { position: relative; }
.section.dark { position: relative; overflow: hidden; }
.section.dark::before { opacity: .18; mix-blend-mode: screen; }
.home-draw::after { opacity: .15; mix-blend-mode: screen; }

/* CTA glow ring on hover */
.button:not(.light):not(.danger) {
  --glow: rgba(7,63,42,.45);
}
.button:not(.light):not(.danger)::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius) + 3px);
  background: linear-gradient(135deg, var(--green-bright), var(--gold), var(--green-bright));
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0;
  transition: opacity .25s var(--ease);
  filter: blur(6px);
  animation: glowMove 3s linear infinite;
}
.button:not(.light):not(.danger):hover::before { opacity: .85; }
@keyframes glowMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Hero h1 gets a decorative gold accent underline on a span if used */
.hero h1 em,
.hero h1 .accent {
  font-style: normal;
  background: linear-gradient(135deg, var(--green-bright), var(--green-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

/* Floating ticket gets a metallic shimmer */
.floating-ticket {
  position: absolute;
  overflow: hidden;
  isolation: isolate;
}
.floating-ticket::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.30) 50%, transparent 100%);
  transform: skewX(-22deg);
  animation: shimmer 3.5s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  60% { left: 220%; }
  100% { left: 220%; }
}

/* Gold divider ornament between sections */
.section + .section { position: relative; }
.section:not(.dark) + .section:not(.dark)::before {
  content: "✦";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 18px;
  background: var(--paper);
  padding: 0 12px;
  letter-spacing: .4em;
}

/* Eyebrow gets a sweep animation */
.eyebrow {
  position: relative;
  overflow: hidden;
}
.eyebrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 30%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  animation: sweep 4s ease-in-out infinite;
}
@keyframes sweep {
  0% { left: -50%; }
  60% { left: 130%; }
  100% { left: 130%; }
}

/* Metric numbers — subtle live tick animation */
.metric strong {
  background: linear-gradient(135deg, var(--green-dark), var(--green-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metric[data-unit="seconds"] strong,
.metric:nth-last-child(1) strong {
  animation: tickGlow 1s ease-in-out infinite;
}
@keyframes tickGlow {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 0 12px rgba(7,63,42,.25)); }
}

/* Steps get giant ghost numbers as background */
.step {
  overflow: hidden;
  position: relative;
}
.step h3, .step p { position: relative; z-index: 1; }
.step::before { position: relative; z-index: 1; }

/* Floating-ticket : tilt légèrement au repos pour le côté carte tickets */
.floating-ticket { transform: rotate(-1.5deg); }
.floating-ticket:hover { transform: translateY(-3px) rotate(0deg); }

/* Section header gets an animated gold dot before the eyebrow */
.section-header .eyebrow { margin-bottom: 12px; align-self: flex-start; }

/* Hero — gold accent line bottom */
.hero {
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .5;
}

/* Section.dark : rayons dorés dans le coin */
.section.dark .section-inner { position: relative; z-index: 1; }
.section.dark::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(closest-side, rgba(212,175,114,.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Home-draw : gold sparkle in background */
.home-draw .home-draw-inner { position: relative; z-index: 1; }

@media (max-width: 760px) {
  .hero::after { left: 18px; right: 18px; }
  .section:not(.dark) + .section:not(.dark)::before { font-size: 14px; }
}

/* =================================================================
   INTRO CINEMA — 2 actes : présentateur → Rolex héros
   ================================================================= */

body.intro-active { overflow: hidden; }
body.intro-active .site-shell { opacity: 0; transition: opacity .9s ease .2s; }
body:not(.intro-active) .site-shell { opacity: 1; }

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #04060a;
  isolation: isolate;
}
.intro-overlay.intro-done { animation: introOverlayFade .6s cubic-bezier(.55,0,.1,1) forwards; }
@keyframes introOverlayFade {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Phase de transition vers le hero : ne reste que la montre */
.intro-overlay.intro-transitioning .intro-bg,
.intro-overlay.intro-transitioning .intro-rays,
.intro-overlay.intro-transitioning .intro-vignette,
.intro-overlay.intro-transitioning .intro-particles,
.intro-overlay.intro-transitioning .intro-presenter,
.intro-overlay.intro-transitioning .intro-text,
.intro-overlay.intro-transitioning .intro-skip,
.intro-overlay.intro-transitioning .intro-orbit,
.intro-overlay.intro-transitioning .intro-ring,
.intro-overlay.intro-transitioning .intro-sparkle,
.intro-overlay.intro-transitioning .intro-flash {
  opacity: 0 !important;
  transition: opacity .5s ease;
  pointer-events: none;
}
.intro-overlay.intro-transitioning {
  background: transparent;
  transition: background .5s ease;
}
/* Désactive les keyframes d'enter quand on transitionne (sinon transform double) */
.intro-overlay.intro-transitioning .intro-watch-wrap .watch-stack {
  animation: none;
}
/* Le wrapper qui transitionne — on retire l'isolation pour libérer le transform */
.intro-overlay .intro-watch-wrap {
  transform-origin: center center;
}

/* === BACKGROUND === */
.intro-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 50% 55%, rgba(7,63,42,.30), transparent 70%),
    radial-gradient(50% 30% at 50% 75%, rgba(212,175,114,.10), transparent 75%),
    linear-gradient(180deg, #04060a 0%, #08120e 50%, #04060a 100%);
  z-index: -3;
}
.intro-rays {
  position: absolute;
  width: 220vmax; height: 220vmax;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg,
    transparent 0deg, rgba(212,175,114,.10) 16deg, transparent 32deg,
    transparent 100deg, rgba(212,175,114,.06) 116deg, transparent 132deg,
    transparent 200deg, rgba(212,175,114,.10) 216deg, transparent 232deg,
    transparent 300deg, rgba(212,175,114,.06) 316deg, transparent 332deg
  );
  opacity: 0;
  animation: introRaysSpin 22s linear infinite, introRaysIn 1.2s ease 1.6s forwards;
  z-index: -2;
}
@keyframes introRaysSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes introRaysIn   { to { opacity: 1; } }

.intro-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side at 50% 50%, transparent 35%, rgba(0,0,0,.78) 100%);
  z-index: -1;
}

/* === PARTICLES (subtiles) === */
.intro-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.intro-particles span {
  position: absolute;
  bottom: -10px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--gold-bright), transparent);
  opacity: 0;
  animation: introFloat linear infinite;
}
.intro-particles span:nth-child(1)  { left:  8%; animation-duration: 11s; animation-delay: 0.0s; }
.intro-particles span:nth-child(2)  { left: 18%; animation-duration: 14s; animation-delay: 1.0s; width: 4px; height: 4px; }
.intro-particles span:nth-child(3)  { left: 28%; animation-duration: 12s; animation-delay: 2.5s; }
.intro-particles span:nth-child(4)  { left: 38%; animation-duration: 13s; animation-delay: 0.6s; }
.intro-particles span:nth-child(5)  { left: 46%; animation-duration: 11s; animation-delay: 3.0s; width: 4px; height: 4px; }
.intro-particles span:nth-child(6)  { left: 54%; animation-duration: 15s; animation-delay: 1.4s; }
.intro-particles span:nth-child(7)  { left: 62%; animation-duration: 12s; animation-delay: 2.2s; }
.intro-particles span:nth-child(8)  { left: 72%; animation-duration: 13.5s; animation-delay: 0.3s; width: 4px; height: 4px; }
.intro-particles span:nth-child(9)  { left: 82%; animation-duration: 11.5s; animation-delay: 1.8s; }
.intro-particles span:nth-child(10) { left: 90%; animation-duration: 14s; animation-delay: 0.8s; }
.intro-particles span:nth-child(11) { left: 33%; animation-duration: 13s; animation-delay: 3.2s; }
.intro-particles span:nth-child(12) { left: 68%; animation-duration: 12.5s; animation-delay: 2.8s; }
@keyframes introFloat {
  0%   { transform: translateY(0)      scale(.6); opacity: 0; }
  15%  { opacity: 1; }
  60%  { opacity: .8; }
  100% { transform: translateY(-110vh) scale(1.2); opacity: 0; }
}

/* === ACTE 1 : PRÉSENTATEUR (logo + tagline) === */
/* Commence centré big, finit en sceau coin haut-gauche */
.intro-presenter {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  z-index: 4;
  transform: translate(-50%, -50%) scale(.88);
  animation:
    introPresenterEnter 1.0s cubic-bezier(.2,.7,.2,1) .35s forwards,
    introPresenterToCorner 1.0s cubic-bezier(.55,0,.25,1) 1.5s forwards;
  transform-origin: center;
}
@keyframes introPresenterEnter {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes introPresenterToCorner {
  to {
    top: 32px;
    left: 32px;
    transform: translate(0, 0) scale(.42);
    opacity: .92;
  }
}
.intro-logo {
  width: clamp(180px, 22vw, 260px);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 16px 32px rgba(212,175,114,.30))
    drop-shadow(0 0 18px rgba(7,63,42,.30));
}
.intro-eyebrow {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 700;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(212,175,114,.45), 0 2px 8px rgba(0,0,0,.5);
  white-space: nowrap;
}

/* === SCÈNE CENTRALE : montre + texte stack vertical === */
.intro-stage {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 6vh, 64px);
  width: min(94vw, 900px);
  z-index: 3;
}

/* Wrapper de la montre — contient tous les décors animés */
.intro-watch-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(220px, 26vw, 320px);
  height: clamp(280px, 46vh, 480px);
  isolation: isolate;
  --orbit-r: 50%;
}

/* === LA MONTRE === */
.intro-watch {
  position: relative;
  z-index: 5;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0;
  filter: blur(28px) brightness(.4);
  transform: scale(1.5) translateY(8vh);
  animation: introWatchEnter 1.4s cubic-bezier(.18,.84,.30,1) 1.75s forwards;
}
@keyframes introWatchEnter {
  50% {
    filter: blur(1px) brightness(1);
    transform: scale(1.04) translateY(-1vh);
    opacity: 1;
  }
  100% {
    filter:
      blur(0) brightness(1)
      drop-shadow(0 40px 60px rgba(7,63,42,.55))
      drop-shadow(0 0 100px rgba(212,175,114,.20));
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Cercle pointillé doré qui tourne autour */
.intro-orbit {
  position: absolute;
  width: 115%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(212,175,114,.40);
  opacity: 0;
  animation:
    introOrbitFade 1s ease 2.2s forwards,
    introOrbitSpin 24s linear infinite 2.2s;
  z-index: 2;
}
@keyframes introOrbitFade { to { opacity: 1; } }
@keyframes introOrbitSpin { to { transform: rotate(360deg); } }

/* 3 anneaux qui pulsent (radar pings) */
.intro-ring {
  position: absolute;
  width: 95%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(212,175,114,.55);
  opacity: 0;
  z-index: 1;
  animation: introRingPulse 2.4s ease-out infinite;
  box-shadow:
    0 0 30px rgba(212,175,114,.20),
    inset 0 0 30px rgba(212,175,114,.10);
}
.intro-ring-1 { animation-delay: 2.9s; }
.intro-ring-2 { animation-delay: 3.7s; }
.intro-ring-3 { animation-delay: 4.5s; }
@keyframes introRingPulse {
  0%   { transform: scale(.55); opacity: 0; border-width: 2px; }
  15%  { opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; border-width: 1px; }
}

/* Étincelles dorées en orbite — radius en px (vrai cercle) */
.intro-sparkle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  margin: -4.5px;
  border-radius: 50%;
  background: radial-gradient(closest-side, #fff5d8, var(--gold-bright) 50%, transparent 80%);
  box-shadow:
    0 0 14px var(--gold-bright),
    0 0 28px rgba(212,175,114,.50);
  opacity: 0;
  z-index: 4;
  animation:
    introSparkleFade .6s ease 2.6s forwards,
    introSparkleOrbit 10s linear infinite 2.6s,
    introSparkleTwinkle 1.5s ease-in-out infinite 2.6s;
}
.intro-sparkle.s1 { --start:   0deg; --orbit: clamp(155px, 18vw, 220px); }
.intro-sparkle.s2 { --start:  90deg; --orbit: clamp(165px, 19vw, 235px); width: 7px; height: 7px; margin: -3.5px; }
.intro-sparkle.s3 { --start: 180deg; --orbit: clamp(150px, 17vw, 210px); }
.intro-sparkle.s4 { --start: 270deg; --orbit: clamp(170px, 19vw, 240px); width: 6px; height: 6px; margin: -3px; }
@keyframes introSparkleFade { to { opacity: 1; } }
@keyframes introSparkleTwinkle {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.6); }
}
@keyframes introSparkleOrbit {
  from { transform: rotate(var(--start)) translateX(var(--orbit)) rotate(calc(-1 * var(--start))); }
  to   { transform: rotate(calc(var(--start) + 360deg)) translateX(var(--orbit)) rotate(calc(-1 * (var(--start) + 360deg))); }
}

/* Flash radial au moment où la Rolex atterrit */
.intro-flash {
  position: absolute;
  width: 180%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    rgba(255,255,255,.45),
    rgba(212,175,114,.18) 25%,
    transparent 60%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
  transform: scale(.3);
  animation: introFlash .6s ease-out 2.85s forwards;
}
@keyframes introFlash {
  0%   { opacity: 0; transform: scale(.3); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: scale(1.5); }
}

/* === ACTE 3 : texte sous la Rolex (dans le stage flex) === */
.intro-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
  position: relative;
}
/* Backdrop subtil derrière le texte pour garantir la lisibilité */
.intro-text::before {
  content: "";
  position: absolute;
  inset: -16px -10vw -16px -10vw;
  background: radial-gradient(closest-side, rgba(4,6,10,.65), transparent 75%);
  z-index: -1;
  pointer-events: none;
}
.intro-pre {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 0 16px rgba(212,175,114,.40), 0 2px 8px rgba(0,0,0,.5);
  opacity: 0;
  animation: introFadeIn .6s ease 2.5s forwards;
}
.intro-pre .line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
@keyframes introFadeIn { to { opacity: 1; } }

.intro-headline {
  margin: 0;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 9vw, 108px);
  line-height: .95;
  letter-spacing: -.05em;
  color: #fff;
  display: flex;
  gap: .22em;
  align-items: baseline;
  justify-content: center;
  text-shadow:
    0 4px 40px rgba(0,0,0,.7),
    0 0 60px rgba(4,6,10,.8);
}
.intro-headline span {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
}
.intro-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-bright) 0%, #fff5d8 40%, var(--gold) 70%, var(--gold-bright) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(212,175,114,.45));
  animation: shineMove 3.5s linear infinite;
}
.intro-headline .w1 { animation: introWordIn .65s cubic-bezier(.2,.7,.2,1) 2.7s forwards; }
.intro-headline .w2 { animation: introWordIn .65s cubic-bezier(.2,.7,.2,1) 2.9s forwards; }
@keyframes introWordIn {
  to { opacity: 1; transform: translateY(0); }
}

.intro-cta-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(212,175,114,.45);
  border-radius: 999px;
  color: #fff;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(212,175,114,.30), 0 2px 10px rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,.40), inset 0 1px 0 rgba(255,255,255,.10);
  opacity: 0;
  animation: introFadeIn .6s ease 2.5s forwards;
}
.intro-cta-hint::before {
  content: "🎟";
  font-size: 1.1em;
  filter: grayscale(.2) brightness(1.1);
}

/* === SKIP BUTTON === */
.intro-skip {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s, color .2s, transform .15s, border-color .2s;
}
.intro-skip:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.30);
  color: #fff;
  transform: translateY(-1px);
}

/* Reduced motion = skip */
@media (prefers-reduced-motion: reduce) {
  .intro-overlay { display: none !important; }
}

/* === MOBILE === */
@media (max-width: 760px) {
  .intro-logo { width: clamp(140px, 38vw, 200px); }
  .intro-eyebrow { font-size: 9.5px; letter-spacing: .22em; }
  .intro-stage { gap: clamp(28px, 5vh, 44px); }
  .intro-watch-wrap { width: clamp(180px, 50vw, 240px); height: clamp(240px, 40vh, 360px); }
  .intro-sparkle.s1 { --orbit: clamp(125px, 28vw, 165px); }
  .intro-sparkle.s2 { --orbit: clamp(135px, 30vw, 175px); }
  .intro-sparkle.s3 { --orbit: clamp(120px, 27vw, 160px); }
  .intro-sparkle.s4 { --orbit: clamp(140px, 31vw, 180px); }
  .intro-pre { font-size: 11px; letter-spacing: .18em; gap: 12px; }
  .intro-pre .line { width: 28px; }
  .intro-headline { font-size: clamp(42px, 13vw, 72px); gap: .18em; }
  .intro-cta-hint { font-size: 10.5px; letter-spacing: .22em; }
  .intro-skip { top: 14px; right: 14px; font-size: 11px; padding: 7px 12px; }
  /* Sceau coin haut-gauche un peu plus petit sur mobile */
  @keyframes introPresenterToCorner {
    to {
      top: 18px;
      left: 18px;
      transform: translate(0, 0) scale(.35);
      opacity: .90;
    }
  }
}
@media (max-height: 600px) {
  .intro-logo { width: clamp(120px, 18vw, 160px); }
  .intro-watch-wrap { height: clamp(200px, 48vh, 320px); width: clamp(140px, 28vw, 220px); }
  .intro-headline { font-size: clamp(32px, 7vw, 60px); }
}
