/* Styles vitrine RedG3N */
:root {
  --bg: #0a0a0b;
  --card: #121213;
  --text: #f3f4f6;
  --muted: #9ca3af;
  --primary: #ef4444; /* red-500 */
  --primary-600: #dc2626; /* red-600 */
  --accent: #ef4444;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  background:
    radial-gradient(1000px 600px at 80% 20%, rgba(239,68,68,.16), transparent 60%),
    radial-gradient(800px 480px at 10% 90%, rgba(127,29,29,.18), transparent 60%),
    var(--bg);
  color: var(--text);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.container {
  width: min(960px, 92%);
  text-align: center;
}

.brand {
  font-weight: 800;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 1px;
}
.brand span { color: var(--primary); }

.title {
  margin: 12px 0 8px;
  font-size: clamp(22px, 4.5vw, 36px);
  font-weight: 700;
}

.subtitle {
  margin: 0 0 28px;
  color: var(--muted);
}

/* badges removed for minimalism */

.actions {
  display: inline-flex;
  gap: 12px;
}

.hero-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .06s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn.primary { background: linear-gradient(135deg, var(--primary), var(--primary-600)); color: white; }
.btn.primary:hover { transform: translateY(-1px); }

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,.18);
}
.btn.ghost:hover {
  border-color: rgba(255,255,255,.35);
  transform: translateY(-1px);
}

.note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

.bg-accent {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 480px;
  height: 480px;
  background: radial-gradient(closest-side, rgba(14,165,233,.18), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  transform: translate(10%, -10%);
}

.hero-visual { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 999px; filter: blur(30px); opacity: .5; }
.orb-red { width: 460px; height: 460px; background: radial-gradient(circle at 30% 30%, rgba(239,68,68,.35), transparent 60%); top: -60px; left: -80px; }
.orb-dark { width: 560px; height: 560px; background: radial-gradient(circle at 70% 70%, rgba(0,0,0,.35), transparent 60%); bottom: -120px; right: -120px; }
.grid-lines {
  position: absolute; inset: 10% 0 0 0; opacity: .15; background-image: linear-gradient(to right, rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Pages secondaires */
.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.card {
  width: min(480px, 92%);
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.card h2 { margin: 6px 0 8px; }
.card p { margin: 0 0 18px; color: var(--muted); }

.back {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  text-decoration: none;
}
.back:hover { text-decoration: underline; }

/* Sections */
.section { padding: 36px 0 48px; }

/* Stats cards */
.stat-card {
  position: relative;
  background: linear-gradient(180deg, rgba(239,68,68,.12), rgba(239,68,68,.05));
  border: 1px solid rgba(239,68,68,.35);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
  transition: border-color .2s ease, transform .08s ease, box-shadow .2s ease;
}
.stat-card::after {
  content: '';
  position: absolute; inset: 0; border-radius: 14px;
  box-shadow: 0 0 0 0 rgba(239,68,68,.4);
  pointer-events: none;
  transition: box-shadow .2s ease;
}
.stat-card:hover { transform: translateY(-1px); border-color: rgba(239,68,68,.55); }
.stat-card:hover::after { box-shadow: 0 0 30px 2px rgba(239,68,68,.15); }

.stat-icon { font-size: 20px; filter: drop-shadow(0 2px 6px rgba(239,68,68,.25)); }
.stat-content { display: grid; }
.stat-label { color: var(--muted); font-size: 12px; letter-spacing: .35px; }
.stat-value { font-size: 22px; font-weight: 800; line-height: 1.15; }

@media (max-width: 760px) {
  .hero-stats { grid-template-columns: 1fr; }
}


