:root {
  --bg: #050608;
  --ink: #f8fbff;
  --muted: #a7b0bd;
  --panel: rgba(13, 17, 24, 0.78);
  --panel-strong: rgba(18, 24, 34, 0.92);
  --line: rgba(255, 255, 255, 0.14);
  --green: #35f5a8;
  --cyan: #42d8ff;
  --peach: #ff8f4a;
  --red: #ff3d57;
  --yellow: #ffe45f;
  --glow-x: 50vw;
  --glow-y: 40vh;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(53, 245, 168, 0.18), transparent 26rem),
    radial-gradient(circle at 12% 18%, rgba(255, 61, 87, 0.2), transparent 22rem),
    linear-gradient(135deg, #050608 0%, #0c1117 42%, #080909 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  min-width: 320px;
  overflow-x: hidden;
}

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

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

.energy-field {
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

.page-shell::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.page-shell {
  min-height: 100svh;
  position: relative;
}

.topbar {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(5, 6, 8, 0.72);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  height: 64px;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.34);
  transform-origin: left center;
  width: 150px;
}

.brand span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  color: rgba(248, 251, 255, 0.78);
}

.nav a:hover {
  color: var(--green);
}

.button {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  white-space: nowrap;
}

button.button {
  cursor: pointer;
  font: inherit;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-color: transparent;
  box-shadow: 0 14px 44px rgba(53, 245, 168, 0.25);
  color: #03100b;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  display: grid;
  gap: clamp(28px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.04fr) minmax(310px, 0.96fr);
  min-height: calc(100svh - 34px);
  margin-inline: auto;
  max-width: 1420px;
  padding: clamp(22px, 4.5vw, 58px) clamp(20px, 5vw, 76px) 44px;
  position: relative;
  width: 100%;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  align-items: center;
  color: var(--green);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0.16em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 22px var(--green);
  content: "";
  height: 9px;
  width: 9px;
}

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

h1 {
  font-size: clamp(3.4rem, 8vw, 8.8rem);
  letter-spacing: 0;
  line-height: 0.86;
  margin-bottom: 24px;
  max-width: 9ch;
  text-transform: uppercase;
}

.hero-copy > p {
  color: #d8dde6;
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  max-width: 710px;
}

.stat {
  border-left: 2px solid var(--green);
  padding: 4px 0 4px 16px;
}

.stat strong {
  display: block;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
  margin-top: 8px;
}

.hero-visual {
  align-items: center;
  display: grid;
  min-height: 680px;
  position: relative;
  transform: translateY(-58px);
}

.logo-aura {
  animation: logoPulse 4.8s ease-in-out infinite;
  filter: drop-shadow(0 0 44px rgba(53, 245, 168, 0.35));
  left: 50%;
  opacity: 0.28;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 520px);
}

.can-stage {
  align-items: center;
  display: grid;
  height: min(82vh, 760px);
  isolation: isolate;
  justify-items: center;
  position: relative;
  transform-style: flat;
}

.can-stage::before,
.can-stage::after {
  border: 1px solid rgba(66, 216, 255, 0.38);
  border-radius: 50%;
  content: "";
  height: min(64vw, 460px);
  position: absolute;
  transform: rotateX(68deg) rotateZ(0deg);
  width: min(64vw, 460px);
  z-index: 1;
}

.can-stage::before {
  animation: orbit 8s linear infinite;
  box-shadow: 0 0 42px rgba(66, 216, 255, 0.16);
}

.can-stage::after {
  animation: orbit 11s linear infinite reverse;
  border-color: rgba(255, 143, 74, 0.44);
  height: min(78vw, 560px);
  width: min(78vw, 560px);
}

.can-model {
  animation: floatCan 4.2s ease-in-out infinite;
  filter: drop-shadow(24px 34px 30px rgba(0, 0, 0, 0.46)) drop-shadow(0 0 42px rgba(53, 245, 168, 0.24));
  height: min(78vh, 660px);
  position: relative;
  transform: translateY(0);
  width: min(44vw, 400px);
  z-index: 3;
}

.can-model::before {
  display: none;
}

.can-model::after {
  display: none;
}

.can-3d {
  background: transparent;
  height: 100%;
  min-height: 560px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.can-3d::part(default-progress-bar) {
  display: none;
}

.can-shadow {
  background: radial-gradient(ellipse, rgba(53, 245, 168, 0.34), rgba(66, 216, 255, 0.12) 36%, rgba(0, 0, 0, 0.08) 56%, transparent 72%);
  bottom: 4%;
  filter: blur(14px);
  height: 118px;
  opacity: 0.9;
  position: absolute;
  width: min(62vw, 460px);
  z-index: 0;
}

.badge {
  backdrop-filter: blur(14px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  color: #eaf0f8;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 14px 16px;
  position: absolute;
  z-index: 8;
}

.badge strong {
  color: var(--green);
  display: block;
  font-size: 1.15rem;
}

.badge.top {
  right: -9%;
  top: 17%;
}

.badge.bottom {
  bottom: 18%;
  left: -9%;
}

.scroll-hint {
  align-items: center;
  bottom: 66px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 10px;
  left: clamp(20px, 5vw, 76px);
  position: absolute;
  text-transform: uppercase;
  z-index: 6;
}

.scroll-hint span {
  animation: bounce 1.4s ease-in-out infinite;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  height: 30px;
  place-items: center;
  width: 30px;
}

.section {
  margin-inline: auto;
  max-width: 1420px;
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 76px);
  position: relative;
  width: 100%;
}

.section.alt {
  background: transparent;
}

.section-heading {
  max-width: 820px;
}

.section-heading h2 {
  font-size: clamp(2.05rem, 4.1vw, 4.2rem);
  letter-spacing: 0;
  line-height: 1.14;
  margin-bottom: 18px;
  max-width: 13ch;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 760px;
}

.section-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.flavor-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.flavor,
.step,
.world-item,
.partner {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
}

.flavor {
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.flavor::before {
  background: var(--accent);
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
}

.flavor h3,
.step h3,
.world-item h3 {
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.08;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.flavor p,
.step p,
.world-item p {
  color: var(--muted);
}

.flavor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #dfe6ef;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 10px;
}

.mechanic {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
}

.contest-button {
  margin-top: 22px;
}

.contest-button-lg {
  box-shadow: 0 18px 58px rgba(53, 245, 168, 0.3);
  font-size: 1.08rem;
  min-height: 62px;
  padding-inline: 34px;
  width: min(100%, 360px);
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr;
  padding: 22px;
}

.step-index {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 8px;
  color: #03100b;
  display: grid;
  font-size: 1.1rem;
  font-weight: 1000;
  height: 44px;
  place-items: center;
  width: 44px;
}

.prize-panel {
  align-self: stretch;
  background:
    linear-gradient(135deg, rgba(53, 245, 168, 0.14), rgba(255, 61, 87, 0.14)),
    var(--panel-strong);
  border: 1px solid rgba(53, 245, 168, 0.28);
  border-radius: 8px;
  display: grid;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  position: relative;
}

.prize-panel img {
  bottom: -14%;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.35));
  opacity: 0.26;
  position: absolute;
  right: -8%;
  width: min(56vw, 380px);
}

.prize-panel h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.96;
  margin-bottom: 18px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.prize-panel p,
.prize-panel .button {
  position: relative;
  z-index: 1;
}

.camp-section {
  padding-top: clamp(58px, 7vw, 96px);
}

.camp-card {
  background: rgba(10, 14, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.35);
  display: grid;
  overflow: hidden;
}

.camp-card > img {
  aspect-ratio: 1140 / 350;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.camp-copy {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(24px, 4vw, 38px);
}

.camp-copy .eyebrow,
.camp-copy h2,
.camp-copy p {
  grid-column: 1;
}

.camp-copy h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  margin-bottom: 0;
  text-transform: uppercase;
}

.camp-copy p:not(.eyebrow) {
  color: var(--muted);
  max-width: 720px;
}

.camp-copy .hero-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  justify-content: flex-end;
  margin-top: 0;
}

.video-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.video-card {
  background:
    linear-gradient(135deg, rgba(53, 245, 168, 0.08), rgba(66, 216, 255, 0.04)),
    rgba(10, 14, 20, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  position: relative;
}

.video-card::before {
  background: linear-gradient(90deg, var(--green), var(--cyan));
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
  z-index: 1;
}

.video-card iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  width: 100%;
}

.video-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.world-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  margin-top: 42px;
}

.social-showcase {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 42px);
  margin-top: 34px;
}

.social-tile {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  display: grid;
  height: 78px;
  justify-items: center;
  padding: 12px;
  place-items: center;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
  width: 78px;
}

.social-tile:hover {
  box-shadow: 0 22px 60px rgba(53, 245, 168, 0.16);
  transform: translateY(-3px);
}

.social-tile img {
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.32));
  height: 42px;
  width: 42px;
}

.social-tile span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.social-tile.instagram {
  background:
    radial-gradient(circle at 28% 102%, #ffd66b 0 20%, transparent 42%),
    radial-gradient(circle at 18% 8%, #7b4dff 0 24%, transparent 46%),
    linear-gradient(135deg, #ff355d, #bd2aff 46%, #ff8a00);
}

.social-tile.youtube {
  background: #ff0033;
}

.social-tile.tiktok {
  background:
    radial-gradient(circle at 66% 30%, rgba(255, 0, 80, 0.32), transparent 32%),
    radial-gradient(circle at 35% 72%, rgba(37, 244, 238, 0.28), transparent 34%),
    #050507;
}

.world-item {
  min-height: 250px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.world-item.featured {
  background:
    linear-gradient(145deg, rgba(66, 216, 255, 0.16), rgba(255, 143, 74, 0.12)),
    var(--panel);
}

.world-item .mini-logo {
  bottom: -28px;
  opacity: 0.16;
  position: absolute;
  right: -20px;
  width: 180px;
}

.partners {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
}

.partner {
  align-items: center;
  color: #dce5ef;
  display: flex;
  font-size: 0.92rem;
  font-weight: 900;
  justify-content: center;
  min-height: 74px;
  padding: 14px;
  text-align: center;
}

.footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1420px;
  padding: 30px clamp(18px, 6vw, 92px);
  width: 100%;
}

.footer a {
  color: #e7edf6;
  font-weight: 800;
}

.modal-backdrop {
  align-items: center;
  background: rgba(3, 5, 8, 0.76);
  backdrop-filter: blur(18px);
  display: grid;
  inset: 0;
  padding: 18px;
  position: fixed;
  z-index: 40;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  background:
    linear-gradient(135deg, rgba(53, 245, 168, 0.12), rgba(66, 216, 255, 0.07)),
    rgba(10, 14, 20, 0.96);
  border: 1px solid rgba(53, 245, 168, 0.28);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
  margin-inline: auto;
  max-width: 520px;
  padding: clamp(26px, 5vw, 42px);
  position: relative;
  width: min(100%, 520px);
}

.modal h2 {
  font-size: clamp(2rem, 5vw, 3.45rem);
  line-height: 1;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.modal p:not(.eyebrow) {
  color: var(--muted);
}

.modal-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 1.5rem;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
}

.code-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.code-form label {
  color: #dce5ef;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.code-form input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-size: 1.08rem;
  min-height: 58px;
  outline: none;
  padding: 0 16px;
  text-transform: uppercase;
}

.code-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(53, 245, 168, 0.14);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes floatCan {
  0%,
  100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(14px);
  }
}

@keyframes orbit {
  to {
    transform: rotateX(68deg) rotateZ(360deg);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.94);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
  }

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

  .hero {
    padding-top: 44px;
  }

  .hero-visual {
    grid-row: 1;
    min-height: 560px;
    transform: translateY(-34px);
  }

  .hero-copy {
    grid-row: 2;
  }

  .flavor-grid,
  .video-grid,
  .world-grid {
    grid-template-columns: 1fr;
  }

  .camp-copy {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .camp-copy .hero-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 50% 18%, rgba(53, 245, 168, 0.16), transparent 18rem),
      linear-gradient(135deg, #050608 0%, #0c1117 48%, #080909 100%);
  }

  .topbar {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    min-height: 0;
    padding: 10px 14px;
    position: sticky;
  }

  .brand img {
    height: 46px;
    transform: scale(1.18);
    width: 126px;
  }

  .nav {
    flex: 0 0 auto;
    gap: 8px;
  }

  .nav .button {
    font-size: 0.82rem;
    min-height: 38px;
    padding-inline: 13px;
  }

  .nav a:not(.button) {
    display: none;
  }

  .hero {
    gap: 12px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px 16px 34px;
  }

  .hero-copy {
    grid-row: 1;
  }

  .eyebrow {
    font-size: 0.7rem;
    gap: 8px;
    letter-spacing: 0.13em;
    margin-bottom: 14px;
  }

  .eyebrow::before {
    height: 7px;
    width: 7px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.25rem);
    line-height: 0.9;
    margin-bottom: 16px;
    max-width: 8ch;
  }

  .hero-copy > p {
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-actions .button {
    min-height: 50px;
    width: 100%;
  }

  .section-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 1.1;
    max-width: 11ch;
  }

  .section-heading p {
    font-size: 0.98rem;
  }

  .hero-stats {
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 2px solid var(--green);
    border-radius: 8px;
    padding: 11px 9px;
  }

  .stat strong {
    font-size: 1.28rem;
  }

  .stat span {
    font-size: 0.68rem;
    line-height: 1.25;
    margin-top: 6px;
  }

  .hero-visual {
    grid-row: 2;
    min-height: 410px;
    transform: translateY(-6px);
  }

  .logo-aura {
    opacity: 0.22;
    width: min(110vw, 390px);
  }

  .can-stage {
    height: 410px;
  }

  .can-stage::before {
    height: 280px;
    width: 280px;
  }

  .can-stage::after {
    height: 340px;
    width: 340px;
  }

  .can-model {
    height: 390px;
    width: min(78vw, 286px);
  }

  .can-3d {
    min-height: 374px;
  }

  .can-shadow {
    bottom: 4px;
    height: 82px;
    width: min(82vw, 320px);
  }

  .badge {
    font-size: 0.7rem;
    max-width: 142px;
    padding: 9px 10px;
  }

  .badge strong {
    font-size: 0.95rem;
  }

  .badge.top {
    right: 4px;
    top: 12%;
  }

  .badge.bottom {
    bottom: 9%;
    left: 4px;
  }

  .scroll-hint {
    bottom: 10px;
    display: inline-flex;
    font-size: 0.72rem;
    left: 16px;
  }

  .section {
    padding: 58px 16px;
  }

  .flavor,
  .step,
  .world-item {
    padding: 20px;
  }

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

  .contest-button-lg {
    width: 100%;
  }

  .prize-panel {
    padding: 24px 20px;
  }

  .prize-panel h2,
  .camp-copy h2,
  .modal h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1.05;
  }

  .camp-section {
    padding-top: 46px;
  }

  .camp-card > img {
    aspect-ratio: 390 / 260;
    object-position: center;
  }

  .camp-copy {
    gap: 12px;
    padding: 20px;
  }

  .video-grid {
    gap: 14px;
    margin-top: 28px;
  }

  .social-showcase {
    gap: 14px;
    justify-content: center;
  }

  .social-tile {
    height: 68px;
    width: 68px;
  }

  .social-tile img {
    height: 36px;
    width: 36px;
  }

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

  .footer {
    padding: 26px 16px;
  }

  .modal-backdrop {
    align-items: end;
    padding: 12px;
  }

  .modal {
    padding: 24px 18px;
  }
}

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