/* ═══════════════════════════════════════════════
   KLARRRO — INDEX.CSS
   Design Premium Féminin — Mobile First
   ═══════════════════════════════════════════════ */

:root { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── GRAIN TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ════════════════════
   STICKY HEADER
   ════════════════════ */
.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
}

/* ── TOPBAR ── */
.topbar {
  background: linear-gradient(90deg,
    rgba(212,82,122,0.12) 0%,
    rgba(8,6,13,0.97) 40%,
    rgba(8,6,13,0.97) 60%,
    rgba(201,169,110,0.1) 100%);
  border-bottom: 1px solid rgba(212,82,122,0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: .5rem 1rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.topbar-live {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.topbar-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; box-shadow:0 0 6px var(--green); }
  50%      { opacity:.6; box-shadow:0 0 14px var(--green),0 0 24px rgba(109,187,142,0.4); }
}
.topbar-sep { color: var(--muted); font-size: .65rem; }
.topbar-msg { font-size: .74rem; color: var(--muted2); }
.topbar-msg strong { color: var(--text); font-weight: 600; }
.topbar-badge {
  background: linear-gradient(135deg,rgba(212,82,122,0.2),rgba(212,82,122,0.08));
  border: 1px solid rgba(212,82,122,0.3);
  color: var(--accent-light);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 99px;
}

/* ── NAV ── */
nav {
  position: relative;
  z-index: 1;
  background: rgba(8,6,13,0.90);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: .8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nb {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.nb .ni {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(212,82,122,0.45), 0 0 6px rgba(212,82,122,0.2);
  flex-shrink: 0;
}
.nb .nn {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--text);
}
.nb .nn span { color: var(--accent); }
.nav-links {
  display: none;
  align-items: center;
  gap: .15rem;
}
.nav-links a {
  color: var(--muted2);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  padding: .45rem .85rem;
  border-radius: 10px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border: none;
  padding: .6rem 1.25rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(212,82,122,0.35);
  transition: box-shadow var(--t), transform var(--t-fast);
  letter-spacing: .2px;
}
.nav-cta:hover {
  box-shadow: 0 0 32px rgba(212,82,122,0.55);
  transform: translateY(-1px);
}

/* ── HAMBURGER BUTTON ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
  transition: background var(--t-fast);
  flex-shrink: 0;
}
.nav-burger:hover { background: var(--surface); }
.nav-burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 220ms ease, opacity 150ms ease, width 220ms ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU PANEL ── */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: .5rem .75rem 1rem;
  background: rgba(10,8,18,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}
.nav-mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-mm-link {
  color: var(--text2);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: .8rem .5rem;
  border-radius: 10px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-mm-link:hover { color: var(--text); background: var(--surface); }
.nav-mm-sep {
  height: 1px;
  background: var(--border);
  margin: .5rem 0;
}
.nav-mm-lang {
  display: flex;
  gap: .4rem;
  padding: .4rem .5rem;
}
.nav-mm-cta {
  display: block;
  text-align: center;
  margin-top: .5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border-radius: 99px;
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 1rem;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(212,82,122,.35);
}

/* ── NAV MOBILE : logo + hamburger only ── */
@media (max-width: 1023px) {
  nav {
    padding: .65rem 1.25rem;
    flex-wrap: nowrap;
  }
  .lang-switcher { display: none; }
  .nav-cta       { display: none; }
  .nav-burger    { display: flex; }
  .nav-mobile-menu { display: flex; }
}

/* ════════════════════
   HERO
   ════════════════════ */
.hero {
  position: relative;
  text-align: center;
  padding: 5.5rem 1.25rem 4rem;
  overflow: hidden;
  margin-top: 5.5rem;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Ambient glows */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-glow::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 700px;
  background: radial-gradient(ellipse,
    rgba(212,82,122,0.18) 0%,
    rgba(184,160,212,0.06) 45%,
    transparent 70%);
  filter: blur(40px);
  animation: hero-glow-drift 12s ease-in-out infinite;
}
.hero-glow::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 20%;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse,
    rgba(201,169,110,0.12) 0%,
    transparent 65%);
  filter: blur(60px);
  animation: hero-glow-drift 16s ease-in-out infinite reverse;
}
@keyframes hero-glow-drift {
  0%,100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50%      { transform: translateX(-50%) scale(1.08) translateY(-20px); opacity: .8; }
}

.hero-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: linear-gradient(135deg,
    rgba(212,82,122,0.15),
    rgba(201,169,110,0.08));
  border: 1px solid rgba(212,82,122,0.25);
  border-radius: 99px;
  padding: .45rem 1.1rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  position: relative;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 9vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.04;
  margin-bottom: 1.5rem;
}
.hero h1 .acc {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .dim { color: var(--muted); -webkit-text-fill-color: var(--muted); }

.hero-sub {
  position: relative;
  font-size: 1.05rem;
  color: var(--muted2);
  max-width: 640px;
  margin: 0 auto 2.25rem;
  line-height: 1.8;
  font-weight: 400;
}

.hero-btns {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 480px;
}

.btn-primary-lg {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  box-shadow: 0 0 40px rgba(212,82,122,0.45), 0 4px 16px rgba(212,82,122,0.3);
  transition: transform var(--t-fast), box-shadow var(--t);
  width: 100%;
  letter-spacing: .2px;
}
.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 56px rgba(212,82,122,0.6), 0 8px 24px rgba(212,82,122,0.4);
}

.btn-ghost-lg {
  background: rgba(255,255,255,0.04);
  color: var(--text2);
  border: 1px solid var(--border2);
  padding: .95rem 1.75rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  transition: background var(--t-fast), border-color var(--t-fast);
  width: 100%;
  backdrop-filter: blur(8px);
}
.btn-ghost-lg:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border3);
}

.hero-proof {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .76rem;
  color: var(--muted2);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .5rem .75rem;
  backdrop-filter: blur(8px);
}
.hero-proof-item .dot-ok {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
}

/* ════════════════════
   SECTION HEADERS
   ════════════════════ */
.sh {
  text-align: center;
  margin-bottom: 3rem;
}
.sh .label {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: .75rem;
  background: linear-gradient(90deg, var(--accent-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sh h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: .75rem;
  line-height: 1.1;
}
.sh p {
  font-size: .95rem;
  color: var(--muted2);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ════════════════════
   HOW IT WORKS
   ════════════════════ */
.how {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.steps-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.step {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  backdrop-filter: blur(8px);
  transition: border-color var(--t), transform var(--t);
}
.step:hover {
  border-color: rgba(212,82,122,0.2);
  transform: translateY(-2px);
}
.step-num {
  align-self: flex-start;
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(212,82,122,0.4);
}
.step-ico {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-size: 1.6rem;
  opacity: .45;
  line-height: 1;
}
.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding-right: 2.25rem;
  line-height: 1.25;
}
.step-desc {
  font-size: .85rem;
  color: var(--muted2);
  line-height: 1.65;
}

/* ════════════════════
   FEATURES
   ════════════════════ */
.features {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.feat-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feat-plan-header {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-top: .75rem;
  margin-bottom: -.15rem;
}
.feat-plan-header::before,
.feat-plan-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.feat-plan-label {
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--muted);
  white-space: nowrap;
}
.feat-card {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--t), transform var(--t);
  backdrop-filter: blur(8px);
}
.feat-card:hover {
  border-color: rgba(212,82,122,0.2);
  transform: translateY(-2px);
}
.feat-card.hot   { border-color: rgba(212,82,122,0.2); background: linear-gradient(145deg,rgba(212,82,122,0.07),rgba(212,82,122,0.02)); }
.feat-card.gold  { border-color: rgba(201,169,110,0.25); background: linear-gradient(145deg,rgba(201,169,110,0.07),rgba(201,169,110,0.02)); }
.feat-card.purple{ border-color: rgba(148,120,184,0.25); background: linear-gradient(145deg,rgba(148,120,184,0.07),rgba(148,120,184,0.02)); }
.feat-card.teal  { border-color: rgba(126,200,200,0.2); background: linear-gradient(145deg,rgba(126,200,200,0.06),rgba(126,200,200,0.02)); }
.feat-card.pink  { border-color: rgba(232,120,152,0.2); background: linear-gradient(145deg,rgba(232,120,152,0.06),rgba(232,120,152,0.02)); }

.feat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}
.feat-ico { font-size: 2rem; line-height: 1; }
.feat-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.feat-desc { font-size: .88rem; color: var(--muted2); line-height: 1.65; }
.feat-pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: 1rem;
  font-size: .65rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 99px;
  background: rgba(255,255,255,0.06);
  color: var(--muted2);
  border: 1px solid var(--border2);
  letter-spacing: .3px;
}
.feat-pill.admin {
  background: rgba(148,120,184,0.12);
  color: var(--lavender);
  border-color: rgba(148,120,184,0.2);
}
.feat-pill.plan-etoile {
  background: rgba(251,191,36,0.12);
  color: #fbbf24;
  border-color: rgba(251,191,36,0.2);
}
.feat-pill.plan-pro {
  background: rgba(129,140,248,0.12);
  color: #818cf8;
  border-color: rgba(129,140,248,0.2);
}
.feat-pill--new {
  background: rgba(251,191,36,0.15);
  color: #fbbf24;
  border-color: rgba(251,191,36,0.3);
  font-weight: 600;
}
.feat-card--teaser {
  border-style: dashed;
  opacity: .75;
}
.feat-card--teaser:hover { opacity: 1; }

/* ════════════════════
   AMBIANCES / VIBES
   ════════════════════ */
.vibes {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 1.25rem;
}
.vibes-inner { max-width: 1400px; margin: 0 auto; }

.vibe-progress {
  display: flex;
  align-items: center;
  gap: .875rem;
  justify-content: center;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}
.vp-label { font-size: .75rem; font-weight: 600; color: var(--muted2); }
.vp-bar { display: flex; gap: 4px; }
.vp-seg {
  width: 36px; height: 7px;
  border-radius: 99px;
  transition: transform var(--t);
}
.vp-seg:hover { transform: scaleY(1.4); }
.vp-1 { background: rgba(255,190,205,0.55); }
.vp-2 { background: rgba(232,120,152,0.7); }
.vp-3 { background: rgba(212,82,122,0.88); }
.vp-4 { background: linear-gradient(90deg, var(--accent), #c2185b); }

.vibes-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vibe {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  backdrop-filter: blur(8px);
}
.vibe-header { display: flex; align-items: center; justify-content: space-between; }
.vibe-ico { font-size: 2rem; }
.vibe-heat { font-size: .8rem; letter-spacing: 2px; }
.vibe-1 { background: linear-gradient(145deg,rgba(255,190,205,0.07),rgba(255,210,220,0.03)); border-color: rgba(255,190,205,0.18); }
.vibe-2 { background: linear-gradient(145deg,rgba(232,120,152,0.09),rgba(220,90,130,0.03)); border-color: rgba(232,120,152,0.22); }
.vibe-3 { background: linear-gradient(145deg,rgba(212,82,122,0.12),rgba(180,50,90,0.04)); border-color: rgba(212,82,122,0.28); }
.vibe-4 { background: linear-gradient(145deg,rgba(180,30,70,0.14),rgba(120,10,40,0.06)); border-color: rgba(200,30,80,0.32); }
.vibe-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.vibe-tagline { font-size: .88rem; color: var(--muted2); line-height: 1.6; }
.vibe-actions-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.vibe-actions { display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.vaction {
  font-size: .78rem;
  color: var(--muted2);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: .5rem .75rem;
  line-height: 1.45;
}
.vactions-hot .vaction {
  background: rgba(212,82,122,0.07);
  border-color: rgba(212,82,122,0.15);
}
.vaction.hot { color: var(--text); }
.vibe-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: auto; }
.vtag {
  font-size: .67rem;
  font-weight: 600;
  padding: .22rem .6rem;
  border-radius: 99px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--muted2);
}
.vibe-disclaimer {
  text-align: center;
  margin-top: 1.75rem;
  font-size: .76rem;
  color: var(--muted2);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .875rem 1.25rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ════════════════════
   ADMIN PANEL
   ════════════════════ */
.admin-panel {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.admin-split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.admin-screen {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02));
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  font-size: .78rem;
  backdrop-filter: blur(12px);
}
.admin-screen-topbar {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .875rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.admin-screen-dot { width: 9px; height: 9px; border-radius: 50%; }
.admin-screen-title {
  font-weight: 600;
  font-size: .8rem;
  flex: 1;
  text-align: center;
  color: var(--muted2);
}
.admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem .7rem;
  border-radius: 10px;
  margin-bottom: .3rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
}
.admin-row-label { color: var(--muted2); font-size: .74rem; }
.admin-row-val { font-weight: 700; font-size: .78rem; }
.admin-row-val.green   { color: var(--green); }
.admin-row-val.accent  { color: var(--accent-light); }
.admin-row-val.gold    { color: var(--gold); }
.admin-row-val.blue    { color: var(--blue); }
.admin-toggle {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(109,187,142,0.15);
  border: 1px solid rgba(109,187,142,0.3);
  color: var(--green);
  padding: .18rem .55rem;
  border-radius: 99px;
  font-size: .67rem;
  font-weight: 700;
}
.admin-text-col h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: .875rem;
  line-height: 1.15;
}
.admin-text-col p {
  color: var(--muted2);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.admin-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.admin-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .86rem;
  color: var(--muted2);
}
.admin-feat-list li .ico { font-size: .95rem; flex-shrink: 0; margin-top: .05rem; }
.admin-feat-list li strong { color: var(--text); font-weight: 600; }

/* ════════════════════
   PRICING
   ════════════════════ */
.pricing {
  max-width: 1500px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  margin: 0 auto 2.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  border-radius: 99px;
  padding: .3rem;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.bt-btn {
  background: transparent;
  border: none;
  color: var(--muted2);
  font-size: .84rem;
  font-weight: 600;
  padding: .55rem 1.25rem;
  border-radius: 99px;
  cursor: pointer;
  transition: background var(--t), color var(--t), box-shadow var(--t);
  display: flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.bt-btn:hover:not(.active) { color: var(--text); }
.bt-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 2px 16px rgba(212,82,122,0.4);
}
.bt-save {
  background: rgba(109,187,142,0.15);
  color: var(--green);
  border: 1px solid rgba(109,187,142,0.3);
  font-size: .62rem;
  padding: .14rem .5rem;
  border-radius: 99px;
  font-weight: 800;
  letter-spacing: .3px;
}
.grid4 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.plan {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02));
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.plan.feat {
  border-color: rgba(212,82,122,0.4);
  background: linear-gradient(155deg,
    rgba(212,82,122,0.1) 0%,
    rgba(212,82,122,0.03) 50%,
    rgba(255,255,255,0.02) 100%);
  box-shadow: 0 0 0 1px rgba(212,82,122,0.12), 0 8px 40px rgba(212,82,122,0.1);
}
.plan.feat:hover {
  box-shadow: 0 0 0 1px rgba(212,82,122,0.25), 0 24px 60px rgba(212,82,122,0.2);
}
.plan.elite {
  border-color: rgba(201,169,110,0.35);
  background: linear-gradient(155deg,
    rgba(201,169,110,0.1) 0%,
    rgba(201,169,110,0.03) 50%,
    rgba(255,255,255,0.02) 100%);
  box-shadow: 0 0 0 1px rgba(201,169,110,0.1), 0 8px 40px rgba(201,169,110,0.08);
}
.plan.elite:hover {
  box-shadow: 0 0 0 1px rgba(201,169,110,0.22), 0 24px 60px rgba(201,169,110,0.15);
}
.pb {
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: .28rem .75rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.pb.pop  { background: rgba(212,82,122,0.18); color: var(--accent-light); border: 1px solid rgba(212,82,122,0.28); }
.pb.best { background: rgba(201,169,110,0.18); color: var(--gold);         border: 1px solid rgba(201,169,110,0.28); }
.pb.pnew { background: rgba(148,120,184,0.18); color: var(--lavender);     border: 1px solid rgba(148,120,184,0.22); }
.pb.hi   { visibility: hidden; }

.pi { font-size: 2.25rem; margin-bottom: .65rem; line-height: 1; }
.pn {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.3px;
  margin-bottom: .2rem;
}
.pay-type {
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: .875rem;
}
.pp {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.25rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: .25rem;
  display: flex;
  align-items: flex-start;
  gap: .08rem;
}
.pp .cur { font-size: 1.2rem; font-weight: 700; margin-top: .6rem; line-height: 1; font-family: 'DM Sans', system-ui, sans-serif; }
.pp .suf { font-size: .88rem; font-weight: 400; color: var(--muted2); letter-spacing: 0; align-self: flex-end; margin-bottom: .35rem; font-family: 'DM Sans', system-ui, sans-serif; }
.pp.pp-text { font-size: 1.9rem; letter-spacing: -.5px; align-items: center; }
.pd {
  font-size: .82rem;
  color: var(--muted2);
  margin: .75rem 0 1.5rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: .875rem;
}
.pf {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.pf li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .83rem;
  color: var(--muted2);
  line-height: 1.45;
}
.pf li .ck { color: var(--green); flex-shrink: 0; font-size: .88rem; margin-top: .05rem; }
.pf li strong { color: var(--text); font-weight: 600; }
.pc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  width: 100%;
  margin-top: 2rem;
  transition: filter var(--t-fast), transform var(--t-fast), box-shadow var(--t);
  letter-spacing: .2px;
  font-family: 'DM Sans', system-ui, sans-serif;
}
button.pc { cursor: pointer; }
.pc:hover { filter: brightness(1.08); transform: translateY(-2px); }
.pc.pr { background: linear-gradient(135deg,var(--accent),var(--accent-dark)); color: #fff; box-shadow: 0 4px 24px rgba(212,82,122,0.35); }
.pc.pr:hover { box-shadow: 0 6px 32px rgba(212,82,122,0.55); }
.pc.se { background: rgba(255,255,255,0.05); color: var(--text2); border: 1px solid var(--border2); }
.pc.se:hover { border-color: var(--border3); background: rgba(255,255,255,0.08); }
.pc.go { background: linear-gradient(135deg,var(--gold),#b8822a); color: #1a0f00; font-weight: 800; box-shadow: 0 4px 24px rgba(201,169,110,0.3); }
.pc.go:hover { box-shadow: 0 6px 32px rgba(201,169,110,0.5); }

/* ════════════════════
   CTA BAND
   ════════════════════ */
.cta-band {
  background: linear-gradient(145deg,
    rgba(212,82,122,0.1),
    rgba(148,120,184,0.06),
    rgba(201,169,110,0.05));
  border-top: 1px solid rgba(212,82,122,0.15);
  border-bottom: 1px solid rgba(212,82,122,0.1);
  padding: 5rem 1.25rem 7rem;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: .875rem;
  line-height: 1.1;
}
.cta-band p {
  color: var(--muted2);
  font-size: .98rem;
  margin-bottom: 2.25rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.cta-band-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  max-width: 340px;
  margin: 0 auto;
}

/* ════════════════════
   FOOTER
   ════════════════════ */
footer {
  padding: 2.25rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding-bottom: 2.25rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1rem;
}
.footer-brand .fb-name {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text);
}
.footer-brand .fb-name span { color: var(--accent); }
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--muted2);
  font-size: .8rem;
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: .75rem; line-height: 1.6; }

/* ════════════════════
   MOBILE CTA BAR
   ════════════════════ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  padding: 1rem 1.25rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(8,6,13,0.98) 60%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity var(--t-slow), transform var(--t-slow);
  pointer-events: none;
}
.mobile-cta-bar.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-cta-bar a {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding: .9rem 2.5rem;
  border-radius: 99px;
  box-shadow: 0 0 32px rgba(212,82,122,0.5), 0 4px 16px rgba(212,82,122,0.3);
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  max-width: 360px;
  justify-content: center;
  letter-spacing: .2px;
}

/* ════════════════════
   ANIMATIONS
   ════════════════════ */
/* Logo letters grr */
@keyframes grr {
  0%,100% { transform:translate(0,0) rotate(0deg) scaleY(1); }
  4%  { transform:translate(-1.5px,1px) rotate(-3deg) scaleY(1.08); }
  8%  { transform:translate(1.5px,-1px) rotate(3deg) scaleY(0.94); }
  12% { transform:translate(-1px,1.5px) rotate(-2deg) scaleY(1.05); }
  16% { transform:translate(1px,-0.5px) rotate(2deg) scaleY(0.97); }
  20% { transform:translate(-0.5px,0.5px) rotate(-1deg) scaleY(1.02); }
  22%,98% { transform:translate(0,0) rotate(0deg) scaleY(1); }
}
.r-grr { display: inline-block; animation: grr 2.8s ease-in-out infinite; }
.r-grr.r1 { animation-delay: 0s; }
.r-grr.r2 { animation-delay: 0.09s; }
.r-grr.r3 { animation-delay: 0.18s; }

/* Fade in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════
   BETA POPUP
   ════════════════════ */
.beta-backdrop {
  position: fixed; inset: 0;
  z-index: 499;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}
.beta-backdrop--visible { opacity: 1; pointer-events: auto; }
.beta-popup {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 500;
  max-width: 380px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(26,20,48,0.98), rgba(14,11,24,0.98));
  border: 1px solid rgba(212,82,122,0.25);
  border-radius: 26px;
  padding: 1.75rem 1.5rem 1.25rem;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 30px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(212,82,122,0.1);
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  pointer-events: none;
  transition: opacity .45s cubic-bezier(.16,1,.3,1), transform .45s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}
.beta-popup--visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.beta-popup-glow {
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(ellipse,rgba(212,82,122,0.18),transparent 70%);
  pointer-events: none;
}
.beta-popup-header { display: flex; align-items: center; gap: .55rem; margin-bottom: 1.25rem; }
.beta-popup-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.beta-popup-tag { flex: 1; font-size: .62rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1.8px; color: var(--accent-light); }
.beta-popup-close {
  background: rgba(255,255,255,0.07); border: 1px solid var(--border2); color: var(--muted2);
  width: 26px; height: 26px; border-radius: 8px; cursor: pointer; font-size: .7rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), color var(--t-fast); flex-shrink: 0;
}
.beta-popup-close:hover { background: rgba(255,255,255,0.12); color: var(--text); }
.beta-popup-icon { font-size: 2.25rem; margin-bottom: .75rem; line-height: 1; }
.beta-popup-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; font-weight: 700; letter-spacing: -.3px; margin-bottom: .5rem; line-height: 1.25; }
.beta-popup-body { font-size: .8rem; color: var(--muted2); line-height: 1.7; margin-bottom: 1.1rem; }
.beta-popup-body strong { color: var(--text); font-weight: 600; }
.beta-popup-list { list-style: none; margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: .5rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.beta-popup-list li { display: flex; align-items: center; gap: .55rem; font-size: .76rem; color: var(--muted2); }
.beta-popup-list li strong { color: var(--text); font-weight: 600; }
.bpl-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.bpl-green  { background: var(--green);   box-shadow: 0 0 6px rgba(109,187,142,0.6); }
.bpl-purple { background: var(--lavender); box-shadow: 0 0 6px rgba(184,160,212,0.6); }
.bpl-gold   { background: var(--gold);    box-shadow: 0 0 6px rgba(201,169,110,0.5); }
.beta-popup-cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1rem; border-radius: 14px;
  background: linear-gradient(135deg,rgba(212,82,122,0.22),rgba(212,82,122,0.08));
  border: 1px solid rgba(212,82,122,0.3);
  color: var(--text); font-size: .82rem; font-weight: 700; text-decoration: none;
  margin-bottom: .65rem;
  transition: background var(--t), border-color var(--t), transform var(--t-fast);
}
.beta-popup-cta:hover { background: linear-gradient(135deg,rgba(212,82,122,0.35),rgba(212,82,122,0.15)); border-color: rgba(212,82,122,.5); transform: translateY(-1px); }
.beta-popup-dismiss { background: transparent; border: none; color: var(--muted); font-size: .71rem; cursor: pointer; width: 100%; text-align: center; padding: .35rem; transition: color var(--t-fast); letter-spacing: .2px; }
.beta-popup-dismiss:hover { color: var(--muted2); }

/* ════════════════════
   TABLET ≥ 640px
   ════════════════════ */
@media (min-width: 640px) {
  .hero-btns { flex-direction: row; max-width: none; justify-content: center; }
  .btn-primary-lg, .btn-ghost-lg { width: auto; }
  .hero-proof { grid-template-columns: repeat(4, auto); max-width: 700px; gap: .75rem; }
  .steps-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .step-ico { position: static; font-size: 2rem; opacity: 1; margin-bottom: .25rem; }
  .step-title { padding-right: 0; }
  .feat-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .vibes-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .grid4 { display: grid; grid-template-columns: 1fr 1fr; }
  .cta-band-btns { flex-direction: row; max-width: none; justify-content: center; }
  .mobile-cta-bar { display: none; }
  footer { flex-direction: row; justify-content: space-between; text-align: left; padding-bottom: 2.25rem; }
  .beta-popup { left: auto; right: 2rem; bottom: 2rem; }
}

/* ════════════════════
   DESKTOP ≥ 1024px
   ════════════════════ */
@media (min-width: 1024px) {
  nav { padding: .875rem 2.5rem; }
  .nav-links { display: flex; }
  .hero { padding: 6rem 2rem 5rem; }
  .steps-row { grid-template-columns: repeat(4, 1fr); }
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .vibes-grid { grid-template-columns: repeat(4, 1fr); }
  .grid4 { grid-template-columns: repeat(4, 1fr); }
  .admin-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .how    { padding: 6rem 2rem; }
  .features { padding: 6rem 2rem; }
  .vibes  { padding: 6rem 2rem; }
  .admin-panel { padding: 6rem 2rem; }
  .pricing{ padding: 6rem 2rem; }
}

/* ── Scroll offset for sticky header (ancres) ── */
#comment-ca-marche,
#fonctionnalites,
#ambiances,
#tarifs {
  scroll-margin-top: 6rem;
}

/* feat-plan-header spans full width in grid contexts */
@media (min-width: 640px) {
  .feat-plan-header { grid-column: 1 / -1; }
}

/* ── Topbar mobile simplify ── */
@media (max-width: 639px) {
  .topbar-sep, .topbar-msg { display: none; }
  .topbar-inner { gap: .45rem; }
}

/* ════════════════════
   LARGE DESKTOP ≥ 1440px
   ════════════════════ */
@media (min-width: 1440px) {
  nav { padding: .875rem 4rem; }
  .hero { padding: 7rem 3rem 6rem; }
  .hero-sub { font-size: 1.15rem; }
  .how    { padding: 7rem 3rem; }
  .features { padding: 7rem 3rem; }
  .vibes  { padding: 7rem 3rem; }
  .admin-panel { padding: 7rem 3rem; }
  .gamechange { padding: 7rem 3rem; }
  .pricing{ padding: 7rem 3rem; }
  .cta-band { padding: 7rem 3rem 9rem; }
  .sh { margin-bottom: 3.5rem; }
  .feat-card { padding: 2rem; }
  .vibe { padding: 2rem; }
  .plan { padding: 2.5rem 2rem; }
  .step { padding: 2rem; }
}

/* ════════════════════════════════════════════
   GAME CHANGER — SAFE PLACE
   ════════════════════════════════════════════ */
.gamechange {
  padding: 5rem 1.25rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.gamechange::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 20% 50%, rgba(52,211,153,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(224,82,122,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.gamechange-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Safe Place banner */
.safe-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(52,211,153,0.08) 0%, rgba(52,211,153,0.04) 100%);
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  margin-bottom: 3rem;
}
.safe-banner-ico {
  font-size: 2rem;
  flex-shrink: 0;
}
.safe-banner-text {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.safe-banner-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.01em;
}
.safe-banner-text span {
  font-size: .875rem;
  color: var(--text2);
  line-height: 1.55;
}

/* Split cards */
.gamechange-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.gc-card {
  background: var(--card);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.gc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}
.gc-org::before { background: linear-gradient(90deg, var(--teal), var(--blue)); }
.gc-part::before { background: linear-gradient(90deg, var(--green), var(--teal)); }

.gc-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.gc-ico {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.gc-role {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--muted2);
  margin-bottom: .35rem;
}
.gc-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -.02em;
}

.gc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}
.gc-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--text2);
  line-height: 1.5;
}
.gc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: .4rem;
  box-shadow: 0 0 8px rgba(45,212,191,0.4);
}
.gc-dot--green {
  background: var(--green);
  box-shadow: 0 0 8px rgba(52,211,153,0.4);
}

.gc-tagline {
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted2);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  line-height: 1.45;
}

@media (max-width: 700px) {
  .gamechange-split { grid-template-columns: 1fr; }
  .safe-banner { flex-direction: column; text-align: center; }
}
