:root {
  --black: #0b0b0b;
  --paper: #efeee9;
  --muted: #85847c;
  --acid: #c8f224;
  --line: rgba(239, 238, 233, 0.18);
  --display: "Archivo Black", Impact, Haettenschweiler, sans-serif;
  --mono: "Special Elite", "Courier New", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  color: var(--paper);
  background: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22240%22 height=%22240%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.9%22 numOctaves=%222%22/%3E%3CfeColorMatrix values=%220 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0%22/%3E%3C/filter%3E%3Crect width=%22240%22 height=%22240%22 filter=%22url(%23n)%22/%3E%3C/svg%3E");
  font-family: var(--mono);
  overflow-x: hidden;
}

a { color: inherit; }
a:hover { color: var(--acid); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-shell {
  display: flex;
  flex-direction: column;
  width: min(1440px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 48px) clamp(20px, 5vw, 76px) 28px;
}

.topbar, .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
}

.topbar { padding-bottom: 22px; border-bottom: 1px solid var(--line); }

.wordmark {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -.04em;
  text-decoration: none;
}

.wordmark-dot, .footer-x { color: var(--acid); }

.status { color: var(--muted); }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 13px var(--acid); animation: pulse 2.4s ease-in-out infinite; }
.year { color: var(--muted); }

.hero {
  flex: 1;
  padding: clamp(48px, 8vw, 100px) 0 clamp(60px, 8vw, 110px);
}

h1, h2, p { margin-top: 0; }
.eyebrow { margin: 0 0 28px; color: var(--acid); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { margin-right: 8px; color: var(--paper); }

/* Banner sits inboard by the width of its offset frame so nothing overflows the shell. */
.banner {
  position: relative;
  isolation: isolate;
  width: calc(100% - 18px);
  margin: 0 0 58px;
}
.banner::before { position: absolute; z-index: -1; inset: 18px -18px -18px 18px; content: ""; border: 1px solid rgba(200, 242, 36, .45); transform: rotate(2.2deg); }
.banner picture { display: block; }
.banner img { display: block; width: 100%; height: auto; box-shadow: 18px 18px 0 rgba(200, 242, 36, .92); }

.lede { max-width: 390px; margin-bottom: 32px; color: #b8b7b0; font-size: 16px; line-height: 1.65; letter-spacing: .02em; }

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 205px;
  padding: 15px 16px 14px 19px;
  border: 1px solid var(--acid);
  color: var(--acid);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.primary-link:hover, .primary-link:focus-visible { color: var(--black); background: var(--acid); transform: translate(3px, -3px); }
.arrow { margin-left: 30px; font-size: 20px; line-height: .5; }
.copy-note { margin-top: 48px; color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.scribble { display: inline-block; margin-right: 8px; color: var(--acid); font-size: 18px; transform: rotate(12deg); }

.follow {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: 40px;
  padding: 44px 0 70px;
  border-top: 1px solid var(--line);
}
h2 { margin-bottom: 0; font-family: var(--display); font-size: clamp(40px, 5vw, 72px); line-height: .88; letter-spacing: -.06em; text-transform: uppercase; }
h2 span { color: var(--acid); }

/* Five cards, always one clean row — never an orphan on a second row. */
.socials { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.socials a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  min-height: 116px;
  padding: 17px 14px;
  border: 1px solid var(--line);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.socials a:nth-child(2) { transform: rotate(1deg); }
.socials a:nth-child(3) { transform: rotate(-1deg); }
.socials a:nth-child(4) { transform: rotate(1.5deg); }
.socials a:nth-child(5) { transform: rotate(-1.5deg); }
.socials a:hover, .socials a:focus-visible { border-color: var(--acid); color: var(--acid); transform: translateY(-5px) rotate(0deg); }
.social-icon { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid currentColor; border-radius: 50%; }
.social-icon svg { display: block; }

.footer { justify-content: flex-start; gap: 14px; color: var(--muted); }
.footer-x { font-size: 18px; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* Below this the two-up follow section squeezes the social row too tight, so stack it. */
@media (max-width: 1200px) {
  .follow { grid-template-columns: minmax(0, 1fr); align-items: start; gap: 34px; }
}

@media (max-width: 720px) {
  .site-shell { padding: 18px 18px 24px; }
  .topbar { padding-bottom: 18px; }
  .status { display: none; }
  .year { font-size: 9px; }
  .hero { padding: 44px 0 70px; }
  .eyebrow { margin-bottom: 18px; font-size: 10px; }
  .banner { width: min(100%, 460px); margin: 0 auto 46px; }
  .banner::before { inset: 12px -12px -12px 12px; }
  .banner img { box-shadow: 11px 11px 0 rgba(200, 242, 36, .92); }
  .lede { max-width: 330px; font-size: 14px; }
  .copy-note { margin-top: 34px; font-size: 9px; }
  .follow { display: block; padding: 38px 0 66px; }
  h2 { margin-bottom: 30px; font-size: clamp(42px, 13vw, 68px); }
  .socials { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .socials a { min-height: 108px; padding: 14px 12px; font-size: 9px; }
  .socials a:last-child { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: flex-start; gap: 14px; min-height: 74px; }
  .footer { flex-wrap: wrap; gap: 8px 14px; font-size: 9px; letter-spacing: .1em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
