:root {
  --bg: #09090b;
  --bg-card: #18181b;
  --bg-card-hover: #1c1c21;
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.06);
  --accent-firm: #818cf8;   /* indigo — Firm Insight */
  --accent-deed: #2dd4bf;   /* teal — Deed Insight */
  --accent-net:  #94a3b8;   /* slate — this site */
  --radius: 14px;
  --radius-sm: 8px;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-net); text-decoration: none; }
a:hover { color: var(--text); }

.container { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; }

.header {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand .dot { color: var(--accent-net); }
.nav a {
  margin-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.nav a:hover { color: var(--text); }

.hero {
  padding: 5rem 0 3rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.sites {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem auto;
  max-width: 800px;
}
.site-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s ease;
}
.site-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  color: var(--text);
}
.site-card .accent {
  display: inline-block;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.site-card .accent-firm { background: var(--accent-firm); }
.site-card .accent-deed { background: var(--accent-deed); }
.site-card h2 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.site-card p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 0.92rem;
}
.site-card .domain {
  font-family: ui-monospace, "Cascadia Mono", Menlo, Consolas, monospace;
  font-size: 0.8rem;
  color: var(--accent-net);
}
.site-card[data-site="firm"]:hover .domain { color: var(--accent-firm); }
.site-card[data-site="deed"]:hover .domain { color: var(--accent-deed); }

.section {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.section h2 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2.5rem;
  margin-top: 3rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}
