/* ============================================
   AiBabes10 — Shared Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600&display=swap');

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

:root {
  --bg:       #06050c;
  --bg2:      #0c0b16;
  --surface:  #11101e;
  --surface2: #18162a;
  --border:   rgba(255,255,255,0.06);
  --border2:  rgba(255,255,255,0.1);
  --accent:   #e8193c;
  --accent-glow: rgba(232,25,60,0.4);
  --purple:   #7b2ff7;
  --gold:     #f5c518;
  --text:     #edeaf8;
  --muted:    #7a7595;
  --muted2:   #3f3d58;
  --radius:   0.6rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background atmosphere */
.bg-mesh {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 65% 55% at 8% 5%,  rgba(232,25,60,.14)  0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 92% 90%, rgba(123,47,247,.17) 0%, transparent 58%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(245,197,24,.04) 0%, transparent 65%);
}
.bg-grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(6,5,12,.7);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: .07em;
  color: var(--text); text-decoration: none;
}
.nav-logo em { color: var(--accent); font-style: normal; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #fff;
  font-size: .75rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
  padding: .45rem 1.1rem; border-radius: 2rem;
  transition: box-shadow .2s, transform .15s;
  box-shadow: 0 0 18px var(--accent-glow);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 30px var(--accent-glow); }

/* ── FOOTER ── */
.site-footer {
  position: relative; z-index: 10;
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 2.5rem;
  max-width: 1140px; margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: .8rem; }
.footer-brand p { font-size: .85rem; color: var(--muted); line-height: 1.7; max-width: 270px; }
.footer-col h4 {
  font-size: .68rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted2);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col a {
  font-size: .88rem; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .73rem; color: var(--muted2);
}
.footer-bottom a { color: var(--muted2); text-decoration: underline; }
.affiliate-badge {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 2rem; padding: .25rem .85rem;
  font-size: .68rem; letter-spacing: .08em; color: var(--muted);
}

/* ── INNER PAGE LAYOUT ── */
.inner-page {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto;
  padding: 9rem 1.5rem 5rem;
}
.breadcrumb {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted2); margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.page-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  line-height: .93; margin-bottom: .8rem;
}
.page-meta { font-size: .78rem; color: var(--muted2); letter-spacing: .07em; margin-bottom: 3rem; }

/* Doc body (privacy / terms) */
.doc-body { line-height: 1.8; }
.doc-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: .06em;
  color: var(--text); margin: 2.8rem 0 .8rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.doc-body h3 { font-size: .95rem; font-weight: 600; margin: 1.6rem 0 .5rem; color: var(--text); }
.doc-body p  { font-size: .91rem; color: var(--muted); margin-bottom: 1rem; }
.doc-body ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.doc-body li { font-size: .91rem; color: var(--muted); margin-bottom: .4rem; }
.doc-body a  { color: var(--accent); text-decoration: none; }
.doc-body a:hover { text-decoration: underline; }
.doc-callout {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--accent); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; margin: 1.8rem 0;
}
.doc-callout p { margin: 0; font-size: .88rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--accent); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  padding: .95rem 2.4rem; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 0 30px var(--accent-glow), 0 4px 20px rgba(0,0,0,.4);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 0 55px var(--accent-glow), 0 8px 28px rgba(0,0,0,.5); }
.btn-primary:active { transform: scale(.98); }
.btn-arrow { transition: transform .2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* ── CARDS ── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  transition: border-color .25s, transform .25s;
}
.card:hover { border-color: rgba(232,25,60,.3); transform: translateY(-4px); }

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes floatOrb { 0%,100% { transform:translateY(0) scale(1); } 50% { transform:translateY(-28px) scale(1.05); } }

.anim-1 { animation: fadeUp .7s .05s ease both; }
.anim-2 { animation: fadeUp .7s .15s ease both; }
.anim-3 { animation: fadeUp .7s .25s ease both; }
.anim-4 { animation: fadeUp .7s .35s ease both; }
.anim-5 { animation: fadeUp .7s .45s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar { padding: 1rem 1.3rem; }
  .nav-links { display: none; }
  .site-footer { padding: 3rem 1.3rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
