@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --ink: #171717;
  --paper: #e7edf0;
  --line: #c9c8c2;
  --muted: #777570;
  --accent: #e3332f;
  --calm: #71877a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: 'Space Grotesk', Arial, sans-serif; }
a, button { color: inherit; text-decoration: none; }
button { padding: 0; border: 0; background: none; font: inherit; cursor: pointer; }
.site-shell { max-width: 1440px; min-height: 100svh; margin: 0 auto; padding: 0 4.2vw; display: grid; grid-template-rows: auto 1fr auto; }
.topbar { min-height: 74px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-bottom: 1px solid var(--ink); font-size: 12px; }
.wordmark { font-size: 23px; font-weight: 700; letter-spacing: -.08em; }
.accent, h1 span { color: var(--accent); }
.topbar-label { margin: 0; color: var(--calm); text-align: center; font: 11px 'DM Mono', monospace; }
nav { display: flex; justify-content: flex-end; gap: 28px; }
nav a, nav button, .footer a, .footer button { transition: color .2s ease; }
nav a:hover, nav button:hover, .footer a:hover, .footer button:hover { color: var(--calm); }
.arrow { color: var(--calm); font-size: 16px; line-height: 0; }
.landing { display: grid; grid-template-columns: 7% 63% 30%; min-height: 0; background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(120, 128, 121, .28) 100%); background-size: 6.25vw 100%; }
.section-number { padding-top: 30px; font: 11px 'DM Mono', monospace; line-height: 1.35; }
.section-number span { color: var(--calm); font-size: 9px; }
.hero { grid-column: 2 / 4; align-self: center; display: grid; grid-template-columns: minmax(0, 1fr) 190px; gap: 8vw; padding: 5vh 0 10vh; }
.hero-content { max-width: 600px; }
.eyebrow { display: flex; align-items: center; gap: 8px; margin: 0 0 30px; color: var(--calm); font: 11px 'DM Mono', monospace; text-transform: uppercase; }
.eyebrow i, .status-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
h1 { margin: 0; font-size: clamp(68px, 11vw, 160px); line-height: .8; letter-spacing: -.1em; font-weight: 500; }
.hero-intro { max-width: 520px; margin: 48px 0 0 5px; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.4; letter-spacing: -.035em; }
.hero-aside { align-self: end; padding-left: 20px; border-left: 1px solid var(--line); color: var(--calm); font: 10px 'DM Mono', monospace; letter-spacing: .08em; text-transform: uppercase; }
.hero-aside span { color: var(--muted); }
.hero-aside p { margin: 18px 0 0; color: var(--ink); font-size: 12px; line-height: 1.7; }
.footer { min-height: 67px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-top: 1px solid var(--ink); font: 11px 'DM Mono', monospace; text-transform: uppercase; }
.footer-status { color: var(--muted); }
.status-dot { margin-left: 7px; background: var(--calm); }
.footer-links { display: flex; justify-content: center; gap: 26px; }
.footer > span:last-child { color: var(--muted); text-align: right; }
@media (max-width: 700px) {
  .site-shell { padding: 0 20px; }
  .topbar { min-height: 60px; grid-template-columns: 1fr auto; }
  .topbar-label { display: none; }
  nav { gap: 15px; font-size: 11px; }
  .landing { grid-template-columns: 14% 1fr; background-size: 16.666vw 100%; }
  .section-number { padding-top: 23px; font-size: 9px; }
  .hero { grid-column: 2; display: block; padding: 18vh 0 15vh; }
  .eyebrow { font-size: 9px; }
  h1 { font-size: clamp(60px, 17vw, 110px); }
  .hero-intro { max-width: 300px; margin-top: 40px; font-size: 16px; }
  .hero-aside { margin-top: 45px; padding: 14px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .hero-aside p { display: flex; flex-wrap: wrap; gap: 0 18px; margin-top: 12px; font-size: 10px; line-height: 1.5; }
  .footer { min-height: 88px; grid-template-columns: 1fr 1fr; gap: 15px; padding: 16px 0; font-size: 9px; }
  .footer-links { justify-content: flex-end; gap: 14px; }
  .footer > span:last-child { grid-column: 1 / 3; text-align: left; }
}
