:root {
  --ink: #141414;
  --paper: #fff5e5;
  --cream: #f5e2c7;
  --white: #fffdf8;
  --red: #f24b3a;
  --blue: #2c7ef8;
  --sky: #8bdcff;
  --acid: #d9f24f;
  --gold: #f6d84c;
  --green: #0d6b57;
  --muted: #665d51;
  --shadow-soft: 0 24px 60px rgba(20, 20, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 242, 79, 0.42), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(139, 220, 255, 0.42), transparent 24%),
    linear-gradient(180deg, var(--paper), #fffaf1 42%, #f6ead7);
  color: var(--ink);
  font-family: "IBM Plex Sans HK", "Noto Sans TC", "PingFang HK", "Microsoft JhengHei", sans-serif;
  letter-spacing: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(20, 20, 20, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 20, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

a {
  color: inherit;
}

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

section[id] {
  scroll-margin-top: 118px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  padding: 10px 12px;
  gap: 18px;
  transform: translateX(-50%);
  border: 2px solid rgba(20, 20, 20, 0.9);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.12);
  backdrop-filter: blur(22px);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 20px 48px rgba(20, 20, 20, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 118px;
  padding-left: 8px;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand .brand-full-logo {
  width: 118px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(20, 20, 20, 0.12));
}

.brand strong,
.brand em {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 19px;
  font-weight: 900;
}

.brand em {
  margin-top: 4px;
  font-family: Outfit, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.06);
}

.site-nav a,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.site-nav a:hover {
  background: var(--white);
}

.nav-cta {
  background: var(--acid);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  min-height: 100vh;
  padding: clamp(120px, 13vw, 170px) clamp(18px, 6vw, 90px) clamp(54px, 8vw, 90px);
  gap: clamp(34px, 5vw, 80px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -14vw;
  top: 8vh;
  width: 48vw;
  height: 48vw;
  min-width: 420px;
  min-height: 420px;
  border-radius: 38% 62% 48% 52% / 48% 34% 66% 52%;
  background: var(--acid);
  opacity: 0.72;
  filter: blur(2px);
  animation: blobFloat 12s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.kicker span,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: inset 0 0 0 2px var(--ink);
  font-family: Outfit, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.kicker span:nth-child(2) {
  background: var(--sky);
}

.kicker span:nth-child(3) {
  background: var(--red);
  color: var(--white);
}

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

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(58px, 9vw, 138px);
  line-height: 0.9;
  font-weight: 900;
}

.hero p {
  max-width: 640px;
  color: #30271f;
  font-size: clamp(17px, 1.65vw, 23px);
  line-height: 1.78;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 0 var(--ink), 0 26px 42px rgba(242, 75, 58, 0.28);
}

.button-primary:hover {
  box-shadow: 0 8px 0 var(--ink), 0 24px 42px rgba(242, 75, 58, 0.24);
}

.button-quiet {
  background: rgba(255, 253, 248, 0.8);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-line span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(246, 216, 76, 0.86);
  font-size: 14px;
  font-weight: 900;
}

.hero-world {
  position: relative;
  z-index: 1;
  min-height: min(680px, 62vw);
}

.hero-logo-stamp {
  position: absolute;
  left: 4%;
  top: -1%;
  z-index: 5;
  width: clamp(158px, 18vw, 254px);
  padding: clamp(12px, 1.8vw, 22px);
  border-radius: 52% 48% 42% 58% / 44% 56% 44% 56%;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.14);
  transform: rotate(-7deg);
}

.hero-logo-stamp img {
  width: 100%;
  height: auto;
  filter: saturate(1.06) contrast(1.04);
}

.paint-photo,
.camera-photo {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.paint-photo {
  right: 2%;
  top: 5%;
  width: min(650px, 84%);
  aspect-ratio: 1.15 / 1;
  border-radius: 44% 56% 38% 62% / 54% 40% 60% 46%;
  transform: rotate(4deg);
}

.camera-photo {
  left: 0;
  bottom: 2%;
  width: min(285px, 38%);
  aspect-ratio: 0.82 / 1;
  border-radius: 34% 66% 61% 39% / 42% 35% 65% 58%;
  transform: rotate(-9deg);
}

.paint-photo img,
.camera-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.paint-photo::after,
.camera-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 242, 79, 0.2), transparent 42%);
  mix-blend-mode: screen;
}

.hero-sticker {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ink);
  font-family: Outfit, sans-serif;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.sticker-green {
  right: 0;
  bottom: 14%;
  width: 220px;
  min-height: 132px;
  padding: 18px;
  border-radius: 34px 70px 42px 64px;
  background: var(--acid);
  transform: rotate(7deg);
}

.sticker-green span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--white);
}

.sticker-green strong {
  font-size: 18px;
  line-height: 1.05;
  text-transform: uppercase;
}

.sticker-red {
  left: 15%;
  top: 20%;
  width: 150px;
  height: 150px;
  padding: 18px;
  border-radius: 48% 52% 56% 44% / 44% 58% 42% 56%;
  background: var(--red);
  color: var(--white);
  transform: rotate(-12deg);
}

.hero-scribble {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 58%;
  fill: none;
  stroke: var(--blue);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 14px 18px rgba(44, 126, 248, 0.18));
  animation: scribbleWiggle 9s ease-in-out infinite;
}

.marquee {
  position: relative;
  overflow: hidden;
  contain: layout paint;
  width: 100%;
  height: clamp(72px, 9vw, 104px);
  background: var(--ink);
  color: var(--acid);
  transform: rotate(-1.1deg);
}

.marquee div {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 18px 18px;
  font-family: Outfit, sans-serif;
  font-size: clamp(20px, 3.4vw, 52px);
  font-weight: 900;
  white-space: nowrap;
}

.manifesto-section,
.challenge-section,
.categories-section,
.awards-section,
.rules-section,
.archive-section,
.process-section,
.schools-section,
.final-cta {
  position: relative;
  padding: clamp(76px, 10vw, 140px) clamp(18px, 6vw, 90px);
}

.manifesto-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  padding-top: clamp(86px, 10vw, 150px);
}

.manifesto-section::before {
  content: "";
  position: absolute;
  left: -12vw;
  top: 18%;
  width: 36vw;
  height: 36vw;
  min-width: 280px;
  min-height: 280px;
  border-radius: 54% 46% 58% 42% / 42% 52% 48% 58%;
  background: rgba(44, 126, 248, 0.16);
  filter: blur(8px);
}

.manifesto-copy {
  position: relative;
  z-index: 1;
}

.manifesto-copy h2 {
  margin: 16px 0;
  font-size: clamp(42px, 6.6vw, 100px);
  line-height: 0.94;
  font-weight: 900;
}

.manifesto-copy p {
  max-width: 760px;
  color: #392f25;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.82;
  font-weight: 650;
}

.pledge-cluster {
  position: relative;
  min-height: 540px;
}

.pledge-cluster::before {
  content: "";
  position: absolute;
  inset: 16% 8% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: url("./assets/photo-painting.jpg") center / cover;
  box-shadow: var(--shadow-soft);
}

.pledge-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: 150px;
  min-height: 112px;
  padding: 18px;
  border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%;
  background: var(--gold);
  text-align: center;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.pledge-bubble.large {
  left: 4%;
  top: 4%;
  width: 210px;
  min-height: 178px;
  background: var(--acid);
  font-size: 28px;
  transform: rotate(-8deg);
}

.pledge-bubble:nth-child(2) {
  right: 4%;
  top: 0;
  transform: rotate(8deg);
}

.pledge-bubble:nth-child(3) {
  left: 0;
  bottom: 12%;
  transform: rotate(6deg);
}

.pledge-bubble.blue {
  right: 2%;
  bottom: 18%;
  background: var(--sky);
  transform: rotate(-5deg);
}

.pledge-bubble.red {
  left: 25%;
  bottom: 0;
  width: 230px;
  min-height: 92px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
}

.challenge-intro,
.section-heading,
.award-copy {
  max-width: 940px;
}

.challenge-intro h2,
.section-heading h2,
.award-copy h2,
.schools-copy h2,
.final-cta h2 {
  margin: 16px 0;
  font-size: clamp(42px, 6.6vw, 98px);
  line-height: 0.94;
  font-weight: 900;
}

.challenge-intro p,
.section-heading p,
.award-copy p,
.schools-copy p,
.final-cta p {
  max-width: 780px;
  color: #392f25;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.8;
  font-weight: 650;
}

.season-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 34px;
  margin-top: 44px;
  padding: clamp(28px, 5vw, 64px);
  border-radius: 54px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.64), transparent 24%),
    linear-gradient(135deg, var(--red), #ff7d4f 56%, var(--gold));
  box-shadow: var(--shadow-soft);
}

.season-stage::before {
  content: "";
  position: absolute;
  inset: auto 8% -38px auto;
  width: 220px;
  height: 110px;
  border-radius: 50%;
  background: var(--acid);
  filter: blur(4px);
}

.season-poster {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.season-poster span {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.22);
  font-family: Outfit, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.season-poster h3 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(52px, 8vw, 126px);
  line-height: 0.9;
  font-weight: 900;
}

.season-poster p {
  max-width: 650px;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 750;
}

.season-notes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.season-notes div {
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(16px);
}

.season-notes small {
  display: block;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.season-notes strong {
  display: block;
  margin-top: 7px;
  font-size: 18px;
  line-height: 1.35;
}

.round-cta {
  position: absolute;
  right: 34px;
  top: -44px;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  transform: rotate(10deg);
}

.first-competition {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 92px);
  margin-top: clamp(58px, 8vw, 104px);
}

.first-competition::before {
  content: "";
  position: absolute;
  left: -7vw;
  top: 14%;
  width: 44vw;
  height: 30vw;
  min-width: 320px;
  min-height: 240px;
  border-radius: 50%;
  background: rgba(139, 220, 255, 0.34);
  filter: blur(12px);
}

.competition-poster-wrap {
  position: relative;
  z-index: 1;
  max-width: 520px;
  justify-self: center;
  padding: clamp(9px, 1.3vw, 14px);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 32px 70px rgba(20, 20, 20, 0.22);
  transform: rotate(-2.2deg);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.competition-poster-wrap:hover {
  transform: rotate(-0.8deg) translateY(-8px);
  box-shadow: 0 42px 84px rgba(20, 20, 20, 0.24);
}

.competition-poster-wrap::before,
.competition-poster-wrap::after {
  content: "";
  position: absolute;
  z-index: 2;
  height: 42px;
  background: rgba(255, 240, 178, 0.78);
  box-shadow: 0 8px 18px rgba(20, 20, 20, 0.12);
  transform: rotate(-5deg);
}

.competition-poster-wrap::before {
  left: 14%;
  top: -19px;
  width: 132px;
}

.competition-poster-wrap::after {
  right: 10%;
  bottom: -18px;
  width: 158px;
  background: rgba(139, 220, 255, 0.64);
  transform: rotate(4deg);
}

.competition-poster-wrap img {
  width: 100%;
  aspect-ratio: 1055 / 1491;
  object-fit: cover;
  border-radius: 10px;
}

.competition-copy {
  position: relative;
  z-index: 1;
}

.competition-copy h3 {
  max-width: 760px;
  margin: 18px 0;
  font-size: clamp(38px, 5.6vw, 78px);
  line-height: 0.96;
  font-weight: 900;
}

.competition-copy p {
  max-width: 690px;
  color: #392f25;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.82;
  font-weight: 650;
}

.competition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}

.competition-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 0 0 2px rgba(20, 20, 20, 0.88);
  font-weight: 900;
}

.competition-tags span:nth-child(2) {
  background: var(--sky);
}

.competition-tags span:nth-child(3) {
  background: var(--acid);
}

.categories-section {
  overflow: hidden;
  background: #111;
  color: var(--white);
}

.categories-section::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto auto;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: rgba(44, 126, 248, 0.28);
  filter: blur(28px);
}

.categories-section p {
  color: #f0e6d8;
}

.categories-section .eyebrow,
.final-cta .eyebrow {
  background: var(--acid);
  color: var(--ink);
}

.art-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.orbit-item {
  position: relative;
  min-height: 310px;
  padding: 26px;
  overflow: hidden;
  border-radius: 42px;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease;
}

.orbit-item:hover {
  transform: translateY(-10px) rotate(-1deg);
}

.orbit-item::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.orbit-item span {
  font-family: Outfit, sans-serif;
  font-size: 58px;
  font-weight: 900;
}

.orbit-item h3 {
  margin: 72px 0 12px;
  font-size: 34px;
}

.orbit-item p {
  color: inherit;
  font-weight: 750;
  line-height: 1.65;
}

.drawing {
  background: var(--acid);
  border-radius: 38px 72px 44px 62px;
}

.photo {
  background:
    linear-gradient(rgba(139, 220, 255, 0.76), rgba(139, 220, 255, 0.82)),
    url("./assets/photo-camera.jpg") center / cover;
  border-radius: 78px 38px 64px 42px;
}

.calligraphy {
  background: var(--gold);
  border-radius: 52px 48px 88px 38px;
}

.future {
  background: var(--red);
  color: var(--white);
  border-radius: 40px 96px 52px 48px;
}

.awards-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
}

.award-scene {
  position: relative;
  min-height: 620px;
}

.certificate-soft {
  position: absolute;
  inset: 10% 4% auto 0;
  min-height: 430px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.7)),
    radial-gradient(circle at 88% 82%, var(--gold), transparent 24%);
  box-shadow: var(--shadow-soft);
  transform: rotate(-4deg);
}

.certificate-soft::after {
  content: "";
  position: absolute;
  right: 36px;
  bottom: 34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 16px var(--white);
}

.certificate-soft small {
  font-family: Outfit, sans-serif;
  font-weight: 900;
}

.certificate-soft h3 {
  margin: 70px 0 12px;
  font-family: "Yeseva One", serif;
  font-size: clamp(54px, 7vw, 112px);
  line-height: 0.92;
}

.certificate-soft p {
  font-family: Outfit, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.certificate-soft strong {
  display: block;
  margin-top: 48px;
  font-size: clamp(28px, 4vw, 54px);
}

.award-ribbon {
  position: absolute;
  left: 22%;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 420px;
  transform: rotate(5deg);
}

.award-ribbon span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-family: Outfit, sans-serif;
  font-weight: 900;
}

.award-ribbon span:nth-child(2) {
  background: var(--acid);
  color: var(--ink);
}

.award-ribbon span:nth-child(3) {
  background: var(--red);
}

.rules-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(242, 75, 58, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(217, 242, 79, 0.38), transparent 26%),
    #111;
  color: var(--white);
}

.rules-section::before {
  content: "";
  position: absolute;
  left: -16vw;
  bottom: -18vw;
  width: 46vw;
  height: 46vw;
  min-width: 360px;
  min-height: 360px;
  border-radius: 48% 52% 58% 42% / 42% 58% 42% 58%;
  background: rgba(44, 126, 248, 0.28);
  filter: blur(12px);
}

.rules-heading,
.rules-dashboard,
.rules-footnote {
  position: relative;
  z-index: 1;
}

.rules-heading {
  max-width: 1040px;
}

.rules-heading .eyebrow {
  background: var(--acid);
  color: var(--ink);
}

.rules-heading h2 {
  margin: 16px 0;
  font-size: clamp(42px, 6.6vw, 98px);
  line-height: 0.94;
  font-weight: 900;
}

.rules-heading p {
  max-width: 840px;
  color: #f2e4d2;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.8;
  font-weight: 650;
}

.rules-dashboard {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  margin-top: 48px;
}

.rules-summary {
  align-self: start;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 42px 72px 38px 56px;
  background: var(--acid);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  transform: rotate(-1.5deg);
}

.rules-summary span,
.rules-grid small,
.rules-footnote strong {
  font-family: Outfit, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.rules-summary span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 0 0 2px var(--ink);
  font-size: 12px;
}

.rules-summary h3 {
  margin: 24px 0 28px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.96;
}

.rules-summary dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.rules-summary div {
  padding: 14px 0 0;
  border-top: 2px solid rgba(20, 20, 20, 0.16);
}

.rules-summary dt {
  color: rgba(20, 20, 20, 0.68);
  font-size: 13px;
  font-weight: 900;
}

.rules-summary dd {
  margin: 5px 0 0;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.22;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rules-grid article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.16);
  backdrop-filter: blur(16px);
}

.rules-grid article:nth-child(2),
.rules-grid article:nth-child(5) {
  transform: translateY(24px);
}

.rules-grid small {
  color: var(--acid);
  font-size: 12px;
}

.rules-grid h3 {
  margin: 18px 0 12px;
  font-size: clamp(25px, 2.8vw, 38px);
  line-height: 1.05;
}

.rules-grid p {
  margin-bottom: 0;
  color: #f2e4d2;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.72;
}

.rules-grid .human-rule {
  background: var(--red);
  box-shadow: 0 18px 50px rgba(242, 75, 58, 0.24);
}

.rules-grid .human-rule small,
.rules-grid .human-rule p {
  color: var(--white);
}

.rules-footnote {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 42px;
  padding: 18px 20px;
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.1);
  color: #f2e4d2;
}

.rules-footnote strong {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--ink);
}

.rules-footnote p {
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.68;
}

.archive-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(20, 20, 20, 0.08) 1px, transparent 1px),
    #fffaf1;
  background-size: 34px 34px;
}

.archive-section::before {
  content: "";
  position: absolute;
  right: -10vw;
  top: 8%;
  width: 38vw;
  height: 38vw;
  min-width: 320px;
  min-height: 320px;
  border-radius: 42% 58% 54% 46% / 46% 40% 60% 54%;
  background: rgba(139, 220, 255, 0.48);
  filter: blur(4px);
}

.archive-heading {
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

.archive-heading h2 {
  margin: 16px 0;
  font-size: clamp(42px, 6.6vw, 98px);
  line-height: 0.94;
  font-weight: 900;
}

.archive-heading p {
  max-width: 820px;
  color: #392f25;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.8;
  font-weight: 650;
}

.archive-wall {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) repeat(2, minmax(180px, 0.55fr));
  grid-auto-rows: 190px;
  gap: clamp(14px, 2vw, 22px);
  margin-top: 52px;
}

.archive-photo,
.archive-note {
  position: relative;
  overflow: hidden;
  min-height: 0;
  box-shadow: var(--shadow-soft);
}

.archive-photo {
  background: var(--ink);
  color: var(--white);
}

.archive-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.archive-photo:hover img {
  transform: scale(1.06) rotate(0.5deg);
  filter: saturate(1.08);
}

.archive-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(20, 20, 20, 0.72));
}

.archive-photo span,
.archive-feature div {
  position: absolute;
  z-index: 1;
}

.archive-photo span {
  left: 18px;
  bottom: 16px;
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  font-weight: 900;
}

.archive-feature {
  grid-row: span 3;
  border-radius: 54px 34px 72px 40px;
}

.archive-feature div {
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.archive-feature span {
  position: static;
  margin-bottom: 12px;
  background: var(--acid);
}

.archive-feature h3 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(28px, 3.7vw, 54px);
  line-height: 1.02;
}

.archive-note {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 46px 78px 38px 52px;
  background: var(--acid);
  color: var(--ink);
  transform: rotate(1.5deg);
}

.archive-note small {
  font-family: Outfit, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-note strong {
  display: block;
  max-width: 640px;
  margin: 12px 0;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.06;
}

.archive-note p {
  max-width: 620px;
  margin-bottom: 0;
  color: #382f24;
  font-weight: 750;
  line-height: 1.7;
}

.archive-class {
  border-radius: 44px 34px 62px 38px;
  transform: rotate(-2deg);
}

.archive-award {
  border-radius: 34px 74px 44px 52px;
  transform: rotate(2deg);
}

.archive-smile {
  grid-row: span 2;
  border-radius: 76px 38px 54px 34px;
}

.archive-trophy {
  grid-row: span 2;
  border-radius: 38px 48px 82px 34px;
  transform: rotate(-1deg);
}

.archive-credit {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: min(760px, 100%);
  margin: 28px 0 0 auto;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 0 0 2px rgba(20, 20, 20, 0.14);
}

.process-section {
  background: linear-gradient(180deg, transparent, rgba(139, 220, 255, 0.2));
}

.process-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.process-path li {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border-radius: 38px;
  background: rgba(255, 253, 248, 0.75);
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.1);
  backdrop-filter: blur(12px);
}

.process-path li:nth-child(even) {
  margin-top: 48px;
}

.process-path span {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: var(--acid);
  font-family: Outfit, sans-serif;
  font-weight: 900;
}

.process-path strong {
  display: block;
  margin-bottom: 10px;
  font-size: 23px;
}

.process-path p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}

.schools-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
}

.schools-photo {
  overflow: hidden;
  border-radius: 42% 58% 36% 64% / 48% 38% 62% 52%;
  background: var(--acid);
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
}

.schools-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 242, 79, 0.35), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(242, 75, 58, 0.24), transparent 26%),
    var(--ink);
  color: var(--white);
}

.final-cta p {
  margin-left: auto;
  margin-right: auto;
  color: #f2e4d2;
}

.final-cta .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.signup-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(680px, 100%);
  margin: 34px auto 0;
  padding: 8px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.signup-shell input,
.signup-shell button {
  min-width: 0;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
}

.signup-shell input {
  padding: 0 20px;
  background: transparent;
  color: var(--ink);
}

.signup-shell button {
  padding: 0 24px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 30px clamp(18px, 6vw, 90px);
  background: #100f0e;
  color: var(--white);
}

.site-footer strong {
  font-size: 24px;
}

.site-footer span {
  color: #d8cbb8;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.site-footer a {
  font-family: Outfit, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

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

@keyframes blobFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    border-radius: 38% 62% 48% 52% / 48% 34% 66% 52%;
  }
  50% {
    transform: translate3d(-18px, 22px, 0) rotate(7deg);
    border-radius: 58% 42% 38% 62% / 36% 58% 42% 64%;
  }
}

@keyframes scribbleWiggle {
  0%,
  100% {
    transform: rotate(-3deg) translateY(0);
  }
  50% {
    transform: rotate(2deg) translateY(-14px);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .manifesto-section,
  .season-stage,
  .first-competition,
  .awards-section,
  .rules-dashboard,
  .schools-section {
    grid-template-columns: 1fr;
  }

  .rules-summary {
    transform: none;
  }

  .archive-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .archive-feature,
  .archive-note {
    grid-column: 1 / -1;
  }

  .archive-feature {
    grid-row: span 2;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    max-width: 900px;
    font-size: clamp(54px, 8.8vw, 88px);
  }

  .hero-world {
    min-height: 560px;
  }

  .art-orbit,
  .process-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pledge-cluster {
    min-height: 460px;
  }

  .pledge-cluster::before {
    right: 0;
    width: 240px;
    height: 240px;
  }

  .award-scene {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 18px;
  }

  .nav-cta {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 14px;
  }

  .hero,
  .manifesto-section,
  .challenge-section,
  .categories-section,
  .awards-section,
  .rules-section,
  .archive-section,
  .process-section,
  .schools-section,
  .final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-world {
    min-height: 520px;
  }

  .manifesto-section {
    padding-top: 72px;
  }

  .pledge-cluster {
    min-height: 560px;
  }

  .pledge-cluster::before {
    inset: 22% 0 auto auto;
    width: 230px;
    height: 230px;
  }

  .pledge-bubble {
    width: 128px;
    min-height: 92px;
    padding: 14px;
    font-size: 15px;
  }

  .pledge-bubble.large {
    width: 168px;
    min-height: 144px;
    font-size: 23px;
  }

  .pledge-bubble.red {
    left: 6%;
    bottom: 4%;
    width: 220px;
  }

  .paint-photo {
    right: 0;
    width: 96%;
  }

  .camera-photo {
    width: 42%;
  }

  .sticker-green {
    width: 180px;
    right: 4%;
    bottom: 8%;
  }

  .sticker-red {
    left: 2%;
    top: 4%;
    width: 118px;
    height: 118px;
    font-size: 14px;
  }

  .hero-scribble {
    width: 82%;
  }

  .season-stage {
    border-radius: 34px;
    padding: 28px 18px;
  }

  .first-competition {
    gap: 32px;
    margin-top: 54px;
  }

  .competition-poster-wrap {
    width: min(100%, 390px);
    transform: rotate(-1.4deg);
  }

  .competition-copy h3 {
    font-size: clamp(34px, 10vw, 54px);
  }

  .round-cta {
    position: relative;
    top: auto;
    right: auto;
    width: 110px;
    height: 110px;
    margin: 12px auto 0;
  }

  .art-orbit,
  .process-path,
  .rules-grid {
    grid-template-columns: 1fr;
  }

  .rules-grid article,
  .rules-grid article:nth-child(2),
  .rules-grid article:nth-child(5) {
    min-height: auto;
    transform: none;
  }

  .rules-footnote {
    grid-template-columns: 1fr;
  }

  .archive-wall {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 34px;
  }

  .archive-photo,
  .archive-note {
    min-height: 255px;
    transform: none;
  }

  .archive-feature {
    min-height: 430px;
  }

  .archive-smile,
  .archive-trophy {
    min-height: 330px;
  }

  .archive-note {
    min-height: auto;
    padding: 24px;
  }

  .archive-credit {
    margin-left: 0;
    border-radius: 24px;
  }

  .process-path li:nth-child(even) {
    margin-top: 0;
  }

  .awards-section {
    gap: 10px;
  }

  .award-scene {
    min-height: 520px;
  }

  .certificate-soft {
    inset: 5% 0 auto;
    min-height: 420px;
  }

  .award-ribbon {
    left: 0;
    bottom: 0;
  }

  .signup-shell {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .signup-shell input,
  .signup-shell button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

/* Focused multi-page structure */
.site-nav a.is-active {
  background: var(--white);
  box-shadow: inset 0 0 0 2px rgba(20, 20, 20, 0.9);
}

.site-page {
  padding-top: 118px;
}

.home-hero,
.page-hero,
.competition-strip,
.trust-section,
.flow-section,
.home-cta,
.competition-layout,
.credibility-block,
.register-panel,
.gallery-grid,
.partner-grid {
  position: relative;
  padding-left: clamp(18px, 6vw, 90px);
  padding-right: clamp(18px, 6vw, 90px);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  min-height: calc(100vh - 80px);
  padding-top: clamp(54px, 8vw, 96px);
  padding-bottom: clamp(54px, 8vw, 96px);
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  right: -8vw;
  top: 12%;
  width: 42vw;
  height: 42vw;
  min-width: 340px;
  min-height: 340px;
  border-radius: 46% 54% 62% 38% / 52% 42% 58% 48%;
  background: rgba(217, 242, 79, 0.58);
  filter: blur(5px);
}

.home-hero-copy,
.poster-feature {
  position: relative;
  z-index: 1;
}

.home-hero h1,
.page-hero h1 {
  max-width: 980px;
  margin: 18px 0 24px;
  font-size: clamp(46px, 7.8vw, 112px);
  line-height: 0.9;
  font-weight: 900;
}

.home-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 0.94;
}

.home-hero p,
.page-hero p,
.competition-strip p,
.trust-section p,
.flow-section p,
.home-cta p,
.credibility-block p,
.register-panel p {
  max-width: 780px;
  color: #392f25;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.78;
  font-weight: 650;
}

.poster-feature {
  display: block;
  align-self: center;
  max-width: 430px;
  padding: 12px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 34px 80px rgba(20, 20, 20, 0.22);
  transform: rotate(2deg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.poster-feature:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 42px 90px rgba(20, 20, 20, 0.26);
}

.poster-feature img {
  width: 100%;
  aspect-ratio: 1055 / 1491;
  object-fit: cover;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 920px;
  margin: 34px 0 0;
}

.quick-facts div {
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: inset 0 0 0 2px rgba(20, 20, 20, 0.1);
}

.quick-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.quick-facts dd {
  margin: 6px 0 0;
  font-weight: 900;
  line-height: 1.35;
}

.competition-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr) auto;
  align-items: center;
  gap: 28px;
  margin: 0 clamp(18px, 6vw, 90px) clamp(72px, 8vw, 110px);
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
  border-radius: 42px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.competition-strip h2,
.trust-section h2,
.flow-section h2,
.home-cta h2,
.credibility-block h2,
.register-panel h2 {
  margin: 16px 0;
  font-size: clamp(38px, 5.8vw, 82px);
  line-height: 0.95;
  font-weight: 900;
}

.competition-strip p {
  color: #f4e8d8;
}

.competition-strip ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.competition-strip li {
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.12);
}

.competition-strip li strong,
.competition-strip li span {
  display: block;
}

.competition-strip li strong {
  color: var(--acid);
  font-size: 13px;
}

.competition-strip li span {
  margin-top: 4px;
  font-weight: 900;
}

.trust-section,
.flow-section,
.home-cta,
.credibility-block,
.register-panel {
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.trust-grid article,
.flow-list li,
.partner-grid article {
  padding: clamp(22px, 3vw, 32px);
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: inset 0 0 0 2px rgba(20, 20, 20, 0.09), 0 18px 44px rgba(20, 20, 20, 0.1);
}

.trust-grid span,
.partner-grid span {
  font-family: Outfit, sans-serif;
  color: var(--blue);
  font-size: 42px;
  font-weight: 900;
}

.trust-grid h3,
.partner-grid h3 {
  margin: 28px 0 10px;
  font-size: 28px;
}

.trust-grid p,
.partner-grid p {
  margin-bottom: 0;
  color: #392f25;
  font-weight: 650;
  line-height: 1.68;
}

.flow-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  background: #111;
  color: var(--white);
}

.flow-section .eyebrow {
  background: var(--acid);
  color: var(--ink);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  background: rgba(255, 253, 248, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.16);
}

.flow-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-family: Outfit, sans-serif;
  font-weight: 900;
}

.flow-list strong {
  display: block;
  margin-top: 20px;
  font-size: 24px;
}

.flow-list p {
  color: #f4e8d8;
}

.home-cta,
.register-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  align-items: end;
  gap: 34px;
  padding-top: clamp(62px, 8vw, 118px);
  padding-bottom: clamp(44px, 6vw, 84px);
}

.detail-card {
  padding: 24px;
  border-radius: 34px;
  background: var(--acid);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}

.detail-card strong,
.detail-card span {
  display: block;
}

.detail-card strong {
  font-family: Outfit, sans-serif;
  text-transform: uppercase;
}

.detail-card span {
  margin: 14px 0;
  font-size: 34px;
  font-weight: 900;
}

.competition-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

.poster-panel {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 12px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
  transform: rotate(-1deg);
}

.poster-panel img {
  width: 100%;
  aspect-ratio: 1055 / 1491;
  object-fit: cover;
}

.info-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-table div {
  min-height: 210px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: inset 0 0 0 2px rgba(20, 20, 20, 0.08);
}

.info-table strong {
  display: block;
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}

.info-table p {
  margin: 14px 0 0;
  color: #392f25;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.72;
}

.credibility-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  background: #111;
  color: var(--white);
}

.credibility-block .eyebrow {
  background: var(--acid);
  color: var(--ink);
}

.credibility-block p {
  color: #f4e8d8;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.1);
  font-weight: 850;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--acid);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) repeat(2, minmax(180px, 0.6fr));
  grid-auto-rows: 230px;
  gap: 18px;
  padding-bottom: 48px;
}

.gallery-grid .archive-feature {
  grid-row: span 2;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(64px, 8vw, 110px);
}

.competition-lineup,
.series-section,
.organizer-panel {
  position: relative;
  padding-left: clamp(18px, 6vw, 90px);
  padding-right: clamp(18px, 6vw, 90px);
}

.competition-lineup,
.series-section {
  padding-top: clamp(72px, 8vw, 116px);
  padding-bottom: clamp(72px, 8vw, 116px);
}

.lineup-heading {
  max-width: 960px;
}

.lineup-heading h2,
.series-section h2,
.organizer-panel h2 {
  margin: 16px 0;
  font-size: clamp(38px, 5.8vw, 82px);
  line-height: 0.95;
  font-weight: 900;
}

.lineup-heading p,
.series-section p,
.organizer-panel p {
  max-width: 780px;
  color: #392f25;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.78;
  font-weight: 650;
}

.competition-cards {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) repeat(2, minmax(220px, 0.75fr));
  gap: 18px;
  margin-top: 42px;
}

.competition-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  min-height: 520px;
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: inset 0 0 0 2px rgba(20, 20, 20, 0.08), 0 22px 54px rgba(20, 20, 20, 0.12);
}

.competition-card.is-featured {
  background: #111;
  color: var(--white);
}

.competition-card span {
  color: var(--blue);
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.competition-card.is-featured span,
.competition-card.is-featured p {
  color: #f4e8d8;
}

.competition-card h3 {
  margin: 12px 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.02;
}

.competition-card p {
  color: #392f25;
  font-weight: 680;
  line-height: 1.7;
}

.competition-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  box-shadow: inset 0 0 0 2px var(--ink);
}

.mini-poster {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 260px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: inset 0 0 0 2px rgba(20, 20, 20, 0.12);
}

.image-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-poster {
  background:
    linear-gradient(135deg, rgba(139, 220, 255, 0.82), rgba(255, 253, 248, 0.5)),
    url("./assets/photo-camera.jpg") center / cover;
}

.calligraphy-poster {
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 75, 58, 0.24), transparent 26%),
    linear-gradient(135deg, #fffdf8, #f6d84c);
}

.mini-poster strong {
  font-family: Outfit, sans-serif;
  font-size: clamp(46px, 5.6vw, 76px);
  font-weight: 900;
  line-height: 0.9;
}

.mini-poster em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 900;
}

.series-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(139, 220, 255, 0.3), transparent 26%),
    #fffaf1;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.series-grid article {
  padding: clamp(22px, 3vw, 32px);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: inset 0 0 0 2px rgba(20, 20, 20, 0.08);
}

.series-grid span {
  color: var(--blue);
  font-family: Outfit, sans-serif;
  font-size: 42px;
  font-weight: 900;
}

.series-grid h3 {
  margin: 24px 0 12px;
  font-size: 30px;
}

.series-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 900;
}

.organizer-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding-top: clamp(72px, 8vw, 116px);
  padding-bottom: clamp(72px, 8vw, 116px);
}

.organizer-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.organizer-panel dl div {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: inset 0 0 0 2px rgba(20, 20, 20, 0.08);
}

.organizer-panel dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.organizer-panel dd {
  margin: 6px 0 0;
  font-weight: 900;
}

.certificate-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(246, 216, 76, 0.42), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(139, 220, 255, 0.34), transparent 26%),
    linear-gradient(180deg, var(--paper), #fffaf1);
}

.certificate-hero {
  padding-bottom: clamp(30px, 4vw, 58px);
}

.certificate-showcase {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 6vw, 90px) clamp(72px, 9vw, 120px);
}

.award-certificate {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(1120px, 100%);
  aspect-ratio: 1.414 / 1;
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(34px, 5vw, 64px);
  border: 3px solid var(--ink);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(20, 20, 20, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 84% 20%, rgba(217, 242, 79, 0.34), transparent 22%),
    radial-gradient(circle at 12% 86%, rgba(139, 220, 255, 0.32), transparent 22%),
    #fffdf8;
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
  box-shadow: 0 36px 90px rgba(20, 20, 20, 0.18);
}

.award-certificate::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(20, 20, 20, 0.16);
  border-radius: 12px;
  pointer-events: none;
}

.certificate-corner {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  pointer-events: none;
}

.certificate-corner.top-left {
  left: -82px;
  top: -92px;
  background: var(--red);
}

.certificate-corner.bottom-right {
  right: -78px;
  bottom: -96px;
  background: var(--blue);
}

.certificate-head,
.certificate-foot {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
}

.certificate-head {
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 34px);
}

.certificate-head img {
  width: clamp(116px, 14vw, 178px);
}

.certificate-head span,
.certificate-foot small {
  display: block;
  color: var(--muted);
  font-family: Outfit, sans-serif;
  font-size: clamp(10px, 1.2vw, 14px);
  font-weight: 900;
  text-transform: uppercase;
}

.certificate-head strong {
  display: block;
  margin-top: 6px;
  font-family: "Yeseva One", serif;
  font-size: clamp(28px, 4vw, 58px);
  line-height: 0.95;
}

.certificate-body {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: clamp(28px, 4vw, 54px) auto;
  text-align: center;
}

.certificate-kicker,
.certificate-presented,
.certificate-copy {
  margin-bottom: 0;
  color: #392f25;
  font-weight: 750;
}

.certificate-kicker {
  font-size: clamp(18px, 2vw, 28px);
}

.certificate-body h2 {
  margin: clamp(12px, 2vw, 18px) 0;
  color: var(--red);
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.9;
  font-weight: 900;
}

.certificate-presented {
  font-size: clamp(16px, 1.6vw, 22px);
}

.certificate-name {
  display: inline-block;
  min-width: min(520px, 100%);
  margin: 10px 0 18px;
  padding: 0 24px 12px;
  border-bottom: 3px solid var(--ink);
  font-size: clamp(34px, 5.2vw, 76px);
  font-weight: 900;
  line-height: 1.05;
}

.certificate-copy {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.7;
}

.certificate-foot {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.certificate-foot div {
  min-height: 74px;
  padding-top: 12px;
  border-top: 2px solid rgba(20, 20, 20, 0.22);
}

.certificate-foot strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: 1.25;
}

.signature-line {
  text-align: right;
}

.certificate-system {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(72px, 8vw, 116px) clamp(18px, 6vw, 90px);
  background: #111;
  color: var(--white);
}

.certificate-system .eyebrow {
  background: var(--acid);
  color: var(--ink);
}

.certificate-system h2 {
  margin: 16px 0;
  font-size: clamp(38px, 5.8vw, 82px);
  line-height: 0.95;
  font-weight: 900;
}

.certificate-system p {
  max-width: 760px;
  color: #f4e8d8;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.78;
  font-weight: 650;
}

.readiness-section,
.award-policy-section,
.plan-summary,
.revenue-section,
.scenario-section,
.ai-ops-section,
.decision-section,
.risk-section {
  position: relative;
  padding: clamp(72px, 8vw, 116px) clamp(18px, 6vw, 90px);
}

.readiness-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 22%, rgba(217, 242, 79, 0.36), transparent 26%),
    radial-gradient(circle at 92% 28%, rgba(44, 126, 248, 0.18), transparent 24%),
    #fffaf1;
}

.readiness-copy h2,
.revenue-section h2,
.scenario-section h2,
.ai-ops-section h2,
.decision-section h2,
.risk-section h2 {
  margin: 16px 0;
  font-size: clamp(38px, 5.8vw, 82px);
  line-height: 0.95;
  font-weight: 900;
}

.readiness-copy p,
.scenario-section p,
.decision-section p {
  max-width: 780px;
  color: #392f25;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.78;
  font-weight: 650;
}

.readiness-board {
  display: grid;
  gap: 14px;
}

.readiness-board article,
.revenue-grid article,
.decision-cards article,
.award-policy-grid article,
.ops-grid article,
.plan-summary article,
.risk-list li {
  padding: clamp(22px, 3vw, 32px);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: inset 0 0 0 2px rgba(20, 20, 20, 0.08), 0 18px 44px rgba(20, 20, 20, 0.1);
}

.readiness-board article:nth-child(2) {
  background: var(--acid);
  transform: rotate(-1deg);
}

.readiness-board strong,
.revenue-grid strong,
.decision-cards strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 900;
}

.readiness-board span,
.revenue-grid p,
.decision-cards p {
  display: block;
  color: #392f25;
  font-weight: 700;
  line-height: 1.7;
}

.award-policy-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 220, 255, 0.28), transparent 24%),
    #fffaf1;
}

.award-policy-grid,
.revenue-grid,
.decision-cards,
.ops-grid,
.plan-summary {
  display: grid;
  gap: 18px;
}

.award-policy-grid,
.revenue-grid,
.decision-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
}

.award-policy-grid article:nth-child(1),
.revenue-grid article:nth-child(1),
.decision-cards article:nth-child(2) {
  background: var(--acid);
}

.award-policy-grid article:nth-child(2),
.revenue-grid article:nth-child(2) {
  background: var(--sky);
}

.award-policy-grid span,
.plan-summary span {
  color: var(--blue);
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.award-policy-grid h3,
.ops-grid h3 {
  margin: 16px 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.02;
}

.award-policy-grid ul,
.ops-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.award-policy-grid li,
.ops-grid li {
  position: relative;
  padding-left: 22px;
  color: #392f25;
  font-weight: 760;
  line-height: 1.58;
}

.award-policy-grid li::before,
.ops-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.plan-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(217, 242, 79, 0.34), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(139, 220, 255, 0.28), transparent 26%),
    linear-gradient(180deg, var(--paper), #fffaf1 46%, #f6ead7);
}

.plan-hero .detail-card {
  background: var(--sky);
}

.plan-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: clamp(30px, 4vw, 58px);
}

.plan-summary article {
  min-height: 330px;
}

.plan-summary span {
  display: block;
  color: var(--blue);
  font-size: 52px;
}

.plan-summary h2 {
  margin: 24px 0 12px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1;
}

.plan-summary p,
.risk-list p {
  color: #392f25;
  font-weight: 680;
  line-height: 1.72;
}

.revenue-section,
.ai-ops-section {
  background: #111;
  color: var(--white);
}

.revenue-section .eyebrow,
.ai-ops-section .eyebrow {
  background: var(--acid);
  color: var(--ink);
}

.revenue-section .section-heading p,
.ai-ops-section .section-heading p {
  color: #f4e8d8;
}

.revenue-grid article {
  color: var(--ink);
}

.revenue-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  font-family: Outfit, sans-serif;
  font-weight: 900;
}

.scenario-section,
.decision-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
}

.scenario-table {
  display: grid;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-soft);
}

.scenario-table div {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1fr 1.2fr;
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.scenario-table div:last-child {
  border-bottom: 0;
}

.scenario-table strong,
.scenario-table span {
  padding: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.scenario-table div:first-child {
  background: var(--ink);
  color: var(--white);
}

.scenario-table div:nth-child(3) {
  background: rgba(217, 242, 79, 0.24);
}

.ops-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
}

.ops-grid article {
  background: rgba(255, 253, 248, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.16);
}

.ops-grid li {
  color: #f4e8d8;
}

.ops-grid li::before {
  background: var(--acid);
}

.decision-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 242, 79, 0.36), transparent 24%),
    #fffaf1;
}

.decision-cards {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.risk-section {
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(20, 20, 20, 0.06) 1px, transparent 1px),
    #fffaf1;
  background-size: 34px 34px;
}

.risk-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.risk-list strong {
  display: block;
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.12;
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

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

  .site-header,
  .certificate-hero,
  .certificate-system,
  .site-footer {
    display: none !important;
  }

  .motion-ready .reveal,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .plan-page,
  .readiness-section,
  .award-policy-section,
  .plan-summary,
  .revenue-section,
  .scenario-section,
  .ai-ops-section,
  .decision-section,
  .risk-section,
  .home-cta {
    background: #fff !important;
    color: #141414 !important;
    box-shadow: none !important;
    break-inside: avoid;
  }

  .plan-page .page-hero,
  .plan-summary,
  .revenue-section,
  .scenario-section,
  .ai-ops-section,
  .decision-section,
  .risk-section,
  .home-cta {
    padding: 18mm 0 0 !important;
  }

  .plan-page .page-hero,
  .plan-summary,
  .revenue-grid,
  .scenario-section,
  .ops-grid,
  .decision-section,
  .risk-list,
  .home-cta {
    display: block !important;
  }

  .plan-page h1 {
    font-size: 34pt !important;
    line-height: 1.05 !important;
  }

  .plan-page h2,
  .revenue-section h2,
  .scenario-section h2,
  .ai-ops-section h2,
  .decision-section h2,
  .risk-section h2 {
    font-size: 24pt !important;
    line-height: 1.15 !important;
    color: #141414 !important;
  }

  .plan-page p,
  .plan-page li,
  .plan-page span {
    color: #333 !important;
    font-size: 10.5pt !important;
    line-height: 1.6 !important;
  }

  .plan-summary article,
  .revenue-grid article,
  .ops-grid article,
  .decision-cards article,
  .risk-list li,
  .detail-card {
    margin: 8mm 0 0 !important;
    min-height: 0 !important;
    background: #fffdf8 !important;
    box-shadow: inset 0 0 0 1.5pt rgba(20, 20, 20, 0.14) !important;
    break-inside: avoid;
  }

  .plan-summary article {
    min-height: 0 !important;
  }

  .plan-summary span {
    font-size: 16pt !important;
  }

  .award-policy-grid h3,
  .ops-grid h3,
  .plan-summary h2 {
    margin: 7mm 0 3mm !important;
  }

  .hero-actions,
  .button {
    display: none !important;
  }

  .site-page,
  .certificate-showcase {
    padding: 0;
  }

  .award-certificate {
    width: 297mm;
    height: 210mm;
    box-shadow: none;
    border-radius: 0;
    page-break-inside: avoid;
  }
}

@media (max-width: 980px) {
  .home-hero,
  .page-hero,
  .competition-strip,
  .competition-cards,
  .flow-section,
  .home-cta,
  .competition-layout,
  .credibility-block,
  .register-panel,
  .organizer-panel,
  .certificate-system,
  .readiness-section,
  .award-policy-grid,
  .revenue-grid,
  .scenario-section,
  .decision-section,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .poster-feature,
  .poster-panel {
    position: relative;
    top: auto;
    width: min(100%, 460px);
    justify-self: center;
  }

  .quick-facts,
  .trust-grid,
  .series-grid,
  .partner-grid,
  .plan-summary,
  .risk-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .competition-strip {
    margin-left: 18px;
    margin-right: 18px;
  }
}

@media (max-width: 640px) {
  .site-page {
    padding-top: 96px;
  }

  .home-hero,
  .page-hero,
  .competition-strip,
  .competition-lineup,
  .trust-section,
  .flow-section,
  .home-cta,
  .competition-layout,
  .series-section,
  .credibility-block,
  .register-panel,
  .organizer-panel,
  .certificate-showcase,
  .certificate-system,
  .readiness-section,
  .award-policy-section,
  .plan-summary,
  .revenue-section,
  .scenario-section,
  .ai-ops-section,
  .decision-section,
  .risk-section,
  .gallery-grid,
  .partner-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 32px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(36px, 10.8vw, 52px);
    line-height: 0.98;
  }

  .quick-facts,
  .trust-grid,
  .competition-cards,
  .series-grid,
  .award-policy-grid,
  .revenue-grid,
  .plan-summary,
  .ops-grid,
  .risk-list,
  .flow-list,
  .info-table,
  .gallery-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .competition-strip {
    border-radius: 30px;
    margin-bottom: 54px;
  }

  .home-cta,
  .register-panel {
    align-items: start;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .scenario-table div {
    grid-template-columns: 1fr;
  }

  .scenario-table div:first-child {
    display: none;
  }

  .award-certificate {
    min-height: 640px;
    aspect-ratio: auto;
    padding: 28px 22px;
  }

  .certificate-showcase {
    padding-top: 118px;
  }

  .certificate-head,
  .certificate-foot {
    grid-template-columns: 1fr;
  }

  .certificate-foot {
    gap: 10px;
  }

  .signature-line {
    text-align: left;
  }

  .gallery-grid .archive-feature {
    grid-row: span 2;
  }
}
