:root {
  --bg: #090b0f;
  --panel: #11151d;
  --panel-soft: #171c26;
  --text: #f3f5f7;
  --muted: #adb4c0;
  --red: #e10600;
  --red-soft: #ff3b34;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(9, 11, 15, 0.84);
  border-bottom: 1px solid rgba(225, 6, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: fit-content;
}

.brand-mark {
  height: 36px;
  width: auto;
  display: block;
}

/* Legacy classes — gardées pour compat avec les pages legales/i18n */
.logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.brand-tagline {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.top-nav a:hover {
  color: #fff;
  text-decoration: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding-left: 2px;
}

.language-select {
  min-width: 92px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
}

.language-select option {
  background: #11151d;
  color: #fff;
}

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

.header-actions {
  display: flex;
  gap: 10px;
}

.hero {
  padding: 64px 0 48px;
  background:
    radial-gradient(900px 500px at 18% 0%, rgba(225, 6, 0, 0.28), transparent 60%),
    radial-gradient(700px 380px at 82% 100%, rgba(225, 6, 0, 0.10), transparent 65%);
  background-repeat: no-repeat;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.hero-media {
  align-self: stretch;
  display: grid;
  place-items: center;
}

.hero-media .cover-image {
  max-height: 380px;
  object-fit: contain;
  border-radius: 14px;
}

/* Variante du hero-media pour afficher le mark SVG nu (pas de cadre) */
.hero-media-svg {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hero-mark {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

.hero-stats {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stat-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.stat-num {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.3px;
}

.stat-label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: #111;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.button.ghost {
  background: transparent;
  color: #fff;
}

.button:hover { text-decoration: none; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.media-card,
.card,
.image-placeholder,
.video-placeholder {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.media-card {
  padding: 14px;
}

.cover-image {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.section {
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
}

.section-title {
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 99px;
}

.title-red::after { background: var(--red); }
.title-white::after { background: rgba(255, 255, 255, 0.9); }

.center-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-intro,
.section p,
.muted,
li {
  color: var(--muted);
  line-height: 1.7;
}

.section-intro {
  max-width: 72ch;
}

.cards-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.card p { margin: 0; }

.product-card {
  gap: 6px;
}

.product-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 6px;
}

.product-tagline {
  margin: 0 0 10px !important;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--red-soft);
}

.product-card .cta-row {
  margin-top: auto;
  padding-top: 16px;
}

.photo-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.photo-grid-wide {
  grid-template-columns: 1fr;
}

.photo-grid > .image-placeholder {
  min-height: 0;
  aspect-ratio: 9 / 16;
}

.photo-grid-wide > .image-placeholder {
  aspect-ratio: 21 / 9;
}

.image-placeholder,
.video-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  color: #d7dde7;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 18px;
}

.video-placeholder {
  min-height: 260px;
  aspect-ratio: 16 / 9;
}

.video-full {
  width: 100%;
  min-height: clamp(260px, 45vw, 520px);
  margin-top: 22px;
}

.photo-real {
  padding: 0;
  overflow: hidden;
}

.photo-real img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.photo-logo img,
.photo-logo2 img {
  object-fit: contain;
  padding: 14px;
  background: #050607;
}

.photo-banner img {
  object-fit: contain;
  padding: 10px;
  background: #050607;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
}

.verify-section {
  min-height: calc(100vh - 210px);
  display: grid;
  align-items: center;
}

.verify-wrap {
  display: grid;
  place-items: center;
}

.verify-card {
  width: min(760px, 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  padding: 28px;
}

.verify-lead {
  max-width: 62ch;
}

.verify-meta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #d7dde7;
}

.verify-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8f97a5;
}

.verify-meta.is-loading .verify-dot {
  background: #f4b000;
}

.verify-meta.is-success .verify-dot {
  background: #37d67a;
}

.verify-meta.is-error .verify-dot {
  background: #ff4d4f;
}

.verify-actions {
  margin-top: 22px;
}

.reset-form {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.reset-form[hidden] {
  display: none;
}

.reset-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #d7dde7;
}

.reset-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 0 16px;
  font: inherit;
}

.reset-input::placeholder {
  color: #8f97a5;
}

.reset-help {
  margin: 2px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.reset-submit {
  width: 100%;
  margin-top: 6px;
}

.footer {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 11, 15, 0.88);
  padding: 18px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.banner {
  display: none;
}

@media (max-width: 1000px) {
  .hero-inner,
  .cards-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    margin-bottom: 8px;
  }

  .hero-media .cover-image {
    max-height: 240px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .brand-mark {
    height: 28px;
  }

  .brand-tagline {
    display: none;
  }

  .top-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .button {
    padding: 10px 14px;
    font-size: 12px;
  }

  .hero {
    padding: 40px 0 24px;
  }

  .hero-stats {
    gap: 8px;
  }

  .stat-pill {
    padding: 8px 12px;
  }

  .stat-num {
    font-size: 16px;
  }
}
