:root {
  --bg: #080808;
  --panel: #111111;
  --text: #f2f0eb;
  --muted: #9d9a93;
  --line: #2c2b28;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
}
.brand, .wordmark { letter-spacing: .45em; font-size: 14px; text-decoration: none; }
.divider { width: 42px; height: 1px; background: var(--line); margin: 28px 0; }
.eyebrow { color: var(--muted); letter-spacing: .28em; font-size: 11px; text-transform: uppercase; }
h1 { font-weight: 400; font-size: clamp(42px, 7vw, 92px); line-height: 1.05; margin: 22px 0; letter-spacing: -.03em; }
.intro, .lead { max-width: 720px; color: var(--muted); font-size: 18px; }
.button { display: inline-block; margin-top: 28px; padding: 13px 20px; border: 1px solid var(--line); text-decoration: none; letter-spacing: .08em; font-size: 13px; }
.button:hover { background: var(--text); color: var(--bg); }
.site-header { padding: 28px 5vw; border-bottom: 1px solid var(--line); }
.page { width: min(1120px, 90vw); margin: 0 auto; padding: 100px 0; }
.page > section { margin-top: 100px; }
h2 { font-size: 15px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 28px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { min-height: 260px; background: var(--panel); border: 1px solid var(--line); padding: 28px; }
.card-index, .card span { color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.card h3 { font-size: 30px; font-weight: 400; margin: 52px 0 8px; }
.card p { color: var(--muted); }
.statement { max-width: 760px; }
.statement p { color: var(--muted); font-size: 18px; }
footer { width: min(1120px, 90vw); margin: 0 auto; padding: 30px 0 50px; color: var(--muted); border-top: 1px solid var(--line); font-size: 12px; }
.card-link { display: block; color: inherit; text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
.card-link:hover { border-color: var(--muted); transform: translateY(-2px); }
@media (max-width: 760px) {
  .hero { min-height: 100svh; justify-content: center; padding: 44px 24px 36px; }
  .brand, .wordmark { font-size: 13px; letter-spacing: .38em; }
  .divider { margin: 22px 0; }
  .eyebrow { font-size: 10px; letter-spacing: .24em; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); line-height: 1.08; margin: 18px 0; }
  .intro, .lead { font-size: 16px; line-height: 1.65; }
  .button { margin-top: 24px; padding: 12px 18px; }
  .site-header { padding: 24px 5vw; }
  .page { width: min(100% - 40px, 1120px); padding: 64px 0; }
  .page > h1 { font-size: clamp(46px, 12vw, 62px); line-height: 1.08; margin: 18px 0 24px; }
  .page > section { margin-top: 64px; }
  .cards { grid-template-columns: 1fr; gap: 14px; }
  .card { min-height: 0; padding: 24px; }
  .card h3 { font-size: 28px; margin: 34px 0 8px; }
  .card p { margin-bottom: 18px; }
  .statement p { font-size: 16px; line-height: 1.7; }
  footer { width: min(100% - 40px, 1120px); padding: 28px 0 42px; }
}
