:root {
  --bg: #16090b;
  --bg-2: #200d10;
  --panel: #241014;
  --gold: #d9a94f;
  --gold-bright: #f3cd7e;
  --text: #f4e9d8;
  --muted: #b39a80;
  --border: rgba(217, 169, 79, 0.25);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(22, 9, 11, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand:hover { color: var(--gold-bright); }

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(217, 169, 79, 0.35);
}

.nav-links { display: flex; gap: 28px; font-size: 0.9rem; letter-spacing: 0.05em; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(217, 169, 79, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 110%, rgba(140, 20, 30, 0.35), transparent 65%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
}

h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold) 20%, var(--gold-bright) 50%, var(--gold) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lede { color: var(--muted); font-size: 1.1rem; max-width: 32em; margin-bottom: 32px; }

.cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(160deg, var(--gold-bright), var(--gold) 60%, #a87830);
  color: #2a1508;
  box-shadow: 0 6px 24px rgba(217, 169, 79, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(217, 169, 79, 0.5); color: #2a1508; }

.cta-note { color: var(--muted); font-size: 0.85rem; }

.hero-shot { display: flex; justify-content: center; }

.hero-shot img {
  width: 100%;
  max-width: 320px;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(217, 169, 79, 0.12);
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-align: center;
  margin-bottom: 12px;
}

.section-sub { text-align: center; color: var(--muted); max-width: 40em; margin: 0 auto 52px; }

.rule {
  width: 72px;
  height: 2px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.card {
  background: linear-gradient(180deg, var(--panel), rgba(36, 16, 20, 0.4));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(217, 169, 79, 0.55); }

.card .glyph { font-size: 2.2rem; display: block; margin-bottom: 16px; }

.card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold-bright);
  margin-bottom: 10px;
}

.card p { color: var(--muted); font-size: 0.95rem; }

/* Screenshots */
.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.shots img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}
.shots img:hover { transform: scale(1.025); }

/* Disclaimer */
.disclaimer {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 40px;
  text-align: center;
}

.disclaimer h2 { font-family: var(--serif); font-size: 1.4rem; color: var(--gold-bright); margin-bottom: 14px; }
.disclaimer p { color: var(--muted); font-size: 0.92rem; max-width: 52em; margin: 0 auto 8px; }

.age-badge {
  display: inline-block;
  border: 2px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  padding: 4px 12px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 48px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 16px; flex-wrap: wrap; }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 64px 24px 96px; }

.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }

.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; }

.legal h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold-bright);
  margin: 40px 0 14px;
}

.legal p, .legal li { color: #e0d3bd; font-size: 0.98rem; margin-bottom: 12px; }

.legal ul { padding-left: 24px; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; }

.legal strong { color: var(--text); }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; padding-top: 56px; padding-bottom: 56px; }
  .lede { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-shot { order: -1; }
  .hero-shot img { max-width: 240px; }
  section { padding: 56px 0; }
  .disclaimer { padding: 28px 20px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .brand { font-size: 0.95rem; gap: 8px; letter-spacing: 0.08em; }
  .brand img { width: 32px; height: 32px; }
  .nav-links { gap: 14px; font-size: 0.8rem; }
}
