/* ─── AURA PEPTIDES — Base / Reset ─── */

* {
  margin: 0; padding: 0; box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover { opacity: 0.85; }

/* ─── BACKGROUND LAYERS ─── */
.bg-grid {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

.bg-radial {
  position: fixed; top: -20%; left: 50%; transform: translateX(-50%);
  width: 80%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(0,60,100,0.25) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* ─── MOLECULES SVG BG ─── */
.molecules {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.06;
}

/* ─── WRAPPER ─── */
.wrapper {
  position: relative; z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

/* ─── ANIMATIONS ─── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 48px 0;
}

/* ─── EDITION BADGE ─── */
.edition {
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  padding: 4px 12px;
  background: rgba(0,229,255,0.1);
  border: 1px solid var(--border-strong);
  color: var(--cyan);
  letter-spacing: 0.2em;
  border-radius: 2px;
  margin-bottom: 16px;
}
