@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Instrument+Serif&display=swap');

:root {
  --bg: #0a0a0d;
  --bg-elevated: #131319;
  --bg-card: #16161e;
  --border: #23232c;
  --border-subtle: #1c1c25;
  --text: #f4f4f7;
  --text-dim: #8b8b99;
  --text-faint: #5a5a66;
  --accent: #e63946;
  --accent-soft: rgba(230, 57, 70, 0.12);
  --accent-glow: rgba(230, 57, 70, 0.35);
  --max: 880px;
  --radius: 12px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(230, 57, 70, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(230, 57, 70, 0.04), transparent);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: #ff5862; }

::selection { background: var(--accent-soft); color: var(--text); }

/* Header */
header {
  border-bottom: 1px solid var(--border-subtle);
  padding: 22px 28px;
  background: rgba(10, 10, 13, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
}
.logo a { color: inherit; }
.logo a:hover { color: var(--text); }

nav {
  display: flex;
  gap: 6px;
}
nav a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.15s ease;
}
nav a:hover {
  color: var(--text);
  background: var(--bg-card);
  text-decoration: none;
}

/* Main */
main {
  flex: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 64px 28px 80px;
}

/* Hero */
.hero {
  margin-bottom: 56px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #c4c4cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h1 em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  background: linear-gradient(180deg, var(--accent) 0%, #ff7a82 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 40px 0 14px;
  color: var(--text);
}
h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--text);
}

p {
  margin-bottom: 16px;
  color: var(--text-dim);
  font-size: 15.5px;
}
p.lead {
  font-size: 19px;
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 620px;
  line-height: 1.55;
}
ul, ol { margin: 0 0 16px 24px; color: var(--text-dim); font-size: 15.5px; }
li { margin-bottom: 8px; }

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
  transition: border-color 0.2s ease;
}
.card:hover { border-color: var(--border); }
.card h2 { margin-top: 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 22px;
}
.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
}
.feature h3 { margin: 0 0 6px; font-size: 15px; }
.feature p { margin: 0; font-size: 14px; color: var(--text-dim); }

/* Warning / notice */
.warning {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.08), rgba(230, 57, 70, 0.02));
  border: 1px solid rgba(230, 57, 70, 0.2);
  padding: 18px 22px;
  border-radius: var(--radius);
  margin: 28px 0;
  font-size: 14.5px;
  color: var(--text-dim);
}
.warning strong { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn:hover {
  background: #ff4654;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px var(--accent-glow);
}
.btn:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 13px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.15s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  color: var(--text);
  border-color: var(--text-faint);
  background: var(--bg-card);
  text-decoration: none;
}

.muted { color: var(--text-faint); font-size: 13.5px; }

/* Legal page typography */
.legal-page p, .legal-page li { color: var(--text-dim); font-size: 15px; }
.legal-page h2 { margin-top: 36px; }

/* Footer */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 32px 28px;
  background: var(--bg-elevated);
  color: var(--text-faint);
  font-size: 13.5px;
}
footer .wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer a {
  color: var(--text-dim);
  margin: 0 6px;
  font-weight: 500;
}
footer a:hover { color: var(--text); text-decoration: none; }
footer .legal-links { display: flex; flex-wrap: wrap; gap: 4px; }

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(230, 57, 70, 0.08);
  animation: slideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.age-gate-box .eyebrow { margin-bottom: 16px; }
.age-gate-box h2 { margin: 0 0 14px; font-size: 26px; letter-spacing: -0.02em; }
.age-gate-box p { font-size: 14.5px; margin-bottom: 8px; }
.age-gate-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 600px) {
  header { padding: 16px 18px; }
  main { padding: 40px 18px 60px; }
  h1 { font-size: 32px; }
  h2 { font-size: 20px; }
  nav a { padding: 6px 10px; font-size: 13px; }
  .card { padding: 20px; }
  footer .wrap { flex-direction: column; text-align: center; }
}
