@import url("./theme.css");

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a{ color: var(--brand); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{ max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.header{
  position: sticky; top: 0;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height: 64px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight: 700;
  letter-spacing: .2px;
}
.brand-mark{
  width: 14px; height: 14px; border-radius: 999px;
  background: var(--brand);
}
.nav{ display:flex; gap:16px; font-size: 14px; }
.nav a{ color: var(--ink); opacity: .8; }
.nav a:hover{ opacity: 1; }

.hero{ padding: 44px 0 18px; }
.kicker{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
h1{ margin: 10px 0 10px; font-size: 36px; line-height: 1.2; }
.lead{ margin: 0; color: var(--muted); max-width: 68ch; }

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px 0 40px;
}
@media (min-width: 900px){
  .grid{ grid-template-columns: 1.2fr .8fr; gap: 18px; }
}

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card h2{ margin: 0 0 8px; font-size: 18px; }
.card p{ margin: 0; color: var(--muted); }

.list{ margin: 12px 0 0; padding: 0; list-style:none; }
.list li{
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.list li:first-child{ border-top: 0; }

.badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
}
.dot{ width:8px; height:8px; border-radius:999px; background: var(--brand); }

.footer{
  border-top: 1px solid var(--border);
  padding: 22px 0;
  color: var(--muted);
  font-size: 13px;
}
.small{ font-size: 12px; color: var(--muted); }
.note{
  font-family: var(--mono);
  font-size: 12px;
  background:#fff;
  border:1px dashed var(--border);
  border-radius: 12px;
  padding: 12px;
  color: var(--muted);
}
