/* ============================================================
   NEXT DOORS — minimal, short, fast
   ============================================================ */

:root {
  --cream: #F5F1E9;
  --ink: #131311;
  --ink-60: rgba(19, 19, 17, 0.6);
  --ink-35: rgba(19, 19, 17, 0.35);
  --ink-12: rgba(19, 19, 17, 0.12);
  --accent: #FF4D26;
  --accent-deep: #E23B16;
  --paper: #FBF8F1;
  --font: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --radius-xl: 44px;
  --radius-md: 22px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

[hidden] { display: none !important; }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.challenge-list li.reveal:nth-child(2) { transition-delay: .08s; }
.challenge-list li.reveal:nth-child(3) { transition-delay: .16s; }
.challenge-list li.reveal:nth-child(4) { transition-delay: .24s; }

/* ---------- pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: transform .3s var(--ease), background .2s ease, color .2s ease;
}
.pill:hover { transform: scale(1.04); }
.pill:active { transform: scale(.97); }
.pill-light { background: rgba(251, 248, 241, 0.16); border-color: var(--paper); color: var(--paper); backdrop-filter: blur(4px); }
.pill-light:hover { background: var(--paper); color: var(--ink); }
.pill-dark { background: var(--ink); color: var(--paper); border: none; }
.pill-dark:hover { background: var(--accent); }
.pill-big { width: 100%; padding: 20px 28px; font-size: 18px; border-radius: 100px; }
.pill:disabled { opacity: .6; pointer-events: none; }
.pill-small { padding: 9px 20px; font-size: 15px; }

/* ---------- sticky nav ---------- */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(16px, 3vw, 28px);
  background: rgba(245, 241, 233, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
}
.sticky-nav.is-stuck { transform: translateY(0); }
.sticky-wordmark {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* ============================================================
   HERO CARD
   ============================================================ */
.hero { padding: 14px; }
.hero-card {
  position: relative;
  min-height: calc(100svh - 28px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(178deg, #FF6A3D 0%, var(--accent) 42%, #D93A12 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* halftone dots */
.hero-halftone {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(19, 19, 17, 0.32) 1.1px, transparent 1.6px),
    radial-gradient(circle, rgba(251, 248, 241, 0.14) 1px, transparent 1.5px);
  background-size: 7px 7px, 11px 11px;
  background-position: 0 0, 4px 6px;
  mix-blend-mode: multiply;
  pointer-events: none;
}
/* giant door line-art on the right — clickable, leads to the form */
.hero-door-art {
  position: absolute;
  right: clamp(-60px, 4vw, 120px);
  bottom: -6%;
  width: clamp(260px, 30vw, 430px);
  height: 82%;
  z-index: 1;
  display: block;
}
.hda-frame {
  position: absolute;
  inset: 0;
  display: block;
  border: 3px solid rgba(251, 248, 241, 0.85);
  border-bottom: none;
  border-radius: 200px 200px 0 0;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.hda-frame::before {
  content: "";
  position: absolute;
  inset: 26px 26px 0;
  border: 2.5px solid rgba(251, 248, 241, 0.45);
  border-bottom: none;
  border-radius: 170px 170px 0 0;
  transition: border-color .35s var(--ease);
}
.hda-knob {
  position: absolute;
  left: 54px;
  top: 56%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
}
.hda-cta {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translateX(-50%) rotate(-3deg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-weight: 800;
  font-size: clamp(17px, 1.8vw, 21px);
  padding: 12px 22px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 10px 26px -12px rgba(19, 19, 17, 0.5);
  transition: transform .35s var(--ease), background .2s ease, color .2s ease;
}
.hda-cta svg { transition: transform .35s var(--ease); }
.hero-door-art:hover .hda-cta { transform: translateX(-50%) rotate(2deg) scale(1.08); background: var(--ink); color: var(--paper); }
.hero-door-art:hover .hda-cta svg { transform: translateX(3px); }
.hero-door-art:hover .hda-frame { background: rgba(251, 248, 241, 0.12); }
.hero-door-art:hover .hda-frame::before { border-color: rgba(251, 248, 241, 0.75); }

.hero-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 3.4vw, 40px) clamp(22px, 4vw, 48px);
}
.wordmark {
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.03em;
  color: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 0 clamp(22px, 4vw, 48px) clamp(30px, 4.6vw, 56px);
  max-width: 900px;
}
.hero-rotator {
  color: var(--paper);
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 20px);
  margin-bottom: 10px;
  opacity: .92;
}
.hero-rotator span { display: inline-block; }
.hero-rotator span.is-swapping { animation: swap .5s var(--ease); }
@keyframes swap {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-copy h1 {
  color: var(--paper);
  font-weight: 700;
  font-size: clamp(42px, 7.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 26px;
}
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--paper);
  border: 2px solid rgba(251, 248, 241, 0.75);
  padding: 9px 18px;
  border-radius: 100px;
}
.tag-solid { background: var(--ink); border-color: var(--ink); }

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) 24px clamp(40px, 6vw, 80px);
}
.intro p {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.32;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-align: center;
  color: var(--ink);
}
.intro strong { font-weight: 800; }

/* ============================================================
   PRIZES + REQUIREMENTS
   ============================================================ */
.prizes {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px) 24px clamp(50px, 7vw, 90px);
}
.prizes-title {
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.prizes-sub {
  color: var(--ink-60);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 500;
  margin-top: 12px;
}
.prizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(26px, 4vw, 40px);
}
.prize-card {
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--paper);
  transition: transform .3s var(--ease);
}
.prize-card:hover { transform: translateY(-4px); }
.prize-card-first { background: var(--ink); color: var(--paper); }
.prize-card-first .prize-place { color: var(--accent); }
.prize-place {
  font-weight: 800;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.prize-amount {
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.prize-card p { font-size: 15px; color: inherit; opacity: .72; }
.requirements {
  margin-top: clamp(26px, 4vw, 40px);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 30px);
}
.requirements h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.requirements ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}
.requirements li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  color: var(--ink-60);
  font-weight: 500;
}
.requirements li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 12.5l3.2 3.2L17 8.5' fill='none' stroke='%23FF4D26' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ============================================================
   CHALLENGES
   ============================================================ */
.challenges {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px) 24px clamp(50px, 7vw, 90px);
}
.section-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-60);
  margin-bottom: 18px;
}
.challenges-intro {
  max-width: 640px;
  font-size: 16px;
  color: var(--ink-60);
  font-weight: 500;
  margin-bottom: clamp(22px, 3.4vw, 34px);
}
.challenges-intro a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.challenges-intro a:hover { color: var(--accent-deep); }
.challenge-list li {
  display: grid;
  grid-template-columns: 44px 92px 1fr 1.2fr;
  gap: clamp(14px, 3vw, 40px);
  align-items: baseline;
  padding: 22px 0;
  border-top: 2px solid var(--ink);
}
.ch-num {
  font-weight: 800;
  font-size: clamp(19px, 2.4vw, 26px);
  letter-spacing: -0.02em;
  color: var(--accent);
}
.challenge-list li:last-child { border-bottom: 2px solid var(--ink); }
.challenge-list h2 { transition: color .2s ease; }
.challenge-list li:hover h2 { color: var(--accent); }
.ch-sdg {
  font-weight: 800;
  font-size: 14px;
  color: var(--paper);
  background: var(--accent);
  padding: 5px 10px;
  border-radius: 100px;
  text-align: center;
  white-space: nowrap;
}
.challenge-list h2 {
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.challenge-list p { color: var(--ink-60); font-size: 15.5px; }

/* ============================================================
   TIMELINE MARQUEE
   ============================================================ */
.strip {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 16px 0;
  background: var(--paper);
}
.strip-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.strip-item svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}
.strip-arrow {
  font-style: normal;
  color: var(--accent);
  display: inline-flex;
}
.strip-arrow svg { width: 17px; height: 17px; }
.strip-hot { color: var(--accent); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PITCH GUIDELINES
   ============================================================ */
.pitchinfo {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 90px) 24px 0;
}
.pitchinfo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pitch-card {
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 30px);
  background: var(--paper);
}
.pitch-card h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.pitch-card ul { display: flex; flex-direction: column; gap: 10px; }
.pitch-card li {
  position: relative;
  padding-left: 24px;
  font-size: 15.5px;
  color: var(--ink-60);
  font-weight: 500;
}
.pitch-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}
.pitch-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 2px solid var(--ink-12);
  font-size: 13.5px;
  color: var(--ink-35);
  font-weight: 500;
}

/* ============================================================
   DOOR + FORM
   ============================================================ */
.apply {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 24px clamp(80px, 10vw, 130px);
  text-align: center;
}
.apply-title {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}
.accent { color: var(--accent); }
.apply-sub {
  color: var(--ink-60);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  margin-top: 14px;
}

.door-zone {
  display: flex;
  justify-content: center;
  padding: clamp(40px, 6vw, 64px) 0 0;
  perspective: 1400px;
}
.door {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  width: min(64vw, 250px);
  aspect-ratio: 250 / 380;
  perspective: 1200px;
}
.door-glow {
  position: absolute;
  inset: -6% -10%;
  background: radial-gradient(ellipse at 50% 60%, rgba(255, 77, 38, 0.55) 0%, rgba(255, 77, 38, 0) 65%);
  opacity: 0;
  transition: opacity .9s var(--ease) .15s;
  pointer-events: none;
}
.door-leaf {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--ink);
  border-radius: 125px 125px 14px 14px;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform 1s var(--ease);
  box-shadow: 0 24px 50px -22px rgba(19, 19, 17, 0.45);
}
.door-inset {
  position: absolute;
  inset: 18px;
  border: 2.5px solid rgba(251, 248, 241, 0.35);
  border-radius: 108px 108px 8px 8px;
  pointer-events: none;
}
.door-knob {
  position: absolute;
  right: 26px;
  top: 55%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent);
  transition: background .2s ease;
}
.door-tag {
  position: absolute;
  left: 50%;
  bottom: 26%;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--paper);
  color: var(--ink);
  border: 1.6px solid var(--ink);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 13px;
  white-space: nowrap;
  transition: transform .3s var(--ease);
}
.door:hover .door-tag { transform: translateX(-50%) rotate(3deg) scale(1.06); }
.door:hover .door-leaf { transform: rotateY(-16deg); }
.door:hover .door-glow { opacity: .5; }

.door.is-open .door-leaf { transform: rotateY(-104deg); }
.door.is-open .door-glow { opacity: 1; }
.door.is-open .door-tag { opacity: 0; }
.door.is-open { pointer-events: none; }

/* form reveal */
.form-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 1s var(--ease), opacity .7s ease .2s;
}
.form-wrap.is-shown { grid-template-rows: 1fr; opacity: 1; }
.form-inner { overflow: hidden; min-height: 0; }

.form {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 40px);
  margin-top: clamp(30px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}
.f-row { display: flex; flex-direction: column; gap: 7px; }
.f-half { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.f-half > div { display: flex; flex-direction: column; gap: 7px; }
.f-row label { font-weight: 700; font-size: 14.5px; }
.f-row input, .f-row select, .f-row textarea {
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--ink-12);
  border-radius: 12px;
  padding: 13px 15px;
  outline: none;
  transition: border-color .2s ease;
  width: 100%;
}
.f-row input::placeholder, .f-row textarea::placeholder { color: var(--ink-35); }
.f-row input:focus, .f-row select:focus, .f-row textarea:focus { border-color: var(--ink); }
.f-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23131311' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.f-row textarea { resize: vertical; min-height: 96px; }

/* file upload */
.f-file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 2px dashed var(--ink-35);
  border-radius: 12px;
  padding: 16px 15px;
  color: var(--ink-60);
  background: var(--cream);
  transition: border-color .2s ease, background .2s ease;
}
.f-file:hover { border-color: var(--ink); color: var(--ink); }
.f-file input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.f-file svg { flex-shrink: 0; }
.f-file-text { display: flex; flex-direction: column; gap: 2px; font-weight: 700; font-size: 15px; }
.f-file-text em { font-style: normal; font-weight: 500; font-size: 13px; color: var(--ink-35); }
.f-file.is-filled {
  border-style: solid;
  border-color: var(--ink);
  color: var(--ink);
  background: var(--paper);
}
.f-file.is-filled .f-file-text em { color: var(--accent); font-weight: 700; }
.f-file.is-error { border-color: var(--accent); color: var(--accent); }
.f-check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink-60);
  line-height: 1.45;
  cursor: pointer;
}
.f-check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--accent); flex-shrink: 0; }
.f-note { font-size: 13px; color: var(--ink-35); text-align: center; }

.form-success {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
  margin-top: clamp(30px, 5vw, 48px);
  padding: 56px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success svg { color: var(--accent); }
.form-success h3 { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.form-success p { color: rgba(251, 248, 241, 0.7); max-width: 340px; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px clamp(70px, 10vw, 120px);
  text-align: center;
}
.partners-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-60);
  margin-bottom: clamp(26px, 4vw, 38px);
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 7vw, 70px);
  flex-wrap: wrap;
}
.partners-row a { display: inline-flex; }
.partners-row img {
  width: auto;
  filter: grayscale(1);
  opacity: 0.8;
  transition: filter .3s ease, opacity .3s ease, transform .3s var(--ease);
}
.partners-row img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-3px);
}
.partner-fm { height: clamp(56px, 8vw, 76px); }
.partner-lemons { height: clamp(38px, 5.5vw, 52px); }
.partner-ikigai { height: clamp(40px, 6vw, 56px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 14px;
  padding: clamp(48px, 7vw, 90px) clamp(24px, 4vw, 48px) 0;
  overflow: hidden;
}
.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: clamp(30px, 5vw, 60px);
}
.footer-partners { font-weight: 700; font-size: 16px; }
.footer-note { color: rgba(251, 248, 241, 0.5); font-size: 14px; margin-top: 4px; }
.footer-contact { color: rgba(251, 248, 241, 0.65); font-size: 15px; font-weight: 500; }
.footer-contact a {
  color: var(--paper);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-contact a:hover { color: var(--accent); }
.footer-wordmark {
  font-weight: 800;
  font-size: clamp(58px, 16.5vw, 260px);
  letter-spacing: -0.045em;
  line-height: 0.72;
  margin-bottom: -0.08em;
  text-align: center;
  white-space: nowrap;
  color: var(--paper);
  user-select: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 760px) {
  .challenge-list li { grid-template-columns: 44px 1fr; grid-template-rows: auto auto auto; gap: 6px 12px; padding: 20px 0; }
  .ch-num { grid-row: 1; }
  .ch-sdg { justify-self: start; grid-column: 2; grid-row: 1; }
  .challenge-list h2 { grid-column: 2; }
  .challenge-list li > p { grid-column: 2; }
  .prizes-grid { grid-template-columns: 1fr; }
  .prizes-title br { display: none; }
  .requirements ul { grid-template-columns: 1fr; }
  .pitchinfo-grid { grid-template-columns: 1fr; }
  .f-half { grid-template-columns: 1fr; }
  .hero-door-art { right: auto; left: 50%; transform: translateX(-50%); width: min(240px, 62vw); height: 46%; bottom: auto; top: 12%; }
  .hda-frame { border-color: rgba(251, 248, 241, 0.6); }
  .hda-frame::before { border-color: rgba(251, 248, 241, 0.3); }
  .hda-cta { top: 55%; font-size: 16px; padding: 10px 18px; }
  .hda-knob { left: 30px; }
  .footer-info { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
