
:root {
  --paper: #f3f1ec;
  --ink: #151515;
  --muted: #6a6965;
  --line: #d4d0c8;
  --orange: #f06423;
  --blue: #bfd0dc;
  --shadow: rgba(20, 20, 20, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(21,21,21,0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(0deg, rgba(21,21,21,0.028) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: -0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("assets/neostate-fragment-blue.png");
  background-repeat: no-repeat;
  background-size: min(58vw, 640px) auto;
  background-position: right -8vw top 6vh;
  mix-blend-mode: multiply;
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 36px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.signal-mark {
  position: absolute;
  right: 4%;
  top: 16%;
  width: min(35vw, 420px);
  aspect-ratio: 1;
  background-image: url("assets/neostate-fragment-muted.png");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: grayscale(0.1) contrast(0.86);
  z-index: -1;
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: clamp(32px, 8vw, 104px);
  align-items: end;
}

.logo {
  width: 148px;
  height: 148px;
  object-fit: cover;
  display: block;
  margin-bottom: 40px;
  box-shadow: 0 20px 50px var(--shadow);
}

h2, p { margin: 0; }

.tagline {
  max-width: 760px;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.08;
  color: var(--ink);
}

.archive-note {
  border-left: 4px solid var(--orange);
  padding: 18px 0 22px 24px;
  max-width: 420px;
  background: rgba(243, 241, 236, 0.72);
  backdrop-filter: blur(4px);
}

.label, .meta, .site-footer, .fragments {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.archive-note p {
  margin-top: 16px;
  font-size: 19px;
  line-height: 1.45;
}

.release {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr);
  gap: clamp(28px, 8vw, 96px);
  align-items: center;
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

.release-copy {
  max-width: 600px;
}

.release h2 {
  margin-top: 18px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.07em;
}

.release .meta {
  margin-top: 18px;
}

.release-copy > p:not(.meta) {
  max-width: 420px;
  margin-top: 30px;
  font-size: 21px;
  line-height: 1.42;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover, .button:focus-visible {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.fragments {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 28px 0 0;
}

.fragments p {
  border: 1px solid var(--line);
  padding: 10px 12px;
  background: rgba(243, 241, 236, 0.7);
}

.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid transparent;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover { color: var(--ink); }

.legal-page {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.legal-page h1 {
  font-size: clamp(44px, 9vw, 96px);
  margin-bottom: 40px;
  line-height: 0.9;
  font-weight: 400;
}

.legal-page h2 {
  margin: 32px 0 12px;
  font-size: 24px;
  font-weight: 400;
}

.legal-page p, .legal-page li {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
}

.legal-page a { color: var(--ink); }

@media (max-width: 780px) {
  .page-shell { padding-top: 36px; }
  .hero { min-height: auto; padding: 34px 0 72px; }
  .hero-grid, .release { grid-template-columns: 1fr; }
  .archive-note { max-width: none; }
  .logo { width: 112px; height: 112px; margin-bottom: 28px; }
  .tagline { font-size: clamp(22px, 8vw, 34px); }
  .release { padding: 64px 0; }
}
