:root {
  --lime: #dfff28;
  --lime-hot: #b9ff00;
  --pickle: #23421f;
  --ink: #0a150d;
  --moss: #102a17;
  --cream: #f6ffd9;
  --paper: #fbffe8;
  --orange: #ff8d2a;
  --sky: #92fff1;
  --line: rgba(10, 21, 13, 0.18);
  --shadow: 0 28px 70px rgba(8, 18, 9, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--lime);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 141, 42, 0.34), transparent 22rem),
    radial-gradient(circle at 86% 10%, rgba(146, 255, 241, 0.42), transparent 26rem),
    linear-gradient(180deg, #e8ff39 0%, #dfff28 44%, #f6ffd9 100%);
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.26;
  background-image:
    linear-gradient(45deg, rgba(10, 21, 13, 0.16) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(10, 21, 13, 0.16) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(10, 21, 13, 0.16) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(10, 21, 13, 0.16) 75%);
  background-position: 0 0, 0 18px, 18px -18px, -18px 0;
  background-size: 36px 36px;
  mask-image: linear-gradient(#000, transparent 76%);
}

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

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

main {
  width: min(1500px, calc(100% - 28px));
  margin: 0 auto;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 22px 0 0;
  overflow: hidden;
}

.noise {
  position: absolute;
  inset: 82px 0 auto;
  height: 72%;
  border: 4px solid var(--ink);
  border-radius: 38px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent 34%),
    radial-gradient(circle at 35% 40%, rgba(255, 141, 42, 0.28), transparent 23rem),
    var(--lime-hot);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.noise::before,
.noise::after {
  position: absolute;
  content: "";
  border: 4px solid var(--ink);
}

.noise::before {
  right: 7%;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: var(--orange);
}

.noise::after {
  left: -48px;
  top: 28%;
  width: 120px;
  height: 300px;
  border-radius: 999px;
  background: var(--sky);
  transform: rotate(18deg);
}

.nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 14px;
}

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

.brand {
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--orange);
}

.nav-links {
  gap: 8px;
  padding: 7px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: rgba(246, 255, 217, 0.84);
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--cream);
  background: var(--ink);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
  min-height: calc(100vh - 112px);
  padding: clamp(34px, 5vw, 72px) clamp(16px, 5vw, 76px) 110px;
}

.hero-copy,
.cover-card,
.poster,
.section-copy,
.stat-card,
.trait-card {
  min-width: 0;
}

.kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 14px;
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Archivo Black", "Outfit", sans-serif;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(74px, 13vw, 190px);
  line-height: 0.78;
  text-shadow: 7px 7px 0 var(--orange), 12px 12px 0 var(--ink);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(46px, 8vw, 108px);
  line-height: 0.88;
}

.lead {
  max-width: 660px;
  color: #16311a;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  color: var(--cream);
  background: var(--ink);
}

.button.ghost {
  background: var(--paper);
}

.button.dark {
  color: var(--cream);
  background: var(--moss);
}

.cover-card,
.poster {
  overflow: hidden;
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: 16px 16px 0 var(--ink);
}

.cover-card {
  position: relative;
  width: 100%;
  border-radius: 34px;
  transform: rotate(2deg);
}

.cover-card::before {
  position: absolute;
  left: -28px;
  top: 32px;
  z-index: -1;
  width: 120px;
  height: 120px;
  content: "";
  border: 5px solid var(--ink);
  border-radius: 999px;
  background: var(--sky);
}

.cover-card img,
.poster img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 27px;
}

.ticker {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 4;
  display: flex;
  width: 100%;
  gap: 26px;
  overflow: hidden;
  padding: 14px 0;
  color: var(--cream);
  border-block: 4px solid var(--ink);
  background: var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(24px, 4vw, 48px);
  white-space: nowrap;
  transform: translateX(-50%) rotate(-2deg);
}

.ticker span {
  animation: ticker 18s linear infinite;
}

.stats,
.split-section,
.gallery-section,
.traits-section {
  margin-top: clamp(50px, 8vw, 118px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card,
.trait-card {
  border: 4px solid var(--ink);
  border-radius: 26px;
  background: rgba(251, 255, 232, 0.92);
  box-shadow: 9px 9px 0 var(--ink);
}

.stat-card {
  padding: 24px;
}

.stat-card span,
.trait-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--pickle);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(38px, 6vw, 70px);
  letter-spacing: -0.06em;
}

.stat-card p {
  margin-bottom: 0;
  color: #315235;
  font-weight: 700;
  line-height: 1.4;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
}

.section-copy p:not(.kicker) {
  max-width: 650px;
  color: #254329;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.45;
}

.poster {
  border-radius: 30px;
  transform: rotate(-1.5deg);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.hound-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hound-card:nth-child(2n) {
  transform: translateY(24px) rotate(1deg);
}

.hound-card:nth-child(3n) {
  transform: rotate(-1deg);
}

.hound-card:hover {
  z-index: 2;
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(5px, 5px) rotate(0deg) scale(1.02);
}

.hound-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 4px solid var(--ink);
}

.hound-card figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 7px 10px;
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  font-weight: 900;
}

.trait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trait-card {
  padding: 24px;
}

.trait-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trait-card li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 2px dashed rgba(10, 21, 13, 0.22);
}

.trait-card li:last-child {
  border-bottom: 0;
}

.trait-card strong,
.trait-card em {
  font-style: normal;
  font-weight: 900;
}

.trait-card em {
  color: var(--orange);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  width: min(1500px, calc(100% - 28px));
  margin: 90px auto 0;
  padding: 28px 0 36px;
  color: #28492d;
  font-weight: 900;
  text-transform: uppercase;
}

.reveal {
  animation: riseIn 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-1 {
  animation-delay: 100ms;
}

.delay-2 {
  animation-delay: 190ms;
}

.delay-3 {
  animation-delay: 280ms;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(-0.5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-320px);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .cover-card {
    max-width: 760px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 680px) {
  main,
  footer {
    width: min(100% - 18px, 1500px);
  }

  .hero {
    min-height: auto;
  }

  .noise {
    height: calc(100% - 90px);
    border-radius: 26px;
  }

  .nav {
    align-items: flex-start;
    padding: 0 4px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links {
    gap: 2px;
    padding: 5px;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero-grid {
    gap: 30px;
    min-height: auto;
    padding: 54px 16px 116px;
  }

  h1 {
    font-size: clamp(64px, 21vw, 112px);
    text-shadow: 4px 4px 0 var(--orange), 8px 8px 0 var(--ink);
  }

  h2 {
    font-size: clamp(44px, 15vw, 72px);
  }

  .button {
    width: 100%;
  }

  .cover-card,
  .poster,
  .stat-card,
  .trait-card,
  .hound-card {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .stats,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    display: block;
  }

  .gallery {
    gap: 12px;
  }

  .hound-card:nth-child(n) {
    transform: none;
  }

  footer {
    margin-top: 58px;
  }
}

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