:root {
  --bg-deep: #0a0c10;
  --bg-mid: #12151c;
  --bg-elevated: #1a1d26;
  --text-primary: #f4f0e8;
  --text-secondary: #a8a29e;
  --text-muted: #6b7280;
  --accent: #d4a574;
  --accent-light: #e8c882;
  --border: rgba(255, 255, 255, 0.08);
  --surface: rgba(255, 255, 255, 0.04);
  --max-width: 720px;
  --page-width: 960px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 50%, #1a1520 100%);
}

a {
  color: var(--accent-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  font-size: 0.9rem;
}

.site-nav a {
  color: var(--text-secondary);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent-light);
}

main {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.hero {
  text-align: center;
  padding: 2rem 0 3rem;
}

.hero-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(212, 165, 116, 0.2);
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.hero .tagline {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
}

.card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--accent-light);
}

.card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section h2 {
  font-size: 1.25rem;
  margin: 2.5rem 0 1rem;
  color: var(--text-primary);
}

.section p,
.section li {
  color: var(--text-secondary);
}

.legal-doc {
  max-width: var(--max-width);
  margin: 0 auto;
}

.legal-doc h1 {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.legal-doc .updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-doc h2 {
  font-size: 1.125rem;
  margin: 2rem 0 0.75rem;
  color: var(--text-primary);
}

.legal-doc h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--text-primary);
}

.legal-doc p,
.legal-doc li {
  color: var(--text-secondary);
}

.legal-doc ul {
  padding-left: 1.25rem;
}

.legal-doc li {
  margin-bottom: 0.35rem;
}

.contact-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: linear-gradient(135deg, #b8956a, #d4a574);
  color: #0a0c10;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-link:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.site-footer a {
  color: var(--text-secondary);
}
