:root {
  --black: #0b0b0b;
  --blue: #0d3bff;
  --yellow: #ffbe0b;
  --yellow-dark: #d98e00;
  --off-white: #f5f5f5;
  --paper: #d9d9d9;
  --ink: #151515;
  --max: 1440px;
  --edge: clamp(1rem, 4vw, 4rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height, 0px);
}

body {
  margin: 0;
  color: var(--off-white);
  background: var(--black);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px);
  background-size: 7px 9px, 11px 13px;
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--edge);
  background: rgba(11, 11, 11, 0.94);
  border-bottom: 1px solid rgba(245, 245, 245, 0.32);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.brand {
  display: block;
  width: clamp(6.6rem, 12vw, 9.2rem);
  transform: rotate(-2deg);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.brand span,
.poster-title,
.final-strip,
.wide-scream p {
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand span,
.poster-title {
  -webkit-text-stroke: 0.032em currentColor;
  paint-order: stroke fill;
}

.brand span {
  color: var(--yellow);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.9;
  text-shadow:
    1px 2px 0 #f2a900,
    2px 4px 0 #d98e00,
    3px 6px 0 #b76c00,
    0 3px 0 var(--yellow-dark),
    0 7px 0 #824900,
    8px 12px 18px rgba(0, 0, 0, 0.5);
}

.brand small {
  color: var(--off-white);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 0.85rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 3vw, 2.8rem);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.65rem);
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 0.2rem 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.15rem;
  left: 0;
  height: 0.22rem;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-smile {
  position: relative;
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 1;
  width: clamp(2rem, 4vw, 3.3rem);
  transform: rotate(8deg);
}

.nav-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease, transform 220ms ease;
}

.nav-face-happy {
  opacity: 1;
  transform: scale(1);
}

.nav-face-sad {
  opacity: 0;
  transform: scale(0.82) rotate(-8deg);
}

.nav-smile:hover .nav-face-happy {
  opacity: 0;
  transform: scale(0.82) rotate(8deg);
}

.nav-smile:hover .nav-face-sad {
  opacity: 1;
  transform: scale(1) rotate(-8deg);
}

.section {
  position: relative;
  isolation: isolate;
  min-height: min(900px, 100svh);
  padding: clamp(4.5rem, 8vw, 7rem) var(--edge);
  overflow: hidden;
  scroll-margin-top: var(--header-height, 0px);
}

main {
  position: relative;
}

.section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  border: clamp(0.22rem, 0.7vw, 0.45rem) solid rgba(245, 245, 245, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.blue-section {
  background-color: #042391;
  background-image: url("assets/textura-azul.png");
  background-repeat: repeat;
  background-size: 64rem 64rem;
}

.black-section {
  background-color: #020202;
  background-image: url("assets/textura-negra.png");
  background-repeat: repeat;
  background-size: 34rem 52rem;
}

.black-section .texture {
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 24% 18%, rgba(245, 245, 245, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 68%, rgba(245, 245, 245, 0.08) 0 1px, transparent 1px),
    linear-gradient(103deg, transparent 0 47%, rgba(245, 245, 245, 0.06) 48%, transparent 49% 100%);
  background-size: 8px 10px, 13px 17px, 32rem 42rem;
  mix-blend-mode: screen;
}

.texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px);
  background-size: 190px 100%, 100% 160px, 9px 11px;
  mix-blend-mode: overlay;
}

.blue-section .texture {
  opacity: 0.2;
  background-image:
    linear-gradient(112deg, transparent 20%, rgba(255, 255, 255, 0.08) 48%, transparent 74%),
    linear-gradient(8deg, transparent 15%, rgba(0, 0, 0, 0.2) 52%, transparent 82%);
  background-size: 180% 160%, 220% 190%;
  mix-blend-mode: soft-light;
}

.section-grid,
.problem-layout,
.cta-layout,
.founders-grid {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  align-items: center;
  align-content: center;
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
  min-height: calc(100svh - 6.8rem);
  padding-block: clamp(1.25rem, 2.5vw, 2.2rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero-copy,
.hero-side {
  min-width: 0;
}

.hero-copy {
  padding-top: clamp(0.7rem, 1.8vw, 1.35rem);
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--off-white);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.kicker.yellow {
  color: var(--yellow);
}

.poster-title {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(4.1rem, 11vw, 11.8rem);
  font-weight: 400;
  line-height: 1.04;
  text-shadow:
    1px 2px 0 #f2a900,
    2px 4px 0 #d98e00,
    3px 6px 0 #b76c00,
    4px 8px 0 #8e5200,
    0 4px 0 var(--yellow-dark),
    0 9px 0 #714000,
    11px 15px 20px rgba(0, 0, 0, 0.55);
}

.poster-title .strip {
  display: inline-block;
  margin-block: 0.06em 0.08em;
  padding: 0.04em 0.12em 0.08em;
  color: var(--yellow);
  background: var(--black);
  transform: rotate(-1deg);
}

.hero-title {
  font-size: clamp(4rem, 5.65vw, 6.2rem);
  line-height: 1.02;
}

.hero-title-image-wrap {
  margin: 0;
}

.hero-title-image {
  display: block;
  width: min(100%, 29rem);
  height: auto;
}

.hero-title .title-line {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.hero .kicker {
  display: none;
}

.hero .lead {
  margin-top: clamp(0.8rem, 1.5vw, 1.25rem);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.mobile-only {
  display: none;
}

.lead {
  max-width: 52rem;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  color: var(--off-white);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.45;
  overflow-wrap: break-word;
}

.lead strong {
  display: block;
  width: fit-content;
  margin-top: 0.25rem;
  font-weight: 900;
}

.lead-highlight {
  display: inline-block;
  box-shadow: inset 0 -0.35em 0 rgba(255, 190, 11, 0.9);
}

.hero-side {
  display: grid;
  justify-items: center;
  gap: 0;
}

.sticker {
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.42));
}

.sticker-main {
  width: min(21rem, 82vw);
  transform: rotate(9deg);
  animation: stickerFloat 7s ease-in-out infinite;
}

.image-cta {
  position: relative;
  display: block;
  --cta-ring-top: 12%;
  --cta-ring-right: 5%;
  --cta-ring-bottom: 18%;
  --cta-ring-left: 5%;
  cursor: pointer;
  filter: drop-shadow(0 12px 0 rgba(0, 0, 0, 0.34)) drop-shadow(0 18px 18px rgba(0, 0, 0, 0.28));
  transform: rotate(-1deg);
  transition: transform 180ms ease, filter 180ms ease;
}

.hero-ticket-image {
  --cta-ring-top: 15%;
  --cta-ring-bottom: 22%;
  width: min(100%, 28rem);
  margin-top: -2rem;
}

.image-cta::after {
  position: absolute;
  inset: var(--cta-ring-top) var(--cta-ring-right) var(--cta-ring-bottom) var(--cta-ring-left);
  pointer-events: none;
  content: "";
  border: 3px solid transparent;
  clip-path: polygon(0 18%, 3% 18%, 3% 0, 97% 0, 97% 18%, 100% 18%, 100% 82%, 97% 82%, 97% 100%, 3% 100%, 3% 82%, 0 82%);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.image-cta img {
  width: 100%;
  transition: filter 180ms ease;
}

.image-cta:hover,
.image-cta:focus-visible {
  outline: none;
  filter: drop-shadow(0 17px 0 rgba(0, 0, 0, 0.38)) drop-shadow(0 24px 24px rgba(0, 0, 0, 0.34));
  transform: rotate(0deg) translateY(-0.4rem) scale(1.025);
}

.image-cta:hover::after,
.image-cta:focus-visible::after {
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 0 0 2px rgba(255, 190, 11, 0.65);
}

.image-cta:hover img,
.image-cta:focus-visible img {
  filter: brightness(1.08) saturate(1.08);
}

.image-cta:active {
  filter: drop-shadow(0 7px 0 rgba(0, 0, 0, 0.35));
  transform: translateY(0.15rem) scale(0.99);
}

.ticket-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  width: min(100%, 34rem);
  min-height: 5rem;
  padding: 1rem clamp(1.1rem, 3vw, 2rem);
  color: var(--black);
  background:
    linear-gradient(90deg, transparent 0 0.75rem, var(--yellow) 0 calc(100% - 0.75rem), transparent 0),
    linear-gradient(var(--yellow), var(--yellow));
  border: 3px solid var(--black);
  clip-path: polygon(0 16%, 3% 16%, 3% 0, 97% 0, 97% 16%, 100% 16%, 100% 84%, 97% 84%, 97% 100%, 3% 100%, 3% 84%, 0 84%);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.55rem);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 14px 0 rgba(0, 0, 0, 0.3);
  transform: rotate(-1deg);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.ticket-button::before {
  position: absolute;
  inset: 0.45rem;
  pointer-events: none;
  content: "";
  border: 2px solid var(--black);
}

.ticket-button:hover,
.ticket-button:focus-visible {
  transform: rotate(0deg) translateY(-0.3rem);
  box-shadow: 0 18px 0 rgba(0, 0, 0, 0.38);
  filter: saturate(1.12);
}

.paper-banner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.4rem;
  width: min(68rem, calc(100% - 2rem));
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.2rem, 4vw, 3rem);
  color: var(--black);
  background: var(--paper);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.65rem, 3.8vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.36);
  transform: rotate(-1deg);
}

.hero .paper-banner {
  margin-top: clamp(0.25rem, 0.8vw, 0.7rem);
  padding-block: clamp(0.7rem, 1.2vw, 1rem);
  font-size: clamp(1.45rem, 2.7vw, 2.7rem);
}

.paper-banner::before,
.paper-card::before,
.person-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background:
    radial-gradient(circle at 15% 40%, rgba(0, 0, 0, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.12) 0 1px, transparent 1px);
  background-size: 6px 8px, 10px 7px;
}

.paper-banner span {
  font-weight: 900;
}

.paper-banner .banner-black {
  color: var(--black);
}

.paper-banner .banner-blue {
  color: var(--blue);
}

.decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-star {
  --float-angle: -14deg;
  --float-distance: -0.55rem;
  top: 11.8rem;
  left: clamp(27rem, 33vw, 31rem);
  width: clamp(4.2rem, 6vw, 5.8rem);
  opacity: 0.85;
  transform: rotate(-14deg);
  animation-delay: -1.7s;
}

.tape-one {
  right: 2rem;
  bottom: 12%;
  width: clamp(8rem, 18vw, 17rem);
  opacity: 0.55;
  transform: rotate(-12deg);
}

.problem {
  min-height: auto;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(34rem, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(0.9rem, 2.2vw, 2.6rem);
}

.mixed-title {
  color: var(--yellow);
  font-size: clamp(6rem, 8.7vw, 10.4rem);
  line-height: 0.94;
  max-width: 52rem;
}

.problem-title-image-wrap {
  margin: 0;
}

.problem-title-image {
  display: block;
  width: min(100%, 47rem);
  height: auto;
}

.problem-title-line {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
}

.problem-title-white {
  color: var(--off-white);
  -webkit-text-stroke-color: var(--off-white);
  text-shadow:
    1px 2px 0 #d7d7d7,
    2px 3px 0 #bdbdbd,
    3px 5px 0 #929292,
    0 3px 0 #a8a8a8,
    0 6px 0 #5d5d5d,
    8px 12px 18px rgba(0, 0, 0, 0.55);
}

.problem-title-paint {
  z-index: 0;
  margin-top: 0.03em;
  padding: 0 0.12em 0.06em 0.02em;
}

.problem-title-paint::before {
  position: absolute;
  right: -0.12em;
  bottom: 0.02em;
  left: -0.08em;
  z-index: -1;
  height: 0.62em;
  content: "";
  background:
    linear-gradient(rgba(13, 59, 255, 0.88), rgba(13, 59, 255, 0.88)),
    url("assets/subrrayado-rayado-azul.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: rotate(-1.2deg);
}

.problem-notes {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.4rem);
}

.problem-right {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.65rem);
  min-width: 0;
  margin-left: clamp(-1.8rem, -1.5vw, -0.4rem);
}

.problem-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(12rem, 0.85fr);
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.competition-note,
.flyer-strip {
  width: 100%;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.35));
}

.competition-note {
  justify-self: center;
  width: min(100%, 32rem);
  transform: rotate(1deg);
}

.flyer-strip {
  justify-self: center;
  width: min(100%, 48rem);
  transform: rotate(-0.5deg);
}

.problem-asides {
  display: grid;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.problem-aside {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.95rem;
  align-items: start;
  padding-bottom: 0.8rem;
  border-bottom: 0.2rem solid var(--yellow);
}

.problem-aside img {
  width: 3rem;
}

.problem-aside p {
  margin: 0;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.problem-aside strong {
  display: block;
  color: var(--yellow);
  font-weight: 400;
}

.paper-card,
.callout-card,
.person-card,
.step-card {
  position: relative;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.4);
}

.paper-card {
  padding: clamp(1.4rem, 3vw, 2.3rem);
  color: var(--ink);
  background: var(--paper);
  transform: rotate(2deg);
}

.paper-card.torn {
  clip-path: polygon(1% 3%, 99% 0, 96% 95%, 5% 100%, 0 56%);
}

.paper-card p {
  position: relative;
  margin: 0;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.callout-card {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-left: 0.35rem solid var(--yellow);
  background: rgba(11, 11, 11, 0.78);
}

.callout-card img {
  width: 4rem;
}

.callout-card p {
  margin: 0;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.callout-card strong {
  display: block;
  color: var(--yellow);
  font-weight: 400;
}

.wide-scream {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.8vw, 1.5rem);
  width: min(100%, var(--max));
  margin: clamp(2.4rem, 5vw, 4.4rem) auto 0;
  padding: clamp(1.4rem, 3vw, 2.2rem) 1rem 0;
  border-top: 1px solid rgba(245, 245, 245, 0.58);
}

.wide-scream::before {
  position: absolute;
  z-index: -1;
  width: min(72rem, 86%);
  height: 58%;
  content: "";
  background:
    linear-gradient(rgba(13, 59, 255, 0.76), rgba(13, 59, 255, 0.76)),
    url("assets/subrrayado-rayado-azul.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: rotate(-0.8deg);
}

.wide-scream::after {
  position: absolute;
  right: 13%;
  bottom: -0.28rem;
  left: 18%;
  z-index: -1;
  height: 0.18rem;
  content: "";
  background: var(--yellow-dark);
  transform: rotate(-0.5deg);
}

.wide-scream img {
  width: clamp(2rem, 4vw, 3.8rem);
}

.wide-scream p {
  margin: 0;
  color: var(--yellow-dark);
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
  line-height: 0.9;
  text-align: center;
  text-shadow: none;
}

.wide-scream p span {
  display: block;
}

.section-heading {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading-copy {
  min-width: 0;
}

.section-heading .poster-title {
  font-size: clamp(4rem, 10vw, 10rem);
}

.system-title-image-wrap {
  margin: 0;
}

.system-title-image {
  display: block;
  width: min(100%, 35rem);
  height: auto;
}

.section-subtitle {
  width: fit-content;
  margin: 0.6rem 0 0;
  color: var(--paper);
  font-size: clamp(1.25rem, 2.6vw, 2.2rem);
  font-weight: 900;
  box-shadow: inset 0 -0.3em 0 rgba(255, 190, 11, 0.95);
}

.section-heading-system {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 3rem);
}


.system-subtitle-break {
  display: none;
}

.sticker-pass {
  --float-angle: 12deg;
  --float-distance: -0.8rem;
  --float-duration: 7.8s;
  position: relative;
  top: auto;
  right: auto;
  flex: 0 0 auto;
  align-self: center;
  width: clamp(7rem, 12vw, 11rem);
  transform: rotate(12deg);
  animation-delay: -3.4s;
}

.steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  width: min(100%, var(--max));
  margin: clamp(3rem, 6vw, 5rem) auto 0;
}

.step-card {
  display: grid;
  justify-items: center;
  min-height: 19rem;
  padding: 1.2rem 0.9rem 1.4rem;
  text-align: center;
}

.step-card::before {
  position: absolute;
  inset: 2.4rem 0.5rem auto;
  height: 9rem;
  z-index: -1;
  content: "";
  background: var(--paper);
  clip-path: polygon(2% 10%, 94% 0, 100% 88%, 9% 100%, 0 45%);
}

.step-number {
  position: absolute;
  top: 1.15rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 3.6rem;
  aspect-ratio: 1;
  color: var(--yellow);
  background: var(--black);
  border: 2px solid rgba(245, 245, 245, 0.5);
  border-radius: 50%;
  font-family: "Anton", Impact, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.step-card img {
  width: 100%;
  height: 9.8rem;
  object-fit: cover;
  object-position: center;
  clip-path: inset(14% 19% 33% 19%);
  margin: -0.6rem 0 -0.8rem;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.28));
}

.step-icon {
  transform: scale(1.08);
}

.step-card-1 .step-icon {
  width: min(48%, 6.8rem);
  height: 5.5rem;
  object-position: center center;
  object-fit: contain;
  clip-path: inset(12% 12% 12% 12%);
  margin: 0.45rem 0 0.35rem;
  transform: scale(1);
}

.step-card-2 .step-icon {
  width: min(48%, 6.8rem);
  height: 5.5rem;
  object-position: center center;
  object-fit: contain;
  clip-path: inset(10% 10% 10% 10%);
  margin: 0.45rem 0 0.35rem;
  transform: scale(1);
}

.step-card-3 .step-icon {
  width: min(48%, 6.6rem);
  height: 5.4rem;
  object-position: center center;
  object-fit: contain;
  clip-path: inset(11% 15% 11% 15%);
  margin: 0.65rem 0 0.25rem;
  transform: scale(1);
}

.step-card-3::before {
  inset: 2.1rem 0.5rem auto;
  height: 10rem;
}

.step-card-4 .step-icon {
  width: min(52%, 7.2rem);
  height: 5.6rem;
  object-position: center center;
  object-fit: contain;
  clip-path: inset(10% 10% 10% 10%);
  margin: 0.45rem 0 0.35rem;
  transform: scale(1);
}

.step-card-1::before,
.step-card-2::before,
.step-card-4::before {
  inset: 2.1rem 0.5rem auto;
  height: 10rem;
}

.step-card h3 {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0.45rem 0.75rem 0.3rem;
  color: var(--black);
  background: var(--yellow);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.step-card p {
  max-width: 16rem;
  margin: 1rem 0 0;
  color: var(--off-white);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.25;
}

.final-strip {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 100%;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding: clamp(0.8rem, 1.5vw, 1.1rem) clamp(1rem, 3vw, 2rem);
  color: var(--off-white);
  background: var(--black);
  font-size: clamp(2.2rem, 5.6vw, 5.5rem);
  line-height: 1;
  text-align: center;
  transform: rotate(-1deg);
}

.final-strip span {
  color: var(--yellow);
}

.founders {
  min-height: auto;
}

.founders-intro {
  width: min(48rem, 100%);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.founders-intro h2 {
  margin: 0;
  color: var(--off-white);
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.16;
}

.founders-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr 1fr 0.95fr;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.4rem);
}

.photo-poster {
  position: relative;
  margin: 0;
  min-width: 0;
  background: var(--blue);
  clip-path: polygon(4% 0, 98% 6%, 92% 100%, 0 94%);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.55);
}

.photo-poster::before {
  position: absolute;
  inset: 0;
  content: "";
  border: 0.45rem solid rgba(245, 245, 245, 0.7);
  clip-path: inherit;
  mix-blend-mode: screen;
}

.photo-poster > img:first-child {
  width: 100%;
  aspect-ratio: 0.74;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1.02);
}

.santi > img:first-child {
  object-position: center top;
}

.photo-sticker {
  position: absolute;
  top: -7%;
  right: -4%;
  width: 35%;
  transform: rotate(12deg);
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.35));
}

.person-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(11, 11, 11, 0.68);
  border: 1px solid rgba(245, 245, 245, 0.18);
}

.person-card h3 {
  width: fit-content;
  margin: 0 0 1.4rem;
  padding: 0.4rem 0.85rem 0.25rem;
  color: var(--black);
  background: var(--yellow);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0.22em 0 var(--blue);
  transform: rotate(-2deg);
}

.check-list,
.moment-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 1.1rem;
}

.check-list li,
.moment-list li {
  position: relative;
  padding-left: 2rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.35;
}

.check-list li::before,
.moment-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--yellow);
  content: "+";
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
}

.person-job {
  margin: 1.8rem 0 0;
  color: var(--yellow);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.cta {
  display: grid;
  align-items: center;
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.cta .poster-title {
  font-size: clamp(3.9rem, 9vw, 9rem);
}

.cta-title-image-wrap {
  margin: 0;
}

.cta-title-image {
  display: block;
  width: min(100%, 40rem);
  height: auto;
}

.cta-copy {
  display: grid;
  gap: clamp(1.3rem, 3vw, 2rem);
}

.moment-list {
  display: grid;
  gap: 0.75rem;
}

.moment-list li {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  text-transform: uppercase;
}

.head-note {
  width: fit-content;
  margin: 0;
  padding: 0.7rem 1rem 0.55rem;
  color: var(--black);
  background: var(--paper);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1deg);
  box-shadow: inset 0 -0.23em 0 rgba(255, 190, 11, 0.9), 0 12px 20px rgba(0, 0, 0, 0.32);
}

.call-ticket-image {
  --cta-ring-top: 24%;
  --cta-ring-bottom: 25%;
  --cta-ring-left: 5%;
  --cta-ring-right: 5%;
  width: min(100%, 42rem);
  margin-top: 0.2rem;
}

.microcopy {
  margin: -0.5rem 0 0;
  color: var(--paper);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  text-align: center;
}

.cta-star {
  --float-angle: 9deg;
  --float-distance: -0.7rem;
  --float-duration: 8.4s;
  top: 1%;
  right: 2vw;
  width: clamp(6rem, 13vw, 12rem);
  transform: rotate(9deg);
  animation-delay: -5.1s;
}

.arrow {
  left: 53%;
  bottom: 12%;
  width: clamp(5rem, 11vw, 10rem);
  transform: rotate(-20deg);
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes stickerFloat {
  0%,
  100% {
    transform: rotate(9deg) translateY(0);
  }
  50% {
    transform: rotate(7deg) translateY(-0.65rem);
  }
}

.floating-decor {
  animation-name: decorFloat;
  animation-duration: var(--float-duration, 7.2s);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform;
}

@keyframes decorFloat {
  0%,
  100% {
    transform: translateY(0) rotate(var(--float-angle));
  }
  50% {
    transform: translateY(var(--float-distance)) rotate(calc(var(--float-angle) + 2deg));
  }
}

@media (max-width: 1180px) {
  .steps,
  .founders-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-poster {
    max-width: 28rem;
    justify-self: center;
  }

  .nacho {
    order: 1;
  }

  .founders-grid .person-card:first-of-type {
    order: 2;
  }

  .founders-grid .person-card:nth-of-type(2) {
    order: 3;
  }

  .santi {
    order: 4;
  }
}

@media (min-width: 861px) {
  html {
    scroll-padding-top: var(--header-height, 0px);
  }

  .site-header {
    position: fixed;
    right: 0;
    left: 0;
  }

  main {
    padding-top: var(--header-height, 0px);
  }

  .section {
    height: calc(100svh - var(--header-height, 0px));
    min-height: 0;
  }

  .hero {
    min-height: 0;
  }
}

@media (min-width: 861px) and (max-height: 760px) {
  .site-header {
    padding-block: 0.55rem;
  }

  .brand-logo {
    width: 7.7rem;
  }

  .nav-links {
    font-size: 1.2rem;
  }

  .nav-smile {
    width: 2.4rem;
  }

  .hero {
    height: calc(100svh - var(--header-height, 0px));
    min-height: 0;
    padding-block: 0.65rem;
  }

  .hero-grid {
    width: min(100%, calc(100svh * 1.65));
    gap: 1rem;
  }

  .hero-title {
    font-size: min(5.5vw, 11.5vh);
    line-height: 1;
  }

  .hero-title-image {
    width: min(100%, 26.5rem);
  }

  .hero .lead {
    margin-top: 0.5rem;
    font-size: min(1.25vw, 2.1vh);
  }

  .sticker-main {
    width: min(20rem, 40vh);
  }

  .hero-ticket-image {
    width: min(25rem, 43vh);
    margin-top: -1.6rem;
  }

  .hero .paper-banner {
    width: min(52rem, calc(100svh * 1.38));
    margin-top: 0;
    padding-block: 0.55rem;
    font-size: min(2.2vw, 3.6vh);
  }
}

@media (min-width: 861px) and (max-height: 900px) {
  .section:not(.hero) {
    height: calc(100svh - var(--header-height, 0px));
    min-height: 0;
    padding: clamp(0.9rem, 2vh, 1.5rem) var(--edge);
  }

  .problem,
  .system,
  .founders,
  .cta {
    display: grid;
    align-content: center;
  }

  .problem-layout,
  .section-heading,
  .steps,
  .founders-grid,
  .cta-layout {
    width: min(100%, calc(100svh * 1.82));
  }

  .problem-layout {
    grid-template-columns: minmax(27rem, 0.9fr) minmax(280px, 1.1fr);
    gap: clamp(0.8rem, 2.2vh, 1.8rem);
  }

  .problem .kicker,
  .system .kicker,
  .cta .kicker {
    margin-bottom: 0.4rem;
    font-size: min(1.6rem, 3vh);
  }

  .mixed-title {
    font-size: min(8vw, 11.8vh);
    line-height: 0.94;
    max-width: min(48rem, 88vh);
  }

  .problem-title-image {
    width: min(100%, 43rem);
  }

  .problem-notes {
    gap: min(1.2rem, 2vh);
  }

  .problem-right {
    gap: min(0.8rem, 1.4vh);
    margin-left: min(-0.8rem, -1vh);
  }

  .problem-top {
    grid-template-columns: minmax(0, 1.15fr) minmax(11rem, 0.85fr);
    gap: min(1.2rem, 2vh);
  }

  .competition-note {
    max-height: min(21rem, 37vh);
    object-fit: contain;
  }

  .flyer-strip {
    max-height: min(9rem, 16vh);
    object-fit: contain;
  }

  .problem-asides {
    gap: min(1rem, 1.8vh);
  }

  .problem-aside {
    grid-template-columns: min(2.5rem, 4.5vh) 1fr;
    gap: min(0.7rem, 1.2vh);
    padding-bottom: min(0.65rem, 1.1vh);
  }

  .problem-aside img {
    width: min(2.4rem, 4.3vh);
  }

  .problem-aside p {
    font-size: min(1.45rem, 2.7vh);
  }

  .paper-card,
  .callout-card {
    padding: min(1.4rem, 2.6vh);
  }

  .paper-card p {
    font-size: min(2.2rem, 4.2vh);
  }

  .callout-card {
    grid-template-columns: min(3.6rem, 7vh) 1fr;
    gap: min(1rem, 1.8vh);
  }

  .callout-card img {
    width: min(3.3rem, 6vh);
  }

  .callout-card p {
    font-size: min(1.9rem, 3.6vh);
  }

  .wide-scream {
    width: min(100%, calc(100svh * 1.82));
    margin-top: min(2rem, 3.5vh);
    padding: min(1.2rem, 2vh) 0.5rem 0;
  }

  .wide-scream img {
    width: min(3.3rem, 6vh);
  }

  .wide-scream p {
    font-size: min(4.6rem, 8vh);
    line-height: 0.9;
  }

  .section-heading .poster-title {
    font-size: min(7rem, 10.5vh);
    line-height: 1;
  }

  .system-title-image {
    width: min(100%, 33rem);
  }

  .section-subtitle {
    margin-top: 0.25rem;
    font-size: min(1.8rem, 3.2vh);
  }

  .section-heading-system {
    gap: min(2rem, 3.2vh);
  }

  .sticker-pass {
    width: min(10rem, 18vh);
  }

  .steps {
    gap: min(1.4rem, 2vh);
    margin-top: min(2rem, 3.3vh);
  }

  .step-card {
    min-height: min(17rem, 31vh);
    padding: min(1rem, 1.8vh) 0.7rem;
  }

  .step-card::before {
    inset: min(2.2rem, 4vh) 0.4rem auto;
    height: min(8rem, 14vh);
  }

  .step-number {
    top: min(1rem, 1.8vh);
    width: min(3.2rem, 5.8vh);
    font-size: min(2.1rem, 3.8vh);
  }

  .step-card img {
    height: min(8.5rem, 15vh);
    margin-bottom: -0.6rem;
  }

  .step-card h3 {
    padding: 0.35rem 0.55rem 0.25rem;
    font-size: min(2rem, 3.5vh);
  }

  .step-card p {
    margin-top: min(0.7rem, 1.2vh);
    font-size: min(1rem, 1.8vh);
  }

  .final-strip {
    margin-top: min(2rem, 3.2vh);
    padding: min(0.8rem, 1.4vh) min(1.5rem, 2.8vh);
    font-size: min(4rem, 6.8vh);
  }

  .founders-intro {
    width: min(42rem, 75vh);
    margin-bottom: min(2rem, 3vh);
  }

  .founders-intro .kicker {
    margin-bottom: 0.4rem;
    font-size: min(1.7rem, 3vh);
  }

  .founders-intro h2 {
    font-size: min(2.2rem, 3.7vh);
  }

  .founders-grid {
    grid-template-columns: 0.82fr 1fr 1fr 0.82fr;
    gap: min(1.5rem, 2.4vh);
  }

  .photo-poster > img:first-child {
    height: min(29rem, 51vh);
    aspect-ratio: auto;
  }

  .person-card {
    padding: min(1.4rem, 2.2vh);
  }

  .person-card h3 {
    margin-bottom: min(1.1rem, 1.8vh);
    font-size: min(3.6rem, 6vh);
  }

  .check-list {
    gap: min(0.85rem, 1.5vh);
  }

  .check-list li {
    padding-left: min(1.7rem, 3vh);
    font-size: min(1.05rem, 1.85vh);
  }

  .person-job {
    margin-top: min(1.4rem, 2.2vh);
    font-size: min(2rem, 3.4vh);
  }

  .cta-layout {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.78fr);
    gap: min(4rem, 7vh);
  }

  .cta .poster-title {
    font-size: min(7rem, 11vh);
    line-height: 1.02;
  }

  .cta-title-image {
    width: min(100%, 36rem);
  }

  .cta-copy {
    gap: min(1.2rem, 2vh);
  }

  .moment-list {
    gap: min(0.6rem, 1vh);
  }

  .moment-list li {
    padding-left: min(1.8rem, 3.2vh);
    font-size: min(2rem, 3.5vh);
  }

  .head-note {
    padding: 0.55rem 0.8rem 0.4rem;
    font-size: min(2.4rem, 4vh);
  }

  .call-ticket-image {
    width: min(35rem, 62vh);
  }

  .microcopy {
    margin-top: -0.3rem;
    font-size: min(1rem, 1.8vh);
  }
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0.8rem;
  }

  .brand-logo {
    width: 6.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-smile {
    display: none;
  }

  .section {
    min-height: auto;
    padding-block: 4rem;
  }

  .hero-grid,
  .problem-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .problem-top {
    grid-template-columns: 1fr;
  }

  .hero-side {
    justify-items: start;
  }

  .sticker-main {
    width: min(20rem, 74vw);
  }

  .ticket-button {
    min-height: 4.5rem;
  }

  .hero-ticket-image {
    width: min(32rem, 100%);
  }

  .sticker-pass,
  .cta-star,
  .arrow,
  .tape-one {
    opacity: 0.35;
  }

  .section-heading-system {
    align-items: flex-start;
  }

  .sticker-pass {
    width: clamp(6rem, 22vw, 8rem);
  }

  .wide-scream {
    justify-content: flex-start;
  }

  .wide-scream p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    display: flex;
    gap: 0;
  }

  .brand {
    transform: rotate(-1deg);
  }

  .brand-logo {
    width: min(7.8rem, 40vw);
  }

  .nav-links {
    display: none;
  }

  .poster-title {
    max-width: 100%;
    font-size: clamp(2.8rem, 12.7vw, 4.25rem);
    line-height: 1.06;
    -webkit-text-stroke-width: 0.027em;
    text-shadow:
      1px 2px 0 #e6a000,
      2px 4px 0 #b76c00,
      0 3px 0 var(--yellow-dark),
      0 6px 0 #714000,
      8px 11px 15px rgba(0, 0, 0, 0.55);
  }

  .hero-title {
    font-size: clamp(2.5rem, 10.5vw, 3.35rem);
    line-height: 1.12;
  }

  .hero-title-image {
    width: 92%;
  }

  .hero-copy,
  .lead,
  .lead strong {
    max-width: calc(100vw - 2.5rem);
  }

  .lead {
    font-size: 1rem;
    line-height: 1.35;
  }

  .mixed-title,
  .cta .poster-title,
  .section-heading .poster-title {
    font-size: clamp(2.8rem, 12.4vw, 4.15rem);
  }

  .cta-title-image {
    width: 100%;
  }

  .system-title-image {
    width: 100%;
  }

  .mixed-title {
    color: var(--yellow);
    line-height: 0.9;
  }

  .problem-title-image {
    width: 92%;
  }

  .lead strong {
    display: block;
    width: fit-content;
    max-width: calc(100vw - 2.5rem);
    margin-top: 0.45rem;
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .lead-highlight {
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .poster-title .strip {
    display: block;
    width: fit-content;
  }
  .mobile-only {
    display: block;
  }

  .paper-banner {
    justify-content: flex-start;
  }

  .hero .paper-banner .banner-black {
    color: var(--black);
  }

  .tape-one {
    display: none;
  }

  .hero-star {
    display: none;
  }

  .hero-side {
    grid-template-columns: minmax(7rem, 0.65fr) minmax(0, 1fr);
    align-items: center;
    gap: 0.6rem;
  }

  .sticker-main {
    display: none;
  }

  .hero .paper-banner {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.75rem 1rem;
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }

  .problem-title-line,
  .problem-title-paint {
    color: var(--yellow);
    -webkit-text-stroke-color: var(--yellow);
  }

  .problem-aside {
    grid-template-columns: 1fr;
  }

  .problem-aside img,
  .wide-scream img,
  .sticker-pass,
  .cta-star {
    display: none;
  }

  .wide-scream {
    justify-content: center;
    padding: 0.95rem 0.75rem 0;
  }

  .wide-scream::before {
    width: 100%;
    height: 70%;
  }

  .wide-scream::after {
    right: 6%;
    left: 6%;
  }

  .wide-scream-break {
    display: none;
  }

  .wide-scream p {
    text-align: center;
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1;
  }

  .wide-scream p span {
    display: inline;
  }

  .section-subtitle {
    display: inline;
    width: auto;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .system-subtitle-break {
    display: block;
  }

  .step-card-1 .step-icon,
  .step-card-2 .step-icon,
  .step-card-3 .step-icon,
  .step-card-4 .step-icon {
    margin: 0.9rem auto 0.55rem;
    align-self: center;
  }

  .step-card-1 .step-icon {
    width: min(42%, 5.6rem);
    height: 4.8rem;
  }

  .step-card-2 .step-icon {
    width: min(42%, 5.6rem);
    height: 4.8rem;
  }

  .step-card-3 .step-icon {
    width: min(42%, 5.5rem);
    height: 4.8rem;
  }

  .step-card-4 .step-icon {
    width: min(46%, 6rem);
    height: 4.9rem;
  }

  .callout-card {
    grid-template-columns: 3rem 1fr;
  }

  .callout-card img {
    width: 3rem;
  }

  .steps,
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 17rem;
  }

  .step-card img {
    height: 8.6rem;
  }

  .photo-poster {
    width: min(22rem, 88vw);
  }

  .santi {
    order: 3;
  }

  .founders-grid .person-card:nth-of-type(2) {
    order: 4;
  }

  .person-card h3 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .ticket-button {
    width: 100%;
    font-size: clamp(1.2rem, 8vw, 2rem);
  }

  .hero-ticket-image {
    justify-self: end;
    width: min(12rem, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
