:root {
  --ink: #07060d;
  --panel: #110e1c;
  --neon-pink: #ff2d95;
  --neon-pink-hot: #ff5eb3;
  --champagne: #f3e2bc;
  --gold: #e8c872;
  --white: #ffffff;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

[hidden] {
  display: none !important;
}

body {
  min-height: 100%;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255, 45, 149, 0.14), transparent 60%),
    radial-gradient(900px 520px at 92% 6%, rgba(232, 200, 114, 0.12), transparent 55%),
    var(--ink);
}

::selection {
  background: rgba(255, 45, 149, 0.45);
  color: white;
}

section[id] {
  scroll-margin-top: 5.25rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 100;
  border-radius: 999px;
  background: var(--champagne);
  color: #1a1208;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* Atmosphere */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.orb {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.35;
}

.orb-a {
  top: 18%;
  left: -8%;
  width: 280px;
  height: 280px;
  background: rgba(255, 45, 149, 0.38);
  animation: float-a 14s var(--ease-out) infinite alternate;
}

.orb-b {
  right: -6%;
  bottom: 12%;
  width: 320px;
  height: 320px;
  background: rgba(232, 200, 114, 0.28);
  animation: float-b 16s var(--ease-out) infinite alternate;
}

@keyframes float-a {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(40px, 60px, 0); }
}

@keyframes float-b {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50px, -40px, 0); }
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(7, 6, 13, 0.85), rgba(7, 6, 13, 0));
  backdrop-filter: blur(0px);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 6, 13, 0.82);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  color: white;
}

.brand-mark--sm {
  font-size: 1.35rem;
}

.brand-mark__loco {
  color: var(--neon-pink);
  font-style: normal;
  font-weight: 400;
  text-shadow: 0 0 18px rgba(255, 45, 149, 0.55);
}

.nav-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: white;
}

.footer-link {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--neon-pink);
  text-shadow: 0 0 14px rgba(255, 45, 149, 0.45);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.btn-pink {
  background: linear-gradient(135deg, #ff2d95, #ff5eb3);
  color: #1a0410;
  box-shadow: 0 0 0 1px rgba(255, 45, 149, 0.45), 0 8px 24px rgba(255, 45, 149, 0.28);
}

.btn-pink:hover {
  box-shadow: 0 0 0 1px rgba(255, 45, 149, 0.7), 0 14px 36px rgba(255, 45, 149, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg, #f6e7c4, #e8c872 58%, #c9a24e);
  color: #1a1206;
  box-shadow: 0 0 0 1px rgba(232, 200, 114, 0.45), 0 8px 24px rgba(232, 200, 114, 0.22);
}

.btn-gold:hover {
  box-shadow: 0 0 0 1px rgba(232, 200, 114, 0.7), 0 14px 36px rgba(232, 200, 114, 0.34);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
}

.hero__scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
}

.hero__glow--gold {
  top: 8%;
  right: 6%;
  width: min(52vw, 560px);
  height: min(42vw, 420px);
  background: radial-gradient(circle, rgba(232, 200, 114, 0.32), transparent 68%);
}

.hero__glow--rose {
  bottom: 6%;
  left: -8%;
  width: min(48vw, 480px);
  height: min(36vw, 360px);
  background: radial-gradient(circle, rgba(255, 45, 149, 0.38), transparent 70%);
}

.hero__floor {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -8%;
  height: 38%;
  background: radial-gradient(ellipse at center, rgba(255, 45, 149, 0.12), transparent 68%);
}

.hero__arch {
  position: absolute;
  right: -4%;
  bottom: 0;
  width: min(78vw, 820px);
  height: auto;
  opacity: 0.7;
}

.hero__bokeh {
  position: absolute;
  inset: 0;
}

.hero__bokeh i {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 45, 149, 0.85);
  box-shadow: 0 0 12px rgba(255, 45, 149, 0.8);
  filter: blur(0.4px);
  animation: twinkle 5.5s ease-in-out infinite;
}

.hero__bokeh i:nth-child(1) { top: 22%; left: 58%; width: 6px; height: 6px; }
.hero__bokeh i:nth-child(2) { top: 30%; left: 74%; width: 4px; height: 4px; background: var(--gold); box-shadow: 0 0 12px rgba(232, 200, 114, 0.85); animation-delay: 0.8s; }
.hero__bokeh i:nth-child(3) { top: 48%; left: 66%; width: 3px; height: 3px; animation-delay: 1.4s; }
.hero__bokeh i:nth-child(4) { top: 18%; left: 40%; width: 3px; height: 3px; background: var(--champagne); box-shadow: 0 0 10px rgba(243, 226, 188, 0.8); animation-delay: 0.4s; }
.hero__bokeh i:nth-child(5) { top: 62%; left: 82%; width: 5px; height: 5px; animation-delay: 1.8s; }
.hero__bokeh i:nth-child(6) { top: 40%; left: 88%; width: 3px; height: 3px; background: var(--gold); box-shadow: 0 0 10px rgba(232, 200, 114, 0.8); animation-delay: 2.2s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.35); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 6, 13, 0.82) 0%, rgba(7, 6, 13, 0.48) 46%, rgba(7, 6, 13, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 6, 13, 0.55) 0%, rgba(7, 6, 13, 0.16) 38%, rgba(7, 6, 13, 0.9) 100%),
    radial-gradient(ellipse at 72% 38%, rgba(255, 45, 149, 0.18), transparent 46%),
    radial-gradient(ellipse at 28% 68%, rgba(232, 200, 114, 0.12), transparent 42%);
}

@media (max-width: 1023px) {
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(7, 6, 13, 0.66) 0%, rgba(7, 6, 13, 0.4) 42%, rgba(7, 6, 13, 0.92) 100%),
      radial-gradient(ellipse at 80% 30%, rgba(255, 45, 149, 0.2), transparent 46%);
  }

  .hero__arch {
    opacity: 0.38;
    right: -18%;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__layout {
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 2.5rem;
    align-items: center;
  }
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
}

.pulse-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--neon-pink);
  box-shadow: 0 0 0 0 rgba(255, 45, 149, 0.7);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 45, 149, 0.65); }
  70% { box-shadow: 0 0 0 10px rgba(255, 45, 149, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 149, 0); }
}

.hero__brand {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(4.4rem, 12vw, 7.6rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow:
    0 0 40px rgba(255, 45, 149, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.55);
}

.hero__brand em {
  display: block;
  font-style: normal;
  font-weight: 400;
  color: var(--neon-pink);
  text-shadow:
    0 0 28px rgba(255, 45, 149, 0.55),
    0 20px 60px rgba(0, 0, 0, 0.45);
}

.hero__promise {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: white;
}

.hero__tagline {
  margin-top: 0.9rem;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 768px) {
  .hero__tagline {
    font-size: 1.05rem;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  z-index: 2;
  display: none;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .hero__scroll {
    display: flex;
  }
}

.hero__scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(255, 45, 149, 0.9), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-line {
  0%, 100% { opacity: 0.25; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

.sculpture {
  display: none;
}

@media (min-width: 1024px) {
  .sculpture {
    display: block;
  }
}

.sculpture__bezel {
  border-radius: 0.4rem;
  padding: 0.7rem 0.7rem 0.85rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 45, 149, 0.16),
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(255, 45, 149, 0.16);
}

.sculpture__panes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  aspect-ratio: 16 / 10;
}

.pane {
  border-radius: 0.35rem;
  animation: pane-glow 7s ease-in-out infinite;
}

.pane--silk {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), transparent 55%),
    linear-gradient(160deg, #ff5eb3, #ff2d95 55%, #7a1248);
}

.pane--garden {
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 200, 114, 0.45), transparent 50%),
    linear-gradient(180deg, #1a1424, #07060d);
  animation-delay: 1.2s;
}

.pane--candle {
  background:
    radial-gradient(circle at 50% 60%, rgba(232, 200, 114, 0.9), transparent 58%),
    linear-gradient(180deg, #241808, #07060d);
  animation-delay: 0.6s;
}

.pane--blush {
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 45, 149, 0.85), transparent 55%),
    linear-gradient(200deg, #5c1238, #110e1c);
  animation-delay: 1.8s;
}

@keyframes pane-glow {
  0%, 100% { filter: saturate(1) brightness(1); }
  50% { filter: saturate(1.2) brightness(1.1); }
}

.sculpture__caption {
  margin: 0.75rem 0.35rem 0.15rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-in 0.9s var(--ease-out) forwards;
}

.reveal-delay-1 { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.24s; }
.reveal-delay-3 { animation-delay: 0.36s; }

@keyframes reveal-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 7.5rem 0;
  }
}

.eyebrow {
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-pink);
}

.eyebrow--center {
  text-align: center;
}

.section-title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-title em {
  font-style: normal;
  font-weight: 400;
  color: var(--neon-pink);
  text-shadow: 0 0 22px rgba(255, 45, 149, 0.45);
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

.feature-list__icon {
  flex: 0 0 auto;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.4rem;
  border-radius: 999px;
  box-shadow: 0 0 12px currentColor;
}

.feature-list__icon--pink { background: var(--neon-pink); color: var(--neon-pink); }
.feature-list__icon--gold { background: var(--gold); color: var(--gold); }

/* Invitation card */
.invite {
  position: relative;
  padding: 2.4rem 1.6rem 1.7rem;
  border-radius: 0.4rem;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 45, 149, 0.1), transparent 42%),
    linear-gradient(320deg, rgba(232, 200, 114, 0.1), transparent 48%),
    rgba(17, 14, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 45, 149, 0.12),
    0 30px 80px rgba(0, 0, 0, 0.45);
}

.invite::before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border: 1px solid rgba(232, 200, 114, 0.32);
  border-radius: 0.2rem;
  pointer-events: none;
}

.invite__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
}

.invite__names {
  margin-top: 0.7rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.invite__names em {
  font-style: normal;
  color: var(--neon-pink);
  text-shadow: 0 0 18px rgba(255, 45, 149, 0.45);
}

.invite__lines {
  margin: 1.4rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 16rem;
}

.invite__lines li {
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
}

.invite__foot {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 226, 188, 0.78);
}

/* Guest stage */
.section-experience {
  background: linear-gradient(180deg, transparent, rgba(17, 14, 28, 0.65), transparent);
}

.guest-stage {
  margin: 2.5rem 0 0;
}

.guest-stage__layout {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .guest-stage__layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.72fr);
    gap: 1.5rem;
  }
}

.bezel {
  border-radius: 1.35rem;
  padding: 0.65rem;
  background: linear-gradient(180deg, #2a2236, #110e1c 42%, #07060d);
  box-shadow:
    0 0 0 1px rgba(255, 45, 149, 0.22),
    0 40px 90px rgba(0, 0, 0, 0.5),
    0 0 42px rgba(255, 45, 149, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.screen {
  border-radius: 0.95rem;
  padding: 0.85rem;
  background:
    radial-gradient(500px 180px at 50% 0%, rgba(255, 45, 149, 0.14), transparent 60%),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.screen__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.15rem 0.25rem 0.7rem;
}

.live-pill,
.screen__room {
  white-space: nowrap;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-pink);
}

.screen__room {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.screen__stage {
  position: relative;
}

.wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}

.tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.45rem;
}

.tile__tag {
  position: absolute;
  left: 0.4rem;
  bottom: 0.35rem;
  z-index: 1;
  max-width: calc(100% - 0.7rem);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.tile.is-fresh .tile__tag::before {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.28rem;
  border-radius: 999px;
  background: var(--neon-pink);
  box-shadow: 0 0 8px rgba(255, 45, 149, 0.95);
  vertical-align: 0.05em;
}

.tile--monogram.is-fresh .tile__tag::before {
  background: #1a0410;
  box-shadow: none;
}

.tile__mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #1a0410;
}

.tile--monogram {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.45), transparent 45%),
    linear-gradient(145deg, #ff8ac4, #ff2d95 58%, #c91878);
}

.tile--monogram .tile__tag {
  color: #1a0410;
  text-shadow: none;
}

.tile--aisle {
  background: linear-gradient(180deg, #14101c, #3a1430 80%);
}

.tile__arch {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 16%;
  bottom: 18%;
  border: 1.5px solid rgba(255, 45, 149, 0.85);
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
  box-shadow: 0 0 16px rgba(255, 45, 149, 0.35);
}

.tile--bokeh {
  background:
    radial-gradient(circle at 25% 35%, rgba(255, 45, 149, 0.95) 0 3px, transparent 4px),
    radial-gradient(circle at 62% 28%, rgba(232, 200, 114, 0.95) 0 4px, transparent 5px),
    radial-gradient(circle at 48% 62%, rgba(255, 255, 255, 0.75) 0 2px, transparent 3px),
    radial-gradient(circle at 75% 70%, rgba(255, 94, 179, 0.9) 0 5px, transparent 6px),
    linear-gradient(180deg, #1a1020, #07060d);
}

.tile--table {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 45, 149, 0.28), transparent 28%),
    linear-gradient(180deg, #1c1220, #07060d);
}

.place {
  position: absolute;
  inset: 16% 18% 26%;
}

.place__candle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8%;
  height: 28%;
  transform: translateX(-50%);
  border-radius: 2px;
  background: linear-gradient(#fff6e4, #e8c872);
}

.place__candle::after {
  content: "";
  position: absolute;
  top: -18%;
  left: 50%;
  width: 70%;
  height: 22%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #ffe08a;
  box-shadow: 0 0 8px rgba(255, 224, 138, 0.9);
}

.place__green {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34%;
  height: 16%;
  border-radius: 2px;
  background: #3a5c48;
}

.place__plate {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 52%;
  height: 28%;
  border-radius: 999px;
  border: 1.5px solid rgba(243, 226, 188, 0.85);
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.16), transparent 70%);
}

.place__linen {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14%;
  border-radius: 2px;
  background: #e8c872;
}

.tile--dance {
  background: radial-gradient(circle at 50% 80%, rgba(255, 45, 149, 0.28), #120810 70%);
}

.tile__orb {
  position: absolute;
  top: 22%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(0.2px);
}

.tile__orb--a {
  left: 12%;
  background: radial-gradient(circle at 40% 40%, #fff1cc, #e8c872 70%);
  box-shadow: 0 0 18px rgba(232, 200, 114, 0.45);
  opacity: 0.95;
}

.tile__orb--b {
  right: 12%;
  background: radial-gradient(circle at 40% 40%, #ffd0ea, #ff2d95 72%);
  box-shadow: 0 0 18px rgba(255, 45, 149, 0.45);
  opacity: 0.92;
}

.tile--petals {
  background:
    radial-gradient(circle at 30% 35%, rgba(255, 45, 149, 0.95), transparent 42%),
    radial-gradient(circle at 68% 40%, rgba(232, 200, 114, 0.8), transparent 40%),
    radial-gradient(circle at 48% 68%, rgba(255, 94, 179, 0.75), transparent 42%),
    #2a1020;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.42), transparent 68%);
  transform: translateX(-130%);
  pointer-events: none;
}

.tile.is-fresh::after {
  animation: sheen 0.85s var(--ease-out);
}

@keyframes sheen {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.55rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.4rem;
  background: rgba(7, 6, 13, 0.78);
  border: 1px solid rgba(255, 45, 149, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 24px rgba(255, 45, 149, 0.12);
}

.toast.is-in {
  animation: toast-in 0.7s var(--ease-out);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.toast__seal {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #ff5eb3, #ff2d95);
  color: #1a0410;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.toast__from {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
}

.toast > div {
  min-width: 0;
}

.toast__text {
  margin-top: 0.1rem;
  font-size: clamp(0.88rem, 2vw, 0.98rem);
  font-weight: 500;
  line-height: 1.35;
  color: white;
}

.guest-stage__caption {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

/* Phone */
.phone {
  width: min(100%, 280px);
  margin-inline: auto;
  border-radius: 2rem;
  padding: 0.55rem;
  background: linear-gradient(180deg, #3a2a40, #110e1c);
  border: 1px solid rgba(255, 45, 149, 0.35);
  box-shadow:
    0 0 0 1px rgba(232, 200, 114, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 36px rgba(255, 45, 149, 0.16);
}

.phone__glass {
  border-radius: 1.55rem;
  padding: 1.15rem 1rem 1rem;
  background:
    radial-gradient(180px 80px at 50% 0%, rgba(255, 45, 149, 0.16), transparent 70%),
    #0c0a12;
  min-height: 390px;
}

.phone__top {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.phone__kicker {
  margin-top: 1.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-pink);
}

.phone__question {
  margin-top: 0.45rem;
  min-height: 3.3rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.poll {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.poll__top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.84);
}

.poll__pct {
  font-variant-numeric: tabular-nums;
  color: var(--champagne);
}

.poll__track {
  margin-top: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.poll__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff2d95, #e8c872);
  box-shadow: 0 0 10px rgba(255, 45, 149, 0.45);
  transition: width 0.7s var(--ease-out);
}

.phone__foot {
  margin-top: 1.15rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.58);
}

/* Story cards */
.story-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.story-card {
  padding: 1.35rem 1.2rem 1.45rem;
  border-radius: 0.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid rgba(255, 45, 149, 0.6);
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.story-card:nth-child(2) { border-top-color: rgba(232, 200, 114, 0.75); }
.story-card:nth-child(3) { border-top-color: rgba(255, 45, 149, 0.5); }

.story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.story-card__icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--neon-pink);
}

.story-card:nth-child(2) .story-card__icon {
  color: var(--gold);
}

.story-card__title {
  margin-top: 0.85rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.95;
}

.story-card__text {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 700px) and (max-width: 899px) {
  .story-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
    align-items: start;
  }

  .story-card__icon {
    grid-row: span 2;
    margin-top: 0.2rem;
  }

  .story-card__title {
    margin-top: 0;
  }
}

/* Designer */
.section-designer {
  background: linear-gradient(180deg, transparent, rgba(17, 14, 28, 0.45) 30%, transparent);
}

.chips-label {
  margin-top: 1.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-pink);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.chips li {
  padding: 0.4rem 0.75rem;
  border-radius: 0.35rem;
  border: 1px solid rgba(255, 45, 149, 0.35);
  background: rgba(255, 45, 149, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
}

.designer-ui {
  border-radius: 0.75rem;
  padding: 0.85rem;
  background:
    linear-gradient(145deg, rgba(255, 45, 149, 0.08), transparent 42%),
    linear-gradient(320deg, rgba(232, 200, 114, 0.06), transparent 48%),
    rgba(17, 14, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 45, 149, 0.1),
    0 30px 80px rgba(0, 0, 0, 0.45);
}

.designer-ui__bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0.45rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.scene {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 0.4rem;
  display: flex;
  align-items: flex-end;
  padding: 1.15rem 1.15rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.scene__bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}

.scene__bg.is-on {
  opacity: 1;
}

.scene__bg--intro {
  background:
    radial-gradient(140px 180px at 72% 28%, rgba(255, 45, 149, 0.45), transparent 70%),
    radial-gradient(220px 180px at 18% 82%, rgba(232, 200, 114, 0.28), transparent 70%),
    linear-gradient(165deg, #1a1428, #07060d 58%, #2a1022);
}

.scene__bg--intro::after {
  content: "";
  position: absolute;
  left: 58%;
  top: 14%;
  width: 28%;
  height: 58%;
  border: 1.5px solid rgba(255, 45, 149, 0.8);
  border-bottom: 0;
  border-radius: 120px 120px 0 0;
  box-shadow: 0 0 18px rgba(255, 45, 149, 0.35);
}

.scene__bg--dance {
  background:
    radial-gradient(80px 80px at 42% 46%, rgba(255, 241, 204, 0.95), transparent 70%),
    radial-gradient(90px 90px at 58% 50%, rgba(255, 45, 149, 0.8), transparent 70%),
    linear-gradient(180deg, #1a0c14, #07060d);
}

.scene__bg--toast {
  background:
    radial-gradient(18px 90px at 50% 42%, rgba(243, 226, 188, 0.75), transparent 70%),
    radial-gradient(70px 18px at 50% 62%, rgba(255, 45, 149, 0.28), transparent 70%),
    linear-gradient(180deg, #120e18, #1c1020);
}

.scene__bg--cake {
  background:
    radial-gradient(circle at 22% 30%, rgba(255, 45, 149, 0.7), transparent 36%),
    radial-gradient(circle at 78% 24%, rgba(232, 200, 114, 0.6), transparent 32%),
    radial-gradient(circle at 60% 72%, rgba(255, 94, 179, 0.4), transparent 28%),
    linear-gradient(180deg, #4a1840, #110e1c);
}

.scene__copy {
  position: relative;
  z-index: 1;
}

.scene__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
}

.scene__title {
  margin-top: 0.2rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.scene__meta {
  margin-top: 0.3rem;
  max-width: 26rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.setlist {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.moment {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.15rem 0.75rem;
  align-items: center;
  padding: 0.75rem 0.65rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.moment:hover {
  background: rgba(255, 255, 255, 0.04);
}

.moment.is-active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 45, 149, 0.45);
  box-shadow: 0 0 24px rgba(255, 45, 149, 0.1);
}

.moment__num {
  grid-row: span 2;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-style: normal;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--neon-pink);
}

.moment__copy {
  display: grid;
  min-width: 0;
}

.moment__name {
  font-size: 0.95rem;
  font-weight: 600;
}

.moment__detail {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

.moment__tag {
  grid-column: 2;
  justify-self: start;
  margin-top: 0.2rem;
  padding: 0.18rem 0.5rem;
  border-radius: 0.3rem;
  background: rgba(232, 200, 114, 0.12);
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .moment {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .moment__num {
    grid-row: span 2;
  }

  .moment__tag {
    grid-column: auto;
    grid-row: span 2;
    margin-top: 0;
    align-self: center;
  }
}

/* How it works */
.experience-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.steps {
  counter-reset: step;
}

.xp-item {
  position: relative;
  padding: 1.4rem 1.25rem 1.5rem;
  border-top: 2px solid rgba(255, 45, 149, 0.65);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out), background 0.25s ease;
}

.xp-item:nth-child(2) { border-top-color: rgba(232, 200, 114, 0.75); }
.xp-item:nth-child(3) { border-top-color: rgba(255, 45, 149, 0.5); }
.xp-item:nth-child(4) { border-top-color: rgba(243, 226, 188, 0.7); }

.xp-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.xp-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.xp-item__title {
  margin-top: 0.35rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.95;
}

.xp-item__text {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
}

/* Quotes */
.section-voices {
  background: linear-gradient(180deg, transparent, rgba(255, 45, 149, 0.06), transparent);
}

.quote-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-grid .quote:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-grid .quote:last-child {
    grid-column: auto;
  }
}

.quote {
  margin: 0;
  padding: 1.35rem 1.2rem 1.25rem;
  border-top: 2px solid rgba(255, 45, 149, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.quote:nth-child(2) { border-top-color: rgba(232, 200, 114, 0.7); }
.quote:nth-child(3) { border-top-color: rgba(255, 45, 149, 0.45); }

.quote blockquote {
  margin: 0;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.quote blockquote::before {
  content: "\201C";
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-style: normal;
  font-size: 2.6rem;
  line-height: 0.8;
  color: var(--neon-pink);
  text-shadow: 0 0 16px rgba(255, 45, 149, 0.4);
  margin-bottom: 0.35rem;
}

.quote figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.7rem;
  margin-top: 1rem;
}

.quote__name {
  font-size: 0.92rem;
  font-weight: 600;
}

.quote__role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
}

.fine-print {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Waitlist */
.section-waitlist {
  padding-bottom: 6rem;
}

.waitlist-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 2.5rem 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 45, 149, 0.1), transparent 40%),
    linear-gradient(320deg, rgba(232, 200, 114, 0.1), transparent 45%),
    rgba(17, 14, 28, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 45, 149, 0.1),
    0 40px 100px rgba(0, 0, 0, 0.45);
}

@media (min-width: 768px) {
  .waitlist-panel {
    padding: 3.5rem 3rem;
  }
}

.waitlist-panel__glow {
  pointer-events: none;
  position: absolute;
  inset: -20% auto auto 50%;
  width: 520px;
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 45, 149, 0.28), transparent 70%);
  filter: blur(10px);
}

.waitlist-form {
  margin: 2rem auto 0;
  display: grid;
  max-width: 38rem;
  gap: 1rem;
  justify-items: center;
}

.form-row {
  display: grid;
  width: 100%;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1.15fr;
  }
}

.field {
  width: 100%;
  text-align: left;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.field input,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.35rem;
  background: rgba(7, 6, 13, 0.65);
  padding: 0.95rem 1rem;
  color: white;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field select {
  appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 6l4.5 4.5L12.5 6' fill='none' stroke='%23f3e2bc' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.9rem;
}

.field select:invalid {
  color: rgba(255, 255, 255, 0.72);
}

.field select option {
  color: white;
  background: #110e1c;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.field input:hover,
.field select:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.field input:focus,
.field select:focus,
.field input:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
  background-color: rgba(7, 6, 13, 0.85);
  box-shadow: 0 0 0 3px rgba(232, 200, 114, 0.2);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #ff5e7a;
  box-shadow: 0 0 0 3px rgba(255, 94, 122, 0.2);
}

.field input[aria-invalid="true"]:focus,
.field select[aria-invalid="true"]:focus,
.field input[aria-invalid="true"]:focus-visible,
.field select[aria-invalid="true"]:focus-visible {
  outline-color: #ff8aa0;
  border-color: #ff5e7a;
}

.field-error {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: #ff8aa0;
}

.form-note {
  max-width: 30rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.form-success {
  width: 100%;
  border: 1px solid rgba(232, 200, 114, 0.4);
  border-radius: 0.4rem;
  background: rgba(232, 200, 114, 0.08);
  padding: 1.4rem 1.15rem 1.3rem;
  text-align: center;
  animation: reveal-in 0.5s var(--ease-out);
}

.form-success:focus {
  outline: none;
}

.form-success:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.form-success__mark {
  width: 2.6rem;
  height: 2.6rem;
  margin: 0 auto 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 149, 0.7);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l3.8 3.8L18 8' fill='none' stroke='%23ff2d95' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 1.2rem no-repeat,
    rgba(255, 45, 149, 0.1);
  box-shadow: 0 0 18px rgba(255, 45, 149, 0.25);
}

.form-success__title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--champagne);
}

.form-success__text {
  margin-top: 0.4rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.waitlist-form.is-success .form-row,
.waitlist-form.is-success .field,
.waitlist-form.is-success .btn,
.waitlist-form.is-success .form-note {
  display: none;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.footer-socials {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.15rem;
}

/* Scroll reveal */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .btn:hover,
  .xp-item:hover,
  .story-card:hover {
    transform: none;
  }
}
