@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #f5f6f7;
  --ink: #202126;
  --muted: #696c75;
  --accent: #394be8;
  --rule: #d9dce1;
  --sans: "Space Grotesk", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}
* { box-sizing: border-box; }
html { background: var(--paper); }
body { margin: 0; color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
::selection { color: var(--paper); background: var(--accent); }
.page { min-height: 100svh; max-width: 1800px; margin-inline: auto; padding: 46px 5.55vw 30px; display: flex; flex-direction: column; }
.header { display: flex; align-items: center; }
.wordmark { font: 400 20px/1.5 var(--mono); letter-spacing: -1.1px; white-space: nowrap; }
.wordmark-cursor { color: var(--accent); display: inline-block; transition: transform 240ms ease; }
.wordmark:hover .wordmark-cursor { transform: translateX(3px); }
main { flex: 1; padding-block: clamp(72px, 12vh, 145px) clamp(64px, 9vh, 108px); }
h1 { margin: 0; font-size: clamp(5rem, 12vw, 12.5rem); font-weight: 500; line-height: 0.94; letter-spacing: -0.072em; }
.last-line { white-space: nowrap; }
.signature { display: inline-block; width: 0.67em; height: 0.105em; margin-left: 0.14em; background: var(--accent); vertical-align: baseline; }
.manifesto { display: flex; justify-content: flex-end; margin-top: -0.2rem; padding-right: 3.3vw; }
.manifesto p { margin: 0; font-size: clamp(1.125rem, 1.7vw, 1.5rem); line-height: 1.7; letter-spacing: -0.035em; color: var(--muted); }
.manifesto p span { color: var(--ink); }
footer { border-top: 1px solid var(--rule); padding-top: 25px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-family: var(--mono); }
.contact { color: var(--ink); font-size: 14px; line-height: 1.6; text-decoration: none; text-underline-offset: 5px; display: inline-flex; align-items: center; gap: 20px; min-height: 44px; transition: color 180ms ease; }
.contact svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.4; transition: transform 180ms ease; }
.contact:hover { color: var(--accent); text-decoration: underline; }
.contact:hover svg { transform: translate(2px, -2px); }
.contact:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; border-radius: 1px; }
small { font-size: 12px; line-height: 1.6; color: var(--muted); }
@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  main { animation: enter 650ms ease-out both; }
  @keyframes enter { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
}
@media (max-width: 899px) {
  .page { padding: 32px 6vw 25px; }
  main { display: flex; flex-direction: column; justify-content: center; gap: 48px; padding-block: 80px; }
  h1 { font-size: clamp(4.5rem, 15vw, 8.3rem); }
  .manifesto { justify-content: flex-start; padding: 0; margin: 0; }
  .manifesto p { font-size: 20px; }
}
@media (max-width: 540px) {
  .page { padding: 27px 24px 23px; }
  .wordmark { font-size: 18px; }
  main { padding-block: 68px; gap: 43px; }
  h1 { font-size: clamp(4rem, 16vw, 5.6rem); }
  .manifesto p { font-size: 18px; line-height: 1.75; }
  footer { align-items: flex-start; flex-direction: column; gap: 15px; padding-top: 17px; }
  .contact { gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
