@font-face { font-family: 'Stack Sans Headline'; src: url('/fonts/stack-sans-headline.woff2') format('woff2'); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Stack Sans Text'; src: url('/fonts/stack-sans-text.woff2') format('woff2'); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Stack Sans Notch'; src: url('/fonts/stack-sans-notch.woff2') format('woff2'); font-weight: 100 900; font-style: normal; font-display: swap; }
* { box-sizing: border-box; }
:root {
  --bg: #121310;
  --ink: #eddcc0;
  --muted: #a9a284;
  --soft: #cbbf9e;
  --accent: #ffbb01;
  --cta-bg: #ffbb01;
  --cta-ink: #222615;
  --cta-shadow: #8a6d00;
  --cta-hover: #ffd75e;
  --line: rgba(237, 220, 192, 0.16);
  --art-line: #eddcc0;
  --art-blob: #eddcc0;
  --art-ring: #eddcc0;
  --art-beam: #eddcc0;
}
html { background: var(--bg); overflow-x: hidden; }
body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Stack Sans Text', system-ui, sans-serif;
  font-feature-settings: "salt" 1;
  line-height: 1.55;
  transition: background 0.25s ease, color 0.25s ease;
}
header { padding: 22px clamp(20px, 5vw, 64px) 0; }
.mark {
  margin: 0;
  /* flex, not inline-flex: as the sole child of a block it would otherwise sit
     on a text baseline and pick up descender space, making the header taller. */
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-family: 'Stack Sans Headline', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  color: var(--accent);
}
.mark-logo { flex: none; width: 22px; height: 22px; fill: var(--accent); }
.mark .t { font-family: 'Stack Sans Notch', sans-serif; }
main {
  flex: 1;
  display: grid;
  align-items: center;
  gap: 10px 40px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 64px) 48px;
}
.art { order: -1; max-width: 420px; margin: 0 auto; width: 78%; }
.art-svg { display: block; width: 100%; height: auto; }
.a-plate { stroke: var(--art-line); }
.a-blob { fill: var(--art-blob); }
.a-ring { stroke: var(--art-ring); }
.a-beam { fill: var(--art-beam); }
.txt { display: grid; justify-items: start; }
h1 {
  margin: 0;
  font-family: 'Stack Sans Headline', sans-serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 5.2vw, 3.9rem);
  line-height: 1.04;
  max-width: 16ch;
}
h1 span { color: var(--accent); }
h1 .h1-line-plain { color: inherit; }
.lead-in {
  margin: 26px 0 0;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  color: var(--ink);
}
.manifesto {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 300;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  color: var(--soft);
  max-width: 46ch;
}
.manifesto li {
  position: relative;
  padding-left: 22px;
}
.manifesto li + li { margin-top: 8px; }
.manifesto li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  background: var(--accent);
}
.copy {
  margin: 24px 0 0;
  font-weight: 300;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  color: var(--soft);
  max-width: 46ch;
}
.kicker {
  margin: 18px 0 0;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  color: var(--ink);
  max-width: 46ch;
}
.cta {
  display: inline-block;
  width: min(100%, 340px);
  text-align: center;
  margin-top: 34px;
  padding: 17px 28px;
  background: var(--cta-bg);
  color: var(--cta-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 5px 0 var(--cta-shadow);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.06s ease, box-shadow 0.06s ease;
}
.cta:hover { background: var(--cta-hover); }
.cta:active { transform: translateY(5px); box-shadow: 0 0 0 var(--cta-shadow); }
.cta:focus-visible { outline: 2px solid var(--cta-hover); outline-offset: 3px; }
footer {
  border-top: 1px solid var(--line);
  padding: 26px clamp(20px, 5vw, 64px) 30px;
  display: grid;
  gap: 16px;
}
.f-top {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
}
.f-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Stack Sans Headline', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.f-brand svg { flex: none; width: 15px; height: 15px; fill: var(--accent); }
.f-brand .t { font-family: 'Stack Sans Notch', sans-serif; }
.f-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 24px; }
.f-links a {
  display: inline-block;
  padding: 5px 0;
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.f-links a:hover { color: var(--ink); border-bottom-color: var(--accent); }
.f-copy { margin: 0; font-size: 12.5px; color: var(--muted); }
.f-links .f-copy a {
  padding: 0;
  font-size: inherit;
  color: inherit;
}
@media (min-width: 880px) {
  main { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); }
  .h1-line { display: block; white-space: nowrap; }
  .art {
    order: 0;
    width: 100%;
    max-width: 512px;
    margin: 0;
    transform: translateY(clamp(32px, 4vw, 56px));
  }
  .cta { width: auto; }
}
