:root {
  --bg: #0a0a0c;
  --surface: #14141a;
  --surface-2: #1c1c24;
  --border: #2a2a35;
  --gold: #e5c063;
  --gold-bright: #f4d77a;
  --gold-deep: #b8902f;
  --text: #ececec;
  --text-muted: #9a9aa5;
  --link: #f4d77a;
  --max-width: 880px;
  --radius: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: radial-gradient(ellipse at top, #1a1410 0%, var(--bg) 60%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav a {
  margin-left: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--gold); text-decoration: none; }

/* Hero */
.hero {
  text-align: center;
  padding: 72px 0 48px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .tagline {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 32px;
}
.cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1a1a1a;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(229, 192, 99, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(229, 192, 99, 0.35);
  text-decoration: none;
}

/* Screenshots */
.screenshots {
  padding: 32px 0 64px;
}
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.screenshot-grid img {
  width: 100%;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  display: block;
}

/* Article / legal pages */
.page {
  padding: 56px 0 80px;
}
.page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--gold);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.page .meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}
.page h2 {
  color: var(--gold-bright);
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.page p, .page li {
  color: #d9d9e0;
}
.page ul {
  padding-left: 22px;
}
.page ul li {
  margin-bottom: 6px;
}
.page strong { color: var(--gold-bright); }
.page hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}
.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  margin-top: auto;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer a { margin-left: 16px; }
.site-footer a:first-of-type { margin-left: 0; }

/* Responsive */
@media (max-width: 640px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  .nav a { margin-left: 14px; font-size: 0.8rem; }
  .hero { padding: 48px 0 32px; }
  .site-footer .container { flex-direction: column; align-items: flex-start; }
  .site-footer a { margin-left: 0; margin-right: 16px; }
}
