:root {
  --bg: #fbfaf3;
  --ink: #101010;
  --muted: #68645d;
  --line: #171717;
  --green: #17ef19;
  --green-dark: #0a9e12;
  --blue: #4e79b4;
  --pink: #f494bc;
  --card: #fffdf6;
  --shadow: 8px 8px 0 #111;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(23, 239, 25, .14), transparent 22rem),
    radial-gradient(circle at 92% 82%, rgba(244, 148, 188, .16), transparent 24rem),
    var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);
  background-size: 36px 36px;
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 38px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(280px, 56vw);
  transform: rotate(-1deg);
}
.brand img { width: 100%; height: auto; display: block; mix-blend-mode: multiply; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.ticker, .mini-link {
  border: 3px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 4px 4px 0 #111;
}
.mini-link { background: var(--green); }

.hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  min-height: 640px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 14px;
  border: 3px solid var(--line);
  border-radius: 12px;
  background: var(--green);
  font-weight: 900;
  box-shadow: 5px 5px 0 #111;
  transform: rotate(-2deg);
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 9.8rem);
  line-height: .78;
  letter-spacing: -0.08em;
  font-weight: 950;
  text-transform: uppercase;
  max-width: 780px;
}

.lines {
  margin: 30px 0 24px;
  display: grid;
  gap: 10px;
  font-size: clamp(1.45rem, 3vw, 3rem);
  font-weight: 900;
  line-height: .98;
}
.lines p { margin: 0; }
.lines p:nth-child(2) { margin-left: 24px; color: var(--green-dark); }
.lines p:nth-child(3) { margin-left: 48px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  appearance: none;
  border: 4px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--ink);
  font: inherit;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translate(3px, 3px); box-shadow: 5px 5px 0 #111; }
.primary { background: var(--green); }
.secondary { background: #fff; }

.hero-card {
  position: relative;
  background: #fff;
  border: 5px solid var(--line);
  border-radius: 8px;
  box-shadow: 14px 14px 0 #111;
  transform: rotate(1.3deg);
  overflow: hidden;
}
.hero-card img { display: block; width: 100%; height: auto; }

.panel-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
  margin-top: 30px;
}
.panel {
  background: var(--card);
  border: 4px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 8px 8px 0 #111;
}
.panel h2 { margin: 0 0 18px; font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; }
.massive { margin: 0; font-size: clamp(3rem, 7vw, 6.5rem); line-height: .8; font-weight: 950; color: var(--green-dark); letter-spacing: -.08em; }
.quiet { color: var(--muted); font-weight: 800; }
.link-list { display: grid; gap: 10px; }
.link-list span, li {
  border-bottom: 2px solid rgba(0,0,0,.12);
  padding-bottom: 8px;
  font-weight: 850;
}
ul { margin: 0; padding-left: 20px; display: grid; gap: 10px; }
.quote {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.2;
  font-weight: 950;
}

.footer {
  margin-top: 34px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-card { order: -1; box-shadow: 8px 8px 0 #111; }
  .panel-grid { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; }
  .nav-actions { flex-direction: column; align-items: flex-end; }
  h1 { font-size: clamp(4rem, 20vw, 7rem); }
  .lines p:nth-child(2), .lines p:nth-child(3) { margin-left: 0; }
}

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