@charset "UTF-8";

:root {
  --cream: #fff8e7;
  --paper: #fffdf6;
  --ink: #173b4d;
  --ink-soft: #31586a;
  --red: #c83e32;
  --red-dark: #9f2e27;
  --gold: #f0b72f;
  --teal: #1f7d80;
  --sky: #9bd7d6;
  --peach: #f5a66d;
  --line: rgba(23, 59, 77, 0.18);
  --shadow: 0 26px 70px rgba(60, 48, 31, 0.15);
  --display: Georgia, "Times New Roman", serif;
  --sans: "Trebuchet MS", "Avenir Next", Avenir, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(240, 183, 47, 0.17), transparent 22rem),
    radial-gradient(circle at 88% 27%, rgba(155, 215, 214, 0.22), transparent 28rem),
    var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  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='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
}

::selection {
  color: var(--paper);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.shell {
  width: min(100% - 2.5rem, 1200px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: 0.3rem;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(23, 59, 77, 0.13);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
}

.wordmark {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.wordmark__spark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--paper);
  background: var(--red);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 4vw, 2.5rem);
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.38rem;
  text-decoration-color: transparent;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.site-nav a:hover {
  color: var(--red);
  text-decoration-color: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(860px, 100svh);
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  place-items: center;
}

.hero::before {
  position: absolute;
  top: 7rem;
  left: -4rem;
  width: 11rem;
  aspect-ratio: 1;
  content: "";
  border: 2px solid var(--red);
  border-radius: 50%;
  opacity: 0.18;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin: 0 0 1.1rem;
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7.6rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero__lede {
  max-width: 39rem;
  margin: 1.8rem 0 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  padding: 0.85rem 1.3rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.105em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-3px) rotate(-0.5deg);
}

.button--primary {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 6px 6px 0 var(--ink);
}

.button--primary:hover {
  background: var(--red-dark);
}

.button--secondary {
  color: var(--ink);
  background: transparent;
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 4px 4px 0 var(--gold);
}

.button--light {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 6px 6px 0 rgba(23, 59, 77, 0.6);
}

.hero__stats {
  display: flex;
  gap: 0;
  margin: 3rem 0 0;
}

.hero__stats div {
  padding-right: 1.5rem;
}

.hero__stats div + div {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.hero__stats dt {
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__stats dd {
  margin: 0.15rem 0 0;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
}

.hero__art {
  position: relative;
  min-height: 36rem;
  isolation: isolate;
}

.sunburst {
  position: absolute;
  z-index: -3;
  top: 50%;
  left: 50%;
  width: min(46rem, 72vw);
  aspect-ratio: 1;
  background: repeating-conic-gradient(
    from -4deg,
    rgba(240, 183, 47, 0.7) 0deg 7deg,
    rgba(240, 183, 47, 0) 7deg 14deg
  );
  border-radius: 50%;
  mask-image: radial-gradient(circle, #000 0 46%, transparent 71%);
  transform: translate(-50%, -50%);
  animation: turn 80s linear infinite;
}

.orbit {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  aspect-ratio: 1.45;
  border: 2px solid rgba(23, 59, 77, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-22deg);
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 0.8rem;
  aspect-ratio: 1;
  content: "";
  background: var(--red);
  border: 3px solid var(--cream);
  border-radius: 50%;
}

.orbit::before {
  top: 10%;
  left: 18%;
}

.orbit::after {
  right: 13%;
  bottom: 18%;
  background: var(--teal);
}

.orbit--one {
  width: 112%;
}

.orbit--two {
  width: 88%;
  opacity: 0.65;
  transform: translate(-50%, -50%) rotate(24deg);
}

.part-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(25rem, 76vw);
  aspect-ratio: 0.84;
  filter: drop-shadow(0 34px 28px rgba(65, 56, 42, 0.22));
  transform: translate(-50%, -50%) rotate(-7deg);
  animation: float 5.5s ease-in-out infinite;
}

.found-part {
  position: absolute;
  inset: 5% 4% 3% 8%;
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(231, 238, 230, 0.94)),
    var(--paper);
  border: 2px solid rgba(23, 59, 77, 0.15);
  border-radius: 57% 43% 46% 54% / 31% 42% 58% 69%;
  box-shadow:
    inset 18px 20px 30px rgba(255, 255, 255, 0.78),
    inset -18px -24px 30px rgba(72, 111, 116, 0.12),
    0 0 0 10px rgba(255, 255, 255, 0.32);
}

.found-part::before {
  position: absolute;
  inset: 12% 12% 16% 14%;
  content: "";
  border: 2px solid rgba(31, 125, 128, 0.15);
  border-radius: inherit;
}

.part-recess {
  position: absolute;
  top: 35%;
  right: 12%;
  width: 43%;
  height: 48%;
  background: linear-gradient(135deg, rgba(199, 216, 210, 0.48), rgba(255, 255, 255, 0.72));
  border: 2px solid rgba(23, 59, 77, 0.13);
  border-radius: 42% 23% 38% 48%;
  box-shadow: inset 8px 10px 18px rgba(40, 78, 83, 0.12);
}

.part-recess::before {
  position: absolute;
  top: -3%;
  left: -36%;
  width: 55%;
  height: 49%;
  content: "";
  background: inherit;
  border: inherit;
  border-right: 0;
  border-radius: 50% 0 0 42%;
}

.part-neck {
  position: absolute;
  right: -10%;
  bottom: 17%;
  width: 23%;
  aspect-ratio: 1;
  background: repeating-radial-gradient(
    circle,
    #e7efea 0 9%,
    #b8cdc8 10% 14%,
    #f8fbf6 15% 22%
  );
  border: 2px solid rgba(23, 59, 77, 0.2);
  border-radius: 48%;
  box-shadow: -7px 7px 13px rgba(40, 78, 83, 0.15);
}

.victory-seal {
  position: absolute;
  z-index: 3;
  right: -1rem;
  bottom: 2.5rem;
  display: grid;
  width: 8.7rem;
  aspect-ratio: 1;
  align-content: center;
  color: var(--paper);
  background: var(--red);
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--red), 0 12px 30px rgba(114, 35, 29, 0.25);
  text-align: center;
  transform: rotate(10deg);
}

.victory-seal::before,
.victory-seal::after {
  position: absolute;
  z-index: -1;
  inset: -0.8rem;
  content: "";
  background: var(--red);
  clip-path: polygon(50% 0, 60% 19%, 79% 8%, 81% 29%, 100% 34%, 84% 50%, 100% 66%, 79% 71%, 79% 93%, 60% 81%, 50% 100%, 40% 81%, 21% 93%, 21% 71%, 0 66%, 16% 50%, 0 34%, 19% 29%, 21% 8%, 40% 19%);
}

.victory-seal::after {
  transform: rotate(16deg);
}

.victory-seal strong,
.victory-seal span {
  position: relative;
  z-index: 2;
  display: block;
}

.victory-seal strong {
  font-family: var(--display);
  font-size: 2.15rem;
  line-height: 1;
}

.victory-seal span {
  margin-top: 0.28rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero__spark {
  position: absolute;
  color: var(--red);
  font-size: 2.4rem;
  line-height: 1;
  animation: twinkle 2.5s ease-in-out infinite;
}

.hero__spark--one {
  top: 8%;
  left: 2%;
}

.hero__spark--two {
  top: 19%;
  right: -4%;
  color: var(--teal);
  font-size: 1.7rem;
  animation-delay: -0.8s;
}

.hero__spark--three {
  bottom: 8%;
  left: 4%;
  color: var(--gold);
  font-size: 2rem;
  animation-delay: -1.4s;
}

.ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  color: var(--paper);
  background: var(--red);
  border-block: 3px solid var(--ink);
  transform: rotate(-1.1deg) scale(1.02);
}

.ticker__track {
  display: flex;
  width: max-content;
  padding: 1rem 0;
  align-items: center;
  animation: marquee 26s linear infinite;
}

.ticker span {
  padding-inline: 2rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.ticker b {
  color: var(--gold);
  font-size: 1.4rem;
}

.poster-section {
  position: relative;
  padding: clamp(7rem, 11vw, 10rem) 0;
}

.section-heading {
  display: grid;
  max-width: 56rem;
  margin: 0 auto clamp(3.5rem, 7vw, 6rem);
  text-align: center;
  justify-items: center;
}

.section-heading h2,
.proof-section h2,
.finale h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 39rem;
  margin: 1.4rem auto 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
}

.poster-card {
  margin: 0;
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.poster-card:nth-child(1) {
  transform: rotate(-1.7deg);
}

.poster-card:nth-child(2) {
  margin-top: 2.3rem;
  transform: rotate(1.2deg);
}

.poster-card:nth-child(3) {
  transform: rotate(-0.8deg);
}

.poster-card:hover {
  z-index: 2;
  transform: translateY(-0.75rem) rotate(0deg);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  padding: 0.65rem;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(23, 59, 77, 0.18);
  box-shadow: var(--shadow), 9px 10px 0 var(--ink);
  text-decoration: none;
}

.poster-frame img,
.poster-placeholder {
  position: absolute;
  inset: 0.65rem;
  width: calc(100% - 1.3rem);
  height: calc(100% - 1.3rem);
}

.poster-frame img {
  z-index: 2;
  object-fit: contain;
  opacity: 0;
  transition: opacity 240ms ease;
}

.poster-frame.has-image img {
  opacity: 1;
}

.poster-frame[aria-disabled="true"] {
  cursor: default;
}

.poster-placeholder {
  display: grid;
  overflow: hidden;
  align-content: center;
  background: var(--red);
  place-items: center;
}

.poster-placeholder::before {
  position: absolute;
  width: 165%;
  aspect-ratio: 1;
  content: "";
  background: repeating-conic-gradient(
    var(--gold) 0deg 8deg,
    transparent 8deg 16deg
  );
  border-radius: 50%;
  opacity: 0.9;
}

.poster-placeholder::after {
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  content: "";
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 248, 231, 0.6);
}

.poster-placeholder__number,
.poster-placeholder__label {
  position: relative;
  z-index: 1;
}

.poster-placeholder__number {
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.poster-placeholder__label {
  margin-top: 0.6rem;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.poster-card--blue .poster-placeholder {
  background: var(--teal);
}

.poster-card--blue .poster-placeholder::before {
  background: repeating-conic-gradient(
    var(--sky) 0deg 8deg,
    transparent 8deg 16deg
  );
}

.poster-card--gold .poster-placeholder {
  background: var(--gold);
}

.poster-card--gold .poster-placeholder::before {
  background: repeating-conic-gradient(
    var(--peach) 0deg 8deg,
    transparent 8deg 16deg
  );
}

.poster-card figcaption {
  display: grid;
  gap: 0.18rem;
  margin-top: 1.5rem;
}

.poster-card figcaption span {
  color: var(--red-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.poster-card figcaption strong {
  font-family: var(--display);
  font-size: 1.45rem;
}

.proof-section {
  position: relative;
  padding: clamp(6rem, 10vw, 9rem) 0 0;
  color: var(--paper);
  background: var(--ink);
  clip-path: polygon(0 3.5rem, 100% 0, 100% 100%, 0 100%);
}

.proof-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.proof-section .eyebrow {
  color: var(--gold);
}

.proof-section__intro > p:last-child {
  max-width: 37rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 253, 246, 0.72);
  font-size: 1.05rem;
}

.proof-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 253, 246, 0.25);
}

.proof-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.4rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(255, 253, 246, 0.25);
}

.proof-list li > span {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.proof-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
}

.proof-list p {
  margin: 0.35rem 0 0;
  color: rgba(255, 253, 246, 0.68);
}

.proclamation {
  position: relative;
  width: min(100% - 2.5rem, 1120px);
  padding: clamp(2.5rem, 7vw, 5rem);
  margin: clamp(5rem, 9vw, 8rem) auto 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
  border: 5px solid var(--cream);
  box-shadow: 0 0 0 3px var(--red);
  text-align: center;
  transform: translateY(2.5rem) rotate(-1deg);
}

.proclamation::before,
.proclamation::after {
  position: absolute;
  width: 9rem;
  aspect-ratio: 1;
  content: "";
  border: 2px solid rgba(23, 59, 77, 0.28);
  border-radius: 50%;
}

.proclamation::before {
  top: -5rem;
  left: -3rem;
}

.proclamation::after {
  right: -4rem;
  bottom: -6rem;
  width: 12rem;
}

.proclamation > span {
  position: absolute;
  top: -2.8rem;
  left: 1rem;
  color: rgba(200, 62, 50, 0.33);
  font-family: var(--display);
  font-size: 12rem;
  line-height: 1;
}

.proclamation p {
  position: relative;
  z-index: 1;
  max-width: 16ch;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.proclamation footer {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.finale {
  padding: clamp(8rem, 13vw, 12rem) 0 clamp(6rem, 10vw, 9rem);
  color: var(--paper);
  background: var(--red);
}

.finale__inner {
  position: relative;
  display: grid;
  text-align: center;
  justify-items: center;
}

.finale .eyebrow {
  color: var(--gold);
}

.finale h2 {
  max-width: 13ch;
}

.finale__inner > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.4rem auto 2rem;
  color: rgba(255, 253, 246, 0.83);
  font-family: var(--display);
  font-size: 1.2rem;
}

.finale__burst {
  display: grid;
  width: 4rem;
  aspect-ratio: 1;
  margin-bottom: 2rem;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(240, 183, 47, 0.24);
  font-size: 1.8rem;
  animation: twinkle 2.5s ease-in-out infinite;
}

.site-footer {
  color: rgba(255, 253, 246, 0.72);
  background: var(--red-dark);
}

.site-footer__inner {
  display: flex;
  min-height: 6rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper);
  font-weight: 800;
  text-underline-offset: 0.3rem;
}

.celebration-layer {
  position: fixed;
  z-index: 999;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  top: -2rem;
  left: 50%;
  width: 0.72rem;
  height: 1.15rem;
  background: var(--gold);
  animation: confetti-fall 4.2s cubic-bezier(0.12, 0.6, 0.3, 1) forwards;
}

.confetti-piece:nth-child(5n + 2) {
  background: var(--red);
}

.confetti-piece:nth-child(5n + 3) {
  background: var(--teal);
}

.confetti-piece:nth-child(5n + 4) {
  background: var(--sky);
}

.confetti-piece:nth-child(5n + 5) {
  background: var(--peach);
}

.confetti-piece.shape-round {
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
}

.confetti-piece.shape-star {
  aspect-ratio: 1;
  height: auto;
  clip-path: polygon(50% 0, 61% 36%, 100% 38%, 69% 60%, 80% 100%, 50% 76%, 20% 100%, 31% 60%, 0 38%, 39% 36%);
}

.confetti-piece:nth-child(12n + 1) { left: 3%; --drift: 8vw; --spin: 680deg; animation-delay: -0.2s; }
.confetti-piece:nth-child(12n + 2) { left: 12%; --drift: -5vw; --spin: -540deg; animation-delay: 0.25s; }
.confetti-piece:nth-child(12n + 3) { left: 21%; --drift: 11vw; --spin: 760deg; animation-delay: -0.45s; }
.confetti-piece:nth-child(12n + 4) { left: 31%; --drift: -8vw; --spin: -810deg; animation-delay: 0.4s; }
.confetti-piece:nth-child(12n + 5) { left: 40%; --drift: 4vw; --spin: 620deg; animation-delay: 0.05s; }
.confetti-piece:nth-child(12n + 6) { left: 49%; --drift: -11vw; --spin: -700deg; animation-delay: 0.55s; }
.confetti-piece:nth-child(12n + 7) { left: 58%; --drift: 7vw; --spin: 900deg; animation-delay: -0.1s; }
.confetti-piece:nth-child(12n + 8) { left: 66%; --drift: -3vw; --spin: -650deg; animation-delay: 0.34s; }
.confetti-piece:nth-child(12n + 9) { left: 74%; --drift: 10vw; --spin: 780deg; animation-delay: -0.35s; }
.confetti-piece:nth-child(12n + 10) { left: 82%; --drift: -9vw; --spin: -720deg; animation-delay: 0.48s; }
.confetti-piece:nth-child(12n + 11) { left: 90%; --drift: 5vw; --spin: 850deg; animation-delay: -0.15s; }
.confetti-piece:nth-child(12n + 12) { left: 97%; --drift: -10vw; --spin: -600deg; animation-delay: 0.18s; }

.js .reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.is-celebrating .victory-seal {
  animation: seal-pop 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-7deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-4deg) translateY(-0.8rem); }
}

@keyframes turn {
  to { transform: translate(-50%, -50%) rotate(1turn); }
}

@keyframes twinkle {
  0%, 100% { transform: scale(0.9) rotate(-5deg); opacity: 0.62; }
  50% { transform: scale(1.15) rotate(7deg); opacity: 1; }
}

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

@keyframes confetti-fall {
  0% { transform: translate3d(0, -5vh, 0) rotate(0deg); opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translate3d(var(--drift), 110vh, 0) rotate(var(--spin)); opacity: 0; }
}

@keyframes seal-pop {
  0%, 100% { transform: rotate(10deg) scale(1); }
  45% { transform: rotate(-5deg) scale(1.2); }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 9rem;
  }

  .hero__grid,
  .proof-section__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__copy .eyebrow,
  .hero__actions,
  .hero__stats {
    justify-content: center;
  }

  .hero h1,
  .hero__lede {
    margin-inline: auto;
  }

  .hero__art {
    width: min(100%, 37rem);
    min-height: 34rem;
    margin-inline: auto;
  }

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

  .poster-card:nth-child(3) {
    width: calc(50% - 0.8rem);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .proof-section__intro {
    max-width: 47rem;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 1.5rem, 1200px);
  }

  .site-header__inner {
    min-height: 4.4rem;
  }

  .site-nav a:first-child {
    display: none;
  }

  .hero {
    padding-top: 7.5rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 17vw, 5.5rem);
  }

  .hero__lede {
    font-size: 1.08rem;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero__stats {
    display: grid;
    gap: 0.8rem;
  }

  .hero__stats div,
  .hero__stats div + div {
    padding: 0;
    border: 0;
  }

  .hero__art {
    min-height: 28rem;
  }

  .part-stage {
    width: min(21rem, 78vw);
  }

  .victory-seal {
    right: 0.5rem;
    bottom: 2rem;
    width: 7rem;
  }

  .poster-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .poster-card:nth-child(1),
  .poster-card:nth-child(2),
  .poster-card:nth-child(3) {
    width: 100%;
    margin-top: 0;
    grid-column: auto;
  }

  .poster-card:nth-child(2) {
    transform: rotate(1deg);
  }

  .proof-section {
    clip-path: polygon(0 1.7rem, 100% 0, 100% 100%, 0 100%);
  }

  .proof-section__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .proof-list li {
    grid-template-columns: 2.7rem 1fr;
    gap: 0.9rem;
  }

  .proclamation {
    width: min(100% - 1.5rem, 1120px);
  }

  .site-footer__inner {
    display: grid;
    gap: 0.25rem;
    padding-block: 1.2rem;
    text-align: center;
    justify-items: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .celebration-layer {
    display: none;
  }

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

@media print {
  .site-header,
  .hero__actions,
  .ticker,
  .celebration-layer,
  .finale,
  .site-footer {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  body::before {
    display: none;
  }

  .poster-section,
  .proof-section {
    padding: 2rem 0;
  }

  .proof-section {
    color: #000;
    background: #fff;
    clip-path: none;
  }
}
