@font-face {
  font-family: "Fredoka Variable";
  src: url("fonts/fredoka-variable.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #292467;
  --muted: #69667e;
  --pink: #f5278c;
  --hot-pink: #ff2f77;
  --purple: #6f39be;
  --blue: #2a79d4;
  --orange: #ff8a2b;
  --green: #38b958;
  --paper: #fffdfb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: 20px clamp(20px, 4vw, 72px) 24px;
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 225, 78, 0.15), transparent 24%),
    linear-gradient(135deg, #fffefd 0%, #fff 48%, #f9f5ff 100%);
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.62;
  background-image: radial-gradient(rgba(111, 57, 190, 0.13) 1.25px, transparent 1.25px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 70%, transparent);
}

.ambient {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.85;
  animation: ambientFloat 13s ease-in-out infinite alternate;
}
.ambient-one {
  width: 260px; height: 260px; left: -130px; top: 20%;
  background: radial-gradient(circle at 70% 50%, rgba(255, 43, 135, 0.22), transparent 68%);
}
.ambient-two {
  width: 430px; height: 430px; right: -210px; top: -130px;
  background: radial-gradient(circle at 30% 60%, rgba(64, 131, 238, 0.18), transparent 70%);
  animation-delay: -5s;
}
.ambient-three {
  width: 340px; height: 340px; left: 36%; bottom: -240px;
  background: radial-gradient(circle at 50% 10%, rgba(255, 193, 43, 0.2), transparent 68%);
  animation-delay: -9s;
}

.topbar {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-link {
  display: block;
  width: clamp(86px, 8vw, 118px);
  height: clamp(70px, 7vw, 96px);
  transform: translateY(-5px);
}
.brand-link img { width: 100%; height: 100%; object-fit: contain; }
.topbar-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(111, 57, 190, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 35px rgba(64, 45, 103, 0.08);
  color: #514d6d;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
}
.live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(56, 185, 88, 0.35);
  animation: pulse 2.2s infinite;
}

.hero {
  width: min(1440px, 100%);
  min-height: calc(100svh - 208px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: clamp(46px, 7vw, 110px);
  padding: clamp(20px, 5vh, 64px) 0 clamp(34px, 6vh, 72px);
}
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 39, 140, 0.1), rgba(111, 57, 190, 0.1));
  color: var(--pink);
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Fredoka Variable", "Trebuchet MS", sans-serif;
  font-size: clamp(3.35rem, 6.15vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.9;
}
h1 span { display: block; }
.gradient-text {
  width: max-content;
  max-width: 100%;
  color: transparent;
  background: linear-gradient(100deg, var(--pink) 5%, var(--purple) 53%, var(--blue) 95%);
  background-clip: text;
  -webkit-background-clip: text;
}
.subtitle {
  margin: 24px 0 0;
  color: #3a3680;
  font-family: "Fredoka Variable", sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  font-weight: 620;
  line-height: 1.25;
}
.intro {
  max-width: 660px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  line-height: 1.75;
}
.countdown {
  width: min(100%, 570px);
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  padding: 11px 14px;
  border: 1px solid rgba(111, 57, 190, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 45px rgba(53, 37, 91, 0.06);
  backdrop-filter: blur(12px);
}
.countdown-kicker {
  max-width: 92px;
  color: var(--purple);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}
.countdown-units {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.countdown-unit {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 5px 3px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(245, 39, 140, 0.055), rgba(42, 121, 212, 0.06));
}
.countdown-unit strong {
  color: var(--ink);
  font-family: "Fredoka Variable", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-unit span {
  margin-top: 2px;
  color: #89859c;
  font-size: 0.51rem;
  font-weight: 600;
}
.countdown-live {
  width: min(100%, 570px);
  margin-top: 22px;
  padding: 15px 18px;
  border-radius: 18px;
  background: linear-gradient(100deg, var(--pink), var(--purple));
  color: #fff;
  font-family: "Fredoka Variable", sans-serif;
  text-align: center;
}
.action-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}
.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 20px 12px 12px;
  border-radius: 999px;
  background: linear-gradient(105deg, #20a94b, #55c95f);
  box-shadow: 0 14px 30px rgba(41, 170, 74, 0.24);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(41, 170, 74, 0.3);
}
.action-icon {
  display: grid;
  width: 34px; height: 34px; place-items: center;
  border-radius: 50%; background: #fff; color: #1f9c44;
  font-size: 0.67rem; font-weight: 800;
}
.text-action {
  border-bottom: 1px solid rgba(41, 36, 103, 0.25);
  color: #494478;
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}
.text-action:hover { border-color: var(--pink); color: var(--pink); }
.highlight-row { margin-top: 22px; display: flex; align-items: stretch; gap: 0; }
.highlight {
  min-width: 128px;
  padding: 0 22px;
  border-left: 1px solid rgba(41, 36, 103, 0.14);
}
.highlight:first-child { padding-left: 0; border-left: 0; }
.highlight strong, .highlight span { display: block; }
.highlight strong {
  color: var(--pink);
  font-family: "Fredoka Variable", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}
.highlight:nth-child(2) strong { color: var(--purple); }
.highlight:nth-child(3) strong { color: var(--blue); }
.highlight span {
  margin-top: 5px;
  color: #78748e;
  font-size: 0.62rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  width: min(100%, 610px);
  aspect-ratio: 0.94;
  justify-self: end;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% 7% 10% 8%;
  border: 1px dashed rgba(245, 39, 140, 0.22);
  border-radius: 48% 52% 46% 54% / 53% 47% 53% 47%;
  animation: spin 34s linear infinite;
}
.visual-orbit {
  position: absolute;
  border-radius: 999px;
  opacity: 0.8;
  animation: orbitPulse 6s ease-in-out infinite alternate;
}
.orbit-one {
  width: 78%; height: 78%; top: 7%; right: 7%;
  background: linear-gradient(145deg, rgba(255, 222, 52, 0.42), rgba(255, 82, 153, 0.13) 43%, rgba(42, 121, 212, 0.17));
  filter: blur(1px);
}
.orbit-two {
  width: 51%; height: 51%; left: 3%; bottom: 2%;
  background: radial-gradient(circle, rgba(63, 207, 121, 0.2), transparent 65%);
  animation-delay: -3s;
}
.photo-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 7px solid #fff;
  background: #fff;
  box-shadow: 0 28px 70px rgba(48, 32, 85, 0.2);
}
.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}
.hero-visual:hover .photo-card img { transform: scale(1.045); }
.photo-card-main {
  width: 56%; height: 68%; left: 4%; top: 13%; z-index: 2;
  border-radius: 34px 92px 40px 90px;
  transform: rotate(-4deg);
  animation: cardFloat 7s ease-in-out infinite;
}
.photo-card-top {
  width: 45%; height: 42%; right: 3%; top: 5%; z-index: 3;
  border-radius: 74px 32px 70px 30px;
  transform: rotate(5deg);
  animation: cardFloat 8s ease-in-out -2.5s infinite;
}
.photo-card-bottom {
  width: 46%; height: 43%; right: 2%; bottom: 4%; z-index: 4;
  border-radius: 34px 74px 35px 76px;
  transform: rotate(-2deg);
  animation: cardFloat 7.5s ease-in-out -5s infinite;
}
.date-badge {
  position: absolute;
  left: 1%; bottom: 2%; z-index: 6;
  display: grid;
  width: 118px; height: 118px; place-content: center;
  border: 7px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--hot-pink), var(--orange));
  box-shadow: 0 18px 35px rgba(246, 46, 126, 0.3);
  color: #fff;
  text-align: center;
  transform: rotate(-7deg);
}
.date-badge span, .date-badge strong { display: block; }
.date-badge span {
  font-family: "Fredoka Variable", sans-serif;
  font-size: 1.36rem;
  font-weight: 700;
  line-height: 1;
}
.date-badge strong { margin-top: 5px; font-size: 0.66rem; letter-spacing: 0.09em; }
.floating-mascot {
  position: absolute;
  z-index: 8;
  width: clamp(72px, 9vw, 124px);
  height: auto;
  right: 37%;
  bottom: -1%;
  filter: drop-shadow(0 12px 14px rgba(63, 35, 85, 0.22));
  animation: mascotWave 4.5s ease-in-out infinite;
  transform-origin: 50% 85%;
}

.event-ribbon {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 0.82fr;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  padding: 17px clamp(18px, 3vw, 34px);
  border: 1px solid rgba(111, 57, 190, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 60px rgba(55, 38, 96, 0.09);
  backdrop-filter: blur(16px);
}
.event-ribbon > div:not(.ribbon-divider) { display: grid; gap: 2px; }
.event-ribbon strong { color: var(--ink); font-size: clamp(0.82rem, 1.15vw, 1rem); }
.event-ribbon span:not(.ribbon-label) { color: #78748e; font-size: 0.68rem; }
.ribbon-label {
  color: var(--pink);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.ribbon-divider {
  width: 1px;
  height: 42px;
  background: linear-gradient(transparent, rgba(41, 36, 103, 0.18), transparent);
}
.ribbon-organizer img {
  width: 148px; height: 48px; object-fit: contain; object-position: left center;
}

.site-footer {
  width: min(1440px, 100%);
  margin: 13px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #77738c;
  font-size: 0.61rem;
}
.build-status, .social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}
.status-label {
  color: var(--pink);
  font-weight: 800;
  text-transform: uppercase;
}
.build-status i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(111, 57, 190, 0.35);
}
.social-links { justify-content: flex-end; }
.social-links a { transition: color 180ms ease; }
.social-links a + a {
  padding-left: 10px;
  border-left: 1px solid rgba(41, 36, 103, 0.15);
  color: var(--purple);
  font-weight: 800;
}
.social-links a:hover { color: var(--pink); }

.confetti {
  position: absolute;
  z-index: -1;
  display: block;
  width: 12px; height: 12px;
  border: 3px solid currentColor;
  opacity: 0.35;
  animation: confettiDrift 9s ease-in-out infinite alternate;
}
.confetti-1 { top: 17%; left: 4%; color: var(--pink); border-radius: 50%; }
.confetti-2 { top: 35%; left: 47%; color: var(--orange); transform: rotate(45deg); animation-delay: -2s; }
.confetti-3 { top: 12%; right: 37%; color: var(--blue); border-radius: 50%; animation-delay: -5s; }
.confetti-4 { bottom: 19%; left: 3%; color: var(--purple); transform: rotate(25deg); animation-delay: -6s; }
.confetti-5 { bottom: 14%; right: 46%; color: var(--green); border-radius: 50%; animation-delay: -4s; }
.confetti-6 { top: 45%; right: 2%; color: var(--pink); transform: rotate(45deg); animation-delay: -7s; }

@keyframes ambientFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(22px, -26px, 0) scale(1.12); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56, 185, 88, 0.38); }
  50% { box-shadow: 0 0 0 7px rgba(56, 185, 88, 0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbitPulse {
  from { transform: scale(0.96) rotate(-2deg); }
  to { transform: scale(1.04) rotate(3deg); }
}
@keyframes cardFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
@keyframes mascotWave {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-9px); }
}
@keyframes confettiDrift {
  from { translate: 0 0; rotate: 0deg; }
  to { translate: 16px -24px; rotate: 120deg; }
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr); gap: 26px; }
  .highlight { min-width: 112px; padding: 0 15px; }
}

@media (max-width: 840px) {
  .site-shell { padding-inline: 18px; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
  }
  .hero-copy { max-width: none; text-align: center; }
  .eyebrow { margin-inline: auto; }
  h1 { font-size: clamp(3.3rem, 12vw, 5.6rem); }
  .gradient-text { margin-inline: auto; }
  .intro { margin-inline: auto; }
  .countdown { margin-inline: auto; }
  .action-row, .highlight-row { justify-content: center; }
  .hero-visual { width: min(100%, 620px); justify-self: center; }
  .event-ribbon { grid-template-columns: 1fr 1px 1fr; }
  .ribbon-divider-last { display: none; }
  .ribbon-organizer {
    grid-column: 1 / -1;
    justify-items: center;
    padding-top: 5px;
    border-top: 1px solid rgba(41, 36, 103, 0.08);
  }
  .site-footer { flex-direction: column; text-align: center; }
  .build-status, .social-links { justify-content: center; }
}

@media (max-width: 540px) {
  .site-shell { padding-top: 12px; }
  .brand-link { width: 82px; height: 68px; }
  .topbar-note { max-width: 210px; padding: 8px 11px; font-size: 0.64rem; }
  .hero { padding-top: 20px; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .subtitle { font-size: 1rem; }
  .countdown {
    flex-direction: column;
    gap: 8px;
    padding: 11px;
  }
  .countdown-kicker { max-width: none; }
  .countdown-units { width: 100%; }
  .action-row { flex-direction: column; }
  .primary-action { min-width: 220px; justify-content: center; }
  .highlight-row { width: 100%; }
  .highlight { min-width: 0; flex: 1; padding: 0 10px; }
  .highlight span { font-size: 0.55rem; }
  .hero-visual { aspect-ratio: 1 / 1.04; }
  .photo-card { border-width: 5px; }
  .date-badge { width: 88px; height: 88px; border-width: 5px; }
  .date-badge span { font-size: 1.05rem; }
  .date-badge strong { font-size: 0.52rem; }
  .event-ribbon { grid-template-columns: 1fr; gap: 15px; text-align: center; }
  .ribbon-divider { width: 100%; height: 1px; }
  .ribbon-organizer img { object-position: center; }
}

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