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

:root {
  --ink: #092535;
  --paper: #fffdf4;
  --soft: #eff7e8;
  --lime: #bdff18;
  --cyan: #16c6d4;
  --coral: #ff5b4f;
  --yellow: #ffd329;
  --line: 2px solid var(--ink);
  --shadow: 7px 7px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 211, 41, 0.9) 0 8%, transparent 8.2%),
    linear-gradient(120deg, transparent 0 68%, rgba(22, 198, 212, 0.2) 68% 81%, transparent 81%),
    var(--paper);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: var(--line);
  background: rgba(255, 253, 244, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  transform: rotate(-4deg);
  border: var(--line);
  border-radius: 13px;
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  letter-spacing: -2px;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 16px;
}

.brand-copy span,
.eyebrow,
.meta,
.page-nav a {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-nav a {
  padding: 9px 12px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  text-decoration: none;
}

.page-nav a:hover,
.page-nav a[aria-current="page"] {
  border-color: var(--ink);
  background: var(--lime);
}

main {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 8vw, 100px);
  padding: 70px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #095cff;
  font-weight: 500;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(46px, 8vw, 92px);
  letter-spacing: -0.055em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 28px;
  font-size: clamp(18px, 2.4vw, 24px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: var(--line);
  border-radius: 14px;
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button.secondary {
  background: white;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.hero-art {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
}

.orbit {
  position: absolute;
  border: var(--line);
  border-radius: 50%;
}

.orbit.one {
  inset: 3%;
  background: var(--cyan);
}

.orbit.two {
  inset: 17%;
  transform: translate(12%, -8%);
  background: var(--coral);
}

.orbit.three {
  inset: 33%;
  transform: translate(-18%, 14%);
  background: var(--yellow);
}

.hero-stamp {
  z-index: 2;
  max-width: 190px;
  transform: rotate(-8deg);
  border: var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 18px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 0 0 80px;
}

.link-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
  border: var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.link-card::after {
  position: absolute;
  right: -35px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border: var(--line);
  border-radius: 42%;
  background: var(--cyan);
  content: "";
  transition: transform 250ms ease;
}

.link-card.support::after {
  background: var(--coral);
}

.link-card:hover::after {
  transform: rotate(25deg) scale(1.12);
}

.link-card h2 {
  max-width: 430px;
  margin: 10px 0 12px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.035em;
}

.link-card p {
  max-width: 470px;
  margin: 0;
  font-size: 17px;
}

.document-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  gap: 46px;
  padding: 60px 0 90px;
}

.document-menu {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 22px;
  border: var(--line);
  border-radius: 18px;
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
}

.document-menu strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Archivo Black", sans-serif;
  font-size: 17px;
}

.document-menu a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  font-weight: 600;
}

.document {
  padding: clamp(24px, 5vw, 58px);
  border: var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.document h1 {
  margin-bottom: 10px;
  font-size: clamp(38px, 7vw, 68px);
}

.document h2 {
  margin: 44px 0 12px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(23px, 3.5vw, 31px);
  letter-spacing: -0.025em;
  scroll-margin-top: 100px;
}

.document h2::before {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin: 0 10px 3px 0;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  background: var(--cyan);
  content: "";
}

.document p,
.document li {
  font-size: 17px;
}

.document .meta {
  margin: 0 0 34px;
  color: #5f707a;
}

.notice {
  margin: 26px 0;
  padding: 20px;
  border: var(--line);
  border-radius: 15px;
  background: #efffc5;
}

.faq {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.faq article {
  padding: 22px;
  border: var(--line);
  border-radius: 16px;
  background: var(--soft);
}

.faq h2 {
  margin-top: 0;
  font-size: 21px;
}

.faq h2::before {
  background: var(--yellow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: var(--line);
  background: var(--ink);
  color: white;
  font-size: 13px;
}

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .brand-copy span {
    display: none;
  }

  .page-nav {
    gap: 2px;
  }

  .page-nav a {
    padding: 8px;
    font-size: 9px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 50px;
  }

  .hero-art {
    width: min(370px, 92%);
    justify-self: center;
  }

  .card-grid,
  .document-shell {
    grid-template-columns: 1fr;
  }

  .document-menu {
    position: static;
    display: none;
  }

  .document-shell {
    padding-top: 34px;
  }

  .document {
    padding: 26px 20px 36px;
    border-radius: 20px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
