/* ==========================================================================
   DragonType – Site de présentation
   Couleurs et formes inspirées directement de l'application iOS.
   Palette : or (#FFE08C), jaune ambré (#FFD96B), bleu nuit (#0B1230),
   bleu cyan (#5BC9FF), violet magique (#8E5BFF), rose feu (#FF6BA1).
   ========================================================================== */

:root {
  --bg-deep: #06091f;
  --bg-night: #0b1230;
  --bg-night-2: #131a45;
  --bg-card: rgba(18, 25, 65, 0.7);
  --bg-card-hover: rgba(28, 38, 85, 0.85);

  --gold-1: #ffeaa1;
  --gold-2: #ffd96b;
  --gold-3: #f4a72f;

  --cyan-1: #6cd6ff;
  --cyan-2: #2aa6ff;
  --blue-deep: #1d40c1;

  --violet-1: #a98bff;
  --violet-2: #6a3df4;

  --pink-1: #ff8ec0;
  --pink-2: #ff4d8a;

  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-muted: rgba(255, 255, 255, 0.55);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;

  --shadow-soft: 0 18px 40px rgba(8, 12, 35, 0.45);
  --shadow-glow-gold: 0 0 30px rgba(255, 215, 100, 0.45);
  --shadow-glow-cyan: 0 0 30px rgba(91, 201, 255, 0.45);
  --shadow-glow-violet: 0 0 30px rgba(142, 91, 255, 0.45);

  --container: 1200px;
}

/* -------------------------- Reset / base -------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Accessibility : skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--gold-2);
  color: #1c1530;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(255, 200, 80, 0.45);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Visible focus on all interactive elements */
:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 6px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
}

body {
  margin: 0;
  font-family: 'Quicksand', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 500;
  color: var(--text);
  background: radial-gradient(ellipse at top, #15205a 0%, #0a1030 45%, #050817 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Image defaults : préserver les proportions même quand HTML width/height
   diffèrent légèrement de la taille réelle (anti-CLS + anti-déformation). */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Cinzel', 'Quicksand', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* -------------------------- Star field -------------------------- */
.star-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.star-field span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
  animation: twinkle ease-in-out infinite;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50%      { opacity: 1;    transform: scale(1.3); }
}

/* -------------------------- Navbar -------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(6, 10, 35, 0.85), rgba(6, 10, 35, 0.55));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Bouton hamburger (visible uniquement sur mobile) */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s, border-color 0.2s;
}

.nav-toggle:hover { background: rgba(255, 255, 255, 0.14); }

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-2);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Empêche le scroll de la page quand le menu mobile est ouvert */
body.nav-open { overflow: hidden; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cinzel', serif;
  font-weight: 800;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 14px rgba(255, 215, 100, 0.45);
}

.brand-text {
  font-size: 22px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-soft);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.nav-links a.nav-link-account {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.nav-links a.nav-link-account:hover,
.nav-links a.nav-link-account:focus-visible {
  color: var(--gold-2);
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #1c1530;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(255, 200, 80, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 200, 80, 0.55);
}

@media (max-width: 820px) {
  .navbar {
    padding: 12px 18px;
    gap: 12px;
    /* On retire le backdrop-filter sur mobile : sinon il crée un
       containing block qui empêche le menu en position: fixed
       de couvrir tout le viewport. */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: linear-gradient(180deg, rgba(6, 10, 35, 0.96), rgba(6, 10, 35, 0.9));
  }

  /* Le brand et le bouton hamburger doivent rester au-dessus du menu
     (qui a z-index 99) pour rester cliquables/visibles. */
  .brand,
  .nav-toggle {
    position: relative;
    z-index: 101;
  }

  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  /* Panneau déroulant compact depuis le haut, dimensionné au contenu */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 18px 22px;
    background: linear-gradient(180deg, #06091f 0%, #0b1230 100%);
    border-bottom: 1px solid rgba(255, 217, 107, 0.18);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.55);
    transform: translateY(-105%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    overflow-y: auto;
    max-height: calc(100vh - 0px);
    z-index: 99;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
  }

  .nav-links li {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 16px 8px;
    font-family: 'Cinzel', 'Quicksand', serif;
    font-size: clamp(17px, 4.5vw, 20px);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text);
    transition: color 0.2s, transform 0.2s;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--gold-2);
  }

  /* Voile semi-transparent derrière le panneau pour focaliser l'attention.
     On l'attache à <body> via la classe nav-open posée par le JS. */
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(6, 9, 31, 0.55);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: 98;
    animation: navBackdropIn 0.25s ease forwards;
  }
}

@keyframes navBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* En paysage très court : on compacte encore plus */
@media (max-width: 820px) and (max-height: 480px) {
  .nav-links {
    padding: 70px 18px 14px;
  }

  .nav-links a {
    padding: 11px 8px;
    font-size: 16px;
  }
}

/* -------------------------- HERO -------------------------- */
.hero {
  position: relative;
  padding: 80px 0 140px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(106, 61, 244, 0.35), transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(42, 166, 255, 0.25), transparent 55%),
    radial-gradient(circle at 50% 90%, rgba(255, 217, 107, 0.18), transparent 55%);
  filter: blur(20px);
}

.hero-content {
  position: relative;
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 10px var(--gold-2);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  margin-top: 22px;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1.05;
}

.title-magic {
  display: block;
  background: linear-gradient(135deg, #fff5c8 0%, var(--gold-2) 35%, #ffba4a 70%, #ff8d3c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 30px rgba(255, 200, 80, 0.25);
  animation: titleShimmer 6s ease-in-out infinite;
  background-size: 200% 200%;
}

@keyframes titleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.title-sub {
  display: block;
  margin-top: 12px;
  font-size: clamp(20px, 2.4vw, 32px);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: var(--text);
}

.hero-desc {
  margin: 24px 0 32px;
  max-width: 560px;
  font-size: 17px;
  color: var(--text-soft);
}

@media (max-width: 960px) {
  .hero-desc { margin-inline: auto; }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 960px) {
  .hero-cta { justify-content: center; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: 'Quicksand', sans-serif;
}

.btn svg { width: 20px; height: 20px; }

.btn-primary {
  color: #181238;
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
  box-shadow: 0 14px 32px rgba(255, 200, 80, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(255, 200, 80, 0.6);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 50px;
}

@media (max-width: 960px) {
  .hero-stats { justify-content: center; }
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-stats strong {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stats span {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero visual (dragon) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dragon-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.halo {
  position: absolute;
  inset: 8% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 217, 107, 0.45) 0%, rgba(255, 217, 107, 0.05) 55%, transparent 70%);
  filter: blur(18px);
  animation: haloPulse 4s ease-in-out infinite;
}

@keyframes haloPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0.7; }
}

.dragon-img {
  position: relative;
  width: 95%;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55))
          drop-shadow(0 0 30px rgba(91, 201, 255, 0.3));
  z-index: 2;
}

.floating { animation: float 5s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

.floating-key {
  position: absolute;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 22px;
  color: #1d2552;
  background: linear-gradient(135deg, #ffffff, #ffe5a3);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35),
              inset 0 -4px 0 rgba(0, 0, 0, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.6);
  z-index: 3;
}

.key-a { top: 6%;  left: 2%;  animation: float 4.5s ease-in-out infinite; }
.key-z { top: 24%; right: 2%; animation: float 5.5s ease-in-out 0.4s infinite; }
.key-e { bottom: 18%; left: 4%; animation: float 6s ease-in-out 0.8s infinite; }
.key-r { bottom: 4%; right: 6%; animation: float 5s ease-in-out 1.2s infinite; }

.floating-star {
  position: absolute;
  font-size: 24px;
  color: var(--gold-2);
  text-shadow: 0 0 12px rgba(255, 217, 107, 0.9);
  animation: spin 8s linear infinite;
}

.star-1 { top: 12%; right: 18%; animation-duration: 6s; }
.star-2 { top: 60%; left: 12%; animation-duration: 9s; font-size: 18px; }
.star-3 { bottom: 20%; right: 12%; animation-duration: 7s; font-size: 30px; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  color: var(--bg-night);
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 100px;
}

/* -------------------------- Sections -------------------------- */
.section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

.section-modes {
  background: linear-gradient(180deg, rgba(11, 18, 48, 0) 0%, rgba(20, 28, 70, 0.6) 50%, rgba(11, 18, 48, 0) 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(255, 217, 107, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 217, 107, 0.25);
}

.eyebrow.light { color: #fff; background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.25); }

.section-title {
  margin-top: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
}

.section-title.light { color: #fff; }

.highlight {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  margin-top: 20px;
  font-size: 18px;
  color: var(--text-soft);
}

.section-lead.light { color: rgba(255, 255, 255, 0.85); }

/* -------------------------- Features grid -------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.feature-card {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent, rgba(255, 217, 107, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 217, 107, 0.4);
  box-shadow: var(--shadow-soft), var(--shadow-glow-gold);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  box-shadow: var(--shadow-soft);
}

.feature-icon svg { width: 28px; height: 28px; }

.icon-gold   { background: linear-gradient(135deg, var(--gold-1), var(--gold-3)); color: #4a2d00; }
.icon-blue   { background: linear-gradient(135deg, var(--cyan-1), var(--blue-deep)); }
.icon-purple { background: linear-gradient(135deg, var(--violet-1), var(--violet-2)); }
.icon-cyan   { background: linear-gradient(135deg, #62e0d0, var(--cyan-2)); }
.icon-pink   { background: linear-gradient(135deg, var(--pink-1), var(--pink-2)); }

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-family: 'Cinzel', serif;
  color: var(--gold-2);
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

/* -------------------------- Modes grid -------------------------- */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.mode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 26px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.mode-card::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -18%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.5s;
}

.mode-1::before { background: radial-gradient(circle, var(--gold-2), transparent 60%); }
.mode-2::before { background: radial-gradient(circle, var(--cyan-1), transparent 60%); }
.mode-3::before { background: radial-gradient(circle, var(--violet-1), transparent 60%); }
.mode-4::before { background: radial-gradient(circle, var(--pink-1), transparent 60%); }
.mode-5::before { background: radial-gradient(circle, #62e0d0, transparent 60%); }
.mode-6::before { background: radial-gradient(circle, #ffffff, transparent 60%); }

.mode-card:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  border-color: rgba(255, 217, 107, 0.4);
}

.mode-card:hover::before {
  transform: scale(1.4);
}

.mode-card > * {
  position: relative;
  z-index: 1;
}

.mode-emoji {
  font-size: 42px;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.mode-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--gold-2);
  margin-bottom: 10px;
}

.mode-card p {
  color: var(--text-soft);
  font-size: 15px;
  margin: 0;
}

.mode-tag {
  position: relative;
  top: 8px !important;
  margin-top: auto;
  align-self: flex-start;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 217, 107, 0.12);
  color: var(--gold-2);
  border: 1px solid rgba(255, 217, 107, 0.25);
}

.mode-coming { opacity: 0.75; }
.mode-coming .mode-tag {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  border-color: rgba(255, 255, 255, 0.18);
}

/* -------------------------- Showcase -------------------------- */
.check-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--text-soft);
  font-size: 16px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #1c1530;
  font-weight: 900;
  display: grid;
  place-items: center;
  font-size: 14px;
  box-shadow: 0 0 14px rgba(255, 200, 80, 0.4);
}

/* iPad mockup with content inside */
.ipad-stage {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.ipad-mockup {
  position: relative;
  width: min(100%, 1000px);
  aspect-ratio: 4 / 3;
  border-radius: 38px;
  padding: 22px;
  background: linear-gradient(135deg, #1a1d3a 0%, #060a22 100%);
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 0 2px rgba(255, 255, 255, 0.06),
    0 0 100px rgba(106, 61, 244, 0.35);
  transform: rotateX(2deg);
  transition: transform 0.6s ease;
}

.ipad-mockup:hover {
  transform: rotateX(0) translateY(-4px);
}

.ipad-camera {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #050817;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 3;
}

.ipad-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 110%, rgba(106, 61, 244, 0.45), transparent 55%),
    radial-gradient(circle at 10% -10%, rgba(255, 217, 107, 0.22), transparent 50%),
    linear-gradient(160deg, #0e1640 0%, #060a22 60%, #0a0f30 100%);
}

.ipad-screen-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 60% 20%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 85% 60%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 35% 75%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(2px 2px at 70% 85%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 12% 65%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 50% 50%, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0.7;
}

.ipad-watermark {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: 42%;
  opacity: 0.18;
  filter: drop-shadow(0 0 30px rgba(255, 217, 107, 0.6));
  pointer-events: none;
  user-select: none;
}

.ipad-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: clamp(28px, 5%, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 70%;
}

.ipad-content .section-title {
  margin-top: 18px;
  font-size: clamp(26px, 3.4vw, 46px);
}

.ipad-content .section-lead {
  font-size: clamp(14px, 1.4vw, 18px);
}

@media (max-width: 820px) {
  .ipad-mockup {
    aspect-ratio: 3 / 4;
    padding: 16px;
    border-radius: 32px;
  }
  .ipad-screen { border-radius: 18px; }
  .ipad-content {
    max-width: 100%;
    padding: 28px 24px;
  }
  /* Watermark calé sur le coin bas-droit, juste à la limite du cadre */
  .ipad-watermark {
    width: 53%;
    right: -27px;
    bottom: -7%;
    left: auto;
    transform: none;
  }
}

/* -------------------------- About / SEO content -------------------------- */
.section-about {
  background: linear-gradient(180deg, transparent 0%, rgba(20, 28, 70, 0.4) 50%, transparent 100%);
}

.about-grid {
  display: grid;
  gap: 50px;
}

.about-text .section-lead {
  max-width: 820px;
}

.audience-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.audience-card {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 217, 107, 0.35);
  box-shadow: var(--shadow-soft);
}

.audience-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  box-shadow: var(--shadow-soft);
}

.audience-icon svg { width: 28px; height: 28px; }

.audience-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--gold-2);
}

.audience-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

.benefits-list {
  margin-top: 50px;
  padding: 36px 32px;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(106, 61, 244, 0.18), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.benefits-title {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--gold-2);
  margin-bottom: 20px;
}

.benefits-list .check-list {
  margin-top: 0;
}

@media (max-width: 720px) {
  .benefits-list { padding: 28px 22px; }
}

/* -------------------------- Download -------------------------- */
.section-download { padding: 60px 0 100px; }

.download-card {
  position: relative;
  padding: 70px 60px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(106, 61, 244, 0.45), rgba(42, 166, 255, 0.3)),
    linear-gradient(135deg, #1d2466, #0a1235);
  overflow: hidden;
  box-shadow: var(--shadow-soft), var(--shadow-glow-violet);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 720px) {
  .download-card { padding: 50px 26px; }
}

.download-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 217, 107, 0.4), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(106, 61, 244, 0.5), transparent 50%);
}

.download-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.download-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 30px;
}

.store-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  flex: 1 1 0;
  min-width: 0;
  backdrop-filter: blur(14px);
}

.store-btn svg { width: 26px; height: 26px; flex: none; }

.store-info { min-width: 0; }
.store-info strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 720px) {
  .download-buttons { flex-wrap: wrap; }
  .store-btn { flex: 1 1 calc(50% - 14px); }
}

@media (max-width: 480px) {
  .store-btn { flex: 1 1 100%; }
}

.store-btn:hover {
  transform: translateY(-3px);
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.store-active {
  background: linear-gradient(135deg, #000, #1f1f1f);
  border-color: rgba(255, 217, 107, 0.4);
  box-shadow: 0 8px 24px rgba(255, 217, 107, 0.25);
}

.store-active:hover {
  background: linear-gradient(135deg, #000, #2a2a2a);
  box-shadow: 0 14px 30px rgba(255, 217, 107, 0.35);
}

.store-coming { opacity: 0.85; }

.store-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}

.store-info small {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.store-info strong {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
}

.ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #2c1c00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(255, 200, 80, 0.4);
}

.compat-note {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.compat-note svg {
  flex: none;
  color: var(--gold-2);
  filter: drop-shadow(0 0 6px rgba(255, 217, 107, 0.6));
}

.download-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.download-dragon {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 320px;
  opacity: 0.85;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 1080px) {
  .download-dragon { display: none; }
}

/* -------------------------- Footer -------------------------- */
.footer {
  position: relative;
  margin-top: 60px;
  padding: 80px 0 30px;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 23, 0.9));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 14px;
  box-shadow: 0 0 18px rgba(255, 217, 107, 0.45);
}

.footer-brand h3,
.footer-brand .footer-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand p { color: var(--text-soft); font-size: 14px; max-width: 280px; }

.footer-col h3,
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 16px;
}

.footer-col ul { display: grid; gap: 10px; }

.footer-col a {
  color: var(--text-soft);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-2); }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1877f2, #0d5dbe);
  color: white !important;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.45);
}

.social-btn svg { width: 20px; height: 20px; }

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.6);
}

.footer-note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 13px;
  max-width: 240px;
}

.platforms-list { display: grid; gap: 10px; font-size: 14px; color: var(--text-soft); }

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

.dot-on   { background: #5eda8e; box-shadow: 0 0 10px #5eda8e; }
.dot-soon { background: var(--gold-2); box-shadow: 0 0 10px var(--gold-2); animation: pulse 2s infinite; }
.dot-off  { background: rgba(255, 255, 255, 0.25); }

.footer-bottom {
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-legal {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--text-soft);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--gold-2); }

.footer-legal span { color: rgba(255, 255, 255, 0.3); }

/* -------------------------- Reveal animations -------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------- Legal page -------------------------- */
.legal-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  text-align: center;
}

.legal-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(106, 61, 244, 0.35), transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(42, 166, 255, 0.25), transparent 55%),
    radial-gradient(circle at 50% 90%, rgba(255, 217, 107, 0.18), transparent 55%);
  filter: blur(20px);
}

.legal-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legal-hero .hero-title {
  margin-top: 22px;
  font-size: clamp(34px, 5vw, 64px);
  text-align: center;
}

.legal-hero .title-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text-soft);
  font-weight: 500;
  margin-top: 14px;
}

.legal-meta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.legal-meta svg {
  color: var(--gold-2);
  filter: drop-shadow(0 0 6px rgba(255, 217, 107, 0.6));
}

.legal-meta strong { color: var(--gold-2); }

.legal-section { padding: 30px 0 100px; }

.purchase-cgv-accept {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

.legal-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 18px;
  color: var(--text-soft);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 60px;
}

.legal-card {
  position: relative;
  padding: 36px 30px 30px;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent, rgba(255, 217, 107, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.legal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 217, 107, 0.4);
  box-shadow: var(--shadow-soft), var(--shadow-glow-gold);
}

.legal-card:hover::before { opacity: 1; }

.legal-num {
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: 'Cinzel', serif;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(255, 217, 107, 0.18), rgba(255, 217, 107, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.legal-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  box-shadow: var(--shadow-soft);
}

.legal-icon svg { width: 28px; height: 28px; }

.legal-card h2 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--gold-2);
}

.legal-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

.legal-card p + p,
.legal-card p + ul {
  margin-top: 12px;
}

.legal-list {
  margin: 0;
  padding-left: 1.25em;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
  display: grid;
  gap: 6px;
}

.legal-card-contact {
  grid-column: 1 / -1;
  text-align: center;
  padding-bottom: 38px;
}

.legal-card-contact .legal-icon { margin-inline: auto; }

.legal-card-contact .legal-num {
  position: absolute;
  top: 18px;
  right: 24px;
  left: auto;
}

.legal-card-contact .legal-card-contact-btn {
  margin-top: 16px;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 14px;
}

.legal-mail {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  border-radius: 14px;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1c1530;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  box-shadow: 0 12px 28px rgba(255, 200, 80, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.55);
  transition: transform 0.2s, box-shadow 0.2s;
}

.legal-mail:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(255, 200, 80, 0.55);
}

.legal-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.inline-link {
  color: var(--gold-2);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 217, 107, 0.4);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s, color 0.2s;
}

.inline-link:hover {
  color: var(--gold-1);
  text-decoration-color: var(--gold-2);
}

.legal-meta-line {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
}

.legal-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 217, 107, 0.12);
  border: 1px solid rgba(255, 217, 107, 0.25);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-coords {
  margin-top: 8px;
  display: grid;
  gap: 12px;
}

.legal-coords li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
  font-size: 15px;
}

.legal-coords svg {
  flex: none;
  color: var(--gold-2);
  filter: drop-shadow(0 0 6px rgba(255, 217, 107, 0.45));
}

.legal-coords a {
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s;
}

.legal-coords a:hover { color: var(--gold-2); }

/* ==========================================================================
   Optimisations responsive mobile
   ========================================================================== */

/* Tablettes verticales / gros mobiles */
@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand-text { font-size: 18px; }
  .brand-icon { width: 36px; height: 36px; }

  /* HERO */
  .hero { padding: 48px 0 90px; }
  .hero-content { gap: 32px; }
  .hero-title { margin-top: 16px; }
  .hero-desc { margin: 18px 0 26px; font-size: 16px; }
  .hero-cta { gap: 10px; }
  .hero-stats { gap: 24px; margin-top: 32px; }
  .hero-stats strong { font-size: 30px; }
  .hero-stats span { font-size: 11px; letter-spacing: 0.06em; }

  .btn {
    padding: 14px 22px;
    font-size: 15px;
    border-radius: 16px;
  }

  /* Hero wave moins haute pour gagner de la place */
  .hero-wave svg { height: 60px; }

  /* SECTIONS */
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .section-title { margin-top: 12px; }
  .section-lead { margin-top: 14px; font-size: 16px; }

  /* FEATURES & MODES */
  .features-grid,
  .modes-grid,
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card,
  .audience-card { padding: 24px 22px; }

  .mode-card {
    padding: 26px 22px 18px;
    border-radius: var(--radius-md);
  }

  .feature-icon,
  .audience-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .feature-icon svg,
  .audience-icon svg { width: 24px; height: 24px; }

  .feature-card h3,
  .audience-card h3 { font-size: 20px; }
  .mode-card h3 { font-size: 22px; }

  /* Cards : pas d'élévation/hover sur mobile (pas pertinent au tactile) */
  .feature-card:hover,
  .mode-card:hover,
  .audience-card:hover,
  .legal-card:hover {
    transform: none;
  }

  /* ABOUT */
  .about-grid { gap: 30px; }
  .benefits-list { margin-top: 36px; }

  /* DOWNLOAD */
  .section-download { padding: 40px 0 70px; }
  .download-card { padding: 44px 22px; }
  .download-buttons { gap: 12px; margin-top: 22px; }

  /* FOOTER */
  .footer { margin-top: 30px; padding: 60px 0 24px; }
  .footer-grid { gap: 32px; padding-bottom: 36px; }
  .footer-brand p { max-width: 100%; }

  /* LEGAL */
  .legal-hero { padding: 50px 0 30px; }
  .legal-section { padding: 16px 0 70px; }
  .legal-grid { gap: 16px; margin-bottom: 36px; }
  .legal-card { padding: 28px 24px 26px; }
  .legal-num { font-size: 36px; top: 14px; right: 18px; }
}

/* Mobiles standards */
@media (max-width: 540px) {
  /* Navbar : encore plus compacte */
  .navbar { padding: 10px 14px; }
  .brand { gap: 8px; }
  .brand-text { font-size: 16px; }
  .brand-icon { width: 32px; height: 32px; border-radius: 10px; }

  /* HERO : typographies plus douces sur smartphone */
  .hero { padding: 32px 0 70px; }
  .hero-title {
    font-size: clamp(30px, 9vw, 44px);
  }
  .title-sub {
    font-size: clamp(16px, 4.5vw, 20px);
  }
  .badge {
    font-size: 11px;
    padding: 6px 12px;
    letter-spacing: 0.02em;
  }

  /* Boutons CTA en pleine largeur pour faciliter le tap */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-cta .btn {
    justify-content: center;
    width: 100%;
  }

  /* Dragon : taille réduite pour éviter de prendre tout l'écran */
  .dragon-stage { width: min(85%, 360px); }

  /* Le personnage est dessiné dans le bas-gauche du PNG (zone transparente
     à droite et en haut). On décale l'image pour que le dragon se retrouve
     pile au centre du halo. top/left ne touchent pas la transform donc
     l'animation `float` continue de fonctionner. */
  .dragon-img {
    top: -1%;
    left: 8%;
  }

  /* Floating keys plus petites */
  .floating-key {
    width: 42px;
    height: 42px;
    font-size: 17px;
    border-radius: 11px;
  }
  .floating-star { font-size: 18px; }
  .star-3 { font-size: 22px; }

  /* Réagencement symétrique des touches autour du dragon sur mobile :
     les 4 touches forment un carré centré sur le dragon. */
  .key-a { top: 10%;    left: 4%;   bottom: auto; right: auto; }
  .key-z { top: 10%;    right: 4%;  bottom: auto; left: auto; }
  .key-e { bottom: 10%; left: 4%;   top: auto;    right: auto; }
  .key-r { bottom: 10%; right: 4%;  top: auto;    left: auto; }

  /* Étoiles équilibrées entre les touches */
  .star-1 { top: 6%;    right: 32%; left: auto; bottom: auto; }
  .star-2 { top: 50%;   left: 6%;   right: auto; bottom: auto; }
  .star-3 { bottom: 6%; left: 32%;  top: auto;  right: auto; }

  /* Stats : compactes et bien alignées */
  .hero-stats {
    gap: 16px;
    width: 100%;
    justify-content: space-around;
  }
  .hero-stats strong { font-size: 26px; }

  /* SECTIONS */
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 28px; }
  .section-title {
    font-size: clamp(26px, 7.5vw, 38px);
    line-height: 1.2;
  }
  .section-lead { font-size: 15px; }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 5px 12px;
  }

  /* Check list */
  .check-list li { font-size: 15px; padding-left: 32px; }
  .check-list li::before {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  /* iPad mockup */
  .ipad-mockup {
    padding: 12px;
    border-radius: 24px;
    aspect-ratio: 5 / 7;
  }
  .ipad-screen { border-radius: 16px; }
  .ipad-content {
    padding: 22px 20px;
  }
  .ipad-content .section-title {
    font-size: clamp(22px, 6.5vw, 30px);
  }
  .ipad-content .section-lead {
    font-size: 14px;
  }
  .ipad-content .check-list { margin-top: 18px; gap: 10px; }
  .ipad-content .check-list li { font-size: 14px; }
  .ipad-watermark {
    width: 53%;
    right: -27px;
    bottom: -7%;
    left: auto;
    transform: none;
    opacity: 0.12;
  }

  /* Download */
  .download-card {
    padding: 36px 20px;
    border-radius: var(--radius-lg);
  }
  .download-note { font-size: 14px; }

  .download-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .store-btn {
    flex: 1 1 100%;
    padding: 14px 16px;
  }
  .store-info strong { font-size: 16px; }
  .store-info small { font-size: 10px; }
  .ribbon { font-size: 10px; padding: 3px 8px; }

  /* Benefits / about */
  .benefits-list { padding: 26px 20px; }
  .benefits-title { font-size: 20px; }

  /* Footer */
  .footer { padding: 50px 0 22px; }
  .footer-grid { gap: 26px; padding-bottom: 30px; }
  .footer-bottom { font-size: 12px; }
  .footer-legal { gap: 8px; }
  .social-btn { padding: 11px 16px; font-size: 13px; }

  /* LEGAL */
  .legal-hero .hero-title {
    font-size: clamp(28px, 8.5vw, 40px);
  }
  .legal-hero .title-sub { font-size: 15px; }
  .legal-meta {
    font-size: 12px;
    padding: 8px 14px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .legal-intro { font-size: 15px; margin-bottom: 32px; }
  .legal-card { padding: 24px 20px; }
  .legal-num { font-size: 32px; top: 10px; right: 14px; }
  .legal-mail { padding: 11px 20px; font-size: 14px; }
}

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

.purchase-hero .title-sub {
  max-width: 640px;
}

.purchase-section {
  padding-top: 20px;
}

.purchase-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.purchase-extra-notice {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255, 217, 107, 0.1);
  border: 1px solid rgba(255, 217, 107, 0.35);
}

.purchase-extra-notice__title {
  margin: 0 0 10px;
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--gold-2);
}

.purchase-extra-notice__lead {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.purchase-extra-notice__email {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
}

.purchase-extra-notice__hint {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.purchase-extra-mode .purchase-field--signup-only {
  display: none;
}

.purchase-extra-mode #purchase-email[readonly] {
  opacity: 0.92;
  cursor: default;
}

@media (max-width: 900px) {
  .purchase-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.purchase-lifetime-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: fit-content;
  max-width: min(100%, 420px);
  margin: 8px auto 36px;
  padding: 14px 28px 12px;
  border-radius: 999px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f9e4a6 0%, #e8c56a 48%, #d8a53a 100%);
  border: 1px solid rgba(255, 248, 220, 0.85);
  box-shadow:
    0 10px 28px rgba(8, 12, 35, 0.28),
    0 0 0 1px rgba(216, 165, 58, 0.35),
    0 0 22px rgba(255, 215, 120, 0.42);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: purchase-lifetime-badge-glow 4.5s ease-in-out infinite;
}

.purchase-lifetime-badge:hover {
  transform: scale(1.02);
  box-shadow:
    0 14px 32px rgba(8, 12, 35, 0.32),
    0 0 0 1px rgba(255, 248, 220, 0.9),
    0 0 36px rgba(255, 215, 120, 0.62);
  animation-play-state: paused;
}

.purchase-lifetime-badge__main {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: clamp(15px, 2.1vw, 18px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #07102a;
  line-height: 1.3;
}

.purchase-lifetime-badge__icon {
  margin-right: 0.35em;
  letter-spacing: 0;
  text-transform: none;
}

.purchase-lifetime-badge__sub {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(12px, 1.6vw, 13px);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(7, 16, 42, 0.68);
  line-height: 1.35;
}

.purchase-lifetime-badge__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.purchase-lifetime-badge__particle {
  position: absolute;
  top: 38%;
  left: -8%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 236, 180, 0.4) 70%, transparent 100%);
  opacity: 0;
  animation: purchase-lifetime-badge-particle 11s linear infinite;
}

.purchase-lifetime-badge__particle:nth-child(2) {
  top: 62%;
  animation-duration: 14s;
  animation-delay: 3.5s;
  width: 3px;
  height: 3px;
}

.purchase-lifetime-badge__particle:nth-child(3) {
  top: 48%;
  animation-duration: 9s;
  animation-delay: 6.8s;
  width: 3px;
  height: 3px;
}

@keyframes purchase-lifetime-badge-glow {
  0%,
  78%,
  100% {
    box-shadow:
      0 10px 28px rgba(8, 12, 35, 0.28),
      0 0 0 1px rgba(216, 165, 58, 0.35),
      0 0 22px rgba(255, 215, 120, 0.42);
  }
  88% {
    box-shadow:
      0 10px 28px rgba(8, 12, 35, 0.28),
      0 0 0 1px rgba(255, 248, 220, 0.75),
      0 0 32px rgba(255, 215, 120, 0.58);
  }
}

@keyframes purchase-lifetime-badge-particle {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  8% {
    opacity: 0.55;
  }
  45% {
    opacity: 0.35;
  }
  92% {
    opacity: 0;
  }
  100% {
    transform: translateX(420%);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .purchase-lifetime-badge {
    margin: 4px auto 28px;
    padding: 12px 22px 10px;
  }

  .purchase-lifetime-badge__main {
    letter-spacing: 0.1em;
  }
}

@media (max-width: 640px) {
  .purchase-lifetime-badge {
    margin: 2px auto 24px;
    padding: 11px 18px 9px;
  }
}

.purchase-form-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--gold-2);
  margin-bottom: 8px;
}

.purchase-form-lead {
  margin: 0 0 24px;
  color: var(--text-soft);
  font-size: 15px;
}

.plan-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.plan-fieldset legend {
  padding: 0;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

@media (max-width: 640px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

.plan-card {
  position: relative;
  display: block;
  cursor: pointer;
  min-width: 0;
}

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

.plan-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  height: 100%;
  min-height: 100%;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.plan-card-inner > span {
  display: block;
  max-width: 100%;
}

.plan-discount {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1c1530;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 12px rgba(255, 200, 80, 0.35);
}

.plan-per-poste {
  font-size: 13px;
  color: var(--cyan-1);
  font-weight: 600;
}

.plan-card:hover .plan-card-inner {
  border-color: rgba(255, 217, 107, 0.35);
}

.plan-card input:focus-visible + .plan-card-inner {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
}

.plan-card input:checked + .plan-card-inner {
  border-color: var(--gold-2);
  box-shadow: var(--shadow-soft), var(--shadow-glow-gold);
  background: linear-gradient(155deg, rgba(255, 217, 107, 0.12), rgba(255, 255, 255, 0.03));
}

.plan-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--text);
  line-height: 1.25;
  padding-right: 3.5rem;
}

.plan-price {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plan-detail {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 600;
}

.plan-subdetail {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.purchase-offers {
  min-width: 0;
}

.purchase-info-box {
  margin-bottom: 28px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(42, 166, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(108, 214, 255, 0.28);
}

.purchase-info-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--cyan-1);
  margin: 0 0 10px;
}

.purchase-info-text {
  margin: 0;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
}

.purchase-license-note {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  background: rgba(255, 217, 107, 0.08);
  border: 1px solid rgba(255, 217, 107, 0.2);
}

.download-windows-note {
  margin: 16px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  max-width: 52rem;
}

.plan-badge {
  justify-self: start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(106, 61, 244, 0.35);
  border: 1px solid rgba(168, 139, 255, 0.45);
  color: var(--violet-1);
  margin-bottom: 4px;
}

.purchase-form-wrap {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 540px) {
  .purchase-form-wrap {
    padding: 28px 22px;
  }
}

.purchase-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-soft);
}

.form-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 9, 31, 0.55);
  color: var(--text);
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input::placeholder {
  color: var(--text-muted);
}

.form-field input:hover {
  border-color: rgba(255, 217, 107, 0.35);
}

.form-field input:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(255, 217, 107, 0.25);
}

.purchase-trust {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn-purchase {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 17px;
  padding: 18px 28px;
}

.btn-purchase:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.purchase-messages {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  display: none;
}

.purchase-messages:not(:empty) {
  display: block;
}

.purchase-messages--error {
  background: rgba(255, 77, 138, 0.15);
  border: 1px solid rgba(255, 107, 161, 0.45);
  color: #ffc8dc;
}

.purchase-messages--info {
  background: rgba(42, 166, 255, 0.12);
  border: 1px solid rgba(108, 214, 255, 0.35);
  color: #c8ecff;
}

/* Modale — licence déjà active (/acheter) */
.purchase-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.purchase-modal[hidden] {
  display: none;
}

.purchase-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 32, 0.72);
  backdrop-filter: blur(6px);
}

.purchase-modal-panel {
  position: relative;
  width: min(540px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  padding: 26px 24px 22px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(28, 36, 78, 0.98) 0%, rgba(14, 20, 48, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.purchase-modal-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  color: var(--gold-2);
  text-align: center;
  margin: 0 0 18px;
  line-height: 1.35;
}

.purchase-modal-body {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.purchase-modal-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
}

.purchase-modal-rules {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 217, 107, 0.2);
  color: var(--text-main) !important;
  font-size: 14px !important;
}

.purchase-modal-hint {
  font-weight: 700;
  color: var(--text-main) !important;
  font-size: 15px !important;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 217, 107, 0.08);
  border: 1px solid rgba(255, 217, 107, 0.22);
}

.purchase-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.purchase-modal-actions-grid {
  margin-top: 2px;
}

.purchase-modal-actions-row--secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.purchase-modal-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  max-height: 56px;
  padding: 11px 14px;
  border-radius: 12px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.purchase-modal-secondary {
  color: var(--text-main);
  background: rgba(12, 18, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.purchase-modal-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.purchase-modal-primary {
  color: #181238;
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 20px rgba(255, 200, 80, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: 15px;
  min-height: 52px;
  max-height: 56px;
}

.purchase-modal-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(255, 200, 80, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.purchase-modal-cancel {
  color: var(--text-soft);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 44px;
  max-height: 48px;
  font-size: 14px;
  font-weight: 500;
}

.purchase-modal-cancel:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-main);
}

@media (max-width: 520px) {
  .purchase-modal-actions-row--secondary {
    grid-template-columns: 1fr;
  }

  .purchase-modal-panel {
    padding: 24px 18px 20px;
  }
}

/* Page confirmation achat (/merci/) */
.thank-you-hero {
  padding-bottom: 24px;
}

.thank-you-hero .hero-title {
  margin-bottom: 0;
}

.thank-you-section {
  padding: 0 0 100px;
}

.thank-you-card {
  position: relative;
  max-width: 640px;
  margin: -20px auto 0;
  padding: 40px 36px 36px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  text-align: center;
}

.thank-you-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 217, 107, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 217, 107, 0.25), rgba(108, 214, 255, 0.2));
  border: 2px solid rgba(255, 217, 107, 0.45);
  color: var(--gold-2);
}

.thank-you-icon svg {
  width: 36px;
  height: 36px;
}

.thank-you-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-main);
  margin-bottom: 24px;
}

.thank-you-lead strong {
  color: var(--gold-2);
}

.thank-you-steps {
  text-align: left;
  margin: 0 auto 32px;
  max-width: 520px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(11, 18, 48, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.thank-you-steps p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0;
}

.thank-you-steps p + p {
  margin-top: 14px;
}

.thank-you-steps strong {
  color: var(--text-main);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.thank-you-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
  max-width: 480px;
  margin-inline: auto;
}

@media (max-width: 600px) {
  .thank-you-card {
    margin-top: 0;
    padding: 32px 22px 28px;
  }

  .thank-you-lead {
    font-size: 16px;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .thank-you-actions .btn {
    justify-content: center;
  }
}

/* Page téléchargement Windows (/telecharger/) */
.download-hero {
  padding-bottom: 24px;
}

.download-hero .hero-title {
  margin-bottom: 0;
}

.download-hero .title-sub {
  max-width: 36rem;
  margin-inline: auto;
}

.download-page-section {
  padding: 0 0 100px;
}

/* Visible dès l’arrivée : la section est longue, le seuil .reveal (12 %) n’est pas
   atteint sans scroll. */
.download-page-section.reveal {
  opacity: 1;
  transform: translateY(0);
}

.download-page-card {
  position: relative;
  max-width: 720px;
  margin: 40px auto 0;
  padding: 40px 36px 36px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.download-page-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 217, 107, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.download-product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 28px 24px;
  border-radius: 18px;
  background: rgba(11, 18, 48, 0.5);
  border: 1px solid rgba(255, 217, 107, 0.22);
  text-align: center;
}

.download-product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 217, 107, 0.2), rgba(108, 214, 255, 0.15));
  border: 1px solid rgba(255, 217, 107, 0.35);
  color: var(--gold-2);
}

.download-product-icon svg {
  width: 32px;
  height: 32px;
}

.download-product-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.download-product-version {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--text-soft);
}

.download-product-license {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-2);
  letter-spacing: 0.02em;
}

.download-product-btn {
  margin-top: 4px;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

.download-security-panel {
  position: relative;
  margin-bottom: 28px;
  padding: 26px 24px 24px;
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(108, 214, 255, 0.1) 0%, rgba(255, 217, 107, 0.08) 100%);
  border: 1px solid rgba(108, 214, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.download-security-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.download-security-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(11, 18, 48, 0.45);
  border: 1px solid rgba(108, 214, 255, 0.4);
  color: #9ee4ff;
}

.download-security-icon svg {
  width: 26px;
  height: 26px;
}

.download-security-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 3.5vw, 20px);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.download-security-lead,
.download-security-text {
  position: relative;
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.download-security-examples {
  position: relative;
  margin: 0 0 16px;
  padding: 14px 16px 14px 2rem;
  border-radius: 12px;
  background: rgba(11, 18, 48, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-soft);
}

.download-security-examples li + li {
  margin-top: 6px;
}

.download-security-examples li::marker {
  color: var(--gold-2);
}

.download-security-steps {
  position: relative;
  margin: 18px 0 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(11, 18, 48, 0.35);
  border: 1px solid rgba(255, 217, 107, 0.2);
}

.download-security-steps-intro {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--text-main);
}

.download-security-steps-intro strong {
  color: var(--gold-2);
}

.download-transparency {
  position: relative;
  margin: 0;
  padding-top: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  font-style: italic;
}

.download-page-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 28px;
  font-size: 14px;
}

.download-subsection {
  position: relative;
  margin-bottom: 28px;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(11, 18, 48, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.download-instructions {
  position: relative;
  margin-bottom: 24px;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(11, 18, 48, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.download-instructions-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.download-instructions-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
}

.download-instructions-list li + li {
  margin-top: 10px;
}

.download-instructions-list li::marker {
  color: var(--gold-2);
  font-weight: 600;
}

/* Installation pas à pas — séparateurs entre étapes */
.download-subsection[aria-labelledby="download-steps-title"] .download-instructions-list > li + li {
  margin-top: 0;
}

.download-subsection[aria-labelledby="download-steps-title"] .download-instructions-list > li:not(:last-child)::after {
  content: "";
  display: block;
  width: min(75%, 100%);
  height: 1px;
  margin: 28px auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 217, 107, 0.12) 18%,
    rgba(255, 217, 107, 0.38) 50%,
    rgba(255, 217, 107, 0.12) 82%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(255, 217, 107, 0.08);
  pointer-events: none;
}

.download-help-block {
  position: relative;
  margin: 0;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.download-help-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.download-help-block p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}

.download-help-email {
  margin-top: 10px !important;
}

.download-screen-preview {
  margin: 16px auto 0;
  max-width: min(100%, 760px);
  width: 100%;
  text-align: center;
}

.download-screen-preview img {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin-inline: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.download-screen-caption {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
  font-style: italic;
}

.download-install-tip {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(255, 217, 107, 0.12) 0%, rgba(255, 217, 107, 0.06) 100%);
  border: 1px solid rgba(255, 217, 107, 0.35);
  box-shadow: 0 4px 20px rgba(255, 217, 107, 0.08);
}

.download-install-tip-icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.4;
}

.download-install-tip p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

@media (max-width: 600px) {
  .download-page-card {
    margin-top: 0;
    padding: 32px 22px 28px;
  }

  .download-product {
    padding: 22px 18px;
  }

  .download-security-panel {
    padding: 22px 18px 20px;
  }

  .download-subsection {
    padding: 18px 18px;
  }

  .download-page-links {
    flex-direction: column;
    gap: 10px;
  }

  .download-page-links span[aria-hidden="true"] {
    display: none;
  }
}

/* Pages authentification — mot de passe oublié / réinitialisation */
.auth-hero .title-magic {
  font-size: clamp(28px, 5vw, 42px);
}

.auth-page {
  padding: 24px 0 90px;
}

.auth-card {
  position: relative;
  max-width: 520px;
  margin: -20px auto 0;
  padding: 36px 32px 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.auth-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 217, 107, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.auth-lead {
  position: relative;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.auth-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-message {
  position: relative;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  display: none;
}

.auth-message:not(:empty) {
  display: block;
}

.auth-message.success {
  background: rgba(72, 199, 142, 0.15);
  border: 1px solid rgba(108, 230, 170, 0.45);
  color: #c8ffe8;
}

.auth-message.error {
  background: rgba(255, 77, 138, 0.15);
  border: 1px solid rgba(255, 107, 161, 0.45);
  color: #ffc8dc;
}

.auth-form .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.btn-auth-submit {
  width: 100%;
  margin-top: 4px;
}

.btn-auth-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.auth-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 28px;
  font-size: 15px;
}

.auth-success-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin-bottom: 20px;
  font-size: 15px;
}

.field-hint {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
}

.purchase-messages__text {
  margin: 0 0 10px;
}

.purchase-messages__text:last-of-type {
  margin-bottom: 0;
}

.purchase-messages__actions {
  margin-top: 16px;
}

.purchase-messages-forgot {
  display: inline-flex;
  padding: 10px 18px;
  font-size: 14px;
}

.purchase-forgot-password {
  margin: 8px 0 0;
  font-size: 14px;
  text-align: right;
}

.purchase-existing-account {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 217, 107, 0.07);
  border: 1px solid rgba(255, 217, 107, 0.16);
}

.purchase-existing-account .inline-link {
  font-weight: 700;
}

@media (max-width: 640px) {
  .auth-card {
    margin-top: 0;
    padding: 28px 22px 26px;
  }

  .auth-lead {
    font-size: 15px;
  }
}

/* Page Mon compte */
.account-page {
  padding: 24px 0 90px;
}

.account-card {
  position: relative;
  max-width: 720px;
  margin: -20px auto 0;
  padding: 36px 32px 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.account-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 217, 107, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.account-card-title {
  position: relative;
  margin: 0 0 24px;
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.account-login-links {
  margin-top: 24px;
}

.account-summary-header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.account-summary-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 18px;
  width: 100%;
}

.account-primary-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  flex: 1 1 280px;
}

.account-greeting {
  margin: 0 0 6px;
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 700;
  color: #fff;
}

.account-email {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.account-download-btn,
.account-extra-license-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px 22px;
  font-size: 15px;
  line-height: 1.35;
  max-width: 100%;
}

.account-extra-license-btn {
  border-color: rgba(255, 217, 107, 0.45);
  color: rgba(255, 235, 180, 0.95);
}

.account-extra-license-btn:hover:not(:disabled) {
  border-color: rgba(255, 217, 107, 0.7);
  color: #fff;
}

.account-logout-btn {
  flex-shrink: 0;
  font-size: 14px;
  padding: 10px 16px;
  opacity: 0.9;
}

@media (min-width: 641px) {
  .account-primary-actions .account-download-btn,
  .account-primary-actions .account-extra-license-btn {
    flex: 1 1 220px;
    min-width: 0;
  }
}

.account-logout-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.license-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.license-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.license-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin: 0;
}

.license-meta div {
  margin: 0;
}

.license-meta dt {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 217, 107, 0.85);
}

.license-meta dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
}

.license-key {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  background: rgba(255, 217, 107, 0.12);
  color: #ffe9a8;
}

.license-activations {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.license-activations-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.activation-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.activation-item {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.activation-device {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.activation-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
}

.activation-details div {
  margin: 0;
}

.activation-details dt {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.55);
}

.activation-details dd {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.activation-empty,
.license-empty p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.license-empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 8px 0 4px;
}

.account-actions {
  position: relative;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.account-transfer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  line-height: 1.35;
}

.account-transfer-btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

@media (max-width: 640px) {
  .account-card {
    margin-top: 0;
    padding: 28px 22px 26px;
  }

  .license-meta,
  .activation-details {
    grid-template-columns: 1fr;
  }

  .account-summary-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .account-primary-actions {
    flex-direction: column;
    width: 100%;
  }

  .account-primary-actions .account-download-btn,
  .account-primary-actions .account-extra-license-btn {
    width: 100%;
  }

  .account-logout-btn {
    align-self: flex-end;
    width: auto;
  }
}

/* Modale — licence supplémentaire (/mon-compte) */
.account-extra-modal-panel {
  width: min(920px, 100%);
  max-height: min(92vh, 860px);
}

.account-extra-modal-intro {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.account-extra-modal-intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}

.account-extra-modal-email {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  word-break: break-word;
}

.account-extra-modal-hint {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

.account-extra-modal-rules {
  margin-top: 4px !important;
}

.account-extra-modal-title {
  margin-bottom: 14px;
}

.account-extra-plan-grid {
  margin-bottom: 16px;
}

.account-extra-pack {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  min-width: 0;
}

.account-extra-pack .plan-card-inner {
  height: 100%;
  min-height: 0;
  padding: 14px 16px;
  gap: 3px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.account-extra-pack .plan-name {
  font-size: clamp(15px, 2vw, 18px);
  padding-right: 3rem;
}

.account-extra-pack .plan-price {
  font-size: 22px;
}

.account-extra-pack .plan-detail {
  font-size: 13px;
}

.account-extra-pack .plan-per-poste {
  font-size: 12px;
}

.account-extra-pack .plan-subdetail {
  font-size: 12px;
  line-height: 1.35;
  margin-top: 2px;
}

.account-extra-pack .plan-discount {
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  font-size: 11px;
}

.account-extra-pack:hover .plan-card-inner {
  border-color: rgba(255, 217, 107, 0.35);
}

.account-extra-pack:focus-visible .plan-card-inner {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
}

.account-extra-pack.is-selected .plan-card-inner {
  border-color: var(--gold-2);
  box-shadow: var(--shadow-soft), var(--shadow-glow-gold);
  background: linear-gradient(155deg, rgba(255, 217, 107, 0.12), rgba(255, 255, 255, 0.03));
}

.account-extra-pack:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.account-extra-modal-message:not(:empty) {
  margin-bottom: 12px;
}

#account-extra-actions.account-extra-actions,
.account-extra-modal-panel .account-extra-actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: 24px;
}

#account-extra-actions.account-extra-actions > *,
.account-extra-modal-panel .account-extra-actions > * {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: auto !important;
  max-width: none !important;
  min-height: 52px;
  margin: 0 !important;
  padding: 10px 10px;
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
  justify-content: center;
  align-self: stretch;
  white-space: normal;
  box-sizing: border-box;
}

#account-extra-actions.account-extra-actions > .account-extra-contact,
.account-extra-modal-panel .account-extra-actions > .account-extra-contact {
  text-decoration: none;
}

#account-extra-actions.account-extra-actions .btn:disabled,
.account-extra-modal-panel .account-extra-actions .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 480px) {
  #account-extra-actions.account-extra-actions > *,
  .account-extra-modal-panel .account-extra-actions > * {
    font-size: 11px;
    padding: 8px 6px;
    min-height: 48px;
  }
}

/* Pink Dragon Gate — administration discrète */
.admin-gate-hero .admin-gate-title {
  font-size: clamp(22px, 4.5vw, 34px);
  opacity: 0.92;
}

.admin-gate-page {
  padding: 24px 0 90px;
}

.admin-gate-shell {
  width: min(100% - 40px, 1280px);
  max-width: 1280px;
}

.admin-gate-card {
  position: relative;
  max-width: 520px;
  margin: -20px auto 0;
  padding: 36px 32px 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.admin-gate-login-card {
  max-width: 520px;
}

#admin-gate-login[hidden],
#admin-gate-form[hidden],
.admin-gate-shell.admin-gate-shell--authenticated #admin-gate-login,
.admin-gate-shell.admin-gate-shell--authenticated #admin-gate-form {
  display: none !important;
}

.admin-dashboard[hidden] {
  display: none !important;
}

.admin-dashboard {
  position: relative;
  margin-top: -20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-dashboard-header.admin-gate-status-bar {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 18px 24px;
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(22, 32, 72, 0.62) 0%,
    rgba(11, 18, 48, 0.48) 100%
  );
  border: 1px solid rgba(255, 217, 107, 0.2);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.admin-dashboard-header-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  min-height: 54px;
}

.admin-status-bar-body {
  flex: 1 1 200px;
  min-width: 0;
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  max-width: 100%;
}

.admin-status-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6dffc0;
  box-shadow:
    0 0 10px rgba(109, 255, 192, 0.9),
    0 0 20px rgba(72, 199, 142, 0.45);
}

.admin-status-pill-label {
  font-family: var(--font-body, "Quicksand", sans-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
}

.admin-status-bar-subtitle {
  margin: 4px 0 0;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.02em;
}

.admin-dashboard-header .admin-status-bar-logout {
  flex-shrink: 0;
  align-self: center;
  font-size: 13px;
  padding: 8px 16px;
  min-height: 40px;
}

.admin-dashboard-header .admin-status-bar-logout:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(255, 217, 107, 0.5);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(255, 200, 80, 0.28);
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 24px;
  align-items: start;
}

.admin-panel {
  position: relative;
  min-width: 0;
}

.admin-panel-inner {
  height: 100%;
}

.admin-gate-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 180, 0.08) 0%, rgba(255, 217, 107, 0.06) 40%, transparent 60%);
  pointer-events: none;
}

.admin-gate-form {
  position: relative;
}

.admin-gate-form .btn-primary {
  background: linear-gradient(135deg, #ffd96b 0%, #f5b942 50%, #e8a830 100%);
  color: #1a1208;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 217, 107, 0.35);
}

.admin-gate-form .btn-primary:hover:not(:disabled) {
  filter: brightness(1.06);
}

.admin-license-section {
  position: relative;
  margin-top: 0;
}

.admin-license-subcard {
  padding: 24px 22px 22px;
  border-radius: 18px;
  background: rgba(6, 9, 31, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-panel-create .admin-license-form .form-field textarea {
  min-height: 72px;
}

.admin-license-heading {
  margin: 0 0 10px;
  font-family: 'Cinzel', serif;
  font-size: clamp(17px, 3.2vw, 20px);
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: 0.02em;
}

.admin-license-help {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.admin-license-message {
  margin-bottom: 18px;
}

.admin-test-email-actions {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-test-email-actions .admin-license-message:empty {
  display: none;
  margin-bottom: 0;
}

.admin-test-email-actions .admin-license-message:not(:empty) {
  margin-bottom: 14px;
}

.admin-panel-migration {
  grid-column: 1 / -1;
}

.admin-migration-actions {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.admin-migration-bulk-block {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-migration-bulk-confirm {
  margin-bottom: 16px;
}

.admin-migration-bulk-btn:not(:disabled) {
  background: linear-gradient(135deg, #ff9a6b 0%, #f57242 50%, #e85a30 100%);
  color: #1a1208;
  box-shadow: 0 4px 20px rgba(255, 120, 80, 0.35);
}

.admin-migration-error-list {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  white-space: pre-wrap;
}

.admin-migration-preview-status {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.admin-migration-preview-error {
  margin-top: 12px;
  background: rgba(255, 120, 120, 0.14);
  border: 1px solid rgba(255, 150, 150, 0.45);
  color: #ffd4d4;
}

.admin-migration-recipients-panel {
  margin-top: 20px;
  padding: 18px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 32, 0.45);
}

.admin-migration-recipient-stats {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  white-space: pre-line;
}

.admin-migration-recipient-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.admin-migration-toolbar-btn {
  font-size: 14px;
  padding: 8px 14px;
}

.admin-migration-recipient-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: min(420px, 50vh);
  overflow-y: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-migration-recipient-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-migration-recipient-item:last-child {
  border-bottom: none;
}

.admin-migration-recipient-item .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  margin: 0;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.45;
}

.admin-migration-recipient-item .checkbox-label:hover {
  background: rgba(255, 255, 255, 0.04);
}

.admin-migration-recipient-line {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.admin-migration-recipient-name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.admin-migration-recipient-email {
  font-weight: 500;
  color: rgba(255, 200, 220, 0.85);
}

.admin-migration-bulk-progress {
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: #ffe8b8;
}

.auth-message.warning {
  background: rgba(255, 193, 77, 0.12);
  border: 1px solid rgba(255, 217, 107, 0.45);
  color: #ffe8b8;
}

.admin-license-form .form-field select,
.admin-license-form .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 9, 31, 0.55);
  color: var(--text);
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.admin-license-form .form-field select {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 217, 107, 0.85) 50%),
    linear-gradient(135deg, rgba(255, 217, 107, 0.85) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% + 2px), calc(100% - 16px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.admin-license-form .form-field textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.45;
}

.admin-license-form .form-field select:hover,
.admin-license-form .form-field textarea:hover {
  border-color: rgba(255, 217, 107, 0.35);
}

.admin-license-form .form-field select:focus,
.admin-license-form .form-field textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(255, 217, 107, 0.25);
}

.admin-license-form .form-field textarea::placeholder {
  color: var(--text-muted);
}

.field-optional {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-muted);
}

.form-field-checkbox {
  margin-top: 2px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold-2);
  cursor: pointer;
}

.admin-license-form .btn-primary {
  background: linear-gradient(135deg, #ffd96b 0%, #f5b942 50%, #e8a830 100%);
  color: #1a1208;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 217, 107, 0.35);
}

.admin-license-form .btn-primary:hover:not(:disabled) {
  filter: brightness(1.06);
}

.admin-license-result {
  margin-bottom: 22px;
  padding: 18px 16px 16px;
  border-radius: 16px;
  background: rgba(72, 199, 142, 0.1);
  border: 1px solid rgba(108, 230, 170, 0.35);
}

.admin-license-result-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: #c8ffe8;
}

.admin-license-details {
  margin: 0 0 16px;
  display: grid;
  gap: 12px;
}

.admin-license-detail-row {
  display: grid;
  gap: 4px;
}

.admin-license-detail-row dt {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.admin-license-detail-row dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
}

.admin-license-key {
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, monospace;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.admin-license-copy-btn {
  width: 100%;
  justify-content: center;
}

.admin-license-copy-feedback {
  margin: 10px 0 0;
  min-height: 1.2em;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-2);
  text-align: center;
}

.admin-search-section {
  margin-top: 0;
}

.admin-search-form {
  gap: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.admin-search-form .admin-search-field {
  margin: 0;
}

.admin-search-form .btn-auth-submit {
  margin: 0;
  white-space: nowrap;
}

.admin-search-form .form-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 9, 31, 0.55);
  color: var(--text);
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.admin-search-form .form-field input:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(255, 217, 107, 0.25);
}

.admin-search-form .btn-primary {
  background: linear-gradient(135deg, #ffd96b 0%, #f5b942 50%, #e8a830 100%);
  color: #1a1208;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 217, 107, 0.35);
}

.admin-search-results,
.admin-results {
  margin-top: 22px;
}

.admin-search-empty {
  margin: 0;
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-results-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.admin-result-row {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 0.8fr 1.8fr 0.8fr;
  gap: 12px 16px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-result-row--head {
  padding: 10px 16px;
  background: rgba(6, 9, 31, 0.55);
  border-color: rgba(255, 217, 107, 0.2);
  border-radius: 12px;
}

.admin-result-col-head {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 217, 107, 0.75);
}

.admin-result-heading {
  display: none;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.48);
}

.admin-result-value {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.94);
  word-break: break-word;
}

.admin-result-user-name {
  font-size: 15px;
  font-weight: 700;
}

.admin-result-email {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.admin-result-plan {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.admin-result-license .admin-license-key {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 8px;
  padding: 5px 9px;
  border-radius: 8px;
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffe8b8;
  background: rgba(6, 9, 31, 0.65);
  border: 1px solid rgba(255, 217, 107, 0.3);
  word-break: break-all;
}

.admin-result-license-status {
  margin-bottom: 6px;
}

.admin-result-date {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
}

.admin-result-seats {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-seat-pill {
  margin: 0;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffe8b8;
  background: rgba(255, 217, 107, 0.1);
  border: 1px solid rgba(255, 217, 107, 0.28);
}

.admin-seat-pill--available {
  color: #c8ffe8;
  background: rgba(72, 199, 142, 0.1);
  border-color: rgba(108, 230, 170, 0.32);
}

.admin-result-activations,
.admin-result-actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.admin-result-actions .admin-result-heading {
  margin-bottom: 8px;
}

.admin-activation-line {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-activation-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.admin-activation-line:first-child {
  padding-top: 0;
}

.admin-activation-line-device {
  font-size: 14px;
  font-weight: 700;
}

.admin-activation-line-meta {
  margin: 3px 0 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.admin-activation-line-status {
  margin-bottom: 4px;
}

.admin-activation-line-dates {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.35;
}

.admin-activation-empty {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  font-style: italic;
}

.admin-result-action-cell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 72px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-result-action-cell:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.admin-result-action-cell:first-child {
  padding-top: 0;
}

.admin-result-action-empty {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.admin-release-button,
.admin-release-btn {
  width: auto;
  min-width: 0;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.admin-status-badge,
.admin-activation-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: capitalize;
}

.admin-status-badge--license {
  color: #d4e8ff;
  background: rgba(100, 160, 255, 0.12);
  border: 1px solid rgba(140, 190, 255, 0.35);
}

.admin-status-badge--active,
.admin-activation-badge.admin-status-badge--active {
  color: #ffe8b8;
  background: rgba(255, 217, 107, 0.12);
  border: 1px solid rgba(255, 217, 107, 0.35);
}

.admin-status-badge--deactivated,
.admin-activation-badge--deactivated,
.admin-activation-badge.admin-status-badge--deactivated {
  color: #c8ffe8;
  background: rgba(72, 199, 142, 0.15);
  border: 1px solid rgba(108, 230, 170, 0.35);
}

.admin-status-badge--blocked,
.admin-activation-badge--blocked,
.admin-activation-badge.admin-status-badge--blocked {
  color: #ffc8dc;
  background: rgba(255, 77, 138, 0.15);
  border: 1px solid rgba(255, 107, 161, 0.4);
}

.admin-status-badge--neutral,
.admin-activation-badge--neutral {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 960px) {
  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .admin-result-row,
  .admin-result-row--head {
    grid-template-columns: 1fr;
  }

  .admin-result-row--head {
    display: none;
  }

  .admin-result-row:not(.admin-result-row--head) {
    gap: 16px;
    padding: 16px;
  }

  .admin-result-row:not(.admin-result-row--head) .admin-result-heading {
    display: block;
  }

  .admin-result-action-cell {
    min-height: 0;
    padding: 0;
    border-bottom: none;
  }

  .admin-result-actions {
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 640px) {
  .admin-gate-shell {
    width: min(100% - 32px, 1280px);
  }

  .admin-gate-card,
  .admin-gate-login-card {
    margin-top: 0;
    padding: 28px 22px 26px;
  }

  .admin-dashboard {
    margin-top: 0;
  }

  .admin-dashboard-header.admin-gate-status-bar {
    padding: 16px 18px;
    border-radius: 20px;
  }

  .admin-dashboard-header-row {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .admin-status-bar-subtitle {
    padding-left: 20px;
  }

  .admin-dashboard-header .admin-status-bar-logout {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }

  .admin-search-form {
    grid-template-columns: 1fr;
  }

  .admin-search-form .btn-auth-submit {
    width: 100%;
  }

  .admin-license-subcard {
    padding: 20px 16px 18px;
  }

  .admin-results-table {
    overflow-x: auto;
  }

  .admin-release-button,
  .admin-release-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Très petits écrans (≤ 360px) */
@media (max-width: 360px) {
  .navbar { padding: 10px 12px; gap: 8px; }
  .brand-text { font-size: 15px; }

  .hero-title { font-size: 28px; }
  .title-sub { font-size: 15px; }

  .hero-stats { gap: 10px; }
  .hero-stats strong { font-size: 22px; }
  .hero-stats span { font-size: 10px; }

  .floating-key { width: 36px; height: 36px; font-size: 15px; }

  .section-title { font-size: 24px; }
  .download-card { padding: 32px 16px; }
}

