:root {
  --ink: #201827;
  --ink-2: #33243c;
  --cream: #fff8e9;
  --paper: #fffdf7;
  --red: #f04461;
  --red-dark: #b7274c;
  --orange: #ff8138;
  --yellow: #ffd36a;
  --pink: #ff9aab;
  --muted: #746779;
  --line: #3f2b46;
  --shadow: 0 12px 0 rgba(32, 24, 39, .10);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
html, body { max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  padding-top: 68px;
  color: var(--ink);
  background: var(--cream);
  font-family: "Nunito", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
img, svg { display: block; max-width: 100%; }
:focus-visible { outline: 4px solid var(--yellow); outline-offset: 4px; }

.shell { width: min(1080px, calc(100% - clamp(24px, 4vw, 48px))); margin-inline: auto; }
.section { position: relative; padding: clamp(64px, 8vh, 88px) 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: var(--red-dark);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .01em;
  background: rgba(255,255,255,.5);
  box-shadow: 3px 3px 0 rgba(183,39,76,.12);
}
.display,
h1, h2, h3 { font-family: "Fredoka", system-ui, sans-serif; }
h1, h2, h3, p { margin-top: 0; }
h2 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: .98;
  letter-spacing: -.035em;
  margin-bottom: 18px;
}
.section-lede {
  max-width: 650px;
  margin: 0 auto clamp(28px, 4vh, 38px);
  text-align: center;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.55;
  font-weight: 700;
}
.section-title { text-align: center; }
.title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.title-row .icon { width: 40px; transform: rotate(-7deg); }

/* Reusable doodles */
.spark { position: absolute; width: 13px; height: 13px; color: var(--orange); }
.spark::before, .spark::after {
  content: ""; position: absolute; inset: 50% auto auto 50%; background: currentColor; border-radius: 999px; transform: translate(-50%, -50%);
}
.spark::before { width: 3px; height: 13px; }
.spark::after { width: 13px; height: 3px; }
.squiggle { position: absolute; width: 62px; height: 28px; color: var(--red); }
.squiggle svg { width: 100%; height: 100%; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,248,233,.93);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(32,24,39,.10);
}
.nav {
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 9px; width: fit-content; font: 700 21px/1 "Fredoka", sans-serif; }
.brand svg { width: 36px; height: 36px; }
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 900; font-size: 14px; }
.mobile-register { display: none; }
.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: -8px; width: 0; height: 4px; border-radius: 10px; background: var(--red); transform: translateX(-50%); transition: width .2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 21px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-3px) rotate(-1deg); }
.btn-primary { color: white; background: var(--red); box-shadow: 5px 5px 0 var(--ink); }
.btn-primary:hover { box-shadow: 7px 8px 0 var(--ink); }
.btn-light { background: var(--paper); color: var(--ink); box-shadow: 5px 5px 0 rgba(32,24,39,.15); }
.btn-small { min-height: 40px; padding: 0 17px; border-width: 2px; font-size: 13px; }
.menu-btn { display: none; width: 46px; height: 46px; border: 2px solid var(--ink); border-radius: 16px; background: var(--paper); padding: 10px; cursor: pointer; }
.menu-btn span { display: block; width: 100%; height: 3px; background: var(--ink); border-radius: 4px; margin: 5px 0; transition: .2s ease; }

/* Hero */
.hero {
  position: relative;
  padding: clamp(46px, 7vh, 68px) 0 clamp(58px, 8vh, 82px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  transition: transform .18s ease-out;
  will-change: transform;
}
.hero-copy:hover { cursor: default; }
.hero h1 {
  font-size: clamp(50px, 6.1vw, 78px);
  line-height: .88;
  letter-spacing: -.058em;
  margin: 18px 0 20px;
  max-width: 590px;
}
.hero h1 .heavenly { color: var(--red); position: relative; white-space: nowrap; }
.hero h1 .heavenly::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 9px;
  left: 0;
  bottom: -4px;
  background: var(--yellow);
  border-radius: 50%;
  transform: rotate(-2deg);
  z-index: -1;
}
.hero-copy > p {
  max-width: 560px;
  color: #5d5062;
  font-size: 17.5px;
  line-height: 1.55;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  min-height: clamp(390px, 54vh, 480px);
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-mascot-wrap {
  width: min(100%, 480px);
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(var(--tilt-scale, 1));
  transition: transform .18s ease-out, filter .22s ease;
  will-change: transform;
  cursor: pointer;
  filter: drop-shadow(0 18px 0 rgba(32,24,39,.10));
}
.hero-mascot-wrap:hover {
  --tilt-scale: 1.035;
  filter: drop-shadow(0 24px 0 rgba(32,24,39,.13));
}
.hero-mascot {
  position: static;
  width: 100%;
  height: auto;
  pointer-events: none;
  animation: mascot-bob 3.6s ease-in-out infinite;
}
@keyframes mascot-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Small interaction details across the page */
.title-row .icon,
.feature-illustration svg,
.sponsor-peek,
.horns {
  transition: transform .22s ease, filter .22s ease;
}
.title-row:hover .icon { transform: rotate(5deg) scale(1.1); }
.feature-illustration:hover svg { transform: translateY(-7px) rotate(1deg) scale(1.035); }
.sponsor-peek:hover { transform: rotate(-4deg) translateY(-9px) scale(1.08); }
.organizer:hover .horns { transform: translateX(-50%) translateY(-5px) rotate(4deg) scale(1.06); }
.btn:active { transform: translateY(2px) scale(.98); box-shadow: 2px 2px 0 var(--ink); }
summary:hover { background: #fff3dc; }

/* About */
.about { margin-top: 0; background: var(--ink); color: var(--cream); padding-top: clamp(76px, 9vh, 92px); padding-bottom: clamp(78px, 9vh, 96px); }
.about::before, .about::after {
  content: ""; position: absolute; left: 0; right: 0; height: 48px;
  background-size: 92px 48px;
  background-repeat: repeat-x;
}
.about::before { top: -1px; background-image: radial-gradient(46px 36px at 46px 0, var(--cream) 97%, transparent 100%); }
.about::after { bottom: -1px; transform: rotate(180deg); background-image: radial-gradient(46px 36px at 46px 0, var(--cream) 97%, transparent 100%); }
.about .section-lede { color: #d6cad9; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card {
  position: relative;
  min-height: 340px;
  padding: 15px 15px 22px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 7px 8px 0 var(--red);
  transform: rotate(var(--tilt));
  transition: transform .2s ease;
  overflow: hidden;
}
.feature-card:hover { transform: translateY(-8px) rotate(0deg); }
.feature-card:nth-child(1) { --tilt: -1.2deg; }
.feature-card:nth-child(2) { --tilt: 1deg; box-shadow-color: var(--orange); }
.feature-card:nth-child(3) { --tilt: -0.7deg; }
.feature-illustration { height: 175px; display: grid; place-items: center; background: #fff1d6; border: 2px dashed rgba(32,24,39,.25); border-radius: 18px; margin-bottom: 17px; position: relative; overflow: hidden; }
.feature-illustration svg { width: 84%; height: 92%; }
.feature-card h3 { font-size: 23px; margin-bottom: 7px; }
.feature-card p { color: var(--muted); line-height: 1.48; font-size: 15px; font-weight: 700; margin-bottom: 0; }
.tiny-badge { position: absolute; right: 12px; top: 12px; width: 46px; height: 46px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; background: var(--yellow); font: 700 20px/1 "Fredoka"; transform: rotate(7deg); z-index: 3; }

/* Sponsors */
.sponsors { padding-top: clamp(72px, 9vh, 88px); }
.sponsor-stage {
  margin-top: 18px;
  padding: 30px 28px 24px;
  background: #fff1d6;
  border: 3px solid var(--ink);
  border-radius: 34px;
  box-shadow: 9px 10px 0 var(--ink);
  position: relative;
  overflow: hidden;
}
.stage-hill { position: absolute; left: 0; right: 0; bottom: -55px; height: 140px; background: var(--red-dark); border-top: 3px solid var(--ink); border-radius: 50% 50% 0 0; }
.stage-flame { position: absolute; width: 68px; bottom: 14px; z-index: 1; }
.stage-flame.left { left: 2%; }
.stage-flame.right { right: 2%; transform: scaleX(-1); }
.tier { position: relative; z-index: 2; margin-bottom: 24px; }
.tier:last-child { margin-bottom: 0; }
.tier-label { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 15px; font: 700 14px/1 "Fredoka"; letter-spacing: .12em; color: var(--red-dark); text-transform: uppercase; }
.tier-label::before, .tier-label::after { content: ""; width: 32px; height: 3px; background: currentColor; border-radius: 4px; transform: rotate(-5deg); }
.logo-grid { display: grid; gap: 13px; justify-content: center; }
.logo-grid.inferno { grid-template-columns: repeat(2, minmax(0, 310px)); }
.logo-grid.flame { grid-template-columns: repeat(3, minmax(0, 230px)); }
.logo-grid.spark-tier { grid-template-columns: repeat(4, minmax(0, 170px)); }
.logo-card {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 11px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 20px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
  box-shadow: 5px 6px 0 rgba(32,24,39,.17);
  transition: transform .2s ease;
}
.logo-card:hover { transform: translateY(-5px) rotate(-1deg); }
.inferno .logo-card { min-height: 92px; border-color: var(--red-dark); box-shadow: 6px 7px 0 var(--red); }
.sponsor-peek {
  position: absolute;
  width: 100px;
  right: 18px;
  bottom: 4px;
  z-index: 3;
  transform: rotate(3deg);
  filter: drop-shadow(0 8px 0 rgba(32,24,39,.10));
  cursor: pointer;
}

/* Team */
.team { background: var(--red); color: white; padding-top: clamp(72px, 9vh, 84px); }
.team::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 20%, rgba(255,211,106,.20) 0 4px, transparent 5px), radial-gradient(circle at 84% 60%, rgba(255,255,255,.16) 0 4px, transparent 5px); background-size: 95px 95px, 130px 130px; opacity: .45; }
.team .shell { position: relative; }
.team .section-lede { color: #ffe7ec; }
.organizer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.organizer {
  padding: 20px 14px 18px;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 26px;
  box-shadow: 7px 8px 0 var(--ink);
  text-align: center;
  position: relative;
  transition: transform .2s ease;
}
.organizer:hover { transform: translateY(-7px) rotate(1deg); }
.avatar {
  width: 90px; aspect-ratio: 1; margin: 0 auto 13px; border: 3px solid var(--ink); border-radius: 48% 52% 51% 49%; background: #ffd7df; display: grid; place-items: center; overflow: hidden; position: relative;
}
.avatar::after { content: ""; position: absolute; inset: auto 12% -16% 12%; height: 48%; background: var(--red); border: 3px solid var(--ink); border-radius: 50% 50% 0 0; }
.avatar span { font: 700 34px/1 "Fredoka"; z-index: 2; margin-top: -10px; }
.organizer h3 { font-size: 18px; margin-bottom: 4px; }
.organizer p { margin-bottom: 0; color: var(--muted); font-size: 14px; font-weight: 800; }
.organizer .horns { position: absolute; width: 46px; left: 50%; top: 7px; transform: translateX(-50%); }

/* FAQ */
.faq { background: var(--ink); color: var(--cream); overflow: hidden; }
.faq-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: end; }
.faq-art { position: sticky; bottom: 20px; width: 100%; max-width: 240px; align-self: end; }
.faq-art svg { width: 100%; filter: drop-shadow(0 10px 0 rgba(0,0,0,.20)); }
.faq-copy h2 { text-align: left; max-width: 650px; }
.faq-copy > p { color: #d6cad9; font-weight: 700; font-size: 16px; line-height: 1.5; }
.accordion { margin-top: 24px; display: grid; gap: 10px; }
details { background: var(--paper); color: var(--ink); border: 3px solid var(--ink); border-radius: 18px; box-shadow: 5px 6px 0 var(--red); overflow: hidden; }
summary { list-style: none; cursor: pointer; padding: 15px 52px 15px 18px; font-weight: 900; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::before { content: "+"; position: absolute; right: 19px; top: 50%; transform: translateY(-50%) rotate(4deg); width: 29px; height: 29px; border: 2px solid var(--ink); border-radius: 50%; display: grid; place-items: center; background: var(--yellow); font: 700 22px/1 "Fredoka"; }
details[open] summary::before { content: "–"; }
details p { margin: 0; padding: 0 18px 17px; color: var(--muted); line-height: 1.5; font-weight: 700; }

/* Footer */
.footer { background: var(--ink); color: var(--cream); padding: 28px 0; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer .brand { font-size: 19px; }
.footer .brand svg { width: 33px; }
.footer p { margin: 0; color: #cbbfd0; font-size: 14px; font-weight: 700; }
.footer-links { display: flex; gap: 20px; color: #f4eaf6; font-weight: 800; font-size: 14px; }

/* Reveal motion */
[data-reveal] { opacity: 1; translate: 0; }
.js [data-reveal] { opacity: 0; translate: 0 18px; transition: opacity .6s ease, translate .6s ease; }
.js [data-reveal].visible { opacity: 1; translate: 0; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; translate: 0; }
}

/* CSP-safe utility and interaction classes. */
.noscript-banner {
  padding: 12px;
  text-align: center;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}
.svg-symbols { position: absolute; }
.icon-mirrored { transform: scaleX(-1) rotate(-7deg); }
.title-row:hover .icon-mirrored { transform: scaleX(-1) rotate(5deg) scale(1.1); }
.badge-pink { background: var(--pink); }
.badge-orange { background: var(--orange); }
.tier-flame { color: #9d5d20; }
.tier-spark { color: #72587a; }
.avatar-logistics { background: #ffe2ad; }
.avatar-sponsorship { background: #d7e9e7; }
.avatar-marketing { background: #e5d7ef; }

.hero-copy.tilt-top-left { transform: perspective(1000px) rotateX(2.2deg) rotateY(-2.2deg) rotateZ(-.24deg); }
.hero-copy.tilt-top-right { transform: perspective(1000px) rotateX(2.2deg) rotateY(2.2deg) rotateZ(.24deg); }
.hero-copy.tilt-bottom-left { transform: perspective(1000px) rotateX(-2.2deg) rotateY(-2.2deg) rotateZ(-.24deg); }
.hero-copy.tilt-bottom-right { transform: perspective(1000px) rotateX(-2.2deg) rotateY(2.2deg) rotateZ(.24deg); }
.hero-mascot-wrap.tilt-top-left { transform: perspective(1000px) rotateX(7deg) rotateY(-7deg) rotateZ(-.77deg) scale(var(--tilt-scale, 1)); }
.hero-mascot-wrap.tilt-top-right { transform: perspective(1000px) rotateX(7deg) rotateY(7deg) rotateZ(.77deg) scale(var(--tilt-scale, 1)); }
.hero-mascot-wrap.tilt-bottom-left { transform: perspective(1000px) rotateX(-7deg) rotateY(-7deg) rotateZ(-.77deg) scale(var(--tilt-scale, 1)); }
.hero-mascot-wrap.tilt-bottom-right { transform: perspective(1000px) rotateX(-7deg) rotateY(7deg) rotateZ(.77deg) scale(var(--tilt-scale, 1)); }

/* Compact laptop scaling: reduce oversized artwork and spacing on shorter screens. */
@media (min-width: 901px) and (max-height: 800px) {
  html { scroll-padding-top: 76px; }
  body { padding-top: 64px; }
  .nav { min-height: 64px; }
  .section { padding: 54px 0; }
  h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 12px; }
  .section-lede { margin-bottom: 24px; font-size: 15px; }
  .hero { padding: 32px 0 46px; }
  .hero h1 { max-width: 520px; margin: 14px 0 16px; font-size: clamp(46px, 5.5vw, 60px); }
  .hero-copy > p { max-width: 520px; margin-bottom: 18px; font-size: 15.5px; }
  .hero-art { min-height: 350px; }
  .hero-mascot-wrap { width: min(100%, 390px); }
  .about { padding-top: 70px; padding-bottom: 68px; }
  .feature-card { min-height: 290px; padding: 12px 12px 18px; }
  .feature-illustration { height: 135px; margin-bottom: 13px; }
  .feature-card h3 { font-size: 21px; }
  .feature-card p { font-size: 14px; }
  .sponsors, .team { padding-top: 62px; }
  .sponsor-stage { padding: 20px 24px 18px; }
  .tier { margin-bottom: 18px; }
  .tier-label { margin-bottom: 10px; }
  .logo-card { min-height: 60px; padding: 9px; }
  .inferno .logo-card { min-height: 76px; }
  .organizer { padding: 15px 12px 14px; }
  .avatar { width: 72px; margin-bottom: 9px; }
  .avatar span { font-size: 28px; }
  .organizer .horns { width: 38px; top: 5px; }
  .faq-layout { grid-template-columns: 190px 1fr; gap: 32px; }
  .faq-art { max-width: 190px; }
  .accordion { margin-top: 18px; gap: 8px; }
  summary { padding-top: 12px; padding-bottom: 12px; font-size: 14px; }
}

@media (min-width: 901px) and (max-height: 680px) {
  html { scroll-padding-top: 70px; }
  body { padding-top: 60px; }
  .nav { min-height: 60px; }
  .brand { font-size: 19px; }
  .brand svg { width: 32px; height: 32px; }
  .section { padding: 46px 0; }
  .hero { padding: 24px 0 36px; }
  .hero h1 { font-size: clamp(42px, 5vw, 52px); }
  .hero-art { min-height: 300px; }
  .hero-mascot-wrap { width: min(100%, 335px); }
  .about { padding-top: 64px; padding-bottom: 60px; }
  .sponsors, .team { padding-top: 52px; padding-bottom: 52px; }
  .feature-card { min-height: 260px; }
  .feature-illustration { height: 112px; }
  .sponsor-stage { padding-top: 16px; padding-bottom: 14px; }
  .logo-card { min-height: 52px; }
  .inferno .logo-card { min-height: 66px; }
  .avatar { width: 62px; }
  .faq-layout { grid-template-columns: 160px 1fr; }
  .faq-art { max-width: 160px; }
}

/* Tablet */
@media (max-width: 900px) {
  .shell { width: min(100% - 30px, 760px); }
  .nav { grid-template-columns: 1fr auto; }
  .menu-btn { display: block; }
  .nav-links {
    position: fixed;
    top: 68px;
    left: 15px;
    right: 15px;
    display: grid;
    gap: 0;
    padding: 11px;
    border: 3px solid var(--ink);
    border-radius: 22px;
    background: var(--paper);
    box-shadow: 7px 8px 0 var(--ink);
    transform: translateY(-18px) scale(.98);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links a { padding: 15px 12px; border-radius: 12px; }
  .nav-links a:hover { background: #fff0d9; }
  .nav-links a::after { display: none; }
  .mobile-register { display: block; color: white; background: var(--red); text-align: center; }
  .nav-actions .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { width: min(100%, 520px); min-height: 390px; margin-inline: auto; }
  .feature-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .feature-card { min-height: auto; }
  .feature-illustration { height: 220px; }
  .logo-grid.spark-tier { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .organizer-grid { grid-template-columns: repeat(2,1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-art { position: relative; width: 240px; margin: 0 auto -25px; order: 2; }
  .faq-copy h2, .faq-copy > p { text-align: center; margin-inline: auto; }
}

/* Mobile */
@media (max-width: 600px) {
  html { scroll-padding-top: 84px; }
  body { padding-top: 68px; }
  .shell { width: min(100% - 24px, 520px); }
  .section { padding: 64px 0; }
  .nav { min-height: 68px; }
  .site-header .brand { font-size: 20px; }
  .site-header .brand svg { width: 35px; height: 35px; }
  .nav-links { top: 69px; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: clamp(42px,12vw,56px); }
  .hero-copy > p { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-art { min-height: 330px; }
  .den-card { inset: 5px 0 12px; border-radius: 46% 46% 28px 28px / 25% 25% 28px 28px; }
  .hero-mascot-wrap { width: min(92%, 430px); }
  .about { margin-top: 36px; padding-top: 82px; }
  .section-lede { font-size: 16px; margin-bottom: 34px; }
  .title-row { gap: 8px; }
  .title-row .icon { width: 34px; }
  .feature-card { transform: none; }
  .feature-illustration { height: 180px; }
  .sponsor-stage { padding: 26px 15px 22px; }
  .logo-grid.inferno, .logo-grid.flame, .logo-grid.spark-tier { grid-template-columns: 1fr; }
  .sponsor-peek { width: 82px; right: 2px; bottom: 4px; }
  .organizer-grid { grid-template-columns: 1fr; }
  .organizer { display: grid; grid-template-columns: 88px 1fr; grid-template-rows: auto auto; text-align: left; align-items: center; column-gap: 18px; }
  .avatar { width: 82px; grid-row: 1/3; margin: 0; }
  .organizer h3 { align-self: end; margin: 0; }
  .organizer p { align-self: start; }
  .organizer .horns { left: 59px; top: 8px; width: 45px; }
  .faq-art { width: 190px; }
  .faq-copy h2 { font-size: 38px; }
  summary { padding-left: 18px; font-size: 15px; }
  .footer-grid { justify-content: center; text-align: center; flex-direction: column; }
}
