:root {
  --night: #17110a;
  --panel: #2b2313;
  --ink: #f7efdd;
  --muted: #b7a981;
  --gold: #ffb933;
  --gold-soft: #ffd98a;
  --line: rgba(255, 185, 51, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--night);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  background: rgba(20, 19, 31, 0.72);
  border-bottom: 1px solid var(--line);
}
.site-header .inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px; height: 66px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: 'Fraunces', Georgia, serif; font-size: 1.25rem; font-weight: 600; color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 32px; height: 32px; border-radius: 8px; object-fit: cover; display: block;
  box-shadow: 0 6px 20px rgba(255,185,51,0.22);
}
.site-header nav { display: flex; gap: 22px; flex-wrap: wrap; }
.site-header nav a { color: var(--muted); font-size: 0.92rem; }
.site-header nav a:hover { color: var(--gold-soft); text-decoration: none; }

.container {
  max-width: 760px; margin: 0 auto; padding: 72px 24px 100px;
}

h1 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 500; letter-spacing: -0.01em;
  font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 10px;
}
.date { color: var(--muted); font-size: 0.92rem; margin-bottom: 36px; }

h2 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 500;
  font-size: 1.4rem; margin: 40px 0 12px; color: var(--gold-soft);
}

p { margin-bottom: 16px; color: #e4e0ec; }

ul.features { margin: 0 0 16px 22px; }
ul.features li { margin-bottom: 10px; color: #e4e0ec; }

.email a { font-weight: 500; }

.legal-footer {
  border-top: 1px solid var(--line); padding: 34px 24px; text-align: center;
  color: var(--muted); font-size: 0.86rem;
}
.legal-footer a { color: var(--muted); }
.legal-footer a:hover { color: var(--gold-soft); }
