:root {
  --bg: #0b0a0f;
  --bg-2: #131019;
  --card: #191320;
  --card-hi: #211a2b;
  --border: #2c2436;
  --text: #f7f2f6;
  --muted: #b3a9bf;
  --primary: #ec4899;   /* creator pink */
  --primary-2: #f472b6;
  --cta: #f97316;       /* engagement orange */
  --cta-2: #fb923c;
  --ok: #34d399;
  --max: 1120px;
  --radius: 16px;
  --font-head: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand { font-family: var(--font-head); }

a { color: var(--primary-2); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible { outline: 2px solid var(--primary-2); outline-offset: 3px; border-radius: 6px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

svg.icon { width: 26px; height: 26px; display: block; }
.card svg.icon { color: var(--primary-2); margin-bottom: 14px; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(11, 10, 15, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 22px; color: var(--text); letter-spacing: -0.01em; }
.brand .mark { width: 26px; height: 26px; }
.langs { display: flex; gap: 4px; font-size: 14px; }
.langs a { color: var(--muted); padding: 6px 10px; border-radius: 9px; cursor: pointer; transition: color .2s, background .2s; }
.langs a:hover { color: var(--text); text-decoration: none; }
.langs a[aria-current="true"] { color: var(--text); background: var(--card); }

/* ---- hero ---- */
.hero { padding: 96px 0 72px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% 0 auto 0; height: 620px; z-index: 0;
  background: radial-gradient(900px 420px at 50% 0%, rgba(236,72,153,0.20), transparent 68%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(44px, 8vw, 88px); line-height: 1.02; margin: 0 0 22px; letter-spacing: -0.04em; font-weight: 800; }
.hero .grad { background: linear-gradient(100deg, var(--primary), var(--cta)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: clamp(18px, 2.3vw, 23px); color: var(--muted); max-width: 680px; margin: 0 auto 34px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 16px; font-family: var(--font-body); border: 1px solid transparent; cursor: pointer; transition: opacity .2s, border-color .2s, background .2s; }
.btn-primary { background: linear-gradient(100deg, var(--primary), var(--cta)); color: #fff; }
.btn-primary:hover { text-decoration: none; opacity: 0.93; }
.btn-ghost { border-color: var(--border); color: var(--text); background: var(--card); }
.btn-ghost:hover { text-decoration: none; border-color: var(--primary-2); }
.soon { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; font-size: 13.5px; color: var(--muted); border: 1px solid var(--border); border-radius: 999px; padding: 7px 16px; }
.soon .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 10px var(--ok); }

/* ---- sections ---- */
section { padding: 62px 0; border-top: 1px solid var(--border); }
section h2 { font-size: clamp(28px, 4.4vw, 44px); margin: 0 0 14px; letter-spacing: -0.02em; font-weight: 700; }
section .sub { color: var(--muted); max-width: 660px; margin: 0 0 38px; font-size: 18px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: border-color .2s, background .2s; }
.card:hover { border-color: #3b3147; background: var(--card-hi); }
.card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 600; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; }
.safety { background: var(--bg-2); }
.safety ul { color: var(--muted); padding-left: 22px; margin: 0; max-width: 740px; }
.safety li { margin: 9px 0; }
.safety li::marker { color: var(--primary-2); }

/* ---- faq ---- */
.faq { max-width: 800px; }
details { border: 1px solid var(--border); border-radius: 12px; padding: 4px 20px; margin: 12px 0; background: var(--card); }
details[open] { border-color: #3b3147; }
summary { cursor: pointer; font-weight: 600; font-size: 17px; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--primary-2); font-size: 24px; font-weight: 400; line-height: 1; }
details[open] summary::after { content: "\2212"; }
details p { color: var(--muted); margin: 0 0 18px; font-size: 15.5px; }

/* ---- footer ---- */
.site-footer { border-top: 1px solid var(--border); padding: 46px 0 64px; color: var(--muted); font-size: 14px; }
.site-footer .cols { display: flex; flex-wrap: wrap; gap: 30px 64px; margin-bottom: 30px; }
.site-footer h4 { color: var(--text); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px; font-family: var(--font-body); }
.site-footer a { color: var(--muted); display: block; margin: 7px 0; cursor: pointer; transition: color .2s; }
.site-footer a:hover { color: var(--text); }
.site-footer .fine { border-top: 1px solid var(--border); padding-top: 22px; font-size: 12.5px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.badge18 { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 2px solid var(--primary-2); color: var(--primary-2); border-radius: 50%; font-weight: 700; font-size: 13px; flex-shrink: 0; }

/* ---- legal pages ---- */
.legal { padding: 60px 0 90px; }
.legal .doc { max-width: 800px; }
.legal h1 { font-size: clamp(30px, 5vw, 44px); margin: 0 0 6px; letter-spacing: -0.02em; }
.legal .updated { color: var(--muted); font-size: 14px; margin: 0 0 30px; }
.legal h2 { font-size: 23px; margin: 36px 0 10px; font-weight: 600; }
.legal h3 { font-size: 18px; margin: 24px 0 8px; font-weight: 600; }
.legal p, .legal li { color: #ddd6e4; }
.legal .draft { background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.4); border-radius: 12px; padding: 15px 18px; color: var(--cta-2); font-size: 14.5px; margin: 0 0 32px; }
.legal a.back { display: inline-block; margin-top: 34px; color: var(--muted); }

/* ---- age gate ---- */
.age-gate { position: fixed; inset: 0; z-index: 50; background: rgba(6,5,9,0.95);
  display: flex; align-items: center; justify-content: center; padding: 20px; }
.age-gate.hidden { display: none; }
.age-box { background: var(--card); border: 1px solid var(--border); border-radius: 20px; max-width: 460px; padding: 38px; text-align: center; }
.age-box .mark { width: 40px; height: 40px; margin: 0 auto 14px; }
.age-box h2 { margin: 0 0 12px; font-size: 26px; }
.age-box p { color: var(--muted); font-size: 15px; margin: 0 0 26px; }
.age-box .decline { display: block; margin-top: 18px; color: var(--muted); font-size: 13px; cursor: pointer; }

@media (max-width: 600px) {
  .site-footer .cols { flex-direction: column; gap: 26px; }
  .hero { padding: 72px 0 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
