@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --paper: #f5f5ef;
  --ink: #090909;
  --blue: #315cff;
  --acid: #ff2e88; /* canon: STRIDE secondary is hot pink */
  --muted: #555550;
  --line: rgba(9, 9, 9, 0.2);
  --content-max: 1680px;
  --page-x: max(clamp(22px, 4.75vw, 76px), calc((100vw - var(--content-max)) / 2));
  --column-gap: clamp(28px, 3vw, 48px);
  --editorial-columns: minmax(220px, 0.44fr) minmax(0, 1fr);
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(9, 9, 9, 0.09) 0.7px, transparent 0.7px);
  background-size: 11px 11px;
  font-family: var(--sans);
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a,
button {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 50%;
  padding: 11px 14px;
  color: #fff;
  background: var(--ink);
  font: 500 11px/1 var(--mono);
  transform: translate(-50%, -180%);
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.product-rail {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  padding: 20px var(--page-x);
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.08em;
}

.product-rail a {
  position: relative;
  width: max-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.product-rail a:last-child {
  justify-self: end;
}

.product-rail a:last-child::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-label {
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.13em;
}

/* Fold — the question, then the deadpan corner answer. */
.hero {
  display: flex;
  flex-direction: column;
  min-height: min(100svh, 1040px);
  padding: clamp(90px, 7.2vw, 116px) var(--page-x) clamp(28px, 3.4vw, 48px);
}

.product-name {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.product-name strong {
  color: var(--blue);
  font-family: "Arial Black", Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(30px, 3.2vw, 52px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.09em;
}

.product-name span {
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 12ch;
  margin-top: clamp(16px, 1.8vw, 28px);
  font-size: clamp(64px, 8vw, 138px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.068em;
}

.hero-highlight,
.closer-highlight {
  display: inline-block;
  padding: 0.02em 0.16em 0.15em;
  color: #fff;
  background: var(--blue);
  box-shadow: 0.06em 0.06em 0 rgba(9, 9, 9, 0.28);
  transform: rotate(-1.5deg);
}

.hero-punchline {
  margin: auto 0 0 auto;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

/* The drop — villain beat in the dark. */
.premise {
  display: grid;
  grid-template-columns: var(--editorial-columns);
  gap: var(--column-gap);
  min-height: clamp(440px, 60vh, 580px);
  padding: clamp(76px, 8vw, 116px) var(--page-x);
  color: #fff;
  background: var(--ink);
}

.premise h2 {
  max-width: 12ch;
  margin: auto 0 0;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.06em;
}

.premise em {
  color: var(--acid);
  font-style: normal;
}

.does {
  padding: clamp(76px, 8vw, 116px) var(--page-x);
}

.does .section-label {
  margin-bottom: 18px;
}

.does-intro {
  max-width: 44ch;
  margin-bottom: clamp(40px, 4.2vw, 60px);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

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

.does-list li {
  display: grid;
  grid-template-columns: minmax(120px, 0.44fr) 1fr;
  gap: var(--column-gap);
  align-items: baseline;
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--line);
}

.does-list li > span {
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.1em;
}

.does-list strong {
  font-size: clamp(30px, 3.25vw, 52px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.does-list p {
  max-width: 40ch;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.whats-real {
  display: grid;
  grid-template-columns: var(--editorial-columns);
  gap: var(--column-gap);
  padding: clamp(76px, 8vw, 116px) var(--page-x);
  border-top: 1px solid var(--ink);
}

.whats-real h2 {
  max-width: 14ch;
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.whats-real p:not(.section-label) {
  max-width: 36ch;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.3;
}

/* The tattoo — open on the grin, close on the line you leave with. */
.closer {
  display: grid;
  grid-template-columns: var(--editorial-columns);
  gap: var(--column-gap);
  align-content: center;
  min-height: min(78svh, 760px);
  padding: clamp(76px, 8vw, 116px) var(--page-x) clamp(96px, 10vw, 140px);
  border-top: 1px solid var(--ink);
}

.closer > div {
  align-self: center;
}

.closer h2 {
  max-width: 12ch;
  font-size: clamp(54px, 6.4vw, 104px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.build-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  width: min(100%, 380px);
  min-height: 70px;
  margin-top: clamp(38px, 3.6vw, 54px);
  padding: 0 22px;
  color: #fff;
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--blue);
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition-property: box-shadow, transform;
  transition-duration: 160ms;
  transition-timing-function: ease;
}

.build-button:hover {
  box-shadow: 2px 2px 0 var(--blue);
  transform: translate(4px, 4px);
}

.build-button:active {
  transform: translate(4px, 4px) scale(0.96);
}

.maker-signature {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: clamp(440px, 58svh, 560px);
  padding: 48px var(--page-x) 44px;
  place-content: center;
  justify-items: center;
  overflow: hidden;
  text-align: center;
}

.maker-signature > p,
.maker-signature > span {
  font: 500 10px/1.2 var(--mono);
  letter-spacing: 0.13em;
}

.maker-signature > p {
  position: relative;
  z-index: 2;
  margin: 0 0 -16px;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(2deg);
}

.maker-signature > span {
  max-width: 36ch;
  margin-top: 24px;
}

/* Cool Guy corner sticker — studio signature on every product page,
   feet cropped by the section's bottom edge. */
.coolguy-corner {
  position: absolute;
  z-index: 3;
  bottom: -34px;
  left: clamp(18px, 4vw, 56px);
  width: 150px;
}

.coolguy-corner-button {
  appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: rotate(-6deg);
}

.coolguy-corner-button img {
  width: 100%;
  height: auto;
  display: block;
}

.coolguy-corner-button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}

.coolguy-bubble {
  position: absolute;
  z-index: 4;
  bottom: 118px;
  left: 92px;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.08em;
  white-space: nowrap;
  transform: rotate(-2deg) scale(0);
  transform-origin: 0 100%;
  transition: transform 220ms cubic-bezier(0.2, 0, 0, 1);
  pointer-events: none;
}

.coolguy-bubble[data-open="true"] {
  transform: rotate(-2deg) scale(1);
}

.coolguy-bubble-tail {
  position: absolute;
  bottom: -9px;
  left: 10px;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: #fff;
  transform: rotate(45deg) skew(12deg, 12deg);
}

.maker-sticker {
  display: block;
  width: clamp(300px, 42vw, 600px);
  min-width: 40px;
  min-height: 40px;
  filter: drop-shadow(13px 15px 0 #11ed32) drop-shadow(0 18px 22px rgba(0, 0, 0, 0.16));
  text-decoration: none;
  transform: rotate(-2deg);
  transition-property: transform;
  transition-duration: 180ms;
  transition-timing-function: ease;
}

.maker-sticker:hover {
  transform: translateY(-5px) rotate(1deg);
}

.maker-sticker:active {
  transform: translateY(-1px) rotate(0) scale(0.96);
}

.maker-sticker img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 26px 28px;
  color: #fff;
  background: var(--ink);
  font: 500 9px/1.4 var(--mono);
  letter-spacing: 0.05em;
}

.site-footer a {
  min-height: 40px;
  display: inline-flex;
  align-items: flex-start;
  text-decoration: none;
}

.site-footer p {
  max-width: 90ch;
  justify-self: center;
  text-align: center;
}

.site-footer span {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  .product-rail {
    padding: 16px 18px;
  }

  .hero {
    min-height: 100svh;
    padding: 90px 18px 34px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(48px, 13.5vw, 72px);
    letter-spacing: -0.06em;
  }

  .product-name {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .hero-punchline {
    font-size: 22px;
  }

  .premise {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: 76svh;
    padding: 64px 18px 72px;
  }

  .premise h2,
  .closer h2 {
    font-size: clamp(48px, 15vw, 76px);
    line-height: 0.86;
  }

  .does {
    padding: 72px 18px;
  }

  .does-intro {
    font-size: 18px;
  }

  .does-list li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0 26px;
  }

  .does-list strong {
    font-size: clamp(30px, 8.5vw, 44px);
  }

  .whats-real,
  .closer {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 72px 18px;
  }

  .whats-real h2 {
    font-size: clamp(40px, 11vw, 60px);
  }

  .closer {
    min-height: 0;
    padding-bottom: 110px;
  }

  .build-button {
    display: flex;
    width: 100%;
    gap: 16px;
    min-height: 64px;
    font-size: 10px;
  }

  .maker-signature {
    min-height: 500px;
    padding: 56px 18px 46px;
  }

  .maker-sticker {
    width: min(84vw, 390px);
    filter: drop-shadow(9px 10px 0 #11ed32) drop-shadow(0 13px 18px rgba(0, 0, 0, 0.16));
  }

  .coolguy-corner {
    bottom: -26px;
    width: 120px;
  }

  .coolguy-bubble {
    bottom: 96px;
    left: 74px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding: 24px 18px;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    text-align: left;
  }
}

@media (min-width: 901px) and (max-height: 780px) {
  .product-rail {
    padding-block: 12px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 76px;
    padding-bottom: 24px;
  }

  .product-name strong {
    font-size: 38px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(60px, 7.4vw, 104px);
  }

  .hero-punchline {
    font-size: 22px;
  }
}

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

  .build-button,
  .maker-sticker,
  .coolguy-bubble {
    transition-duration: 0.01ms;
  }
}
