:root {
  --bg: #0b0d0f;
  --surface: #121518;
  --surface-2: #171b1f;
  --text: #f3f0e8;
  --muted: #a6a7a4;
  --line: rgba(243, 240, 232, .12);
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, .14);
  --max: 920px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 50% -10%, #1b1f22 0, var(--bg) 42%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.page-shell { width: min(100% - 32px, var(--max)); margin: 0 auto; min-height: 100vh; }
.site-header {
  display: flex; align-items: center; gap: 14px; padding: 28px 0 20px;
  border-bottom: 1px solid var(--line);
}
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--accent);
  color: var(--accent); border-radius: 12px; font-weight: 800; font-size: 20px;
  box-shadow: inset 0 0 0 5px rgba(201,162,39,.06);
}
.eyebrow { margin: 0 0 4px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: 22px; letter-spacing: -.03em; }
.hero { padding: 72px 0 64px; max-width: 760px; }
.hero-line { display: block; width: 46px; height: 2px; background: var(--accent); margin-bottom: 22px; }
.hero h2 { font-size: clamp(38px, 8vw, 72px); line-height: .98; letter-spacing: -.055em; margin-bottom: 22px; }
.hero h2 em { color: var(--accent); font-style: normal; }
.hero p { color: var(--muted); font-size: 16px; max-width: 600px; }

.section-heading { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.section-number { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .1em; padding-top: 3px; }
.section-heading h2 { font-size: 27px; letter-spacing: -.04em; margin: 0; }
.projects { padding-bottom: 64px; }
.project-card {
  position: relative; overflow: hidden; padding: 26px; border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  margin-bottom: 14px;
}
.project-card--active { border-color: rgba(201,162,39,.35); }
.project-card--future { opacity: .68; }
.project-topline { display:flex; justify-content:space-between; align-items:center; margin-bottom: 30px; }
.project-status { font-size: 10px; letter-spacing: .14em; color: var(--muted); font-weight: 800; }
.project-card--active .project-status { color: var(--accent); }
.status-dot { display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--accent); margin-right:7px; box-shadow:0 0 12px rgba(201,162,39,.6); }
.project-index { color: #5e6264; font-size: 12px; font-weight: 700; }
.project-icon { width: 54px; height:54px; border-radius:15px; display:grid; place-items:center; border:1px solid var(--accent); color:var(--accent); font-size:23px; font-weight:900; margin-bottom:18px; background:var(--accent-soft); }
.project-icon--muted { border-color:var(--line); color:#727679; background:transparent; }
.project-card h3 { font-size: 32px; letter-spacing:-.045em; margin-bottom:8px; }
.project-card p { color:var(--muted); max-width:620px; margin-bottom:24px; }
.project-button { display:flex; justify-content:space-between; align-items:center; gap:16px; padding:14px 16px; border-radius:12px; background:var(--text); color:#101214; font-weight:800; font-size:14px; transition:transform .18s ease, background .18s ease; }
.project-button:hover { transform:translateY(-1px); background:#fff; }
.project-button span:last-child { font-size:20px; }

.principles { padding: 8px 0 72px; }
.principle-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.principle-grid div { padding:20px 12px; border-right:1px solid var(--line); }
.principle-grid div:last-child { border-right:0; }
.principle-grid strong { display:block; color:var(--accent); font-size:10px; margin-bottom:8px; }
.principle-grid span { font-size:13px; color:var(--muted); }
.site-footer { display:flex; justify-content:space-between; padding:22px 0 30px; border-top:1px solid var(--line); color:#747779; font-size:10px; letter-spacing:.14em; font-weight:800; }
.accent { color:var(--accent); }

@media (max-width: 620px) {
  .page-shell { width:min(100% - 24px, var(--max)); }
  .site-header { padding-top:20px; }
  .hero { padding:58px 0 52px; }
  .hero h2 { font-size:clamp(38px, 12vw, 58px); }
  .project-card { padding:22px; }
  .principle-grid { grid-template-columns:repeat(2,1fr); }
  .principle-grid div:nth-child(2) { border-right:0; }
  .principle-grid div:nth-child(-n+2) { border-bottom:1px solid var(--line); }
}
