/* ═══════════════════════════════════════════════════════════════════════════
   GENDERME — global.css
   CSS custom properties, reset, base body styles, background pattern,
   keyframe animations, and shared utility classes.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --bg: #f0f7ff;
  --bg2: #ffffff;
  --bg3: #e8f4ff;
  --surface: #ddeeff;
  --border: rgba(100,160,220,0.18);
  --border2: rgba(100,160,220,0.32);
  --text: #2a3a5c;
  --text2: #4a6080;
  --text3: #7898b8;
  --accent: #5ba8d4;
  --accent2: #3d8fc0;
  --accent3: rgba(91,168,212,0.12);
  --mint: #6dcfb0;
  --mint2: #4db898;
  --rose: #f0a0b8;
  --rose2: #e07898;
  --lavender: #b8a0e0;
  --lavender2: #9878cc;
  --peach: #f0c098;
  --yellow: #f0e070;
  --sky: #a8d8f0;
  --glow: 0 4px 24px rgba(91,168,212,0.18);
  --shadow: 0 2px 16px rgba(60,100,160,0.10);
  --shadow2: 0 8px 32px rgba(60,100,160,0.14);
  --radius: 20px;
  --radius2: 12px;
  --font-display: 'Quicksand', 'Nunito', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Nunito', sans-serif;
}

/* ─── RESET ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ─── BASE BODY ─── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ─── SOFT BACKGROUND PATTERN ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(180,220,255,0.35) 0%, transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(200,180,255,0.25) 0%, transparent 35%),
    radial-gradient(circle at 70% 80%, rgba(160,230,200,0.25) 0%, transparent 40%),
    radial-gradient(circle at 20% 85%, rgba(255,200,210,0.22) 0%, transparent 35%);
  pointer-events: none;
  z-index: 0;
}

/* ─── SHARED KEYFRAMES ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, 30px) scale(1.08); }
  66%       { transform: translate(-20px, 50px) scale(0.94); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-60px, -40px) scale(1.12); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  25%       { transform: translate(-48%, -52%) scale(1.04); }
  75%       { transform: translate(-52%, -48%) scale(0.96); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

@keyframes symbolGlow {
  0%, 100% { box-shadow: 0 4px 24px rgba(91,168,212,0.2); }
  50%       { box-shadow: 0 8px 40px rgba(91,168,212,0.4); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }

.divider {
  height: 2px;
  background: rgba(100,160,220,0.1);
  margin: 0 48px;
  border-radius: 2px;
}

.loading-state {
  text-align: center;
  padding: 100px 48px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text2);
}

/* ─── SECTION TYPOGRAPHY (shared across pages) ─── */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint2);
  margin-bottom: 12px;
  display: inline-block;
  background: rgba(109,207,176,0.12);
  padding: 6px 16px;
  border-radius: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.section-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ─── DISCLAIMER BAR ─── */
.disclaimer-bar {
  background: rgba(168,216,240,0.12);
  border: 1px solid rgba(91,168,212,0.18);
  border-radius: var(--radius2);
  padding: 10px 18px;
  text-align: center;
  font-size: 12px;
  color: var(--text3);
  font-family: var(--font-body);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.disclaimer-bar strong { color: var(--text2); font-weight: 600; }

/* ─── ANONYMOUS NOTICE ─── */
.anon-notice {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(109,207,176,0.1);
  border: 1px solid rgba(77,184,152,0.22);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mint2);
  font-family: var(--font-body);
  margin-bottom: 6px;
}
.anon-notice::before { content: '🔒'; font-size: 11px; }

/* ─── MOBILE OVERRIDES ─── */
@media (max-width: 768px) {
  .divider { margin: 0 20px; }
}
