:root {
  --bg: #05070a;
  --fg: #eaf0ff;
  --muted: rgba(234, 240, 255, 0.72);
  --muted2: rgba(234, 240, 255, 0.58);
  --glass: rgba(10, 14, 22, 0.55);
  --border: rgba(234, 240, 255, 0.14);
  --shadow: rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
}

a { color: inherit; }
a:hover { opacity: 0.92; }

#life {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1200px 800px at 20% 20%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(255,255,255,0.08), transparent 55%),
    linear-gradient(to bottom, rgba(5,7,10,0.40), rgba(5,7,10,0.90));
}

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  backdrop-filter: blur(10px);
  background: rgba(5,7,10,0.18);
  border-bottom: 1px solid rgba(234,240,255,0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.2px;
  font-weight: 650;
  text-decoration: none;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(234,240,255,0.85);
  box-shadow: 0 0 22px rgba(234,240,255,0.35);
}

.nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.nav a:hover {
  color: var(--fg);
  border-color: rgba(234,240,255,0.10);
  background: rgba(255,255,255,0.05);
}
.nav a[aria-current="page"] {
  color: var(--fg);
  border-color: rgba(234,240,255,0.20);
  background: rgba(234,240,255,0.08);
}

.container {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 108px 18px 56px;
}

.hero {
  margin-top: 6px;
}

h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin: 0 0 12px;
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.lede {
  margin: 0 0 22px;
  font-size: clamp(16px, 2.1vw, 20px);
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.45;
}

.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--fg);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 28px var(--shadow);
}
.btn:hover { background: rgba(255,255,255,0.10); }
.btn.primary {
  background: rgba(234,240,255,0.12);
  border-color: rgba(234,240,255,0.20);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 26px;
}

.chip {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(234,240,255,0.82);
  border: 1px solid rgba(234,240,255,0.12);
  background: rgba(10,14,22,0.35);
}

.grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(12, 1fr);
  margin-top: 14px;
}

.card {
  grid-column: span 12;
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(234,240,255,0.10);
  background: var(--glass);
  box-shadow: 0 18px 42px var(--shadow);
}
.card h2, .card h3 {
  margin: 0 0 10px;
  letter-spacing: -0.2px;
}
.card h2 { font-size: 18px; }
.card h3 { font-size: 16px; }
.card p {
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.55;
}
.card .hint {
  color: var(--muted2);
  font-size: 13px;
  margin-top: 10px;
}
.card .link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  color: rgba(234,240,255,0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(234,240,255,0.22);
  padding-bottom: 2px;
}
.card .link:hover { border-bottom-color: rgba(234,240,255,0.45); }

@media (min-width: 860px) {
  .card.span6 { grid-column: span 6; }
  .card.span4 { grid-column: span 4; }
}

ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

hr.divider {
  border: 0;
  border-top: 1px solid rgba(234,240,255,0.10);
  margin: 22px 0;
}

.footer {
  margin-top: 28px;
  color: rgba(234,240,255,0.60);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}
.footer a {
  color: rgba(234,240,255,0.72);
  text-decoration: none;
  border-bottom: 1px solid rgba(234,240,255,0.18);
  padding-bottom: 2px;
}
.footer a:hover { color: rgba(234,240,255,0.88); border-bottom-color: rgba(234,240,255,0.35); }
.smallprint {
  color: rgba(234,240,255,0.56);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 12px;
}

