/* ===================== TOKENS ===================== */
:root {
  --lav:      #A09EEC;
  --lav-2:    #AEAFF1;
  --lav-3:    #B2BDFF;
  --lav-soft: #ECEBFB;
  --lav-tint: #F3F2FD;
  --pink:     #F3DFF3;
  --pink-2:   #FFE0E2;
  --yellow:   #FAF4B0;
  --green:    #C7F0CF;
  --blue-deep:#122698;
  --orange:   #FF6B01;
  --ink:      #14131c;
  --muted:    #58586C;
  --line:     #e7e6f0;
  --bg:       #ffffff;
  --bg-soft:  #f6f5fb;

  --shadow-sm: 0 6px 18px rgba(36, 30, 92, .08);
  --shadow-md: 0 18px 40px rgba(36, 30, 92, .14);
  --shadow-lg: 0 30px 70px rgba(36, 30, 92, .22);

  --font-body: 'Poppins', system-ui, sans-serif;
  --font-disp: 'Zalando Sans Expanded', 'Poppins', sans-serif;
  --font-script: 'Meow Script', cursive;
  --font-serif: 'Abhaya Libre', serif;

  --maxw: 1180px;
  --radius: 26px;
}

/* ===================== RESET ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; }

.script-accent {
  font-family: var(--font-script);
  color: var(--lav);
  font-weight: 400;
  line-height: .8;
}
.script-accent--lg { font-size: 1.35em; }
.script-accent--xl { font-size: 1.55em; display: inline-block; }

.section-title {
  font-family: var(--font-disp);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: .98;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .22em;
  color: var(--lav);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  padding: .85em 1.6em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.3,1.4,.5,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn--solid { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--lav); transform: translateY(-3px) rotate(-1deg); box-shadow: var(--shadow-md); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--lav); border-color: var(--lav); color: #fff; transform: translateY(-3px); }
.btn--lg { padding: 1.05em 2em; font-size: 1.05rem; }

/* ===================== NAV ===================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 18px 0;
}
.nav--scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px;
}
.nav__brand img { height: 30px; width: auto; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  font-weight: 600; font-size: .95rem; color: var(--ink);
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--lav); transition: width .25s;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 6px; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 170px 24px 90px;
  text-align: center;
  background:
    radial-gradient(1100px 600px at 50% -10%, var(--lav-soft), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 72%);
          mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 72%);
  opacity: .5;
}
.hero__inner { position: relative; max-width: 880px; margin: 0 auto; z-index: 3; }

.pill {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; font-size: .78rem; letter-spacing: .12em;
  padding: .6em 1.1em; border-radius: 999px;
  background: #fff; border: 2px solid var(--ink); box-shadow: var(--shadow-sm);
}
.pill--tag { transform: rotate(-2deg); }
.pill--dark { background: var(--ink); color: #fff; border-color: var(--ink); }

.hero__title {
  font-family: var(--font-disp);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .94;
  font-size: clamp(2.8rem, 9vw, 6.6rem);
  margin: 26px 0 22px;
}
.hero__title .line { display: block; }
.hero__title .line--script em { font-family: var(--font-script); color: var(--lav); font-weight: 400; font-size: 1.2em; }

.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--muted);
  max-width: 600px; margin: 0 auto 34px;
}
.hero__sub strong { color: var(--ink); }
.hero__sub .script-accent { font-size: 1.7em; }

.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero__avatars { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 3px solid #fff; box-shadow: var(--shadow-sm); margin-left: -14px;
}
.avatars img:first-child { margin-left: 0; }
.hero__avatars span { font-weight: 600; color: var(--muted); font-size: .92rem; }

/* floating stickers */
.float {
  position: absolute; z-index: 2;
  border-radius: 22px; object-fit: cover;
  border: 5px solid #fff; box-shadow: var(--shadow-md);
  animation: bob 6s ease-in-out infinite;
}
.float--1 { width: 150px; height: 190px; top: 150px; left: 4%; transform: rotate(-8deg); }
.float--2 { width: 130px; height: 170px; bottom: 120px; left: 8%; transform: rotate(6deg); animation-delay: -2s; }
.float--3 { width: 165px; height: 120px; top: 175px; right: 4%; transform: rotate(7deg); animation-delay: -1s; }
.float--4 { width: 140px; height: 110px; bottom: 130px; right: 7%; transform: rotate(-6deg); animation-delay: -3s; }

.bee { position: absolute; pointer-events: none; }
.bee--hero { width: 78px; top: 110px; left: 50%; transform: translateX(-50%) rotate(12deg); animation: bob 4s ease-in-out infinite; z-index: 4; }

.spark { position: absolute; color: var(--lav); font-size: 1.4rem; animation: twinkle 3s ease-in-out infinite; z-index: 2; }
.spark--a { top: 30%; left: 24%; }
.spark--b { top: 55%; right: 26%; font-size: 2rem; animation-delay: -1s; }
.spark--c { top: 22%; right: 30%; font-size: 1rem; animation-delay: -2s; }

@keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -16px; } }
@keyframes twinkle { 0%,100% { opacity: .25; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.2); } }

/* ===================== STRIP MARQUEE ===================== */
.strip {
  background: var(--lav); color: #fff;
  padding: 14px 0; overflow: hidden;
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
}
.strip__track { display: flex; white-space: nowrap; width: max-content; animation: scrollX 26s linear infinite; }
.strip__track span { font-family: var(--font-disp); font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; padding-right: 8px; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ===================== ABOUT ===================== */
.about { padding: 110px 24px; background: var(--bg); }
.about__inner { max-width: 960px; margin: 0 auto; text-align: center; }
.about__lead {
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.6vw, 2.7rem);
  line-height: 1.28; letter-spacing: -.01em;
  margin-top: 22px;
}
.hl { padding: 0 .12em; border-radius: 8px; }
.hl--pink { background: var(--pink-2); }
.hl--lav { background: var(--lav); color: #fff; border-radius: 10px; padding: 0 .2em; }

/* ===================== BUZZ ===================== */
.buzz { position: relative; padding: 90px 0 110px; background: linear-gradient(180deg, #fff, var(--lav-tint)); overflow: hidden; }
.buzz__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.buzz__head { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; margin-bottom: 50px; }
.buzz__copy { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); }
.buzz__copy strong { color: var(--ink); }
.bee--buzz { width: 90px; top: 60px; right: 6%; transform: rotate(-14deg); animation: bob 5s ease-in-out infinite; }

.gallery { overflow: hidden; padding: 14px 0; margin: 10px 0 56px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.gallery__track { display: flex; gap: 20px; width: max-content; animation: scrollX 40s linear infinite; }
.gallery__track img {
  width: 230px; height: 290px; object-fit: cover;
  border-radius: 22px; border: 5px solid #fff; box-shadow: var(--shadow-md);
}
.gallery__track img:nth-child(odd)  { transform: rotate(-2deg); }
.gallery__track img:nth-child(even) { transform: rotate(2deg); }

.buzz__story { font-family: var(--font-disp); font-weight: 600; font-size: clamp(1.4rem, 3.4vw, 2.5rem); line-height: 1.3; text-align: center; max-width: 920px; margin: 0 auto 26px; letter-spacing: -.01em; }
.buzz__story em { font-family: var(--font-serif); color: var(--lav); font-weight: 700; }
.buzz__epic { text-align: center; font-size: clamp(1.1rem, 2.2vw, 1.5rem); font-weight: 600; max-width: 760px; margin: 0 auto; color: var(--muted); }

/* ===================== TRIBE ===================== */
.tribe { padding: 24px; position: relative; overflow: hidden; }
.tribe__inner {
  max-width: var(--maxw); margin: 0 auto;
  background: var(--lav);
  border: 3px solid var(--ink);
  border-radius: 40px;
  padding: clamp(48px, 8vw, 96px) 24px;
  text-align: center; color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1; overflow: hidden;
}
.tribe__inner::before, .tribe__inner::after {
  content: "✦"; position: absolute; color: rgba(255,255,255,.5); font-size: 3rem;
}
.tribe__inner::before { top: 30px; left: 40px; }
.tribe__inner::after { bottom: 30px; right: 50px; font-size: 4.5rem; }
.tribe__title {
  font-family: var(--font-disp); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(2rem, 6vw, 4.4rem); line-height: 1; margin-bottom: 34px;
}
.tribe__title .script-accent { color: #fff; }
.tribe .btn--solid { background: #fff; color: var(--ink); }
.tribe .btn--solid:hover { background: var(--ink); color: #fff; }

/* ===================== PERKS ===================== */
.perks { padding: 110px 24px; max-width: var(--maxw); margin: 0 auto; }
.perks__head { text-align: center; margin-bottom: 56px; }
.perks__head .section-title { margin-top: 14px; }
.perks__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.perk {
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 16px 16px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.3,1.2,.5,1), box-shadow .3s, border-color .3s;
}
.perk:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: var(--lav); }
.perk__img { border-radius: 18px; overflow: hidden; aspect-ratio: 4/4.2; margin-bottom: 18px; background: var(--lav-soft); }
.perk__img img { width: 100%; height: 100%; object-fit: cover; }
.perk h3 { font-family: var(--font-disp); font-weight: 700; font-size: 1.3rem; padding: 0 6px; margin-bottom: 8px; }
.perk p { color: var(--muted); font-size: .96rem; padding: 0 6px; }
.perk--cta { background: var(--ink); color: #fff; border-color: var(--ink); }
.perk--cta p { color: rgba(255,255,255,.72); }
.perk__link { display: inline-block; margin: 14px 6px 0; font-weight: 700; color: var(--lav-3); }
.perk--cta:hover { border-color: var(--lav); }

/* ===================== CTA ===================== */
.cta { padding: 0 0 100px; }
.cta__marquee { background: var(--ink); color: #fff; padding: 16px 0; overflow: hidden; margin-bottom: 70px; }
.cta__track { display: flex; white-space: nowrap; width: max-content; animation: scrollX 22s linear infinite; }
.cta__track span { font-family: var(--font-disp); font-weight: 800; font-size: clamp(1.4rem, 3vw, 2.4rem); letter-spacing: .02em; padding-right: 14px; }

.cta__card {
  position: relative;
  max-width: 720px; margin: 0 24px; margin-inline: auto;
  background: linear-gradient(160deg, var(--lav), var(--lav-3));
  border: 3px solid var(--ink); border-radius: 36px;
  padding: clamp(40px, 6vw, 70px) clamp(24px, 5vw, 60px);
  text-align: center; color: #fff; box-shadow: var(--shadow-lg);
}
.bee--cta { width: 80px; top: -34px; left: 50%; transform: translateX(-50%) rotate(8deg); animation: bob 4s ease-in-out infinite; }
.cta__title { font-family: var(--font-disp); font-weight: 800; font-size: clamp(1.7rem, 4.4vw, 3rem); line-height: 1.05; letter-spacing: -.02em; margin-bottom: 12px; }
.cta__title .script-accent { color: #fff; }
.cta__sub { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 30px; }
.waitform { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.waitform input {
  flex: 1; min-width: 0; padding: 1em 1.3em; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--font-body); font-size: 1rem; background: #fff; color: var(--ink);
}
.waitform input:focus { outline: none; box-shadow: 0 0 0 4px rgba(255,255,255,.4); }
.waitform .btn--solid { background: var(--ink); }
.waitform .btn--solid:hover { background: #000; transform: translateY(-2px); }
.waitform__note { min-height: 22px; margin-top: 14px; font-weight: 600; color: #fff; }

/* ===================== FOOTER ===================== */
.footer { background: var(--ink); color: #fff; padding: 70px 24px 30px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer__brand img { height: 30px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer__brand p { color: rgba(255,255,255,.66); max-width: 340px; }
.footer__social { display: flex; gap: 14px; margin-top: 22px; }
.social { display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px 9px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); color: #fff; font-weight: 600; font-size: .9rem; transition: background .25s, border-color .25s, transform .25s; }
.social:hover { background: var(--lav); border-color: var(--lav); transform: translateY(-2px); }
.social svg { flex: none; }
.footer__col h4 { font-family: var(--font-disp); font-size: 1rem; margin-bottom: 16px; }
.footer__col > a { display: block; color: rgba(255,255,255,.66); margin-bottom: 12px; transition: color .2s; }
.footer__col > a:hover { color: #fff; }
.footer__contact address { font-style: normal; display: flex; flex-direction: column; gap: 9px; color: rgba(255,255,255,.66); font-size: .92rem; line-height: 1.5; }
.footer__contact strong { color: #fff; font-weight: 700; font-size: .96rem; letter-spacing: .01em; }
.footer__person { color: rgba(255,255,255,.9); font-weight: 600; }
.footer__contact a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.78); transition: color .2s; }
.footer__contact a:hover { color: var(--lav-3); }
.footer__contact a svg { flex: none; opacity: .8; }
.footer__bottom { max-width: var(--maxw); margin: 0 auto; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px 24px; flex-wrap: wrap; color: rgba(255,255,255,.55); font-size: .88rem; }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer__legal a:hover { color: #fff; }

/* ===================== REVEAL (blur-in — Magic UI BlurText port) ===================== */
/* Only hide when JS is active, so no-JS users still see everything. */
.js .reveal { opacity: 0; transform: translateY(28px); filter: blur(7px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.3,1), filter .8s ease; will-change: opacity, transform, filter; }
.js .reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal.d1 { transition-delay: .09s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; }
.reveal.d4 { transition-delay: .36s; }
.reveal.d5 { transition-delay: .45s; }

/* ===================== ACCESSIBILITY: focus-visible (UI/UX Pro Max §1) ===================== */
:focus { outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--lav);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible { outline-offset: 4px; }
/* On dark surfaces, use a light ring for contrast */
.footer a:focus-visible, .cta__card a:focus-visible, .tribe a:focus-visible,
.waitform input:focus-visible, .nav--scrolled a:focus-visible {
  outline-color: #fff;
}
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 400;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 999px; font-weight: 700;
}
.skip-link:focus { left: 12px; }

/* ===================== SCROLL PROGRESS (modern-web-design) ===================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0%;
  z-index: 200; transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--lav), var(--orange));
  box-shadow: 0 0 12px rgba(160,158,236,.7);
  pointer-events: none;
}

/* ===================== CUSTOM CURSOR (modern-web-design: cursor UX) ===================== */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 300; pointer-events: none;
  border-radius: 50%; translate: -50% -50%;
  opacity: 0; transition: opacity .3s, width .25s, height .25s, background .25s;
  mix-blend-mode: difference;
}
#cursorDot { width: 9px; height: 9px; background: #fff; }
.cursor--ring { width: 38px; height: 38px; border: 2px solid #fff; }
body.cursor-ready .cursor { opacity: 1; }
body.cursor-ready { cursor: none; }
body.cursor-ready a, body.cursor-ready button, body.cursor-ready input { cursor: none; }
.cursor--ring.is-hover { width: 64px; height: 64px; background: rgba(255,255,255,.12); }
@media (hover: none) { .cursor { display: none !important; } body.cursor-ready { cursor: auto; } }

/* ===================== SHIMMER + BORDER-BEAM BUTTON (Magic UI port) ===================== */
.btn--shimmer { position: relative; overflow: hidden; isolation: isolate; }
.btn--shimmer::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.55) 50%, transparent 75%);
  background-size: 220% 100%;
  animation: shimmer 3.4s linear infinite;
}
@keyframes shimmer { 0% { background-position: 180% 0; } 100% { background-position: -80% 0; } }

/* ===================== STATS / NUMBER TICKER (Magic UI port) ===================== */
.stats { padding: 70px 24px; background: var(--ink); color: #fff; }
.stats__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 14%; height: 72%; width: 1px; background: rgba(255,255,255,.14); }
.stat__num { display: block; font-family: var(--font-disp); font-weight: 800; font-size: clamp(2.4rem, 6vw, 3.8rem); line-height: 1; letter-spacing: -.02em; background: linear-gradient(120deg, #fff, var(--lav-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { display: block; margin-top: 10px; color: rgba(255,255,255,.62); font-weight: 600; font-size: .92rem; }

/* ===================== AURORA (Magic UI / React Bits Aurora port) ===================== */
.tribe__inner { isolation: isolate; }
.tribe__aurora { position: absolute; inset: -40%; z-index: 0; pointer-events: none; filter: blur(60px); opacity: .85; }
.tribe__aurora::before, .tribe__aurora::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(40% 40% at 30% 30%, #c9c6ff 0%, transparent 60%),
    radial-gradient(35% 35% at 70% 40%, #ffd9f3 0%, transparent 60%),
    radial-gradient(45% 45% at 50% 75%, #b9c4ff 0%, transparent 60%);
  animation: aurora 16s ease-in-out infinite;
}
.tribe__aurora::after { animation-duration: 22s; animation-direction: reverse; opacity: .7; }
.tribe__inner > * { position: relative; z-index: 1; }
@keyframes aurora {
  0%,100% { transform: translate3d(0,0,0) rotate(0deg) scale(1); }
  33%     { transform: translate3d(6%,-4%,0) rotate(120deg) scale(1.15); }
  66%     { transform: translate3d(-5%,5%,0) rotate(240deg) scale(.95); }
}

/* ===================== ANIMATED GRID TWINKLE (Magic UI AnimatedGridPattern port) ===================== */
.hero__bg-grid::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--lav) 1.6px, transparent 1.7px);
  background-size: 46px 46px; background-position: 23px 23px;
  opacity: .25; animation: gridPulse 5s ease-in-out infinite;
}
@keyframes gridPulse { 0%,100% { opacity: .12; } 50% { opacity: .4; } }

/* ===================== CONFETTI (success micro-interaction) ===================== */
.confetti { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 250; display: none; }
.confetti.is-on { display: block; }

/* ===================== VANTA FOOTER (lightweight-3d-effects) ===================== */
.footer { position: relative; overflow: hidden; }
/* dim the animated mesh so it never competes with footer text (UI/UX Pro Max: scrim legibility) */
.footer__vanta { position: absolute; inset: 0; z-index: 0; opacity: .4; }
.footer__vanta::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,19,28,.45) 0%, rgba(20,19,28,.72) 55%, rgba(20,19,28,.88) 100%);
}
.footer > *:not(.footer__vanta) { position: relative; z-index: 1; }

/* Tilt glare polish */
.perk { transform-style: preserve-3d; }
.perk .js-tilt-glare { border-radius: var(--radius); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav--open .nav__links {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 24px; box-shadow: var(--shadow-md);
  }
  .nav--open .nav__cta { display: inline-flex; position: absolute; top: 100%; margin-top: 170px; left: 24px; right: 24px; }
  .float { display: none; }
  .buzz__head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .perks__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 34px 28px; }
  .footer__brand { grid-column: 1 / -1; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .stat:nth-child(2)::after { display: none; }
}
@media (max-width: 560px) {
  .hero { padding-top: 130px; padding-left: 18px; padding-right: 18px; }
  /* hero hive overlaps the pill on narrow screens — declutter (pill already has a 🐝) */
  .bee--hero { display: none; }
  /* keep the expanded display headline on one line, never clipped */
  .hero__title { font-size: clamp(1.9rem, 8.4vw, 3rem); letter-spacing: -.035em; }
  .hero__title .line--script em { font-size: 1.1em; }
  .perks__grid { grid-template-columns: 1fr; }
  .waitform { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }
  .gallery__track img { width: 170px; height: 220px; }
}
/* extra-small phones (≤360px): shrink the headline a touch more */
@media (max-width: 360px) {
  .hero__title { font-size: clamp(1.6rem, 8vw, 2rem); }
  .section-title { font-size: clamp(2rem, 9vw, 2.6rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; filter: none; }
  .cursor { display: none !important; }
}
