/* Velvet bridge — dark, mobile-first, tasteful. */
:root {
  --bg: #0d0a10;
  --panel: #17121c;
  --panel-2: #1f1826;
  --text: #f4eef7;
  --muted: #a99fb3;
  --accent: #e0218a;
  --accent-2: #ff5fb0;
  --radius: 16px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: radial-gradient(1200px 600px at 50% -10%, #241526 0%, var(--bg) 60%);
  color: var(--text);
  font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
}
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }

/* ---- age gate ---- */
.age-gate {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(6,4,8,.92);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
/* the `hidden` attribute must win over display:flex above, else the gate never closes */
.age-gate[hidden] { display: none; }
.age-card {
  max-width: 420px; background: var(--panel); border: 1px solid #2a2230;
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.age-card h1 { margin: 0 0 8px; font-size: 28px; }
.age-card p { color: var(--muted); font-size: 14px; }
.age-actions { display: grid; gap: 10px; margin-top: 18px; }

/* ---- buttons ---- */
.btn { border: 0; border-radius: 999px; padding: 14px 18px; font-size: 15px; font-weight: 700; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid #2a2230; }

/* ---- chrome ---- */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; max-width: 720px; margin: 0 auto;
}
.brand { font-weight: 800; letter-spacing: .5px; font-size: 20px;
  background: linear-gradient(135deg, var(--accent-2), #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ai-badge { font-size: 11px; color: var(--muted); border: 1px solid #2a2230; padding: 4px 10px; border-radius: 999px; }

.wrap { max-width: 720px; margin: 0 auto; padding: 8px 20px 40px; }

/* ---- hero ---- */
.hero { display: grid; gap: 16px; margin: 12px 0 24px; }
.hero-media { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--panel-2), #2a1830); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: #5d5266; font-size: 13px; }
.hero-copy h1 { margin: 0 0 6px; font-size: 30px; line-height: 1.15; }
.hero-copy p { margin: 0; color: var(--muted); }

/* ---- offers ---- */
.offers { display: grid; gap: 14px; }
.offer { display: block; background: var(--panel); border: 1px solid #2a2230;
  border-radius: var(--radius); padding: 20px; transition: transform .12s ease, border-color .12s ease; position: relative; }
.offer:hover { transform: translateY(-2px); border-color: #3a2f44; }
.offer h2 { margin: 0 0 6px; font-size: 19px; }
.offer p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.offer-cta { font-weight: 700; color: var(--accent-2); }
.offer-primary { background: linear-gradient(160deg, #241226, var(--panel));
  border-color: var(--accent); box-shadow: 0 0 0 1px rgba(224,33,138,.25), 0 12px 40px -16px rgba(224,33,138,.6); }
.offer-tag { position: absolute; top: -10px; left: 16px; background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }

/* ---- trust ---- */
.trust ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px;
  padding: 20px 4px 0; margin: 0; color: var(--muted); font-size: 13px; }

/* ---- footer ---- */
.foot { max-width: 720px; margin: 0 auto; padding: 24px 20px 48px; color: #6d6376; font-size: 12px; }
.foot a { color: #8a7f96; text-decoration: underline; }
.foot .muted { margin-top: 8px; color: #564d61; }

@media (min-width: 640px) {
  .hero { grid-template-columns: 1fr 1fr; align-items: center; }
  .hero-copy h1 { font-size: 34px; }
}
