:root {
  color-scheme: light;
  --white: #ffffff;
  --paper: #fbfbf6;
  --ink: #111413;
  --muted: #65706a;
  --line: rgba(17, 20, 19, 0.14);
  --green: #1d7b47;
  --lime: #b8f64b;
  --orange: #ff7a12;
  --silver: #e9ece7;
  --shadow: 0 24px 70px rgba(17, 20, 19, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 20, 19, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(17, 20, 19, 0.025) 1px, transparent 1px) 0 0 / 42px 42px,
    radial-gradient(circle at 86% 14%, rgba(255, 122, 18, 0.18), transparent 18rem),
    radial-gradient(circle at 12% 78%, rgba(184, 246, 75, 0.24), transparent 24rem),
    linear-gradient(140deg, #ffffff 0%, #f8faf5 46%, #eef3ec 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(17, 20, 19, 0.05) 0 1px, transparent 1.4px) 24px 24px / 96px 96px,
    linear-gradient(135deg, transparent 0 54%, rgba(255, 255, 255, 0.8) 54% 56%, transparent 56%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.paper-sheen {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 23%, rgba(255, 255, 255, 0.9) 26%, transparent 31%),
    linear-gradient(70deg, transparent 0 64%, rgba(232, 236, 231, 0.8) 68%, transparent 74%);
  animation: paperDrift 18s ease-in-out infinite alternate;
}

.cursor-ink {
  --x: 70vw;
  --y: 24vh;
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at var(--x) var(--y), rgba(255, 122, 18, 0.17), transparent 18rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 8px 8px 0 rgba(17, 20, 19, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.strip-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  min-width: 0;
  font-weight: 950;
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 9px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--orange);
  font-size: 0.83rem;
}

.nav-links {
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.button,
.strip-links a {
  border: 2px solid var(--ink);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 4px 4px 0 rgba(17, 20, 19, 0.13);
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-links a {
  min-height: 38px;
  padding: 0.52rem 0.8rem;
  font-size: 0.9rem;
}

.nav-links a:hover,
.button:hover,
.strip-links a:hover {
  background: #fff4de;
  box-shadow: 2px 2px 0 rgba(17, 20, 19, 0.18);
  transform: translate(2px, 2px);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.94fr);
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100vh - 88px);
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0 3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 1.2rem;
  font-family: "Arial Black", Inter, system-ui, sans-serif;
  font-size: clamp(3.35rem, 9vw, 7.7rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 8px 8px 0 rgba(255, 122, 18, 0.18);
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.8vw, 1.23rem);
  line-height: 1.72;
}

.hero-actions,
.strip-links {
  flex-wrap: wrap;
  gap: 0.78rem;
}

.button,
.strip-links a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.12rem;
  cursor: pointer;
}

.button.primary {
  background: var(--lime);
}

.button.ghost {
  color: var(--green);
}

.sticker-frame {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background:
    radial-gradient(circle at 56% 34%, rgba(255, 255, 255, 0.95), transparent 11rem),
    linear-gradient(145deg, #ffffff, #f0f3ef);
  box-shadow: 14px 14px 0 rgba(17, 20, 19, 0.08), var(--shadow);
  transform-style: preserve-3d;
  transition: transform 170ms ease;
}

.sticker-frame::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 2px dashed rgba(17, 20, 19, 0.18);
  border-radius: 12px;
  pointer-events: none;
}

.sticker-frame img {
  position: relative;
  z-index: 2;
  width: min(90%, 470px);
  max-height: 510px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 22px 22px rgba(17, 20, 19, 0.16));
  animation: grinFloat 5.8s ease-in-out infinite;
}

.corner-label {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 3;
  padding: 0.5rem 0.7rem;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 950;
}

.seal {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 0.78rem 0.95rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--lime);
  font-weight: 950;
}

.banner-panel {
  overflow: hidden;
  margin: 0 0 3.4rem;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 10px 10px 0 rgba(17, 20, 19, 0.08), var(--shadow);
}

.banner-panel img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.manifesto {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.manifesto article,
.closing-strip {
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 8px 8px 0 rgba(17, 20, 19, 0.08);
  backdrop-filter: blur(14px);
}

.manifesto article {
  min-height: 238px;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border-radius: 16px;
}

.manifesto article.wide {
  background:
    linear-gradient(135deg, rgba(184, 246, 75, 0.24), transparent 58%),
    rgba(255, 255, 255, 0.8);
}

.manifesto span {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--orange);
  font-weight: 950;
}

.manifesto h2,
.closing-strip h2 {
  margin-bottom: 0.82rem;
  font-size: clamp(1.4rem, 2.8vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.manifesto p,
.closing-strip p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.64;
}

.closing-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: clamp(3rem, 8vw, 5.5rem);
  padding: clamp(1.4rem, 4vw, 2.25rem);
  border-radius: 16px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-weight: 850;
}

@keyframes grinFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes paperDrift {
  to {
    transform: translate3d(-28px, 18px, 0);
    opacity: 0.8;
  }
}

@media (max-width: 900px) {
  .hero,
  .closing-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .sticker-frame {
    min-height: 500px;
  }

  .manifesto {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .hero-actions,
  .strip-links,
  .site-footer {
    flex-direction: column;
  }

  .button,
  .strip-links a {
    width: 100%;
  }

  .sticker-frame {
    min-height: 390px;
  }
}

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