:root {
  --paper: #f4f2e9;
  --paper-2: #ece9dc;
  --ink: #11120f;
  --muted: #686a60;
  --green: #7cff0d;
  --green-dark: #4b9e07;
  --blue: #194fd0;
  --line: rgba(17, 18, 15, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 5%, rgba(255,255,255,.75), transparent 30%),
    linear-gradient(115deg, rgba(0,0,0,.025) 1px, transparent 1px) 0 0/24px 24px,
    var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .055;
  background-image:
    radial-gradient(#000 0.55px, transparent 0.7px),
    radial-gradient(#000 0.4px, transparent 0.55px);
  background-size: 11px 13px, 19px 17px;
  background-position: 0 0, 7px 5px;
  mix-blend-mode: multiply;
}

.wrap {
  width: min(1240px, calc(100% - 44px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(22px, calc((100vw - 1240px) / 2));
  background: rgba(244, 242, 233, .9);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--ink);
}

.ticker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  text-decoration: none;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: .95rem;
  letter-spacing: .04em;
  background: var(--green);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-1.5deg);
}

.nav { display: flex; align-items: center; gap: 18px; }
.nav-link {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
}
.buy-mini {
  padding: 10px 17px;
  color: #fff;
  background: var(--ink);
  border: 2px solid var(--ink);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--green);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
  padding-block: clamp(54px, 7vw, 94px);
}

.hero-copy { position: relative; z-index: 2; }
.stamp,
.kicker {
  display: inline-block;
  font-size: .73rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.stamp {
  padding: 9px 12px;
  border: 2px solid var(--ink);
  background: white;
  transform: rotate(-1deg);
  box-shadow: 3px 3px 0 rgba(17,18,15,.2);
}

h1 {
  margin: 20px 0 10px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(5.1rem, 11vw, 10.6rem);
  line-height: .77;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
h1 span { display: block; }
h1 .green {
  color: var(--green);
  -webkit-text-stroke: 3px var(--ink);
  text-shadow: 7px 7px 0 var(--blue);
  transform: translateX(5%);
}

.hero-line {
  margin: 30px 0 9px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  letter-spacing: -.04em;
}
.hero-text {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  background: white;
  box-shadow: 5px 5px 0 var(--ink);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .055em;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn-primary { background: var(--green); }
.is-placeholder { opacity: .48; cursor: default; }
.is-placeholder:hover { transform: none; }

.ca-box {
  margin-top: 25px;
  max-width: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 12px 12px 15px;
  border: 2px dashed var(--ink);
  background: rgba(255,255,255,.46);
}
.ca-box > div { min-width: 0; }
.ca-label {
  display: block;
  margin-bottom: 6px;
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .13em;
}
.ca-box code {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .77rem;
}
.ca-box button {
  min-height: 40px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: white;
  font-size: .7rem;
  font-weight: 900;
  cursor: pointer;
}

.hero-card {
  position: relative;
  padding: 18px 18px 48px;
  background: white;
  border: 2px solid var(--ink);
  box-shadow: 14px 16px 0 rgba(17,18,15,.15), 18px 20px 0 var(--blue);
  transform: rotate(1.2deg);
  transition: transform .12s ease-out;
}
.hero-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.03);
}
.caption {
  position: absolute;
  left: 22px;
  bottom: 12px;
  font-family: "Comic Sans MS", "Trebuchet MS", cursive;
  font-size: .85rem;
  font-weight: 900;
  transform: rotate(-1.5deg);
}
.tape {
  position: absolute;
  z-index: 4;
  width: 128px;
  height: 32px;
  background: rgba(124, 255, 13, .65);
  border: 1px solid rgba(17,18,15,.15);
}
.tape-one { left: 15%; top: -18px; transform: rotate(-7deg); }
.tape-two { right: 10%; bottom: 28px; transform: rotate(8deg); background: rgba(25,79,208,.52); }

.marquee {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: white;
}
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: .83rem;
  letter-spacing: .08em;
  animation: crawl 17s linear infinite;
}
.marquee-track i { color: var(--green); font-style: normal; }
@keyframes crawl { to { transform: translateX(-50%); } }

.paper-section {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1.05fr .7fr;
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  margin-block: 94px;
  padding: clamp(36px, 6vw, 76px);
  background:
    linear-gradient(174deg, transparent 0 48%, rgba(0,0,0,.025) 48.2% 49%, transparent 49.2%),
    #eeecdf;
  border: 2px solid var(--ink);
  box-shadow: 11px 13px 0 rgba(17,18,15,.13);
}
.section-number {
  align-self: start;
  font-family: Impact, sans-serif;
  font-size: 4rem;
  color: var(--green);
  -webkit-text-stroke: 2px var(--ink);
  transform: rotate(-7deg);
}
.kicker { color: var(--green-dark); }
.about-copy h2,
.links-section h2,
.buy-inner h2 {
  margin: 12px 0 24px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .9;
  letter-spacing: -.035em;
}
.about-copy p:not(.kicker) {
  max-width: 700px;
  color: #45473f;
  font-size: 1rem;
  line-height: 1.65;
}
.blue-mark {
  display: inline-block;
  color: white;
  background: var(--blue);
  padding: 0 .12em;
  transform: rotate(-2deg);
}
.mini-photo {
  position: relative;
  padding: 12px 12px 38px;
  background: white;
  border: 2px solid var(--ink);
  box-shadow: 9px 10px 0 var(--green);
  transform: rotate(-2deg);
}
.mini-photo img { aspect-ratio: 1; object-fit: cover; }
.mini-photo span {
  position: absolute;
  left: 14px;
  bottom: 10px;
  font-family: "Comic Sans MS", cursive;
  font-size: .75rem;
  font-weight: 900;
}

.links-section { padding-block: 26px 110px; }
.links-section h2 { margin-bottom: 32px; }
.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.link-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 2px solid var(--ink);
  background: white;
  text-decoration: none;
  box-shadow: 7px 8px 0 var(--ink);
  transition: transform .15s ease, background-color .15s ease;
}
.link-card:nth-child(2) { transform: rotate(.6deg); }
.link-card:nth-child(3) { transform: rotate(-.5deg); }
.link-card:hover:not(.is-placeholder) { transform: translateY(-4px) rotate(-.4deg); background: var(--green); }
.link-top { font-size: .63rem; font-weight: 900; letter-spacing: .16em; color: var(--muted); }
.link-card strong { font-family: "Arial Black", Impact, sans-serif; font-size: clamp(1.5rem, 3vw, 2.3rem); }
.link-card em { font-size: .75rem; font-style: normal; font-weight: 900; }

.buy-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(124,255,13,.08), transparent 35%),
    var(--ink);
  color: white;
  border-block: 2px solid var(--ink);
}
.buy-section::after {
  content: "NASJAK";
  position: absolute;
  right: -1vw;
  bottom: -4.5vw;
  font-family: Impact, sans-serif;
  font-size: 18vw;
  line-height: 1;
  color: rgba(255,255,255,.025);
  pointer-events: none;
}
.buy-inner {
  position: relative;
  z-index: 2;
  min-height: 440px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding-block: 70px;
}
.kicker.light { color: var(--green); }
.buy-inner h2 { margin-bottom: 16px; color: var(--green); }
.buy-inner p:not(.kicker) { max-width: 560px; color: #cacbc4; line-height: 1.6; }
.big-buy {
  min-width: min(390px, 100%);
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--green);
  color: var(--ink);
  border: 3px solid white;
  box-shadow: 12px 12px 0 var(--blue);
  text-decoration: none;
  text-align: center;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .95;
  transform: rotate(1.4deg);
  transition: transform .15s ease, box-shadow .15s ease;
}
.big-buy:hover { transform: rotate(-1deg) translateY(-4px); box-shadow: 16px 17px 0 var(--blue); }

.footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.footer-brand { font-family: Impact, sans-serif; font-size: 1.35rem; text-decoration: none; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-card { max-width: 620px; width: 100%; margin-inline: auto; }
  .paper-section { grid-template-columns: 1fr; }
  .section-number { position: absolute; top: 25px; right: 28px; }
  .mini-photo { max-width: 520px; }
  .buy-inner { grid-template-columns: 1fr; }
  .big-buy { width: min(440px, 100%); min-width: 0; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, 1240px); }
  .topbar { min-height: 66px; padding-inline: 14px; }
  .nav { gap: 10px; }
  .nav-link:first-child { display: none; }
  .ticker { font-size: .8rem; min-height: 38px; }
  .hero { min-height: auto; gap: 54px; padding-block: 42px 70px; }
  h1 { font-size: clamp(4.8rem, 25vw, 7.8rem); }
  h1 .green { text-shadow: 5px 5px 0 var(--blue); }
  .hero-buttons { display: grid; grid-template-columns: 1fr 1fr; }
  .btn-primary { grid-column: 1 / -1; }
  .btn { padding-inline: 10px; font-size: .7rem; }
  .ca-box { grid-template-columns: 1fr; }
  .ca-box button { width: 100%; }
  .hero-card { box-shadow: 9px 10px 0 rgba(17,18,15,.15), 12px 13px 0 var(--blue); }
  .paper-section { margin-block: 64px; padding: 42px 24px 30px; }
  .about-copy h2, .links-section h2, .buy-inner h2 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .link-grid { grid-template-columns: 1fr; }
  .links-section { padding-bottom: 72px; }
  .buy-inner { min-height: 0; padding-block: 58px; }
  .big-buy { min-height: 150px; font-size: 2.25rem; }
  .footer { min-height: 90px; flex-wrap: wrap; padding-block: 20px; }
}

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