:root {
  --bg: #0F0F14;
  --bg-alt: #16161d;
  --text: #F0F0F5;
  --muted: #a9a9b8;
  --accent: #C9A84C;
  --border: #26262f;
  --maxw: 820px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(15, 15, 20, 0.9);
  backdrop-filter: saturate(140%) blur(8px);
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand { font-weight: 700; letter-spacing: 0.2px; }
.nav a { color: var(--muted); margin-left: 22px; font-size: 0.95rem; }
.nav a:hover { color: var(--text); text-decoration: none; }

/* Hero */
.hero { padding: 84px 0 64px; }
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  letter-spacing: -0.5px;
}
.lede { margin: 0; font-size: 1.25rem; color: var(--muted); }

/* Sections */
.section { padding: 56px 0; border-top: 1px solid var(--border); }
.section-alt { background: var(--bg-alt); }
.section h2 {
  margin: 0 0 18px;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}
.section h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section p { color: #d7d7e0; max-width: 68ch; }

.product h3 { margin: 0 0 8px; font-size: 1.2rem; color: var(--text); }

/* Contact list */
.contact-list { list-style: none; padding: 0; margin: 18px 0 0; }
.contact-list li { padding: 6px 0; color: #d7d7e0; }
.contact-list .label {
  display: inline-block;
  width: 96px;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-alt);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-org { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.footer-org strong { color: var(--text); }
.footer-links a { display: inline-block; margin-right: 20px; color: var(--text); }
.footer-copy { width: 100%; color: #6b6b78; font-size: 0.85rem; padding-top: 8px; }

/* Legal pages */
.legal { padding: 56px 0 72px; }
.legal h1 { font-size: 2rem; margin: 0 0 6px; }
.legal .updated { color: var(--muted); margin: 0 0 32px; font-size: 0.9rem; }
.legal h2 { font-size: 1.25rem; margin: 34px 0 10px; }
.legal p, .legal li { color: #d7d7e0; max-width: 72ch; }
.legal ul { padding-left: 20px; }
.legal a.back { display: inline-block; margin-top: 40px; }
