:root {
  --bg: #0b0d11;
  --bg-soft: #0f1319;
  --card: rgba(255,255,255,.038);
  --card-strong: rgba(255,255,255,.055);
  --text: #f2f4f7;
  --muted: #8a93a0;
  --red: #e8272f;
  --red-dark: #be1d24;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.15);
  --shadow: 0 26px 80px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, rgba(232,39,47,.18), transparent 34rem),
    radial-gradient(circle at 95% 10%, rgba(232,39,47,.08), transparent 28rem),
    linear-gradient(180deg, #0b0d11 0%, #0d1015 48%, #0a0c10 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
h1, h2, h3 { font-family: "Space Grotesk", Inter, system-ui, sans-serif; margin: 0; }

.shell { width: min(1120px, calc(100% - 34px)); margin-inline: auto; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}
.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight: 750;
  letter-spacing: -.02em;
}
.brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 34px rgba(232,39,47,.14);
}
.brand span { font-size: 1.02rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c4c9d0;
  font-size: .78rem;
  white-space: nowrap;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(12px);
}
.pill-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--red); box-shadow: 0 0 15px rgba(232,39,47,.9); }

.eyebrow {
  color: var(--red);
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .72rem;
  margin-bottom: 14px;
}

.hero-home {
  text-align: center;
  padding: clamp(30px, 6vw, 58px) 0 20px;
}
.hero-logo {
  width: clamp(122px, 16vw, 176px);
  height: clamp(122px, 16vw, 176px);
  object-fit: contain;
  margin: 0 auto 25px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 28px 80px rgba(0,0,0,.48), 0 0 70px rgba(232,39,47,.12);
}
.hero-home h1 { font-size: clamp(3rem, 8vw, 5.6rem); line-height: .95; letter-spacing: -.065em; }
.hero-home > p {
  width: min(720px, 100%);
  margin: 22px auto 0;
  color: #b7bec8;
  line-height: 1.7;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
}
.hero-home strong { color: #fff; }

.social-row { display: flex; justify-content: center; gap: 10px; margin: 28px 0 14px; }
.icon-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.icon-button:hover { transform: translateY(-3px); border-color: rgba(232,39,47,.45); background: rgba(232,39,47,.08); }
.icon-button svg { width: 21px; height: 21px; fill: currentColor; }

.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 34px auto 22px; max-width: 880px; }
.action-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 190px;
  padding: 25px;
  text-align: left;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.action-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -95px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,39,47,.2), transparent 68%);
}
.action-card:hover { transform: translateY(-4px); border-color: rgba(232,39,47,.42); box-shadow: 0 28px 90px rgba(0,0,0,.48); }
.card-top { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 32px; }
.card-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; border: 1px solid var(--line); background: rgba(255,255,255,.045); }
.card-icon svg { width: 23px; height: 23px; }
.badge { display: inline-flex; align-items: center; font-size: .7rem; font-weight: 750; color: #f4b8bb; background: rgba(232,39,47,.1); border: 1px solid rgba(232,39,47,.24); padding: 7px 9px; border-radius: 999px; text-transform: uppercase; letter-spacing: .08em; }
.action-card h2 { font-size: 1.35rem; letter-spacing: -.03em; }
.action-card p { color: var(--muted); margin: 7px 0 0; line-height: 1.55; font-size: .94rem; }
.card-arrow { position: absolute; right: 22px; bottom: 19px; color: var(--red); font-size: 1.45rem; font-weight: 700; }

.footer { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 18px; padding: 32px 0 42px; color: #68717d; font-size: .78rem; }
.footer a:hover { color: #d7dbe0; }

.roadmap-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(30px, 5vw, 52px);
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 40px 0 68px;
}
.roadmap-copy, .preview-wrap, .delivery-copy { min-width: 0; }
.roadmap-copy h1, .delivery-copy h1 { font-size: clamp(2.65rem, 6vw, 5rem); line-height: .96; letter-spacing: -.06em; max-width: 760px; }
.roadmap-copy .lead, .delivery-copy .lead { margin: 22px 0 0; font-size: clamp(1.05rem, 2vw, 1.22rem); line-height: 1.65; color: #b7bec8; max-width: 720px; }
.roadmap-copy .lead strong, .delivery-copy .lead strong { color: #fff; }
.benefits, .guide-points { display: grid; gap: 12px; margin: 28px 0 30px; }
.benefit { display: flex; gap: 12px; align-items: flex-start; color: #dce0e5; line-height: 1.45; min-width: 0; }
.check { flex: 0 0 auto; width: 23px; height: 23px; border-radius: 8px; display: grid; place-items: center; background: rgba(232,39,47,.12); border: 1px solid rgba(232,39,47,.3); color: #ff555b; margin-top: 1px; font-weight: 800; }
.check svg { width: 14px; height: 14px; }

.form-card { padding: 18px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.035); box-shadow: 0 20px 70px rgba(0,0,0,.28); max-width: 650px; }
.signup-form { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
.signup-form input[type="email"] { width: 100%; min-width: 0; padding: 15px 16px; color: #fff; background: #090b0f; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; outline: none; transition: border-color .18s ease, box-shadow .18s ease; }
.signup-form input[type="email"]:focus { border-color: rgba(232,39,47,.65); box-shadow: 0 0 0 4px rgba(232,39,47,.09); }
.signup-form button { border: 0; cursor: pointer; padding: 15px 20px; border-radius: 13px; color: white; background: linear-gradient(180deg, #ef343c, #c61f27); font-weight: 750; box-shadow: 0 12px 32px rgba(232,39,47,.22); transition: transform .18s ease, filter .18s ease; }
.signup-form button:hover { transform: translateY(-1px); filter: brightness(1.06); }
.privacy-note { margin: 10px 2px 0; color: #7f8996; font-size: .76rem; line-height: 1.45; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; }

.preview-card { position: relative; border-radius: 28px; padding: 14px; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018)); box-shadow: 0 34px 100px rgba(0,0,0,.46); transform: rotate(1deg); }
.preview-card::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; background: linear-gradient(135deg, rgba(232,39,47,.42), transparent 35%, transparent 70%, rgba(232,39,47,.16)); z-index: -1; }
.preview-card img { width: 100%; height: auto; border-radius: 18px; aspect-ratio: 16 / 9; object-fit: cover; }
.preview-tag { position: absolute; left: -18px; bottom: 24px; padding: 10px 14px; border-radius: 12px; background: #0a0c10; border: 1px solid var(--line-strong); box-shadow: 0 15px 40px rgba(0,0,0,.38); font-weight: 750; font-size: .78rem; }
.preview-tag span { color: var(--red); }

.newsletter-section { border-top: 1px solid var(--line); padding: 70px 0 78px; }
.newsletter-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; align-items: start; }
.newsletter-section h2 { font-size: clamp(1.85rem, 4vw, 3rem); letter-spacing: -.045em; line-height: 1.06; }
.newsletter-section .sidecopy { color: var(--muted); margin-top: 16px; line-height: 1.65; }
.mail-list { display: grid; gap: 10px; }
.mail-item { display: flex; gap: 12px; align-items: center; padding: 15px 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); color: #cfd4db; }
.mail-item .mini { color: var(--red); flex: 0 0 auto; }
.more { margin: 15px 2px 0; color: #737d89; font-style: italic; font-size: .9rem; }

.simple-page { padding: 36px 0 30px; }
.delivery-layout { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(300px,.95fr); gap: clamp(30px,5vw,52px); align-items: center; min-height: calc(100vh - 170px); }
.bodycopy { max-width: 720px; color: #aab2bd; line-height: 1.75; font-size: 1rem; margin: 18px 0 0; }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.primary-button, .secondary-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 18px; border-radius: 13px; font-weight: 750; text-align: center; transition: transform .18s ease, border-color .18s ease, filter .18s ease; }
.primary-button { color: #fff; background: linear-gradient(180deg, #ef343c, #c61f27); box-shadow: 0 12px 32px rgba(232,39,47,.22); }
.secondary-button { color: #e7e9ec; border: 1px solid var(--line-strong); background: rgba(255,255,255,.04); }
.primary-button:hover, .secondary-button:hover { transform: translateY(-1px); }
.delivery-preview { width: 100%; }

.community-card { display: flex; align-items: center; justify-content: space-between; gap: 22px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.048), rgba(255,255,255,.02)); border-radius: 22px; padding: 20px; box-shadow: 0 20px 70px rgba(0,0,0,.24); }
.community-card h2 { font-size: 1.2rem; margin-top: 9px; }
.community-card p { margin: 7px 0 0; color: var(--muted); line-height: 1.55; }
.compact-community { margin-top: 30px; max-width: 720px; }

.thankyou-wrap { display: grid; place-items: center; min-height: calc(100vh - 160px); }
.thankyou-card { width: min(760px, 100%); text-align: center; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.047), rgba(255,255,255,.018)); border-radius: 30px; padding: clamp(28px, 5vw, 54px); box-shadow: var(--shadow); }
.thankyou-logo { width: 104px; height: 104px; object-fit: contain; border-radius: 50%; margin: 0 auto 22px; box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 52px rgba(232,39,47,.12); }
.thankyou-card h1 { font-size: clamp(2.35rem, 7vw, 4rem); letter-spacing: -.055em; line-height: .98; }
.thankyou-card > .lead { color: #bbc2cb; font-size: 1.08rem; margin: 16px auto 0; }
.steps { display: grid; gap: 10px; margin: 30px 0; text-align: left; }
.step-card { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 14px; padding: 17px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.step-number { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; color: #ff6369; background: rgba(232,39,47,.1); border: 1px solid rgba(232,39,47,.24); font-weight: 800; }
.step-card strong { display: block; margin-top: 1px; }
.step-card p { margin: 6px 0 0; color: var(--muted); line-height: 1.55; }
.thankyou-community { text-align: left; margin-top: 8px; }
.text-link { display: inline-block; margin-top: 24px; color: #8f98a4; font-size: .9rem; }
.text-link:hover { color: #fff; }

@media (max-width: 900px) {
  .roadmap-layout, .delivery-layout { grid-template-columns: 1fr; min-height: auto; gap: 34px; padding-top: 24px; }
  .preview-wrap { width: min(680px, 100%); margin-inline: auto; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 26px; }
  .delivery-copy { order: 1; }
  .delivery-preview { order: 2; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 24px), 1120px); }
  .topbar { padding: 14px 0; }
  .brand img { width: 42px; height: 42px; flex-basis: 42px; }
  .brand span { display: none; }
  .pill { font-size: .66rem; padding: 7px 9px; }
  .hero-home { padding-top: 26px; }
  .hero-logo { width: 124px; height: 124px; margin-bottom: 20px; }
  .hero-home h1 { font-size: clamp(2.75rem, 16vw, 4rem); }
  .hero-home > p { font-size: 1rem; line-height: 1.6; }
  .social-row { margin-top: 22px; }
  .cards { grid-template-columns: 1fr; margin-top: 26px; }
  .action-card { min-height: 168px; padding: 21px; }
  .roadmap-copy h1, .delivery-copy h1 { font-size: clamp(2.35rem, 12vw, 3.7rem); }
  .roadmap-layout { padding-bottom: 52px; }
  .signup-form { grid-template-columns: 1fr; }
  .signup-form button { width: 100%; }
  .preview-card { padding: 9px; border-radius: 22px; transform: none; }
  .preview-card img { border-radius: 14px; }
  .preview-tag { position: static; display: inline-flex; margin-top: 10px; max-width: 100%; }
  .newsletter-section { padding: 52px 0 58px; }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .primary-button, .secondary-button { width: 100%; }
  .community-card { align-items: stretch; flex-direction: column; }
  .thankyou-card { border-radius: 24px; }
  .thankyou-logo { width: 92px; height: 92px; }
}

@media (max-width: 390px) {
  .shell { width: min(calc(100% - 18px), 1120px); }
  .pill { max-width: 52vw; overflow: hidden; text-overflow: ellipsis; }
  .hero-logo { width: 112px; height: 112px; }
  .action-card { padding: 18px; }
  .form-card { padding: 14px; }
  .thankyou-card { padding: 26px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* V4: mobile polish */
.roadmap-mobile-preview {
  display: none;
}

@media (max-width: 680px) {
  .roadmap-layout {
    gap: 0;
    padding-top: 12px;
    padding-bottom: 44px;
  }

  .roadmap-copy h1 {
    font-size: clamp(2.1rem, 10.5vw, 3rem);
    line-height: 1.01;
    letter-spacing: -.05em;
  }

  .roadmap-copy .lead {
    margin-top: 16px;
    font-size: .98rem;
    line-height: 1.55;
  }

  .roadmap-mobile-preview {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin: 22px 0 24px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
  }

  .roadmap-mobile-preview img {
    width: 108px;
    height: 68px;
    border-radius: 11px;
    object-fit: cover;
    object-position: center;
    background: #f4efe7;
  }

  .roadmap-mobile-preview strong {
    display: block;
    font-family: "Space Grotesk", Inter, system-ui, sans-serif;
    font-size: .93rem;
    line-height: 1.25;
    color: #fff;
  }

  .roadmap-mobile-preview span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.35;
  }

  .roadmap-desktop-preview {
    display: none;
  }

  .benefits {
    gap: 10px;
    margin: 0 0 22px;
  }

  .benefit {
    gap: 10px;
    font-size: .94rem;
    line-height: 1.42;
  }

  .check {
    width: 22px;
    height: 22px;
    border-radius: 7px;
  }

  .form-card {
    max-width: none;
    padding: 14px;
    border-radius: 18px;
  }

  .signup-form input[type="email"],
  .signup-form button {
    min-height: 54px;
  }

  .signup-form input[type="email"] {
    font-size: 1rem;
  }

  .signup-form button {
    font-size: 1rem;
  }

  .privacy-note {
    margin: 10px 2px 0;
    font-size: .72rem;
  }

  .newsletter-section {
    padding-top: 46px;
  }

  .newsletter-section h2 {
    font-size: 1.9rem;
  }

  .mail-item {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: .91rem;
    line-height: 1.4;
  }

  .action-card p {
    max-width: 88%;
    font-size: .9rem;
  }
}

@media (max-width: 420px) {
  .roadmap-mobile-preview {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
  }
  .roadmap-mobile-preview img {
    width: 92px;
    height: 58px;
  }
  .roadmap-mobile-preview span {
    font-size: .71rem;
  }
}


/* Mentions légales */
.legal-page { max-width: 920px; padding-top: 38px; padding-bottom: 40px; }
.legal-hero { margin-bottom: 28px; }
.legal-hero h1 { margin: 8px 0 12px; font-size: clamp(2.35rem, 7vw, 4.6rem); line-height: .98; letter-spacing: -.055em; }
.legal-hero .lead { max-width: 720px; margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.65; }
.legal-stack { display: grid; gap: 16px; }
.legal-card { padding: clamp(22px, 4vw, 34px); border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.025); box-shadow: 0 18px 54px rgba(0,0,0,.16); }
.legal-card h2 { margin: 0 0 14px; font-size: 1.28rem; letter-spacing: -.025em; }
.legal-card h3 { margin: 0 0 8px; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.legal-card p { margin: 0 0 13px; color: #c9cfd8; line-height: 1.68; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-details { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin: 20px 0; }
.legal-details div { padding: 14px 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.018); }
.legal-details dt { margin-bottom: 5px; color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; }
.legal-details dd { margin: 0; font-weight: 650; line-height: 1.4; }
.legal-addresses { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin: 18px 0; }
.legal-addresses > div { padding: 17px; border-radius: 16px; background: rgba(232,39,47,.055); border: 1px solid rgba(232,39,47,.14); }
.legal-contact a { color: var(--text); text-decoration-color: var(--red); text-underline-offset: 4px; }
.footer span { color: var(--muted); }
@media (max-width: 680px) {
  .legal-page { padding-top: 20px; }
  .legal-hero { margin-bottom: 20px; }
  .legal-details, .legal-addresses { grid-template-columns: 1fr; }
  .legal-card { border-radius: 18px; }
}
