:root {
  --bg: #0b0b0f;
  --card: #14141c;
  --text: #f3f1ec;
  --muted: #9a96a8;
  --line: #2a2a36;
  --accent: #ff4d6d;
  --accent2: #ff8fa3;
  --ok: #5eead4;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--text); }
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: rgba(11,11,15,.9); backdrop-filter: blur(8px); z-index: 10;
}
.logo { color: var(--text); font-weight: 700; letter-spacing: .02em; text-decoration: none; }
.logo span { color: var(--accent); font-weight: 600; }
.nav nav { display: flex; gap: 1rem; align-items: center; }
.nav nav a { color: var(--muted); text-decoration: none; font-size: .95rem; }
.hero, .steps, .not-this, .cta, .pricing, .apply { max-width: 920px; margin: 0 auto; padding: 3rem 1.5rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; color: var(--accent); font-size: .75rem; font-weight: 700; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; margin: .4rem 0 1rem; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 38rem; }
.fine { color: var(--muted); font-size: .9rem; margin-top: 1rem; }
.row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: .85rem 1.3rem; border: 1px solid var(--line);
  color: var(--text); background: transparent; cursor: pointer; text-decoration: none; font-weight: 600;
}
.btn:hover { text-decoration: none; border-color: var(--accent); }
.btn.primary { background: linear-gradient(135deg, var(--accent), #c9184a); border-color: transparent; color: white; }
.btn.small { padding: .45rem .9rem; font-size: .9rem; }
.btn.ghost { background: var(--card); }
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
  max-width: 920px; margin: 0 auto; padding: 0 1.5rem 2rem;
}
.gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 1rem; border: 1px solid var(--line); }
.caption { grid-column: 1 / -1; color: var(--muted); font-size: .85rem; }
.steps ol, .not-this ul { color: var(--muted); line-height: 1.7; padding-left: 1.2rem; }
.steps strong, .not-this li { color: var(--text); }
.cta { text-align: center; border-top: 1px solid var(--line); }
footer { border-top: 1px solid var(--line); padding: 2rem 1.5rem; color: var(--muted); font-size: .85rem; text-align: center; }
code { color: var(--ok); }
.age-gate {
  position: fixed; inset: 0; background: rgba(0,0,0,.92); display: grid; place-items: center; z-index: 100;
}
.age-gate.hidden { display: none; }
.age-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 1.25rem;
  padding: 2rem; max-width: 26rem; text-align: center;
}
.cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 1.5rem; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 1rem; padding: 1.25rem;
}
.card h3 { margin-top: 0; }
.price { font-size: 1.6rem; font-weight: 700; }
.muted { color: var(--muted); }
label { display: block; margin: .8rem 0 .3rem; font-size: .9rem; color: var(--muted); }
input, textarea, select {
  width: 100%; background: #0f0f16; border: 1px solid var(--line); border-radius: .7rem;
  color: var(--text); padding: .75rem .9rem; font: inherit;
}
textarea { min-height: 110px; resize: vertical; }
.check { display: flex; gap: .6rem; align-items: flex-start; margin: .8rem 0; color: var(--muted); font-size: .9rem; }
.check input { width: auto; margin-top: .2rem; }
.note { background: #171722; border-left: 3px solid var(--accent); padding: .8rem 1rem; color: var(--muted); border-radius: .4rem; }
@media (max-width: 700px) {
  .gallery { grid-template-columns: 1fr; }
  .nav nav a:not(.btn) { display: none; }
}
