:root {
  --bg-main: #0a0d16;
  --bg-soft: #0f1424;
  --accent: #8b8cff;
  --text-main: #e6e7eb;
  --text-muted: #9aa0b3;
  --border: #1f2537;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

/* HEADER */
.header {
  padding: 28px 40px;
}

.nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-links a {
  margin-left: 28px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.contact-link {
  color: var(--text-main);
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 100px auto 140px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.05;
  margin-top: 16px;
}

.hero p {
  margin-top: 24px;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg-main));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.stat strong {
  display: block;
  font-size: 18px;
}

.stat span {
  color: var(--text-muted);
  font-size: 14px;
}

/* STORY */
.story {
  max-width: 900px;
  margin: 0 auto 140px;
  padding: 0 40px;
  font-size: 22px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* PRODUCTS */
.products {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  background: var(--bg-main);
}

.product-card.alt {
  background: var(--bg-soft);
}

.product-meta {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card h2 {
  font-size: 40px;
  margin: 16px 0;
}

.product-card p {
  color: var(--text-muted);
  max-width: 460px;
}

.product-card a {
  display: inline-block;
  margin-top: 28px;
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
}

/* FOOTER */
.footer {
  margin-top: 160px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 48px 40px;
}

.muted {
  color: var(--text-muted);
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
}


/* =========================
   LEGAL & STATIC PAGES
   ========================= */

.page {
  max-width: 720px;
  margin: 120px auto 140px;
  padding: 0 40px;
}

.page h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 32px;
}

.page h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.page p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.page a {
  color: var(--text-main);
  text-decoration: underline;
}

.footer .muted a {
  margin: 0 4px;
}

.footer .muted a:hover {
  text-decoration: underline;
}