:root {
  --brand: rgb(8 32 145);
  --brand-2: rgb(32 68 220);
  --lime: rgb(202 247 0);
  --ink: rgb(23 31 64);
  --ink-soft: rgb(63 75 121);
  --line: rgb(208 219 255);
  --white: rgb(255 255 255);
  --radius: 22px;
  --shadow: 0 22px 38px rgb(8 32 145 / 0.18);
  --header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: rgb(8 32 145) rgb(231 237 255);
  scrollbar-width: thin;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Manrope, sans-serif;
  color: var(--ink);
  background: rgb(246 250 255);
  cursor: url("./assets/brush-cursor.svg") 6 26, auto;
  overflow-x: hidden;
}

a,
button,
input,
select,
label,
.btn,
[data-modal-open],
[data-modal-close] {
  cursor: url("./assets/brush-cursor.svg") 6 26, pointer;
}

*::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

*::-webkit-scrollbar-track {
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      135deg,
      rgb(235 241 255) 0 10px,
      rgb(225 233 255) 10px 20px
    );
  border: 1px solid rgb(162 182 255 / 0.6);
}

*::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 3px solid rgb(232 238 255);
  background:
    linear-gradient(165deg, rgb(8 32 145) 0%, rgb(60 89 248) 65%, rgb(202 247 0) 100%);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.25),
    0 3px 8px rgb(8 32 145 / 0.28);
}

*::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(165deg, rgb(7 27 124) 0%, rgb(47 77 234) 58%, rgb(216 255 92) 100%);
}

*::-webkit-scrollbar-corner {
  background: rgb(235 241 255);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.08;
  font-family: "Unbounded", sans-serif;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.45rem, 3.2vw, 2.6rem);
}

h3 {
  font-size: clamp(1rem, 2vw, 1.22rem);
}

p {
  margin: 0 0 14px;
  line-height: 1.62;
  font-weight: 500;
}

ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.65;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 88px 0;
  position: relative;
}

main > section {
  min-height: calc(100svh - var(--header-h));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgb(8 32 145 / 0.14);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.logo-image {
  display: none;
  height: 48px;
  width: auto;
}

.logo-fallback {
  display: inline-block;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
}

.logo.has-image .logo-image {
  display: block;
}

.logo.has-image .logo-fallback {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav a {
  color: rgb(20 35 98);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: linear-gradient(145deg, rgb(202 247 0) 0%, rgb(221 255 87) 100%);
  color: var(--brand) !important;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 800 !important;
  border: 1px solid rgb(176 214 0 / 0.7);
  box-shadow: 0 8px 16px rgb(143 178 5 / 0.22);
}

.nav-cta:hover {
  color: rgb(6 24 115) !important;
  box-shadow: 0 10px 18px rgb(143 178 5 / 0.32);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  border: 1px solid rgb(8 32 145 / 0.35);
  background: transparent;
  color: var(--brand);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  font-size: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, rgb(8 32 145) 0%, #1444e5 42%, #335ee8 100%);
  color: #fff;
  padding: 96px 0 84px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.paint-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.paint-dot {
  position: absolute;
  width: var(--size);
  height: var(--size);
  left: var(--x);
  top: var(--y);
  border-radius: 42% 58% 62% 38% / 38% 45% 55% 62%;
  background: var(--color);
  filter: blur(0.2px);
  mix-blend-mode: screen;
  animation: paint-pop var(--life) ease-out forwards;
}

.hero-doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.doodle {
  position: absolute;
  display: block;
  opacity: 0.45;
}

.d1 {
  left: 6%;
  top: 19%;
  width: 66px;
  height: 66px;
  border: 3px dashed rgb(255 255 255 / 0.5);
  border-radius: 50%;
  animation: spin-soft 16s linear infinite;
}

.d2 {
  right: 17%;
  top: 24%;
  width: 88px;
  height: 18px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.28);
  transform: rotate(-16deg);
}

.d3 {
  left: 43%;
  bottom: 16%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgb(202 247 0 / 0.65);
  box-shadow:
    26px -14px 0 rgb(255 255 255 / 0.34),
    48px 7px 0 rgb(202 247 0 / 0.42),
    -22px 12px 0 rgb(255 255 255 / 0.3);
}

.d4 {
  right: 4%;
  bottom: 14%;
  width: 76px;
  height: 76px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 71%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: rgb(255 255 255 / 0.36);
  animation: pulse-soft 4.5s ease-in-out infinite;
}

.hero-particle {
  position: absolute;
  left: var(--x);
  bottom: -30px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.25);
  box-shadow: 0 0 14px rgb(202 247 0 / 0.45);
  animation: particle-rise var(--duration) linear infinite;
  animation-delay: var(--delay);
}

.hero-shape {
  position: absolute;
  pointer-events: none;
}

.shape-main {
  width: 620px;
  height: 620px;
  border-radius: 57% 43% 67% 33% / 35% 58% 42% 65%;
  background: var(--lime);
  right: -240px;
  top: -40px;
  opacity: 0.95;
  animation: hero-blob-drift 14s ease-in-out infinite alternate;
}

.shape-side {
  width: 270px;
  height: 270px;
  border-radius: 54% 46% 36% 64% / 41% 64% 36% 59%;
  background: rgb(218 255 71 / 0.9);
  left: -80px;
  bottom: -90px;
  animation: hero-blob-drift 11s ease-in-out infinite alternate-reverse;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 0.01em;
  color: var(--brand);
  background: var(--lime);
  text-shadow: 0 1px 0 rgb(255 255 255 / 0.35);
}

.hero-copy h1 {
  margin-bottom: 18px;
}

.hero-title {
  display: grid;
  gap: 12px;
  max-width: 13.2ch;
  line-height: 1.01;
  letter-spacing: -0.028em;
}

.hero-title-main {
  display: grid;
  gap: 2px;
}

.hero-title-line {
  display: block;
}

.hero-copy .hero-title-accent {
  display: inline-block;
  width: fit-content;
  background: rgb(255 108 165);
  border-radius: 12px;
  padding: 0.1em 0.3em;
  color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.02;
}

.camp-title {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(0.8rem, 1.4vw, 0.98rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 0.48);
  background: rgb(255 255 255 / 0.14);
  backdrop-filter: blur(3px);
}

.hero-copy p {
  max-width: 62ch;
  color: rgb(231 239 255);
}

.hero-copy .eyebrow {
  color: var(--brand);
  text-shadow: 0 1px 0 rgb(255 255 255 / 0.35);
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-apply-cta {
  position: relative;
  min-height: 58px;
  padding: 15px 28px;
  border-radius: 15px;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.015em;
  color: rgb(7 28 130);
  background: linear-gradient(145deg, rgb(202 247 0) 0%, rgb(229 255 104) 100%);
  border: 1px solid rgb(178 214 8 / 0.88);
  box-shadow:
    0 16px 26px rgb(7 23 106 / 0.38),
    0 0 0 3px rgb(202 247 0 / 0.24);
  animation: hero-cta-pulse 2.5s ease-in-out infinite;
}

.hero-apply-cta:hover {
  transform: translateY(-4px) scale(1.035);
  box-shadow:
    0 22px 34px rgb(7 23 106 / 0.45),
    0 0 0 4px rgb(202 247 0 / 0.34);
}

.hero-apply-cta:focus-visible {
  outline: 2px solid rgb(255 255 255 / 0.9);
  outline-offset: 3px;
}

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

.hero-stats article {
  border: 1px solid rgb(255 255 255 / 0.34);
  background: rgb(255 255 255 / 0.14);
  border-radius: 12px;
  padding: 10px 11px;
}

.hero-stats strong {
  display: block;
  font-family: Unbounded, sans-serif;
  font-size: 0.93rem;
}

.hero-stats span {
  font-size: 0.8rem;
  color: rgb(218 230 255);
}

.hero-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hero-collage img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  border: 3px solid rgb(202 247 0 / 0.88);
  box-shadow: 0 10px 20px rgb(8 16 70 / 0.32);
  animation: card-float 5.5s ease-in-out infinite;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.hero-collage img:hover {
  transform: translateY(-6px) rotate(-1deg) scale(1.02);
  border-color: rgb(255 255 255 / 0.95);
  box-shadow: 0 16px 28px rgb(8 16 70 / 0.4);
}

.hero-collage img:nth-child(1) {
  grid-column: span 2;
  height: 220px;
  animation-delay: 0.2s;
}

.hero-collage img:nth-child(2) {
  animation-delay: 0.9s;
}

.hero-collage img:nth-child(3) {
  animation-delay: 1.4s;
}

.hero-collage img:nth-child(4) {
  animation-delay: 1.9s;
  object-position: center 28%;
}

.btn {
  border: none;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgb(255 255 255 / 0.36), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  color: var(--brand);
  background: var(--lime);
  padding: 13px 20px;
  box-shadow: 0 15px 24px rgb(9 26 115 / 0.34);
}

.btn-primary:hover {
  box-shadow: 0 20px 30px rgb(9 26 115 / 0.42);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgb(255 255 255 / 0.44);
  background: rgb(255 255 255 / 0.12);
  padding: 12px 20px;
}

.btn-ghost:hover {
  background: rgb(255 255 255 / 0.2);
}

.about {
  background: rgb(230 234 241);
}

.section-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about-spark {
  width: 112px;
  height: 112px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 71%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: var(--lime);
  opacity: 0.86;
}

.about-spark-a {
  left: 3.5%;
  top: 10%;
}

.about-spark-b {
  right: 4%;
  bottom: 8%;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 28px;
  align-items: center;
}

.about-panel {
  background: linear-gradient(135deg, #2748e5 0%, #3a5cf0 100%);
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 42px;
  padding: 52px 34px 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0 28px 48px rgb(15 40 154 / 0.24);
}

.about-kicker {
  display: inline-flex;
  position: absolute;
  top: -14px;
  left: 26px;
  z-index: 3;
  border-radius: 999px;
  padding: 8px 16px;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.09em;
  color: var(--brand);
  background: var(--lime);
  border: 2px solid rgb(255 255 255 / 0.78);
  box-shadow: 0 10px 16px rgb(8 32 145 / 0.2);
}

.about-panel h2 {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-panel h2 span {
  color: var(--lime);
  display: inline;
}

.about-panel p {
  color: rgb(232 238 255);
  font-size: 1rem;
  line-height: 1.64;
  font-weight: 500;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.about-panel .lead {
  color: rgb(255 255 255);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

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

.about-points article {
  background: rgb(255 255 255 / 0.18);
  border: 1px solid rgb(255 255 255 / 0.32);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1.4;
  color: #fff;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.about-points article:hover {
  transform: translateY(-4px);
  background: rgb(255 255 255 / 0.26);
  box-shadow: 0 14px 24px rgb(8 26 96 / 0.2);
}

.about-points article:last-child {
  grid-column: 1 / -1;
}

.about-image {
  border-radius: 36px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  display: block;
}

.about-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.87rem;
  font-weight: 700;
  color: rgb(8 29 116);
  background: var(--lime);
  border: 1px solid rgb(255 255 255 / 0.4);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.about-tags span:hover {
  transform: translateY(-2px);
  background: rgb(221 255 93);
}

.about-tags span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(8 32 145);
  border: 1px solid rgb(255 255 255 / 0.5);
}

/* Keep explicit contrast in the about panel regardless of animation/helper classes */
.about-panel .about-kicker {
  color: var(--brand);
}

.about-panel .about-points article {
  color: #fff;
}

.about-panel .about-tags span {
  color: var(--brand);
}

.programs {
  background: linear-gradient(180deg, rgb(38 41 46) 0%, rgb(30 33 38) 100%);
  color: #fff;
  position: relative;
}

.programs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 14%, rgb(202 247 0 / 0.15), transparent 24%),
    radial-gradient(circle at 8% 84%, rgb(56 94 255 / 0.18), transparent 22%);
  pointer-events: none;
}

.programs .container {
  position: relative;
  z-index: 1;
}

.decor-grid {
  width: 170px;
  height: 170px;
  left: 4%;
  top: 10%;
  opacity: 0.16;
  background-image: radial-gradient(circle, rgb(202 247 0) 2.2px, transparent 2.2px);
  background-size: 18px 18px;
}

.decor-ring {
  width: 190px;
  height: 190px;
  right: 6%;
  bottom: 10%;
  border-radius: 50%;
  border: 16px solid rgb(202 247 0 / 0.35);
}

.program-kicker {
  display: inline-flex;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgb(230 236 250);
  border: 1px solid rgb(255 255 255 / 0.25);
  background: rgb(255 255 255 / 0.07);
}

.program-heading {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.program-slogan-art {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.slogan-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 18px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slogan-pill-blue {
  color: rgb(238 243 255);
  background: rgb(61 84 246);
}

.slogan-pill-lime {
  color: rgb(16 23 69);
  background: var(--lime);
}

.artist-mascot {
  width: 110px;
  height: 110px;
  position: relative;
  flex: 0 0 auto;
  animation: artist-float 4.8s ease-in-out infinite;
}

.artist-head {
  position: absolute;
  top: 18px;
  left: 34px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgb(255 217 170);
}

.artist-body {
  position: absolute;
  bottom: 18px;
  left: 22px;
  width: 62px;
  height: 46px;
  border-radius: 26px 26px 18px 18px;
  background: linear-gradient(145deg, rgb(61 84 246) 0%, rgb(88 111 255) 100%);
}

.artist-brush {
  position: absolute;
  right: 12px;
  top: 44px;
  width: 40px;
  height: 8px;
  border-radius: 999px;
  background: rgb(248 170 81);
  transform: rotate(-22deg);
}

.artist-brush::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -2px;
  width: 10px;
  height: 12px;
  border-radius: 4px;
  background: var(--lime);
}

.artist-palette {
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 28px;
  height: 24px;
  border-radius: 50% 50% 44% 44%;
  background: rgb(255 255 255 / 0.9);
  box-shadow:
    8px -8px 0 rgb(202 247 0),
    16px -2px 0 rgb(92 117 255),
    20px 7px 0 rgb(252 120 186);
}

.program-intro {
  max-width: 74ch;
  margin: 14px auto 0;
  color: rgb(220 226 241);
  font-size: 1.05rem;
}

.program-top-tags {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.program-top-tags span {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.81rem;
  font-weight: 800;
  color: rgb(18 26 66);
  background: var(--lime);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.program-top-tags span:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 16px rgb(0 0 0 / 0.2);
}

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

.program-card {
  min-height: 318px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-radius: 26px;
  padding: 34px 22px 22px;
  position: relative;
  border: 1px solid rgb(255 255 255 / 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  transform-style: preserve-3d;
}

.program-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 32px rgb(3 7 18 / 0.38);
}

.card-dot {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgb(255 255 255 / 0.4);
  background: rgb(202 247 0);
}

.program-card.light {
  background: linear-gradient(150deg, #f7f8fc 0%, #ffffff 100%);
  color: var(--ink);
}

.program-card.lime {
  background: linear-gradient(150deg, rgb(202 247 0) 0%, rgb(219 255 74) 100%);
  color: rgb(13 20 61);
}

.program-card.dark {
  background: linear-gradient(145deg, #13161d 0%, #1d2029 100%);
  border: 1px solid rgb(255 255 255 / 0.32);
}

.program-card.dark:hover {
  border-color: rgb(202 247 0 / 0.62);
}

.age {
  display: inline-flex;
  margin: 0;
  width: fit-content;
  position: absolute;
  top: -13px;
  left: 18px;
  z-index: 3;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-family: "Unbounded", sans-serif;
  font-size: 0.82rem;
  background: rgb(34 66 212);
  color: #fff;
  border: 2px solid rgb(255 255 255 / 0.72);
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.24);
}

.program-card.lime .age {
  background: rgb(27 41 124);
}

.program-card.dark .age {
  background: rgb(202 247 0);
  color: rgb(16 24 66);
}

.meta {
  margin-top: auto;
  margin-bottom: 0;
  color: inherit;
  opacity: 0.88;
}

.btn-small {
  margin-top: 8px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgb(8 32 145 / 0.25);
  background: #fff;
  color: var(--brand);
}

.program-card.dark .btn-small {
  border-color: rgb(202 247 0 / 0.36);
  color: rgb(202 247 0);
  background: transparent;
}

.benefits {
  background: linear-gradient(180deg, rgb(208 244 58) 0%, rgb(196 238 40) 100%);
}

.decor-wave {
  width: 260px;
  height: 72px;
  right: 6%;
  top: 10%;
  border-radius: 999px;
  border: 3px solid rgb(8 32 145 / 0.28);
  background: rgb(255 255 255 / 0.2);
}

.decor-burst {
  width: 86px;
  height: 86px;
  left: 8%;
  top: 16%;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 71%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: rgb(37 41 52);
  opacity: 0.75;
}

.benefits-tags {
  margin-top: 8px;
  display: flex;
  gap: 14px;
  justify-content: center;
}

.benefits-tags span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgb(31 35 40);
  border: 2px solid rgb(255 255 255 / 0.48);
  font-size: 0.84rem;
  font-weight: 800;
  color: #fff;
}

.benefits-title {
  text-align: center;
  color: rgb(25 31 46);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.benefits-scene {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.scene-card {
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgb(255 255 255 / 0.48);
}

.scene-card-light {
  background: rgb(255 255 255 / 0.8);
}

.scene-card-dark {
  background: linear-gradient(145deg, rgb(31 35 40) 0%, rgb(46 50 58) 100%);
  color: #fff;
}

.scene-title {
  margin: 0 0 10px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(0.92rem, 1.6vw, 1.1rem);
  color: inherit;
}

.scene-note {
  margin: 0 0 12px;
  font-size: 0.96rem;
  color: rgb(227 236 255);
}

.scene-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scene-pills span {
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  color: rgb(14 26 74);
  background: var(--lime);
}

.scene-badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.8rem;
  color: rgb(19 29 72);
  background: var(--lime);
}

.benefits-strip {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.benefits-strip span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 14px;
  font-family: "Unbounded", sans-serif;
  font-size: 0.78rem;
  color: rgb(19 27 61);
  background: rgb(255 255 255 / 0.72);
  border: 1px solid rgb(152 172 58 / 0.55);
}

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

.benefit-grid article {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 24px 22px 20px;
  border: 1px solid rgb(145 163 52 / 0.45);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.benefit-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 24px rgb(52 76 7 / 0.2);
}

.benefit-num {
  position: absolute;
  top: -12px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: "Unbounded", sans-serif;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(145deg, rgb(34 66 212) 0%, rgb(15 40 163) 100%);
}

.benefit-grid h3 {
  color: rgb(24 31 54);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  margin-bottom: 12px;
}

.benefit-grid li {
  margin-bottom: 5px;
  color: rgb(39 50 84);
}

.register {
  background: rgb(236 238 244);
}

.decor-corner {
  width: 114px;
  height: 114px;
  left: 3.8%;
  top: 9%;
  border-radius: 22px;
  border: 3px dashed rgb(113 142 236 / 0.42);
  background: rgb(229 236 252 / 0.36);
}

.register-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 28px;
  align-items: stretch;
}

.register-photo {
  border-radius: 34px;
  overflow: hidden;
  border: 5px solid rgb(8 32 145);
  background: #fff;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.register-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 26px rgb(8 32 145 / 0.18);
}

.register-photo img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  display: block;
}

.cardish {
  border-radius: 30px;
  border: 1px solid rgb(255 255 255 / 0.35);
  padding: 28px 30px;
  background: linear-gradient(155deg, rgb(8 32 145) 0%, rgb(36 70 225) 100%);
  box-shadow: 0 18px 30px rgb(8 32 145 / 0.26);
}

.register-tags {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.register-tags span {
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.8rem;
  font-weight: 800;
  color: rgb(18 32 96);
  border: 1px solid rgb(255 255 255 / 0.52);
  background: rgb(213 225 255);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.register-tags span:hover {
  transform: translateY(-2px);
  background: rgb(222 235 255);
}

.form {
  display: grid;
  gap: 12px;
}

.register .form h2 {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: clamp(2rem, 3.5vw, 3.05rem);
  line-height: 1.05;
}

.register-title-highlight {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.34em;
  row-gap: 0.14em;
  background: var(--lime);
  color: var(--brand);
  border-radius: 14px;
  padding: 0.1em 0.24em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.register-title-highlight > span {
  display: inline-block;
}

.register .form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: rgb(236 242 255);
  font-size: 1.03rem;
}

.register input,
.register select {
  width: 100%;
  height: 56px;
  border: 1px solid rgb(169 188 247);
  border-radius: 14px;
  padding: 0 16px;
  font: inherit;
  background: rgb(250 252 255);
}

.register input:focus,
.register select:focus {
  outline: 2px solid rgb(8 32 145 / 0.2);
  border-color: var(--brand);
}

.form-note {
  margin: 0;
  min-height: 24px;
  color: var(--brand);
  font-weight: 700;
}

.bot-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.turnstile-box {
  min-height: 66px;
}

.phone-row {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.phone-row .phone-country,
.phone-row .phone-input {
  width: 100%;
}

.register-submit {
  width: 100%;
  min-height: 66px;
  margin-top: 8px;
  border-radius: 18px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  color: var(--brand);
  background: linear-gradient(145deg, rgb(202 247 0) 0%, rgb(223 255 95) 100%);
  border: 1px solid rgb(179 214 4 / 0.85);
  box-shadow: 0 16px 28px rgb(132 164 8 / 0.28);
}

.register-submit:hover {
  color: rgb(7 27 124);
  box-shadow: 0 18px 32px rgb(132 164 8 / 0.38);
}

.footer {
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgb(202 247 0 / 0.22), transparent 28%),
    radial-gradient(circle at 88% 88%, rgb(252 120 186 / 0.16), transparent 26%),
    linear-gradient(155deg, rgb(8 32 145) 0%, rgb(14 43 175) 48%, rgb(22 58 209) 100%);
  border-top: 2px solid rgb(202 247 0 / 0.52);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    125deg,
    rgb(255 255 255 / 0.05) 0 12px,
    transparent 12px 28px
  );
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-hero {
  max-width: 760px;
}

.footer-kicker {
  display: inline-flex;
  margin: 0 0 10px;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgb(12 32 107);
  background: var(--lime);
}

.footer h2 {
  color: #fff;
  margin-bottom: 8px;
}

.footer .lead {
  color: rgb(225 234 255);
  margin-bottom: 0;
}

.contact-grid {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.contact-grid > .contact-item {
  color: rgb(238 244 255);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgb(255 255 255 / 0.24);
  background: rgb(255 255 255 / 0.1);
  border-radius: 16px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.contact-grid > .contact-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  opacity: 0.98;
}

.contact-grid > a.contact-item:hover {
  transform: translateY(-3px);
  color: #fff;
  border-color: rgb(202 247 0 / 0.72);
  background: rgb(202 247 0 / 0.16);
}

.contact-grid > a.contact-item:focus-visible {
  outline: 2px solid rgb(202 247 0 / 0.85);
  outline-offset: 2px;
}

.footer-note {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-note span {
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgb(14 30 97);
  background: rgb(227 237 255);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #0ca649, #25d366);
  box-shadow: 0 10px 25px rgb(16 53 24 / 0.37);
}

.whatsapp-float img {
  width: 31px;
  height: 31px;
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 60;
  background:
    radial-gradient(circle at 18% 12%, rgb(202 247 0 / 0.18), transparent 35%),
    radial-gradient(circle at 88% 84%, rgb(255 107 170 / 0.16), transparent 32%),
    rgb(9 15 48 / 0.74);
  backdrop-filter: blur(8px);
}

.modal.is-open {
  display: flex;
  animation: modal-overlay-in 0.24s ease;
}

.modal-dialog {
  width: min(760px, 95vw);
  max-height: min(89vh, 900px);
  overflow: auto;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgb(202 247 0 / 0.14), transparent 36%),
    linear-gradient(165deg, rgb(255 255 255) 0%, rgb(246 249 255) 100%);
  padding: 28px 24px 24px;
  border: 1px solid rgb(179 197 255 / 0.82);
  position: relative;
  color: var(--ink);
  box-shadow:
    0 38px 80px rgb(7 20 74 / 0.4),
    inset 0 1px 0 rgb(255 255 255 / 0.8);
  animation: modal-dialog-in 0.28s ease;
}

.modal-dialog::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 64px;
  width: 74px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(202 247 0) 0%, rgb(220 255 88) 100%);
  box-shadow: 0 0 0 1px rgb(164 203 0 / 0.55);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: 1px solid rgb(170 192 255 / 0.9);
  background: rgb(255 255 255 / 0.95);
  color: var(--brand);
  border-radius: 12px;
  width: 38px;
  height: 38px;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.modal-close:hover {
  transform: scale(1.07);
  color: rgb(5 24 122);
  border-color: rgb(153 183 255 / 0.96);
  background: rgb(240 246 255 / 0.96);
}

.modal-close:focus-visible {
  outline: 2px solid rgb(202 247 0 / 0.9);
  outline-offset: 2px;
}

.modal-dialog h3 {
  margin: 0 42px 14px 0;
  color: var(--brand);
  font-family: "Unbounded", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(1.18rem, 2.4vw, 1.9rem);
}

.modal-dialog p {
  color: rgb(38 52 96);
  font-size: 1rem;
  line-height: 1.62;
}

.modal-dialog ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.modal-dialog li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgb(36 50 92);
  font-weight: 600;
  line-height: 1.5;
}

.modal-dialog li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.4em;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(145deg, rgb(202 247 0) 0%, rgb(143 186 0) 100%);
  box-shadow: 0 0 0 2px rgb(8 32 145 / 0.15);
}

.modal-dialog h4 {
  margin: 16px 0 8px;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgb(202 247 0 / 0.35);
  border: 1px solid rgb(172 205 22 / 0.65);
}

.modal-dialog strong {
  color: var(--brand);
}

.modal-dialog-program {
  border-top: 5px solid var(--brand);
}

.modal-dialog-form {
  width: min(680px, 95vw);
  border-top: 5px solid var(--lime);
}

.modal-dialog-form::before {
  background: linear-gradient(90deg, rgb(8 32 145) 0%, rgb(32 68 220) 100%);
  box-shadow: 0 0 0 1px rgb(32 68 220 / 0.45);
}

.modal-dialog-form .form {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.modal-dialog-form .form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  color: rgb(23 37 93);
}

.modal-dialog-form input,
.modal-dialog-form select {
  width: 100%;
  height: 52px;
  border-radius: 13px;
  border: 1px solid rgb(162 185 255 / 0.95);
  background: rgb(255 255 255 / 0.92);
  font: inherit;
  padding: 0 14px;
  color: rgb(20 34 88);
}

.modal-dialog-form input:focus,
.modal-dialog-form select:focus {
  outline: 2px solid rgb(8 32 145 / 0.2);
  border-color: var(--brand);
}

.modal-dialog-form .btn {
  margin-top: 6px;
}

.modal-dialog-form .form-note {
  min-height: 22px;
  margin-top: 2px;
}

.modal-dialog::-webkit-scrollbar {
  width: 10px;
}

.modal-dialog::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid rgb(237 243 255);
  background: linear-gradient(160deg, rgb(8 32 145) 0%, rgb(48 82 236) 70%, rgb(202 247 0) 100%);
}

.modal-dialog::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgb(231 238 255);
}

@keyframes modal-overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modal-dialog-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes card-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes hero-blob-drift {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  100% {
    transform: translateY(18px) translateX(-12px) rotate(8deg);
  }
}

@keyframes particle-rise {
  0% {
    transform: translateY(0) scale(0.95);
    opacity: 0;
  }
  12% {
    opacity: 0.75;
  }
  85% {
    opacity: 0.32;
  }
  100% {
    transform: translateY(-92vh) scale(1.15);
    opacity: 0;
  }
}

@keyframes paint-pop {
  0% {
    transform: translate(-50%, -50%) scale(0.4) rotate(0deg);
    opacity: 0.95;
  }
  100% {
    transform: translate(-50%, -50%) translateY(-28px) scale(1.35) rotate(30deg);
    opacity: 0;
  }
}

@keyframes spin-soft {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.56;
  }
}

@keyframes artist-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(-2deg);
  }
}

@keyframes hero-cta-pulse {
  0%,
  100% {
    box-shadow:
      0 16px 26px rgb(7 23 106 / 0.38),
      0 0 0 3px rgb(202 247 0 / 0.24);
  }
  50% {
    box-shadow:
      0 20px 30px rgb(7 23 106 / 0.44),
      0 0 0 7px rgb(202 247 0 / 0.2);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-wrap,
  .program-grid,
  .benefit-grid,
  .register-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 86px 0 72px;
  }

  .program-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .artist-mascot {
    width: 82px;
    height: 82px;
  }

  .program-slogan-art {
    gap: 8px;
  }

  .slogan-pill {
    font-size: 0.88rem;
    padding: 7px 12px;
  }

  .benefits-title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .benefits-scene {
    grid-template-columns: 1fr;
  }

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

  .benefit-grid article {
    padding: 20px 14px 16px;
    transform: none !important;
  }

  .benefit-grid li {
    overflow-wrap: anywhere;
  }

  .program-card,
  .about-points article,
  .register-photo {
    transform: none !important;
  }

  .benefits-strip {
    grid-template-columns: 1fr;
  }

  .benefits-tags {
    gap: 10px;
  }

  .benefits-tags span {
    width: 36px;
    height: 36px;
    font-size: 0.74rem;
  }

  .register-wrap {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .cardish {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .register-photo {
    border-width: 4px;
    border-radius: 24px;
  }

  .register .form h2 {
    font-size: clamp(1.62rem, 8.2vw, 2rem);
    line-height: 1.1;
    margin-bottom: 10px;
    overflow-wrap: anywhere;
  }

  .register-title-highlight {
    column-gap: 0.26em;
    row-gap: 0.1em;
  }

  .register .form label {
    font-size: 0.95rem;
    gap: 6px;
  }

  .register input,
  .register select {
    height: 50px;
    border-radius: 12px;
    padding: 0 13px;
  }

  .register-submit {
    min-height: 58px;
    font-size: 0.98rem;
    border-radius: 14px;
  }

  .shape-main {
    right: -230px;
    top: 0;
    opacity: 0.78;
  }

  .hero-copy {
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(150deg, rgb(8 32 145 / 0.7) 0%, rgb(8 32 145 / 0.24) 100%);
    border: 1px solid rgb(255 255 255 / 0.22);
    backdrop-filter: blur(2px);
  }

  .hero-copy h1 {
    color: #fff;
    text-shadow: 0 3px 12px rgb(2 8 35 / 0.42);
  }

  .hero-title {
    max-width: 100%;
    gap: 10px;
    line-height: 1.04;
  }

  .hero-title-main {
    gap: 3px;
  }

  .hero-copy .hero-title-accent {
    color: #fff;
    padding: 0.12em 0.24em;
  }

  .hero-copy p {
    color: rgb(240 245 255);
    font-weight: 600;
    text-shadow: 0 2px 10px rgb(2 8 35 / 0.3);
  }

  .camp-title {
    color: #fff;
    background: rgb(8 32 145 / 0.62);
    border-color: rgb(255 255 255 / 0.5);
  }

  .hero .btn-ghost {
    color: #fff;
    border-color: rgb(255 255 255 / 0.62);
    background: rgb(255 255 255 / 0.18);
  }

  .logo-image {
    height: 40px;
  }

  .hero-collage img {
    height: 170px;
  }

  .hero-collage img:nth-child(1) {
    height: 190px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-stats article {
    background: rgb(255 255 255 / 0.2);
    border-color: rgb(255 255 255 / 0.45);
  }

  .hero-apply-cta {
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 1.02rem;
  }

  .hero-stats strong,
  .hero-stats span {
    color: #fff;
  }

  .about-image img,
  .register-photo img {
    min-height: 320px;
  }

  .about-panel {
    padding: 28px 18px 18px;
    border-radius: 26px;
  }

  .about-kicker {
    left: 16px;
    top: -22px;
  }

  .about h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.15rem);
  }

  .about .lead {
    font-size: 1.02rem;
  }

  .about p {
    font-size: 0.95rem;
  }

  .about-image {
    border-width: 4px;
    border-radius: 24px;
  }

  .about-image img {
    min-height: 360px;
  }

  .about-points article {
    font-size: 0.9rem;
    padding: 12px;
  }

  .section-decor {
    display: none;
  }

  .hero-doodles {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 4vw;
    right: 4vw;
    border-radius: 14px;
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    background: rgb(255 255 255 / 0.98);
    border: 1px solid rgb(8 32 145 / 0.18);
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .contact-grid > .contact-item {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .contact-grid > .contact-item svg {
    width: 19px;
    height: 19px;
  }

  .modal {
    padding: 10px;
  }

  .modal-dialog {
    width: min(96vw, 96vw);
    max-height: 92vh;
    border-radius: 20px;
    padding: 18px 14px 16px;
  }

  .modal-dialog::before {
    right: 54px;
    top: 11px;
    width: 54px;
    height: 7px;
  }

  .modal-close {
    right: 10px;
    top: 8px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 22px;
  }

  .modal-dialog h3 {
    margin: 2px 36px 10px 0;
    font-size: clamp(1.04rem, 6vw, 1.32rem);
  }

  .modal-dialog p,
  .modal-dialog li {
    font-size: 0.94rem;
  }

  .modal-dialog h4 {
    margin: 13px 0 7px;
    padding: 5px 9px;
    font-size: 0.7rem;
  }

  .modal-dialog-form input,
  .modal-dialog-form select {
    height: 48px;
    border-radius: 11px;
    padding: 0 12px;
  }

  .phone-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-particle,
  .paint-dot,
  .doodle,
  .artist-mascot,
  .hero-collage img,
  .shape-main,
  .shape-side,
  .reveal,
  .hero-apply-cta {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
