:root {
  --ink: #10100f;
  --paper: #e9e5d9;
  --cream: #f5f1e6;
  --yellow: #f1b51d;
  --orange: #df5c2a;
  --line: rgba(16, 16, 15, 0.22);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(16, 16, 15, 0.15);
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 19;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  width: 100%;
  min-height: 82px;
  padding: 12px clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.04em;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

nav {
  display: flex;
  gap: clamp(24px, 4vw, 58px);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

nav a,
.footer-links a {
  position: relative;
}

nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: currentColor;
  transition: right 180ms ease;
}

nav a:hover::after,
.footer-links a:hover::after {
  right: 0;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--yellow);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

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

.button-small {
  min-height: 44px;
  justify-self: end;
  padding: 0 18px;
  gap: 18px;
  box-shadow: none;
}

.button-small:hover {
  transform: none;
  color: var(--ink);
  background: var(--yellow);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.84fr);
  border-bottom: 2px solid var(--ink);
}

.hero-copy {
  padding: clamp(60px, 8vw, 120px) clamp(28px, 6vw, 92px) 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(223, 92, 42, 0.17);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(223, 92, 42, 0);
  }
}

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

h1 {
  margin-bottom: 31px;
  font-family: var(--display);
  font-size: clamp(60px, 8.3vw, 130px);
  line-height: 0.82;
  letter-spacing: -0.075em;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h1 em {
  color: var(--orange);
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
}

.hero-description {
  max-width: 590px;
  margin-bottom: 34px;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
}

.hero-description strong {
  color: var(--orange);
  font-family: var(--mono);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.text-link,
.source-link {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.text-link span,
.source-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 150ms ease;
}

.text-link:hover span,
.source-link:hover span {
  transform: translateX(4px);
}

.launch-card {
  max-width: 590px;
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-top: 1px solid var(--line);
}

.launch-card div {
  display: grid;
  gap: 8px;
}

.label,
.contract {
  font-family: var(--mono);
  text-transform: uppercase;
}

.label {
  color: rgba(16, 16, 15, 0.58);
  font-size: 9px;
}

.contract {
  font-size: 12px;
  font-weight: 500;
}

.copy-button {
  padding: 7px 10px;
  color: rgba(16, 16, 15, 0.55);
  background: transparent;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
}

.hero-visual {
  min-height: 720px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  overflow: hidden;
  background-color: var(--yellow);
  background-image: linear-gradient(rgba(16, 16, 15, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 15, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  border-left: 2px solid var(--ink);
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  top: 10%;
  border: 2px solid rgba(16, 16, 15, 0.25);
  border-radius: 50%;
}

.hero-image-wrap {
  width: min(84%, 690px);
  position: relative;
  z-index: 2;
  filter: saturate(0.75) contrast(1.08);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -35px 35px var(--yellow);
}

.hero-image-wrap img {
  width: 100%;
  mix-blend-mode: multiply;
  clip-path: polygon(7% 0, 93% 0, 100% 100%, 0 100%);
}

.hero-word {
  position: absolute;
  left: -2%;
  bottom: -0.14em;
  z-index: 3;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(130px, 19vw, 320px);
  line-height: 1;
  letter-spacing: -0.09em;
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
}

.sticker {
  position: absolute;
  z-index: 4;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  font-family: var(--display);
  font-size: 15px;
  line-height: 1;
  text-align: center;
  transform: rotate(9deg);
}

.sticker-top {
  top: 8%;
  right: 7%;
}

.stamp {
  position: absolute;
  left: 6%;
  bottom: 8%;
  z-index: 5;
  padding: 8px 12px;
  display: grid;
  gap: 1px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 7px;
  text-align: center;
  transform: rotate(-5deg);
}

.stamp strong {
  font-family: var(--display);
  font-size: 18px;
}

.ticker {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
}

.ticker-track {
  width: max-content;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.03em;
  animation: ticker 19s linear infinite;
}

.ticker-track i {
  color: var(--yellow);
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section-number {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.manifesto {
  min-height: 710px;
  padding: clamp(75px, 10vw, 150px) clamp(28px, 6vw, 92px);
  display: grid;
  grid-template-columns: 0.42fr 1.3fr 0.8fr;
  gap: clamp(35px, 5vw, 90px);
  align-items: start;
}

.manifesto-copy .kicker {
  margin-bottom: 13px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.manifesto h2,
.squad h2,
.buy-heading h2,
.final-copy h2 {
  margin-bottom: 34px;
  font-family: var(--display);
  font-size: clamp(46px, 6.7vw, 102px);
  line-height: 0.87;
  letter-spacing: -0.075em;
}

.manifesto h2 span,
.squad h2 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.manifesto-copy > p:not(.kicker) {
  max-width: 670px;
  margin-bottom: 36px;
  font-size: 16px;
  line-height: 1.75;
}

.quote-card {
  margin-top: 110px;
  padding: 30px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(2deg);
}

.quote-mark {
  height: 38px;
  display: block;
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 0.8;
}

blockquote {
  margin: 18px 0 28px;
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 29px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.quote-author {
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 8px;
}

.quote-author img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.squad {
  padding: clamp(75px, 9vw, 130px) clamp(20px, 4vw, 64px) 40px;
  background: var(--ink);
  color: var(--paper);
}

.squad-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.squad-heading h2 {
  margin-right: 10vw;
}

.squad h2 span {
  -webkit-text-stroke-color: var(--paper);
}

.squad-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(233, 229, 217, 0.36);
  background: #9a968c;
}

.squad-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 16, 15, 0.6));
  pointer-events: none;
}

.squad-stage img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.65);
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.squad-stage:hover img {
  transform: scale(1.025);
}

.cat-label {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  font-family: var(--mono);
  font-size: clamp(6px, 0.7vw, 10px);
}

.cat-one {
  left: 4%;
}

.cat-two {
  left: 22%;
}

.cat-three {
  left: 43%;
  color: var(--yellow);
}

.cat-four {
  left: 68%;
}

.cat-five {
  right: 3%;
}

.squad-foot {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.squad-foot p {
  margin: 0;
  color: var(--yellow);
}

.how-to-buy {
  padding: clamp(80px, 10vw, 150px) clamp(28px, 6vw, 92px);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 7vw;
  border-bottom: 2px solid var(--ink);
}

.buy-heading h2 {
  margin-top: 36px;
}

.buy-heading h2 span,
.final-copy h2 span {
  color: var(--orange);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.steps li {
  min-height: 155px;
  padding: 28px 8px;
  display: grid;
  grid-template-columns: 56px 1fr 60px;
  align-items: center;
  border-bottom: 2px solid var(--ink);
  transition: padding 180ms ease, background 180ms ease;
}

.steps li:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: var(--yellow);
}

.step-number {
  align-self: start;
  font-family: var(--mono);
  font-size: 10px;
}

.steps h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 38px);
  letter-spacing: -0.05em;
}

.steps p {
  margin-bottom: 0;
  color: rgba(16, 16, 15, 0.65);
  font-size: 13px;
}

.step-icon {
  font-family: var(--display);
  font-size: 34px;
  text-align: right;
}

.final-cta {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  color: var(--paper);
  background: var(--orange);
  overflow: hidden;
}

.final-copy {
  z-index: 2;
  padding: clamp(80px, 10vw, 150px) clamp(28px, 6vw, 92px);
}

.final-copy > p {
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.final-copy h2 {
  font-size: clamp(80px, 11vw, 180px);
}

.final-copy h2 span {
  color: var(--yellow);
  -webkit-text-stroke: 3px var(--ink);
}

.final-actions {
  display: flex;
  gap: 14px;
}

.button-light {
  color: var(--ink);
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--ink);
}

.social-button {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  transition: transform 150ms ease;
}

.social-button:hover {
  transform: rotate(-5deg) scale(1.06);
}

.final-cat {
  position: relative;
  min-height: 630px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.final-cat img {
  width: min(85%, 640px);
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
  filter: contrast(1.1);
}

.sun {
  width: 75%;
  aspect-ratio: 1;
  position: absolute;
  top: 15%;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 24px rgba(241, 181, 29, 0.22),
    0 0 0 48px rgba(241, 181, 29, 0.12);
}

footer {
  min-height: 120px;
  padding: 22px clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
}

.footer-brand img {
  border-color: var(--paper);
}

footer p {
  max-width: 540px;
  margin: 0 auto;
  color: rgba(233, 229, 217, 0.5);
  font-family: var(--mono);
  font-size: 7px;
  line-height: 1.6;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: end;
  gap: 25px;
  font-family: var(--mono);
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  nav {
    display: none;
  }

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

  .hero-copy {
    min-height: 670px;
  }

  .hero-visual {
    min-height: 680px;
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

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

  .quote-card {
    grid-column: 2;
    margin-top: 0;
  }

  .squad-heading h2 {
    margin-right: 0;
  }

  .how-to-buy {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-copy {
    padding-bottom: 30px;
  }

  .final-cat {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .button-small {
    min-height: 38px;
    padding: 0 12px;
    font-size: 9px;
  }

  .hero-copy {
    min-height: 660px;
    padding-top: 70px;
  }

  h1 {
    font-size: clamp(53px, 17vw, 75px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .text-link {
    width: max-content;
  }

  .launch-card {
    margin-top: 52px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .sticker {
    width: 72px;
    height: 72px;
    font-size: 12px;
  }

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

  .manifesto-copy,
  .quote-card {
    grid-column: 1;
  }

  .quote-card {
    transform: rotate(1deg);
  }

  .squad-heading {
    display: grid;
    gap: 30px;
  }

  .squad-stage img {
    width: 180%;
    max-width: none;
    margin-left: -40%;
  }

  .cat-label:not(.cat-three) {
    display: none;
  }

  .cat-three {
    left: 40%;
  }

  .squad-foot {
    gap: 20px;
  }

  .steps li {
    grid-template-columns: 40px 1fr 35px;
  }

  .final-copy h2 {
    font-size: clamp(78px, 25vw, 125px);
  }

  .final-actions {
    flex-wrap: wrap;
  }

  .final-cat {
    min-height: 400px;
  }

  footer {
    padding: 38px 20px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand,
  .footer-links {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track,
  .eyebrow span {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
