:root {
  --ink: #111118;
  --muted: #6f707b;
  --purple: #3d358d;
  --violet: #5a4dcc;
  --violet-soft: #8a7df0;
  --pink: #f13693;
  --gold: #eda500;
  --cyan: #4dd8ed;
  --paper: #ffffff;
  --soft: #f7f7fa;
  --line: #e9e9ee;
  --shadow: 0 14px 45px rgba(25, 20, 55, .11);
  --glass-white: rgba(255, 255, 255, .72);
  --glass-white-strong: rgba(255, 255, 255, .88);
  --glass-border: rgba(255, 255, 255, .9);
  --glass-shadow: 0 24px 68px rgba(34, 26, 78, .14), 0 7px 20px rgba(43, 34, 88, .07), inset 0 1px 0 rgba(255, 255, 255, .98), inset 0 -1px 0 rgba(104, 86, 191, .1);
  --radius-frame: 32px;
  --radius-card: 24px;
  --radius-inner: 15px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

body.menu-open {
  overflow: hidden;
}

* {
  scrollbar-color: rgba(90, 77, 204, .72) #f2f1f7;
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #f2f1f7;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--violet-soft), var(--pink));
  border: 2px solid #f2f1f7;
  border-radius: 999px;
}

button,
input,
textarea {
  font: inherit;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

:where(a, button, input, textarea):focus-visible {
  outline: 3px solid rgba(90, 77, 204, .35);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

::selection {
  color: #fff;
  background: var(--purple);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: #111;
  border-radius: 12px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 500;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink), var(--gold));
  background-size: 220% 100%;
  box-shadow: 0 0 16px rgba(90, 77, 204, .45);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
  animation: progress-spectrum 7.2s linear infinite;
}

.magic-aurora {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  width: clamp(300px, 34vw, 460px);
  aspect-ratio: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 44% 43%, rgba(90, 216, 237, .16), transparent 24%),
    radial-gradient(circle at 58% 54%, rgba(123, 100, 238, .14), rgba(241, 54, 147, .08) 34%, transparent 68%);
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(-120%, -120%, 0) translate(-50%, -50%);
  transition: opacity .7s ease;
  will-change: transform;
}

body.magic-pointer-active .magic-aurora {
  opacity: .72;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 28px;
  left: 50%;
  display: grid;
  grid-template-columns: 126px 1fr 130px;
  align-items: center;
  width: min(1152px, 95%);
  min-height: 76px;
  padding: 8px 10px 8px 18px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .96), transparent 31%),
    linear-gradient(118deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .68) 58%, rgba(239, 235, 255, .76));
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--glass-shadow), 0 0 0 1px rgba(94, 74, 184, .05);
  backdrop-filter: blur(20px) saturate(1.58);
  -webkit-backdrop-filter: blur(20px) saturate(1.58);
  transform: translate3d(-50%, 0, 0);
  animation: nav-in 1.15s var(--ease) both;
  transition: width 1.02s var(--ease), top 1.02s var(--ease), min-height 1.02s var(--ease), padding 1.02s var(--ease), background .72s ease, box-shadow .72s ease, border-color .72s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(112deg, transparent 17%, rgba(255, 255, 255, .16) 37%, rgba(255, 255, 255, .92) 49%, rgba(187, 179, 255, .22) 55%, transparent 72%);
  clip-path: inset(0 round 999px);
  pointer-events: none;
  transform: translateX(-135%);
  animation: header-shine 8.2s 1.2s var(--ease) infinite;
}

.site-header::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% -35%, rgba(255, 255, 255, .9), transparent 31%),
    radial-gradient(circle at 82% 145%, rgba(123, 101, 229, .17), transparent 37%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  pointer-events: none;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header.scrolled {
  top: 14px;
  width: min(880px, calc(100% - 32px));
  min-height: 66px;
  padding: 6px 9px 6px 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .98), transparent 33%),
    linear-gradient(118deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .74) 58%, rgba(238, 234, 255, .82));
  border-color: rgba(255, 255, 255, .86);
  box-shadow: 0 24px 70px rgba(36, 28, 78, .17), 0 3px 12px rgba(32, 27, 59, .08), inset 0 1px 0 #fff, inset 0 -1px 0 rgba(100, 81, 191, .08);
}

.header-logo {
  display: flex;
  align-items: center;
  height: 52px;
  transition: height 1.02s var(--ease);
}

.header-logo img {
  width: auto;
  max-width: 112px;
  max-height: 48px;
  object-fit: contain;
  transition: max-width 1.02s var(--ease), max-height 1.02s var(--ease), transform 1.02s var(--ease);
}

.primary-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  isolation: isolate;
}

.nav-indicator {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  width: 0;
  height: 38px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(225, 219, 255, .56));
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 #fff, 0 8px 20px rgba(77, 63, 168, .12), 0 0 0 1px rgba(99, 81, 193, .08);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, -50%);
  transition: width .48s var(--ease), transform .58s var(--ease), opacity .32s ease;
}

.nav-indicator.ready {
  opacity: 1;
}

.site-header.is-transitioning .nav-indicator {
  opacity: 0;
  transition: opacity .2s ease;
}

.nav-link {
  position: relative;
  padding: 11px 14px;
  color: #2d2c37;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  transition: color .34s ease, background .34s ease, transform .34s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #211c66;
  background: transparent;
  transform: translateY(-1px);
}

.nav-register {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 0 17px;
  color: #20202a;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(242, 239, 255, .64));
  border: 1px solid rgba(255, 255, 255, .84);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(44, 34, 91, .14), inset 0 1px 0 #fff, 0 0 0 1px rgba(89, 71, 177, .07);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  transition: color .38s ease, background .38s ease, transform .38s var(--ease), box-shadow .38s ease, min-height 1.02s var(--ease), padding 1.02s var(--ease);
}

.nav-register::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -55%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .92), transparent);
  transform: skewX(-20deg);
  transition: left .82s var(--ease);
}

.nav-register:hover::after,
.nav-register:focus-visible::after {
  left: 125%;
}

.nav-register:hover,
.nav-register:focus-visible {
  color: #fff;
  background: var(--purple);
  box-shadow: 0 9px 25px rgba(61, 53, 141, .28);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #17171f;
  border-radius: 2px;
  transition: transform .38s var(--ease), opacity .38s ease;
}

.hero {
  --hero-shift: 0px;
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.hero-purple {
  position: absolute;
  z-index: -3;
  inset: 0 0 0 66.66%;
  background:
    radial-gradient(circle at 32% 42%, rgba(118, 105, 228, .4), transparent 33%),
    linear-gradient(145deg, #494198 0%, #393281 57%, #312b72 100%);
}

.hero-purple::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .6) 0 1px, transparent 1.5px);
  background-size: 25px 25px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.hero-purple::after {
  content: "";
  position: absolute;
  inset: -20% -55%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, .1) 49%, rgba(77, 216, 237, .12) 51%, transparent 58%);
  transform: translateX(-35%);
  animation: purple-sweep 10.5s 2s var(--ease) infinite;
}

.hero-sparks {
  position: absolute;
  z-index: 4;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-sparks span {
  position: absolute;
  top: var(--spark-y);
  left: var(--spark-x);
  width: var(--spark-size);
  height: var(--spark-size);
  background: var(--spark-color);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--spark-color), 0 0 18px color-mix(in srgb, var(--spark-color) 62%, transparent);
  opacity: 0;
  animation: hero-spark var(--spark-duration) var(--spark-delay) ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0 33.34% 0 0;
  display: grid;
  grid-template-columns: repeat(18, minmax(0, 1fr));
  grid-template-rows: repeat(14, minmax(0, 1fr));
  overflow: hidden;
  background-color: #fff;
  background-image:
    linear-gradient(to right, transparent calc(100% - .5px), #dddde4 calc(100% - .5px)),
    linear-gradient(to bottom, transparent calc(100% - .5px), #dddde4 calc(100% - .5px));
  background-size: 5.5556% 7.1429%;
}

.grid-cell {
  position: relative;
  min-width: 0;
  min-height: 0;
  opacity: .46;
  transition: opacity .3s ease, box-shadow .45s ease, background .45s ease;
  contain: paint;
}

.grid-cell:hover,
.grid-cell.lit {
  opacity: .94;
  background: color-mix(in srgb, var(--cell-color, #5fd9e9) 5%, transparent);
  box-shadow: inset 0 0 22px color-mix(in srgb, var(--cell-color, #5fd9e9) 36%, transparent);
}

.hero-copy {
  position: absolute;
  z-index: 5;
  top: 16.5%;
  left: clamp(32px, 4.6vw, 72px);
  width: min(590px, 52vw);
  animation: copy-in 1.3s .18s var(--ease) both;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #5b5b68;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-kicker span {
  position: relative;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  border-radius: 999px;
  box-shadow: 0 0 11px rgba(241, 54, 147, .28);
}

.hero-kicker span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 5px;
  height: 5px;
  background: var(--pink);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: kicker-pulse 3s ease-in-out infinite;
}

.hero-date {
  margin: 0 0 clamp(30px, 5vh, 68px);
  color: #20202a;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 800;
  letter-spacing: -.04em;
}

.hero h1 {
  display: flex;
  flex-wrap: nowrap;
  gap: .18em;
  margin: 0;
  color: #121219;
  font-size: clamp(54px, 6.15vw, 96px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--violet);
  letter-spacing: -.06em;
}

.hero-line {
  margin: 18px 0 0;
  color: #24242e;
  font-size: clamp(19px, 2.1vw, 32px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -.04em;
  text-transform: lowercase;
}

.hero-line + .hero-line {
  margin-top: 5px;
}

.hero-line strong {
  position: relative;
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
}

.hero-line strong::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-in 1.05s 1.25s var(--ease) forwards;
}

.hero-actions {
  display: grid;
  gap: 18px;
  width: min(285px, 100%);
  margin-top: clamp(32px, 5vh, 62px);
}

.outline-action {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 34px;
  align-items: center;
  min-height: 66px;
  padding: 5px 9px;
  color: #15151b;
  font-size: 15px;
  font-weight: 700;
  background: rgba(255, 255, 255, .92);
  border: 2px solid #111118;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(80, 213, 231, .75), inset 0 0 0 3px #fff, inset 0 0 0 4px #dcdce1;
  transition: color .42s ease, background .42s ease, transform .42s var(--ease), box-shadow .42s ease;
}

.outline-action::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -45%;
  bottom: -45%;
  left: -38%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .82), transparent);
  transform: skewX(-22deg);
  transition: left .9s var(--ease);
}

.outline-action:hover::after,
.outline-action:focus-visible::after {
  left: 120%;
}

.outline-action > * {
  position: relative;
  z-index: 1;
}

.outline-action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #111118;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.outline-action:hover,
.outline-action:focus-visible {
  color: #fff;
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 var(--cyan), inset 0 0 0 3px #111118, inset 0 0 0 4px #777;
}

.outline-action:hover::before,
.outline-action:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.action-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 10px;
}

.action-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.action-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  justify-self: end;
  color: #fff;
  background: #111118;
  border-radius: 50%;
  transition: color .32s ease, background .32s ease, transform .46s var(--ease);
}

.outline-action:hover .action-arrow,
.outline-action:focus-visible .action-arrow {
  color: #111118;
  background: #fff;
  transform: rotate(45deg);
}

.hero-art {
  position: absolute;
  z-index: 3;
  right: clamp(-95px, -2vw, -15px);
  bottom: -12px;
  width: min(58vw, 780px);
  height: 91%;
  pointer-events: none;
  transform: translate3d(0, var(--hero-shift), 0);
}

.hero-robot {
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 0;
  width: min(75%, 570px);
  height: auto;
  filter: drop-shadow(0 28px 26px rgba(20, 15, 60, .27));
  transform-origin: 55% 100%;
  animation: robot-in 1.5s .48s var(--ease) both, robot-float 7.2s 1.98s ease-in-out infinite;
}

.hero-cog {
  --cog-size: clamp(135px, 16vw, 235px);
  position: absolute;
  z-index: 2;
  top: 14%;
  right: 4%;
  width: var(--cog-size);
  height: var(--cog-size);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transform-origin: 50% 50%;
  opacity: .92;
  filter: drop-shadow(0 12px 18px rgba(23, 17, 67, .16));
  animation: cog-in 1.25s .95s var(--ease) both, cog-spin 30s 2.2s linear infinite;
}

.electric-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  animation: ring-pulse 4.8s ease-in-out infinite;
}

.ring-one {
  right: 9%;
  bottom: 15%;
  width: 66%;
  aspect-ratio: 1;
}

.ring-two {
  right: 19%;
  bottom: 27%;
  width: 42%;
  aspect-ratio: 1;
  animation-delay: -1.1s;
}

.scroll-cue {
  position: absolute;
  z-index: 8;
  bottom: 25px;
  left: 63.1%;
  display: grid;
  place-items: start center;
  width: 25px;
  height: 42px;
  border: 2px solid rgba(19, 19, 27, .55);
  border-radius: 999px;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  margin-top: 7px;
  background: #15151c;
  border-radius: 999px;
  animation: scroll-dot 2.1s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 112px max(5vw, 28px);
  scroll-margin-top: 105px;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.events {
  contain-intrinsic-size: auto 1700px;
}

.committee {
  contain-intrinsic-size: auto 3600px;
}

.location,
.contact {
  contain-intrinsic-size: auto 800px;
}

.section-title {
  width: min(920px, 100%);
  margin: 0 auto 64px;
  text-align: center;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #14141b;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.05em;
}

.section-title h2::before {
  content: "";
  position: absolute;
  top: -.26em;
  right: -.42em;
  width: .34em;
  min-width: 14px;
  aspect-ratio: 1;
  background:
    linear-gradient(90deg, transparent 44%, rgba(90, 77, 204, .92) 48% 52%, transparent 56%),
    linear-gradient(transparent 44%, rgba(241, 54, 147, .92) 48% 52%, transparent 56%);
  filter: drop-shadow(0 0 7px rgba(110, 89, 220, .45));
  opacity: 0;
  transform: rotate(0deg) scale(.4);
  pointer-events: none;
}

.section-title.visible h2::before {
  animation: title-glint 5.2s .7s ease-in-out infinite;
}

.section-title h2::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -12px;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(90, 77, 204, .65), rgba(241, 54, 147, .6), transparent);
  opacity: .65;
  transform: scaleX(0);
  transition: transform 1.15s .18s var(--ease);
}

.section-title.visible h2::after {
  transform: scaleX(1);
}

.section-title p {
  margin: 15px 0 0;
  color: #595a66;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.45;
}

.section-title p strong {
  color: var(--violet);
  font-weight: 800;
}

.events {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(252, 252, 254, .94), rgba(252, 252, 254, .94)),
    repeating-linear-gradient(0deg, transparent 0 39px, #e7e7ec 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, #e7e7ec 39px 40px);
}

.events::before {
  content: "";
  position: absolute;
  top: 75px;
  left: 50%;
  width: min(860px, 78vw);
  height: 280px;
  background: radial-gradient(ellipse, rgba(90, 77, 204, .1), rgba(241, 54, 147, .035) 45%, transparent 72%);
  filter: blur(22px);
  transform: translateX(-50%);
  pointer-events: none;
}

.event-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 55px 86px;
  width: min(1120px, 100%);
  margin: 0 auto;
  perspective: 2000px;
}

.flip-card {
  position: relative;
  flex: 0 0 min(300px, 100%);
  width: min(300px, 100%);
  height: 360px;
  outline: 0;
  perspective: 2000px;
  cursor: pointer;
  isolation: isolate;
}

.flip-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -7px;
  background: conic-gradient(from 30deg, rgba(77, 216, 237, .54), rgba(90, 77, 204, .62), rgba(241, 54, 147, .48), rgba(237, 165, 0, .42), rgba(77, 216, 237, .54));
  border-radius: 30px;
  filter: blur(13px);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .65s ease, transform .82s var(--ease);
  pointer-events: none;
}

.flip-card:hover::before,
.flip-card:focus-visible::before,
.flip-card.flipped::before {
  opacity: .48;
  transform: scale(1.025);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .96s var(--ease);
}

.flip-card:focus-visible {
  outline: 3px solid rgba(90, 77, 204, .42);
  outline-offset: 7px;
  border-radius: var(--radius-card);
}

@media (hover: hover) and (pointer: fine) {
  .flip-card:hover .flip-card-inner,
  .flip-card:focus-visible .flip-card-inner {
    transform: rotateY(180deg);
  }
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: 0 18px 42px rgba(29, 27, 56, .14), 0 0 0 1px rgba(255, 255, 255, .88), inset 0 1px 0 rgba(255, 255, 255, .76);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flip-front {
  background: #15151b;
}

.flip-front::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -25%;
  bottom: -25%;
  left: -70%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-18deg);
  transition: left 1.08s var(--ease);
  pointer-events: none;
}

.flip-front::after {
  content: "Hover to explore";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: #1f1f29;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(21, 18, 44, .14), inset 0 1px 0 #fff;
  backdrop-filter: blur(13px) saturate(1.45);
  -webkit-backdrop-filter: blur(13px) saturate(1.45);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .42s ease, transform .42s var(--ease);
}

.flip-card:hover .flip-front::after,
.flip-card:focus-visible .flip-front::after {
  opacity: 1;
  transform: translateY(0);
}

.flip-card:hover .flip-front::before,
.flip-card:focus-visible .flip-front::before {
  left: 135%;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

.flip-card:hover .flip-front img {
  transform: scale(1.035);
}

.flip-back {
  display: flex;
  flex-direction: column;
  padding: 21px;
  color: #1a1a22;
  background: linear-gradient(150deg, rgba(255, 255, 255, .97), rgba(247, 246, 253, .91) 55%, rgba(235, 235, 247, .94));
  border: 1px solid rgba(255, 255, 255, .94);
  box-shadow: 0 24px 54px rgba(31, 25, 70, .17), inset 0 1px 0 #fff, inset 0 -1px 0 rgba(93, 74, 183, .08);
  backdrop-filter: blur(15px) saturate(1.3);
  -webkit-backdrop-filter: blur(15px) saturate(1.3);
  transform: rotateY(180deg);
}

.flip-back::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 4%, rgba(255, 255, 255, .95), transparent 32%), linear-gradient(145deg, rgba(138, 125, 240, .07), transparent 48%);
  pointer-events: none;
}

.flip-back > * {
  position: relative;
  z-index: 1;
}

.event-back-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 19px;
}

.event-back-title span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  background: #111118;
  border-radius: 11px;
}

.event-back-title h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.04;
  letter-spacing: -.04em;
}

.event-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 13px;
  margin: 0 0 18px;
}

.event-detail {
  min-width: 0;
  padding: 4px 6px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
}

.event-detail span {
  display: block;
  margin-bottom: 3px;
  color: #666670;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.event-detail strong {
  display: block;
  overflow: hidden;
  color: #292931;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-overflow: ellipsis;
}

.event-back-actions {
  display: grid;
  gap: 9px;
  margin-top: auto;
}

.event-back-actions a,
.event-back-actions button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 43px;
  padding: 0 14px;
  color: #1c1c24;
  font-size: 13px;
  font-weight: 750;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .94);
  border-radius: 14px;
  box-shadow: 0 7px 18px rgba(34, 27, 75, .09), inset 0 1px 0 #fff, 0 0 0 1px rgba(75, 61, 146, .05);
  backdrop-filter: blur(10px) saturate(1.35);
  -webkit-backdrop-filter: blur(10px) saturate(1.35);
  cursor: pointer;
  transition: color .36s ease, background .36s ease, transform .36s var(--ease), box-shadow .36s ease;
}

.event-back-actions a:hover,
.event-back-actions a:focus-visible,
.event-back-actions button:hover,
.event-back-actions button:focus-visible {
  color: #fff;
  background: var(--purple);
  transform: translateX(2px);
}

.event-back-actions i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  font-style: normal;
  background: #f1f1f4;
  border-radius: 50%;
}

.event-back-actions a:hover i,
.event-back-actions button:hover i {
  color: var(--purple);
  background: #fff;
}

.committee {
  overflow: hidden;
  background: #fff;
}

.committee::before,
.committee::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 360px;
  aspect-ratio: 1;
  filter: blur(70px);
  border-radius: 50%;
  opacity: .16;
  pointer-events: none;
}

.committee::before {
  top: 5%;
  left: -170px;
  background: #a89fff;
}

.committee::after {
  right: -200px;
  bottom: 12%;
  background: #ff8fc9;
}

.committee > * {
  position: relative;
  z-index: 1;
}

.committee-title {
  margin-bottom: 38px;
}

.committee-title h2 {
  font-size: clamp(32px, 3.8vw, 52px);
}

.committee-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1120px, 100%);
  margin: 0 auto 50px;
  padding: 10px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 25px;
  box-shadow: 0 18px 44px rgba(42, 31, 92, .09), inset 0 1px 0 #fff, inset 0 -1px 0 rgba(96, 76, 186, .07), 0 0 0 1px rgba(108, 84, 205, .05);
  backdrop-filter: blur(16px) saturate(1.42);
  -webkit-backdrop-filter: blur(16px) saturate(1.42);
  -webkit-overflow-scrolling: touch;
}

.committee-filter {
  position: relative;
  overflow: hidden;
  min-height: 39px;
  padding: 0 16px;
  color: #484851;
  font-size: 13px;
  font-weight: 650;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(255, 255, 255, .94);
  border-radius: 14px;
  box-shadow: 0 5px 14px rgba(30, 28, 50, .06), inset 0 1px 0 #fff;
  backdrop-filter: blur(10px) saturate(1.35);
  -webkit-backdrop-filter: blur(10px) saturate(1.35);
  cursor: pointer;
  transition: color .36s ease, background .36s ease, border-color .36s ease, transform .42s var(--ease), box-shadow .42s ease;
}

.committee-filter::after {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -45%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .75), transparent);
  transform: skewX(-18deg);
  transition: left .76s var(--ease);
}

.committee-filter:hover::after,
.committee-filter:focus-visible::after {
  left: 120%;
}

.committee-filter:hover,
.committee-filter:focus-visible {
  color: #15151c;
  border-color: #8a8a95;
  transform: translateY(-2px);
}

.committee-filter.active {
  color: #fff;
  background: linear-gradient(125deg, rgba(35, 30, 84, .94), rgba(94, 75, 193, .92));
  border-color: rgba(255, 255, 255, .3);
  box-shadow: 0 10px 24px rgba(61, 53, 141, .24), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 205px));
  justify-content: center;
  gap: 38px 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.person-card {
  position: relative;
  height: 268px;
  overflow: hidden;
  background: #f0f0f4;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(25, 22, 50, .11), inset 0 1px 0 rgba(255, 255, 255, .78);
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .78s var(--ease) var(--delay, 0ms), transform .78s var(--ease) var(--delay, 0ms), box-shadow .52s ease;
}

.person-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.person-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .94), inset 0 0 0 1px rgba(255, 255, 255, .36), inset 0 -18px 32px rgba(51, 39, 108, .06);
  pointer-events: none;
}

.person-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -25%;
  bottom: -25%;
  left: -75%;
  width: 37%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .36), transparent);
  transform: skewX(-18deg);
  transition: left 1.02s var(--ease);
  pointer-events: none;
}

.person-card:hover::after {
  left: 135%;
}

.person-card:hover {
  box-shadow: 0 22px 46px rgba(25, 22, 50, .16), 0 0 0 1px rgba(125, 103, 231, .12), 0 0 30px rgba(104, 82, 214, .1);
  transform: translateY(-6px);
  transition-delay: 0s;
}

.person-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.94);
  transition: transform .82s var(--ease), filter .52s ease;
}

.person-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.055);
}

.person-info {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  min-height: 68px;
  padding: 13px 13px 11px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(248, 246, 255, .8));
  border-radius: var(--radius-inner);
  box-shadow: 0 8px 22px rgba(26, 24, 44, .11), inset 0 1px 0 #fff, inset 0 -1px 0 rgba(91, 73, 177, .06);
  backdrop-filter: blur(14px) saturate(1.38);
  -webkit-backdrop-filter: blur(14px) saturate(1.38);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .94);
  transition: transform .5s var(--ease), box-shadow .5s ease;
}

.person-card:hover .person-info {
  transform: translateY(-3px);
  box-shadow: 0 9px 22px rgba(26, 24, 44, .15), inset 0 1px 0 #fff;
}

.person-info h3 {
  margin: 0 0 5px;
  overflow: hidden;
  color: #1b1b22;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.person-info p {
  margin: 0;
  overflow: hidden;
  color: #686872;
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-teams {
  position: relative;
  width: min(1120px, 100%);
  margin: clamp(72px, 8vw, 110px) auto 0;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 0%, rgba(244, 78, 160, .14), transparent 34%),
    radial-gradient(circle at 96% 100%, rgba(114, 89, 235, .14), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, .84), rgba(244, 241, 255, .68));
  border: 1px solid rgba(255, 255, 255, .94);
  border-radius: var(--radius-frame);
  box-shadow: var(--glass-shadow), 0 0 0 1px rgba(108, 84, 205, .06);
  backdrop-filter: blur(18px) saturate(1.42);
  -webkit-backdrop-filter: blur(18px) saturate(1.42);
}

.support-teams::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18%;
  left: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f13693, #7869dd, transparent);
  box-shadow: 0 0 18px rgba(120, 105, 221, .65);
}

.support-teams-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
  text-align: center;
}

.support-teams-heading > span {
  color: #604cc5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.support-teams-heading h3 {
  margin: 8px 0 7px;
  color: #181721;
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.08;
}

.support-teams-heading p {
  margin: 0;
  color: #71707b;
  font-size: 14px;
}

.support-team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.support-team-card {
  --team-accent: #5a46bf;
  --team-accent-soft: rgba(120, 105, 221, .14);
  position: relative;
  min-height: 168px;
  padding: 25px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .66));
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(35, 29, 73, .1), inset 0 1px 0 #fff, inset 0 -1px 0 rgba(91, 72, 181, .07), 0 0 0 1px rgba(78, 62, 157, .05);
  backdrop-filter: blur(14px) saturate(1.38);
  -webkit-backdrop-filter: blur(14px) saturate(1.38);
  transition: transform .62s var(--ease), border-color .48s ease, box-shadow .62s ease;
}

.support-team-summary {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.support-team-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .72), transparent 36%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), inset 0 -1px 0 var(--team-accent-soft);
  pointer-events: none;
}

.support-team-card::after {
  content: "";
  position: absolute;
  top: -70%;
  bottom: -70%;
  left: -35%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .92), transparent);
  transform: skewX(-18deg);
  transition: left 1.02s var(--ease);
  pointer-events: none;
}

.support-team-card:hover {
  border-color: var(--team-accent-soft);
  box-shadow: 0 22px 46px rgba(41, 31, 91, .14), 0 0 0 1px var(--team-accent-soft);
  transform: translateY(-6px);
}

.support-team-card:hover::after {
  left: 125%;
}

.snacks-team {
  --team-accent: #a52664;
  --team-accent-soft: rgba(237, 62, 146, .14);
}

.support-team-icon {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--team-accent);
  background: linear-gradient(145deg, rgba(255, 255, 255, .82), var(--team-accent-soft));
  border: 1px solid rgba(255, 255, 255, .84);
  border-radius: 22px;
  box-shadow: 0 12px 24px var(--team-accent-soft), inset 0 1px 0 #fff;
  transform: rotate(-3deg);
  transition: transform .62s var(--ease), box-shadow .62s ease;
}

.support-team-card:hover .support-team-icon {
  box-shadow: 0 16px 30px var(--team-accent-soft), inset 0 1px 0 #fff;
  transform: rotate(3deg) scale(1.06);
}

.support-team-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.support-team-copy {
  min-width: 0;
}

.support-team-copy > span {
  color: var(--team-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.support-team-copy h4 {
  margin: 5px 0 7px;
  color: #181721;
  font-size: clamp(22px, 2.1vw, 29px);
  line-height: 1.1;
}

.support-team-copy p {
  margin: 0;
  color: #74727e;
  font-size: 13px;
  line-height: 1.55;
}

.support-member-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 205px));
  justify-content: center;
  gap: 24px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(91, 75, 169, .1);
}

.support-member-card {
  display: block;
  height: 268px;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .74s var(--ease) var(--member-delay, 0ms), transform .74s var(--ease) var(--member-delay, 0ms), box-shadow .5s ease;
}

.support-teams.visible .support-member-card {
  opacity: 1;
  transform: translateY(0);
}

.support-member-card:hover {
  box-shadow: 0 18px 34px rgba(25, 22, 50, .18);
  transform: translateY(-6px);
  transition-delay: 0ms;
}

.support-member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.support-member-card h5 {
  margin: 0 0 5px;
  overflow: hidden;
  color: #1c1b24;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.support-member-card p {
  margin: 0;
  color: #777480;
  font-size: 12px;
  line-height: 1.35;
}

.support-member-empty {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 92px;
  padding: 16px;
  color: #716d7c;
  text-align: left;
  background: rgba(255, 255, 255, .38);
  border: 1px dashed rgba(106, 85, 197, .24);
  border-radius: 18px;
}

.support-member-empty > span {
  display: grid;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  color: var(--team-accent);
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
  background: var(--team-accent-soft);
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 50%;
  place-items: center;
}

.support-member-empty strong {
  display: block;
  margin-bottom: 3px;
  color: #35323e;
  font-size: 14px;
}

.support-member-empty p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.location {
  background: #f8f8fb;
}

.location .section-title {
  margin-bottom: 44px;
}

.map-shell {
  position: relative;
  width: min(1120px, 100%);
  height: 470px;
  margin: 0 auto;
  overflow: hidden;
  background: #e8e8ec;
  border: 8px solid rgba(255, 255, 255, .86);
  border-radius: var(--radius-frame);
  box-shadow: var(--glass-shadow), 0 0 0 1px rgba(85, 67, 167, .06);
  transition: transform .68s var(--ease), box-shadow .68s ease;
}

.map-shell::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: calc(var(--radius-frame) - 8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), inset 0 0 0 1px rgba(69, 55, 139, .08), inset 0 -24px 44px rgba(43, 34, 91, .06);
  pointer-events: none;
}

.map-shell:hover {
  box-shadow: 0 28px 72px rgba(25, 20, 55, .15), 0 0 0 1px rgba(117, 93, 224, .1), inset 0 1px 0 #fff;
  transform: translateY(-4px);
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.86) contrast(.98);
}

.map-directions {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  background: linear-gradient(135deg, rgba(27, 23, 49, .78), rgba(67, 52, 137, .72));
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(20, 18, 31, .25);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  transition: transform .42s var(--ease), background .42s ease, box-shadow .42s ease;
}

.map-directions:hover,
.map-directions:focus-visible {
  color: #fff;
  background: #6e5bd5;
  box-shadow: 0 14px 30px rgba(100, 79, 204, .32);
  transform: translateY(-3px);
}

.map-directions span {
  font-size: 17px;
}

.contact {
  padding-top: 120px;
  padding-bottom: 120px;
  background:
    radial-gradient(circle at 12% 22%, rgba(248, 133, 189, .1), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(122, 104, 231, .08), transparent 23%),
    #fafafa;
}

.contact-card {
  --spot-x: 50%;
  --spot-y: 10%;
  --contact-rx: 0deg;
  --contact-ry: 0deg;
  position: relative;
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 70px);
  overflow: hidden;
  background:
    radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(127, 109, 234, .11), transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, .87), rgba(246, 243, 255, .7));
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 34px;
  box-shadow: var(--glass-shadow), 0 0 0 1px rgba(105, 83, 205, .05);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transform-style: preserve-3d;
  will-change: auto;
}

.contact-card.reveal.visible {
  transform: perspective(1400px) rotateX(var(--contact-rx)) rotateY(var(--contact-ry));
  transition: opacity .95s var(--ease), transform .42s var(--ease), box-shadow .58s ease;
}

.contact-card.visible:hover {
  box-shadow: 0 30px 76px rgba(35, 28, 65, .14), inset 0 1px 0 #fff;
  will-change: transform;
}

.contact-card::before,
.contact-card::after {
  content: "";
  position: absolute;
  top: -135px;
  width: 310px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 74, 158, .27) 0 1px, transparent 2px) 0 0 / 13px 13px;
  filter: blur(.2px);
  opacity: .75;
  pointer-events: none;
  animation: sparkle-cloud 10s ease-in-out infinite alternate;
}

.contact-card::before {
  left: -76px;
  transform: rotate(-15deg);
}

.contact-card::after {
  right: -70px;
  transform: rotate(15deg);
  animation-delay: -3.4s;
}

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

.contact-particles span {
  position: absolute;
  top: var(--particle-y);
  left: var(--particle-x);
  width: var(--particle-size);
  height: var(--particle-size);
  background: var(--particle-color);
  border-radius: 50%;
  box-shadow: 0 0 12px color-mix(in srgb, var(--particle-color) 60%, transparent);
  opacity: .2;
  animation: particle-twinkle var(--particle-duration) var(--particle-delay) ease-in-out infinite;
}

.contact-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 43px;
  text-align: center;
}

.contact-heading::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  box-shadow: 0 0 14px rgba(241, 54, 147, .38);
  transform: translateX(-50%) scaleX(.35);
  animation: contact-line 4.8s ease-in-out infinite;
}

.contact-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 800;
  letter-spacing: -.055em;
}

.contact-heading h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.contact-heading p {
  margin: 10px 0 0;
  color: #6c6c76;
  font-size: 15px;
}

.contact-spark {
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 17px 5px rgba(241, 54, 147, .22);
  animation: contact-twinkle 3.4s ease-in-out infinite;
}

.spark-one {
  top: 64px;
  left: 18%;
}

.spark-two {
  top: 102px;
  right: 17%;
  width: 6px;
  height: 6px;
  animation-delay: -.8s;
}

.contact-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 22px;
}

.contact-form label {
  position: relative;
  display: grid;
  gap: 8px;
  color: #34343d;
  font-size: 14px;
  font-weight: 650;
  transition: color .4s ease, transform .46s var(--ease);
}

.contact-form label > span {
  transition: color .4s ease, transform .46s var(--ease);
}

.contact-form label::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(.15);
  transition: opacity .4s ease, transform .52s var(--ease);
}

.contact-form label:focus-within {
  color: var(--pink);
  transform: translateY(-2px);
}

.contact-form label:focus-within > span {
  transform: translateX(3px);
}

.contact-form label:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

.contact-form .message-field,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: #22222a;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(255, 255, 255, .96);
  border-radius: var(--radius-inner);
  box-shadow: inset 0 1px 0 #fff, 0 8px 20px rgba(40, 31, 86, .05), 0 0 0 1px rgba(83, 66, 164, .06);
  backdrop-filter: blur(11px) saturate(1.32);
  -webkit-backdrop-filter: blur(11px) saturate(1.32);
  outline: 0;
  transition: background .38s ease, border-color .38s ease, box-shadow .38s ease;
}

.contact-form input {
  height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 142px;
  padding: 15px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, .82);
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(241, 54, 147, .1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6f6f79;
}

.contact-form button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  background: linear-gradient(100deg, #ed348f, #f23f9d 50%, #d832ae);
  border: 0;
  border-radius: var(--radius-inner);
  box-shadow: 0 11px 25px rgba(238, 53, 145, .23);
  cursor: pointer;
  overflow: hidden;
  transition: filter .38s ease, transform .42s var(--ease), box-shadow .42s ease;
}

.contact-form button::before {
  content: "";
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -32%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .88), transparent);
  transform: skewX(-20deg);
  animation: submit-shine 5.8s 1.4s ease-in-out infinite;
}

.contact-form button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .36);
  pointer-events: none;
}

.contact-form button span {
  position: relative;
  z-index: 1;
  transition: transform .3s var(--ease);
}

.contact-form button:hover,
.contact-form button:focus-visible {
  box-shadow: 0 16px 34px rgba(238, 53, 145, .32);
  filter: saturate(1.12);
  transform: translateY(-2px);
}

.contact-form button:hover span,
.contact-form button:focus-visible span {
  transform: translate(3px, -3px) rotate(8deg);
}

.contact-form button.sending {
  pointer-events: none;
  animation: send-pulse .75s ease;
}

.form-status {
  min-height: 18px;
  margin: -12px 0 0;
  color: #5c5c66;
  font-size: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity .4s ease, transform .46s var(--ease);
}

.form-status.show {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 70px max(5vw, 28px) 24px;
  color: rgba(255, 255, 255, .78);
  background:
    radial-gradient(circle at 85% 20%, rgba(103, 87, 214, .18), transparent 29%),
    #11101a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr 1fr;
  gap: 60px;
  width: min(1120px, 100%);
  margin: 0 auto 55px;
}

.footer-brand img {
  width: 155px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 18px 0;
  color: #fff;
  font-size: 17px;
  font-weight: 650;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  transition: color .2s ease;
}

.instagram-link:hover {
  color: #fff;
}

.instagram-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-links {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
}

.footer-links a,
.footer-links p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-top: 22px;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.made-with-love {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.made-with-love .footer-heart {
  display: inline-block;
  color: #ff69b2;
  font-size: 14px;
  filter: drop-shadow(0 0 7px rgba(255, 105, 178, .68));
  animation: heart-pulse 2.4s ease-in-out infinite;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 78px;
  max-width: min(360px, calc(100% - 44px));
  padding: 13px 17px;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  background: linear-gradient(135deg, rgba(24, 24, 33, .8), rgba(58, 46, 117, .72));
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 17px;
  box-shadow: 0 16px 42px rgba(20, 18, 42, .28), inset 0 1px 0 rgba(255, 255, 255, .2);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .4s ease, transform .48s var(--ease);
}

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

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 19px;
  background: linear-gradient(145deg, rgba(78, 64, 166, .82), rgba(49, 41, 111, .76));
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(61, 53, 141, .32), inset 0 1px 0 rgba(255, 255, 255, .32);
  backdrop-filter: blur(15px) saturate(1.45);
  -webkit-backdrop-filter: blur(15px) saturate(1.45);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .4s ease, transform .48s var(--ease);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
}

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

.nav-register:active,
.outline-action:active,
.event-back-actions a:active,
.event-back-actions button:active,
.committee-filter:active,
.map-directions:active,
.contact-form button:active {
  transform: translateY(1px) scale(.985);
}

@keyframes nav-in {
  from { opacity: 0; transform: translate3d(-50%, -25px, 0) scale(.97); }
  to { opacity: 1; transform: translate3d(-50%, 0, 0) scale(1); }
}

@keyframes header-shine {
  0%, 68% { opacity: 0; transform: translateX(-135%); }
  76% { opacity: 1; }
  100% { opacity: 0; transform: translateX(135%); }
}

@keyframes purple-sweep {
  0%, 58% { opacity: 0; transform: translateX(-35%); }
  67% { opacity: 1; }
  100% { opacity: 0; transform: translateX(35%); }
}

@keyframes hero-spark {
  0%, 100% { opacity: 0; transform: translate3d(0, 12px, 0) scale(.45); }
  42% { opacity: .75; }
  55% { opacity: 1; transform: translate3d(0, -5px, 0) scale(1.2); }
  72% { opacity: .25; }
}

@keyframes kicker-pulse {
  0%, 100% { opacity: .45; transform: translateY(-50%) scale(.7); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.35); }
}

@keyframes copy-in {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes underline-in {
  to { transform: scaleX(1); }
}

@keyframes robot-in {
  from { opacity: 0; transform: translate(80px, 85px) scale(.82) rotate(4deg); }
  to { opacity: 1; transform: translate(0, 0) scale(1) rotate(0); }
}

@keyframes robot-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

@keyframes cog-in {
  from { opacity: 0; transform: translate(30px, -30px) rotate(-30deg) scale(.75); }
  to { opacity: .92; transform: translate(0, 0) rotate(0) scale(1); }
}

@keyframes cog-spin {
  to { rotate: 360deg; }
}

@keyframes ring-pulse {
  0%, 100% { opacity: .28; scale: .94; }
  50% { opacity: .7; scale: 1.03; }
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(18px); }
}

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

@keyframes person-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes contact-twinkle {
  0%, 100% { opacity: .3; transform: scale(.7); }
  50% { opacity: 1; transform: scale(1.25); }
}

@keyframes sparkle-cloud {
  from { opacity: .45; transform: scale(.99); }
  to { opacity: .9; transform: scale(1.01); }
}

@keyframes particle-twinkle {
  0%, 100% { opacity: .08; transform: translate3d(0, 7px, 0) scale(.55); }
  45% { opacity: .8; }
  55% { opacity: 1; transform: translate3d(0, -7px, 0) scale(1.2); }
}

@keyframes contact-line {
  0%, 100% { opacity: .4; transform: translateX(-50%) scaleX(.35); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1); }
}

@keyframes submit-shine {
  0%, 18% { left: -32%; opacity: 0; }
  24% { opacity: 1; }
  52%, 100% { left: 128%; opacity: 0; }
}

@keyframes send-pulse {
  0%, 100% { transform: scale(1); }
  48% { transform: scale(.985); box-shadow: 0 8px 36px rgba(238, 53, 145, .42); }
}

@keyframes heart-pulse {
  0%, 100% { transform: scale(1); }
  18% { transform: scale(1.2); }
  34% { transform: scale(1); }
}

@keyframes progress-spectrum {
  to { background-position: -220% 0; }
}

@keyframes title-glint {
  0%, 22%, 100% { opacity: 0; transform: rotate(0deg) scale(.4); }
  35% { opacity: 1; transform: rotate(45deg) scale(1); }
  48% { opacity: .28; transform: rotate(90deg) scale(.72); }
  60% { opacity: 0; transform: rotate(135deg) scale(.4); }
}

@media (max-width: 1100px) {
  .hero-copy {
    left: 34px;
    width: 55vw;
  }

  .hero-art {
    right: -80px;
    width: 61vw;
  }

  .event-grid {
    gap: 45px 38px;
  }

  .people-grid {
    grid-template-columns: repeat(4, minmax(165px, 205px));
  }

  .support-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .magic-aurora {
    display: none;
  }

  html {
    scroll-padding-top: 88px;
  }

  .site-header {
    top: max(12px, env(safe-area-inset-top));
    grid-template-columns: minmax(72px, 1fr) auto 44px;
    column-gap: 6px;
    width: calc(100% - 20px);
    min-height: 68px;
    padding: 7px 10px 7px 17px;
    overflow: visible;
    backdrop-filter: blur(14px) saturate(1.42);
    -webkit-backdrop-filter: blur(14px) saturate(1.42);
    transition-duration: .88s;
  }

  .site-header.scrolled {
    top: max(7px, env(safe-area-inset-top));
    width: calc(100% - 28px);
    min-height: 60px;
    padding: 5px 8px 5px 14px;
  }

  .site-header.scrolled .header-logo {
    height: 44px;
  }

  .site-header.scrolled .header-logo img {
    max-width: 94px;
    max-height: 40px;
  }

  .header-logo {
    height: 48px;
  }

  .header-logo img {
    max-width: 104px;
    max-height: 44px;
  }

  .menu-button {
    display: block;
    grid-column: 3;
    min-width: 44px;
    min-height: 44px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: inset 0 1px 0 #fff, 0 5px 16px rgba(42, 32, 86, .08);
  }

  .menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 11px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 15px;
    max-height: calc(100dvh - 105px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(241, 237, 255, .8));
    border: 1px solid rgba(255, 255, 255, .96);
    border-radius: 26px;
    box-shadow: 0 22px 58px rgba(29, 24, 60, .2), inset 0 1px 0 #fff, 0 0 0 1px rgba(89, 72, 177, .06);
    backdrop-filter: blur(18px) saturate(1.45);
    -webkit-backdrop-filter: blur(18px) saturate(1.45);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transform-origin: top center;
    transition: opacity .42s ease, transform .56s var(--ease), top .88s var(--ease), visibility 0s linear .56s;
  }

  .nav-indicator {
    display: none;
  }

  .primary-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-link {
    display: grid;
    min-height: 48px;
    padding: 12px 17px;
    place-items: center;
    text-align: center;
  }

  .nav-link.active {
    background: #f1efff;
  }

  .nav-register {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 102px;
    min-height: 44px;
    padding: 0 10px;
    font-size: 11.5px;
    white-space: nowrap;
  }

  .hero {
    min-height: 860px;
    height: 100svh;
  }

  .hero-grid {
    inset: 0 0 42% 0;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(9, minmax(0, 1fr));
    background-size: 8.3333% 11.1111%;
  }

  .hero-purple {
    inset: 58% 0 0;
  }

  .hero-copy {
    top: 15%;
    left: 6vw;
    width: 88vw;
  }

  .hero-date {
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(48px, 11vw, 75px);
  }

  .hero-line {
    font-size: clamp(18px, 4.4vw, 28px);
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    width: min(590px, 88vw);
    margin-top: 31px;
  }

  .outline-action {
    min-height: 60px;
    font-size: 13px;
  }

  .hero-art {
    right: -9vw;
    bottom: -9px;
    width: min(77vw, 580px);
    height: 46%;
  }

  .hero-robot {
    right: 9%;
    width: min(80%, 430px);
  }

  .hero-cog {
    top: 5%;
    right: 3%;
    --cog-size: 120px;
  }

  .scroll-cue {
    display: none;
  }

  .event-grid {
    gap: 42px 30px;
  }

  .people-grid {
    grid-template-columns: repeat(3, minmax(150px, 205px));
  }

  .support-member-grid {
    grid-template-columns: repeat(2, minmax(135px, 1fr));
    gap: 19px 14px;
  }

  .support-team-grid {
    grid-template-columns: 1fr;
  }

  .support-member-card {
    height: 236px;
  }

  .section {
    scroll-margin-top: 84px;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 78px max(18px, env(safe-area-inset-left)) 78px max(18px, env(safe-area-inset-right));
  }

  .section-title {
    margin-bottom: 42px;
  }

  .hero {
    height: auto;
    min-height: max(780px, 100svh);
  }

  .hero-grid {
    bottom: 44%;
  }

  .hero-purple {
    inset: 56% 0 0;
  }

  .hero-copy {
    top: 14.5%;
    right: max(20px, env(safe-area-inset-right));
    left: max(20px, env(safe-area-inset-left));
    width: auto;
  }

  .hero-date {
    margin-bottom: 18px;
    font-size: 19px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.4vw, 65px);
  }

  .hero-line {
    margin-top: 13px;
    font-size: 18px;
  }

  .hero-line + .hero-line {
    margin-top: 4px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 13px;
    width: 245px;
    margin-top: 25px;
  }

  .outline-action {
    grid-template-columns: 38px 1fr 31px;
    min-height: 52px;
    padding: 4px 8px;
    box-shadow: 6px 6px 0 rgba(80, 213, 231, .75), inset 0 0 0 2px #fff, inset 0 0 0 3px #dcdce1;
  }

  .action-icon {
    width: 30px;
    height: 30px;
  }

  .action-icon svg {
    width: 18px;
    height: 18px;
  }

  .action-arrow {
    width: 27px;
    height: 27px;
  }

  .hero-art {
    right: -18vw;
    width: min(100vw, 500px);
    height: 43%;
  }

  .hero-robot {
    right: 8%;
    width: min(84%, 390px);
  }

  .hero-cog {
    top: 3%;
    right: 13%;
    --cog-size: 90px;
  }

  .event-grid {
    gap: 32px;
  }

  .flip-card {
    flex-basis: min(330px, 100%);
    width: min(330px, 100%);
    height: clamp(388px, 126vw, 420px);
  }

  .flip-front::after {
    content: "Tap to explore";
    opacity: 1;
    transform: none;
  }

  .committee-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-right: -18px;
    margin-left: -18px;
    padding: 10px 20px 12px;
    background: rgba(255, 255, 255, .46);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 20px;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .committee-filters::-webkit-scrollbar {
    display: none;
  }

  .committee-filter {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .people-grid {
    grid-template-columns: repeat(2, minmax(135px, 1fr));
    gap: 19px 14px;
  }

  .support-teams {
    margin-top: 68px;
    padding: 28px 0 20px;
    border-radius: 26px;
  }

  .support-teams-heading {
    padding-inline: 18px;
  }

  .support-team-grid {
    grid-template-columns: 1fr;
  }

  .support-team-card {
    min-height: 146px;
    padding: 20px 0;
    border-radius: 22px;
  }

  .support-team-summary {
    padding-inline: 17px;
  }

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

  .support-team-summary {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
  }

  .support-team-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .support-team-icon svg {
    width: 36px;
    height: 36px;
  }

  .support-team-copy p {
    font-size: 14px;
  }

  .support-teams,
  .support-team-card,
  .contact-card,
  .contact-form input,
  .contact-form textarea {
    backdrop-filter: blur(9px) saturate(1.3);
    -webkit-backdrop-filter: blur(9px) saturate(1.3);
  }

  .person-card {
    height: 236px;
  }

  .person-info {
    right: 7px;
    bottom: 7px;
    left: 7px;
    min-height: 61px;
    padding: 11px;
  }

  .person-info h3 {
    font-size: 13px;
  }

  .person-info p {
    font-size: 12px;
  }

  .map-shell {
    height: 360px;
    border-width: 5px;
    border-radius: 24px;
  }

  .map-shell::before {
    border-radius: 19px;
  }

  .map-directions {
    right: 12px;
    bottom: 12px;
    min-height: 43px;
    padding: 0 14px;
    font-size: 12px;
  }

  .contact-card {
    padding: 42px 20px 35px;
    border-radius: 26px;
    transform: none !important;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form .message-field,
  .contact-form button,
  .form-status {
    grid-column: auto;
  }

  .contact-spark {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-links a,
  .footer-links p {
    overflow-wrap: anywhere;
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .toast {
    right: 14px;
    bottom: calc(max(16px, env(safe-area-inset-bottom)) + 58px);
    max-width: calc(100% - 28px);
  }

  .back-to-top {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }

  .contact-form button,
  .committee-filter,
  .map-directions {
    min-height: 46px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 41px;
  }

  .hero-line {
    font-size: 16px;
  }

  .hero-kicker {
    max-width: 270px;
    font-size: 12px;
    line-height: 1.4;
  }

  .section-title h2,
  .committee-title h2 {
    font-size: clamp(29px, 9vw, 36px);
  }

  .support-team-summary {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .support-team-icon {
    width: 56px;
    height: 56px;
  }

  .map-shell {
    height: 325px;
  }

  .map-directions {
    right: 10px;
    left: 10px;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 340px) {
  .site-header {
    grid-template-columns: minmax(62px, 1fr) auto 42px;
    column-gap: 4px;
    padding-right: 6px;
    padding-left: 10px;
  }

  .header-logo img {
    max-width: 88px;
  }

  .nav-register {
    min-width: 94px;
    padding: 0 8px;
    font-size: 10.5px;
  }

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

  .person-card {
    width: min(250px, 100%);
    height: 300px;
    margin: 0 auto;
  }

  .support-member-grid {
    grid-template-columns: 1fr;
  }

  .support-member-card {
    width: min(250px, 100%);
    height: 300px;
    margin: 0 auto;
  }
}

@media (hover: none), (pointer: coarse) {
  .person-card:hover,
  .support-team-card:hover,
  .support-member-card:hover,
  .map-shell:hover {
    transform: none;
  }

  .person-card:hover img {
    transform: none;
  }
}

.effects-paused *,
.effects-paused *::before,
.effects-paused *::after {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-art {
    transform: none;
    will-change: auto;
  }

  .hero-sparks span,
  .hero-purple::after,
  .magic-aurora,
  .section-title h2::before {
    display: none;
  }

  .scroll-progress span {
    will-change: auto;
  }
}
