:root {
  --blob-base: #5e3fd4;
  --blob-deep: #4f35b8;
  --surface: #ffffff;
  --text: #1c1917;
  --text-muted: #57534e;
  --on-purple: #ffffff;
  --on-purple-muted: rgba(255,255,255,0.78);
  --coral: #ff5c4d;
  --mango: #ff9f45;
  --berry: #e848a4;
  --lime: #7ccf5c;
  --ocean: #2eb8c8;
  --border: rgba(28,25,23,0.08);
  --font: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.22,1,0.36,1);
  --radius: 22px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font); background: var(--blob-base); color: var(--text);
  background-image:
    radial-gradient(ellipse 140% 90% at 20% 0%,#6b4ee0 0%,transparent 55%),
    radial-gradient(ellipse 100% 70% at 100% 80%,var(--blob-deep) 0%,transparent 50%),
    linear-gradient(180deg,var(--blob-base) 0%,#5540c4 45%,var(--blob-deep) 100%);
  line-height: 1.6; overflow-x: hidden; min-height: 100vh;
  -webkit-font-smoothing: antialiased; cursor: none;
}
@media (max-width:768px) { body { cursor: auto; } }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }

/* === Scroll Progress === */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg,var(--coral),var(--berry),var(--mango));
  z-index: 10001; transition: none; border-radius: 0 2px 2px 0;
  box-shadow: 0 0 12px rgba(255,92,77,0.5);
}

/* === Floating Bubbles === */
.bubbles { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bubble {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  animation: bubbleFloat linear infinite;
  will-change: transform;
}
@keyframes bubbleFloat {
  0% { transform: translateY(100vh) rotate(0deg) scale(0); opacity: 0; }
  10% { opacity: 1; transform: translateY(90vh) rotate(36deg) scale(1); }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) rotate(360deg) scale(0.6); opacity: 0; }
}

/* === Purple Background Layer === */
.bg-layer { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-layer__blobs {
  position: absolute; inset: -4vh;
  background: url("assets/pipls-blobs-reference.png") repeat center / clamp(320px,42vw,560px) auto;
  opacity: 0.18; mix-blend-mode: soft-light; filter: saturate(0.85);
}
.bg-layer__orbs { position: absolute; inset: 0; }
.bg-layer__orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3;
  will-change: transform;
}
.bg-layer__orb--1 {
  width: 600px; height: 600px; top: -10%; left: -5%;
  background: radial-gradient(circle,#8b5cf6,transparent);
  animation: orbFloat1 18s ease-in-out infinite;
}
.bg-layer__orb--2 {
  width: 500px; height: 500px; bottom: -10%; right: -5%;
  background: radial-gradient(circle,var(--coral),transparent);
  animation: orbFloat2 22s ease-in-out infinite;
}
.bg-layer__orb--3 {
  width: 400px; height: 400px; top: 40%; left: 50%;
  background: radial-gradient(circle,var(--ocean),transparent);
  animation: orbFloat3 20s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px,60px) scale(1.1); } }
@keyframes orbFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px,-80px) scale(1.15); } }
@keyframes orbFloat3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,50px) scale(0.9); } }

.bg-layer__veil {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 20%,rgba(107,78,224,0.28) 0%,transparent 70%),
    linear-gradient(180deg,rgba(94,63,212,0.2) 0%,rgba(79,53,184,0.45) 100%);
}
.grain {
  pointer-events: none; position: fixed; inset: 0; z-index: 9999;
  opacity: 0.035; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main { position: relative; z-index: 1; }

/* === Cursor === */
.cursor {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px;
  background: var(--coral); border-radius: 50%; pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%); transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed; top: 0; left: 0; width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s;
}
body.cursor-hover .cursor { width: 60px; height: 60px; background: rgba(255,92,77,0.15); }
body.cursor-hover .cursor-follower { width: 80px; height: 80px; border-color: var(--coral); }
@media (max-width:768px) { .cursor, .cursor-follower { display: none; } }

/* === Loader === */
.loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--blob-base);
  background-image: radial-gradient(ellipse at center,#6b4ee0,var(--blob-deep));
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4,0,0,1), visibility 0.8s, transform 0.8s cubic-bezier(0.4,0,0,1);
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; transform: scale(1.05); }
.loader__inner { text-align: center; }
.loader__logo {
  font-family: var(--font); font-size: clamp(4rem,12vw,8rem); font-weight: 900;
  letter-spacing: -0.05em; color: #fff; display: flex; justify-content: center;
}
.loader__char {
  display: inline-block; opacity: 0; transform: translateY(40px) rotateX(-90deg);
  animation: loaderCharIn 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
  animation-delay: calc(var(--i) * 0.1s + 0.2s);
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
@keyframes loaderCharIn {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}
.loader__tagline {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.3em; color: rgba(255,255,255,0.4);
  margin-top: 0.5rem; opacity: 0; animation: fadeIn 0.6s 0.8s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.loader__bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 3px; margin: 1.5rem auto 0; overflow: hidden; }
.loader__fill { height: 100%; width: 0; background: linear-gradient(90deg,var(--coral),var(--berry)); border-radius: 3px; animation: loaderFill 1.8s var(--ease) forwards; }
@keyframes loaderFill { to { width: 100%; } }

/* === Header === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem clamp(20px,4vw,48px);
  background: rgba(12,18,40,0.32);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.header.scrolled { background: rgba(12,18,40,0.65); padding-top: 0.85rem; padding-bottom: 0.85rem; box-shadow: 0 8px 32px rgba(0,0,0,0.25); }

.header__logo { display: flex; align-items: center; }
.header__logo-text { font-weight: 900; font-size: 1.5rem; letter-spacing: -0.04em; color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,0.2); transition: transform 0.3s var(--ease); }
.header__logo:hover .header__logo-text { transform: scale(1.05); }
.header__nav { display: none; gap: 2rem; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.75); }
.header__nav a { position: relative; transition: color 0.3s; padding: 4px 0; }
.header__nav a::after { content:''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--coral); border-radius: 1px; transition: width 0.4s var(--ease); }
.header__nav a:hover { color: #fff; }
.header__nav a:hover::after { width: 100%; }
@media (min-width:1024px) { .header__nav { display: flex; } }
.header__right { display: flex; align-items: center; gap: 1rem; }
.header__cta {
  position: relative; font-size: 0.8rem; font-weight: 600; padding: 0.6rem 1.4rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2); color: #fff; transition: 0.3s; display: none; overflow: hidden;
}
.header__cta-pulse {
  position: absolute; top: 50%; left: 50%; width: 120%; height: 120%;
  background: radial-gradient(circle,rgba(255,92,77,0.3),transparent 70%);
  transform: translate(-50%,-50%) scale(0); border-radius: 50%;
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse { 0%,100% { transform: translate(-50%,-50%) scale(0); opacity: 1; } 50% { transform: translate(-50%,-50%) scale(1); opacity: 0; } }
.header__cta:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.35); }
@media (min-width:1024px) { .header__cta { display: inline-flex; } }

/* Burger */
.header__burger { display: flex; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 101; }
.header__burger-line { width: 28px; height: 2px; background: #fff; border-radius: 2px; transition: 0.4s var(--ease); transform-origin: center; }
.header__burger.active .header__burger-line:first-child { transform: rotate(45deg) translate(2.5px,3px); }
.header__burger.active .header__burger-line:last-child { transform: rotate(-45deg) translate(2.5px,-3px); }
@media (min-width:1024px) { .header__burger { display: none; } }

/* Mobile nav */
.mnav { position: fixed; inset: 0; z-index: 98; pointer-events: none; visibility: hidden; }
.mnav.active { pointer-events: auto; visibility: visible; }
.mnav__bg { position: absolute; inset: 0; background: rgba(50,30,120,0.92); backdrop-filter: blur(24px); opacity: 0; transition: opacity 0.5s; }
.mnav.active .mnav__bg { opacity: 1; }
.mnav__content {
  position: absolute; top: 0; right: 0; width: min(380px,85vw); height: 100%;
  display: flex; flex-direction: column; padding: 120px 40px 40px;
  transform: translateX(100%); transition: transform 0.6s var(--ease);
}
.mnav.active .mnav__content { transform: translateX(0); }
.mnav__link {
  font-size: clamp(2rem,6vw,3rem); font-weight: 800; color: #fff; letter-spacing: -0.03em;
  padding: 8px 0; opacity: 0; transform: translateX(40px);
  transition: opacity 0.4s, transform 0.4s var(--ease), color 0.2s;
}
.mnav.active .mnav__link { opacity: 1; transform: translateX(0); }
.mnav.active .mnav__link:nth-child(1) { transition-delay: 0.15s; }
.mnav.active .mnav__link:nth-child(2) { transition-delay: 0.2s; }
.mnav.active .mnav__link:nth-child(3) { transition-delay: 0.25s; }
.mnav.active .mnav__link:nth-child(4) { transition-delay: 0.3s; }
.mnav.active .mnav__link:nth-child(5) { transition-delay: 0.35s; }
.mnav.active .mnav__link:nth-child(6) { transition-delay: 0.4s; }
.mnav__link:hover { color: var(--coral); }
.mnav__footer { margin-top: auto; display: flex; gap: 2rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); opacity: 0; transition: opacity 0.4s 0.5s; }
.mnav.active .mnav__footer { opacity: 1; }
.mnav__footer a:hover { color: #fff; }
.mnav__download {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 1.5rem;
  padding: 0.85rem 1.6rem; border-radius: 999px;
  background: linear-gradient(135deg,var(--coral),#ff7a52); color: #fff;
  font-size: 0.9rem; font-weight: 700; box-shadow: 0 8px 28px rgba(255,92,77,0.35);
  opacity: 0; transform: translateX(40px); transition: opacity 0.4s 0.45s, transform 0.4s 0.45s var(--ease);
}
.mnav.active .mnav__download { opacity: 1; transform: translateX(0); }

/* === Buttons === */
.btn-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 1rem 2rem;
  background: linear-gradient(135deg,var(--coral),#ff7a52); color: #fff;
  font-family: var(--font); font-size: 0.9rem; font-weight: 700;
  border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(255,92,77,0.35); transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.btn-pill::before { content:''; position: absolute; inset: 0; background: linear-gradient(135deg,#ff7a52,var(--berry)); opacity: 0; transition: opacity 0.3s; border-radius: inherit; }
.btn-pill:hover::before { opacity: 1; }
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,92,77,0.45); }
.btn-pill span, .btn-pill svg { position: relative; z-index: 1; }
.btn-pill--glow::after {
  content:''; position: absolute; inset: -2px; border-radius: inherit; z-index: -1;
  background: linear-gradient(135deg,var(--coral),var(--berry),var(--mango),var(--coral));
  background-size: 300% 300%; animation: glowBorder 4s linear infinite;
  filter: blur(8px); opacity: 0.6;
}
@keyframes glowBorder { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.btn-pill--ghost { background: transparent; border: 1px solid rgba(255,255,255,0.25); box-shadow: none; }
.btn-pill--ghost::before { background: rgba(255,255,255,0.1); }
.btn-pill--ghost::after { display: none; }
.btn-pill--ghost:hover { box-shadow: 0 8px 24px rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.btn-pill--full { width: 100%; justify-content: center; }

/* === Hero === */
.hero { position: relative; height: 264vh; height: 264dvh; width: 100%; background: #1a1d24; }
.hero__pin { position: sticky; top: 0; height: 100vh; height: 100dvh; width: 100%; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: #1a1d24; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg,rgba(10,14,28,0.35) 0%,transparent 30%,transparent 60%,rgba(10,14,28,0.65) 100%); }
.hero__content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 0 clamp(20px,4vw,48px) clamp(60px,8vh,120px);
}
.hero__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 1.5rem;
}
.hero__label-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero__title { margin-bottom: 1.5rem; }
.hero__title-line { display: block; overflow: hidden; }
.hero__title-word {
  display: inline-block; font-size: clamp(5rem,16vw,13rem); font-weight: 900;
  line-height: 0.9; letter-spacing: -0.05em;
  background: linear-gradient(135deg,#fff 0%,#fff 40%,var(--coral) 60%,var(--berry) 100%);
  background-size: 200% 200%; animation: heroGradient 6s ease infinite;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: none; position: relative;
}
@keyframes heroGradient { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero__sub { font-size: clamp(0.95rem,1.5vw,1.15rem); color: rgba(255,255,255,0.6); max-width: 420px; margin-bottom: 2rem; font-weight: 400; line-height: 1.7; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; right: clamp(20px,4vw,48px); bottom: clamp(40px,6vh,80px); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); writing-mode: vertical-rl; }
.hero__scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:''; position: absolute; top: -100%; left: 0; width: 100%; height: 50%; background: var(--coral); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { top: -50%; } 100% { top: 150%; } }

/* === Marquee === */
.marquee { overflow: hidden; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); }
.marquee__track {
  display: flex; align-items: center; gap: 3rem; width: max-content;
  animation: marqueeScroll 25s linear infinite;
  font-size: clamp(0.85rem,1.5vw,1rem); font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.marquee:hover .marquee__track { animation-duration: 60s; }
.marquee__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); opacity: 0.5; flex-shrink: 0; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === Common === */
.eyebrow { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral); margin-bottom: 1.5rem; }
.heading-xl { font-size: clamp(2.5rem,6vw,4.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; color: #fff; margin-bottom: 2rem; }
.heading-xl em { font-style: normal; background: linear-gradient(135deg,var(--coral),var(--berry)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section { padding: clamp(80px,12vh,140px) 0; position: relative; }

/* === About === */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
@media (max-width:900px) { .about__grid { grid-template-columns: 1fr; } }
.about__img-wrap { position: relative; border-radius: 28px; overflow: hidden; transition: transform 0.6s var(--ease); }
.about__img { width: 100%; border-radius: 28px; box-shadow: 0 30px 80px rgba(20,10,80,0.45); }
.about__img-shine {
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(105deg,transparent 40%,rgba(255,255,255,0.12) 50%,transparent 60%);
  transform: translateX(-100%); transition: transform 0.8s var(--ease); pointer-events: none;
}
.about__img-wrap:hover .about__img-shine { transform: translateX(100%); }
.about__img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(50,30,120,0.8); backdrop-filter: blur(12px);
  padding: 12px 20px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.15);
}
.about__img-badge-num { display: block; font-size: 1.8rem; font-weight: 900; color: var(--coral); line-height: 1; }
.about__img-badge span:last-child { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.about__bottom { grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 1rem; }
@media (max-width:768px) { .about__bottom { grid-template-columns: 1fr; gap: 2rem; } }
.about__text p { font-size: 1.05rem; color: var(--on-purple-muted); line-height: 1.8; }
.about__features { display: flex; gap: 3rem; align-items: flex-start; }
.about__feature { text-align: center; }
.about__feature-num { font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 0.25rem; }
.about__feature-text { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* === Numbers === */
.numbers { background: rgba(255,255,255,0.06); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.numbers__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width:768px) { .numbers__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:480px) { .numbers__grid { grid-template-columns: 1fr; } }

.number-card {
  position: relative; overflow: hidden; padding: 2rem 1.75rem 2.5rem; border-radius: 22px;
  background: linear-gradient(160deg,rgba(255,255,255,0.09) 0%,rgba(255,255,255,0.025) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.28), 0 1px 0 rgba(255,255,255,0.08) inset;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s;
}
.number-card__border {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: conic-gradient(from var(--border-angle,0deg),transparent 60%,var(--accent) 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor; -webkit-mask-composite: xor; padding: 1px;
  opacity: 0; transition: opacity 0.5s;
}
.number-card:hover .number-card__border { opacity: 1; animation: borderSpin 3s linear infinite; }
@keyframes borderSpin { to { --border-angle: 360deg; } }
@property --border-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

.number-card::after {
  content:''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(120deg,transparent 28%,rgba(255,255,255,0.14) 50%,transparent 72%);
  transform: translateX(-110%); transition: transform 0.9s var(--ease); pointer-events: none;
}
.number-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.22); box-shadow: 0 24px 70px rgba(0,0,0,0.4), 0 0 40px rgba(var(--c-glow,255,92,77),0.15); }
.number-card:hover::after { transform: translateX(110%); }
.number-card__glow {
  position: absolute; top: -55%; right: -30%; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle,var(--accent) 0%,transparent 70%); opacity: 0.4;
  pointer-events: none; transition: transform 0.6s var(--ease), opacity 0.45s;
}
.number-card:hover .number-card__glow { transform: scale(1.15); opacity: 0.65; }

.number-card__value {
  position: relative; z-index: 1; display: block; font-size: clamp(2.5rem,5vw,3.5rem); font-weight: 900;
  line-height: 1; letter-spacing: -0.04em; margin-bottom: 0.5rem;
  background: linear-gradient(135deg,#fff 20%,var(--accent,#ff5c4d));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.number-card__value.is-counted { animation: statPop 0.5s var(--ease); }
@keyframes statPop { 0% { transform: scale(1); } 40% { transform: scale(1.08); } 100% { transform: scale(1); } }
.number-card__label { position: relative; z-index: 1; font-size: 0.95rem; color: rgba(255,255,255,0.78); line-height: 1.4; font-weight: 500; }

.number-card--quote { background: linear-gradient(160deg,rgba(255,92,77,0.2),rgba(232,72,164,0.15)); border: 1px solid rgba(255,255,255,0.18); display: flex; flex-direction: column; gap: 1rem; }
.number-card__heart { width: 32px; height: 32px; color: var(--accent); position: relative; z-index: 1; animation: heartBeat 2s ease-in-out infinite; }
@keyframes heartBeat { 0%,100% { transform: scale(1); } 14% { transform: scale(1.15); } 28% { transform: scale(1); } 42% { transform: scale(1.15); } 56% { transform: scale(1); } }
.number-card__quote { font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.35; position: relative; z-index: 1; }

/* === Drinks Carousel === */
.drinks { overflow: hidden; }
.drinks__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 2rem; }
.drinks__desc { max-width: 340px; font-size: 0.95rem; color: var(--on-purple-muted); }
@media (max-width:768px) { .drinks__head { flex-direction: column; align-items: flex-start; } }

.drinks-carousel { margin-top: 1rem; }
.drinks-carousel__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; padding: 0 4vw 1.5rem; }
.drinks-carousel__tab {
  font-family: var(--font); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.65rem 1.1rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7); cursor: pointer; transition: 0.3s; position: relative; overflow: hidden;
}
.drinks-carousel__tab:hover { color: #fff; border-color: rgba(255,255,255,0.35); }
.drinks-carousel__tab.is-active {
  background: linear-gradient(135deg,var(--coral),#ff7a52); color: #fff; border-color: transparent;
  box-shadow: 0 8px 28px rgba(255,92,77,0.35);
}
.drinks-carousel__tab.is-active::after {
  content:''; position: absolute; inset: -1px; border-radius: inherit;
  background: linear-gradient(135deg,var(--coral),var(--berry),var(--mango));
  background-size: 200% 200%; animation: glowBorder 3s linear infinite;
  z-index: -1; filter: blur(6px); opacity: 0.5;
}

.drinks-carousel__viewport { display: flex; align-items: center; gap: 0.5rem; padding: 0 2vw; }
.drinks-carousel__arrow {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(10,8,30,0.4);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: 0.3s var(--ease); z-index: 2;
}
.drinks-carousel__arrow:hover { background: rgba(255,255,255,0.12); transform: scale(1.15); border-color: var(--coral); }
.drinks-carousel__arrow--prev::after, .drinks-carousel__arrow--next::after { content:''; width: 10px; height: 10px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; }
.drinks-carousel__arrow--prev::after { transform: rotate(45deg); margin-left: 4px; }
.drinks-carousel__arrow--next::after { transform: rotate(-135deg); margin-right: 4px; }

.drinks-carousel__track {
  flex: 1; display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 1rem 0; scrollbar-width: none; outline: none;
}
.drinks-carousel__track::-webkit-scrollbar { display: none; }

.drink-slide { flex: 0 0 min(80vw,380px); scroll-snap-align: center; scroll-snap-stop: always; transition: 0.5s var(--ease); }
@media (min-width:720px) { .drink-slide { flex: 0 0 min(55vw,440px); } }
@media (min-width:1200px) { .drink-slide { flex: 0 0 min(40vw,480px); } }

.drink-card {
  border-radius: 24px; overflow: hidden; background: #0f0a1a;
  border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  transition: transform 0.5s var(--ease), opacity 0.5s, filter 0.5s, box-shadow 0.5s; position: relative;
}
.drink-card__glow-ring {
  position: absolute; inset: -2px; border-radius: inherit; z-index: 0; pointer-events: none;
  background: conic-gradient(from 0deg,var(--coral),var(--berry),var(--mango),var(--ocean),var(--coral));
  opacity: 0; transition: opacity 0.5s; filter: blur(4px);
}
.drink-slide.is-active .drink-card__glow-ring { opacity: 0.5; animation: drinkGlowSpin 6s linear infinite; }
@keyframes drinkGlowSpin { to { transform: rotate(360deg); } }

.drink-slide:not(.is-active) { cursor: pointer; }
.drink-slide:not(.is-active) .drink-card { transform: scale(0.88); opacity: 0.35; filter: brightness(0.4) saturate(0.7); }
.drink-slide:not(.is-active):hover .drink-card { transform: scale(0.92); opacity: 0.55; filter: brightness(0.6); }
.drink-slide.is-active .drink-card { transform: scale(1); opacity: 1; filter: none; box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(255,92,77,0.1); }

.drink-card__media { width: 100%; height: clamp(380px,55vh,580px); background: #1a1228; overflow: hidden; position: relative; z-index: 1; }
.drink-card__video { width: 100%; height: 100%; object-fit: cover; display: block; }

.drink-card__info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; z-index: 2;
  background: linear-gradient(180deg,transparent,rgba(10,6,24,0.9) 60%,rgba(6,4,18,0.98));
}
.drink-card__series { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.18em; color: rgba(255,182,120,0.95); }
.drink-card__name { font-size: 1.5rem; font-weight: 800; color: #fff; margin: 0.25rem 0; letter-spacing: -0.02em; }
.drink-card__desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* Full menu */
.full-menu__label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; color: var(--on-purple-muted); margin-bottom: 1rem; }
.full-menu__wrap { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 20px 60px rgba(0,0,0,0.3); transition: transform 0.5s var(--ease); }
.full-menu__wrap:hover { transform: scale(1.01); }
.full-menu__img { width: 100%; }

/* === Cases === */
.cases-section { overflow: hidden; }
.cases { display: flex; align-items: center; gap: 0.5rem; padding: 1rem 3vw; max-width: 1400px; margin: 2rem auto 0; }
.cases__arrow { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(10,8,30,0.4); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s var(--ease); z-index: 2; }
.cases__arrow:hover { background: rgba(255,255,255,0.12); transform: scale(1.15); border-color: var(--coral); }
.cases__arrow--prev::after, .cases__arrow--next::after { content:''; width: 10px; height: 10px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; }
.cases__arrow--prev::after { transform: rotate(45deg); margin-left: 4px; }
.cases__arrow--next::after { transform: rotate(-135deg); margin-right: 4px; }

.cases__track { flex: 1; display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 1rem 0; scrollbar-width: none; outline: none; }
.cases__track::-webkit-scrollbar { display: none; }
.case-slide { flex: 0 0 min(88vw,540px); scroll-snap-align: center; scroll-snap-stop: always; }
@media (min-width:720px) { .case-slide { flex: 0 0 min(75vw,750px); } }
@media (min-width:1100px) { .case-slide { flex: 0 0 min(65vw,850px); } }

.case-card {
  display: grid; grid-template-columns: 1fr; border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg,rgba(16,10,32,0.95),rgba(10,6,26,0.98));
  border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 28px 70px rgba(0,0,0,0.4);
  transition: transform 0.5s var(--ease), opacity 0.5s, filter 0.5s;
}
@media (min-width:720px) { .case-card { grid-template-columns: 1.15fr 1fr; } }
.case-slide:not(.is-active) { cursor: pointer; }
.case-slide:not(.is-active) .case-card { transform: scale(0.93); opacity: 0.35; filter: brightness(0.45); }
.case-slide:not(.is-active):hover .case-card { transform: scale(0.95); opacity: 0.5; filter: brightness(0.6); }
.case-slide.is-active .case-card { transform: scale(1); opacity: 1; filter: none; }

.case-card__img { overflow: hidden; aspect-ratio: 4/3; }
@media (min-width:720px) { .case-card__img { aspect-ratio: auto; min-height: 100%; } }
.case-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.case-slide.is-active:hover .case-card__img img { transform: scale(1.05); }
.case-card__content { padding: 2rem; display: flex; flex-direction: column; justify-content: center; gap: 0.5rem; }
.case-card__tag { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.2em; color: rgba(255,182,120,0.95); }
.case-card__title { font-size: clamp(1.4rem,2.5vw,1.8rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1.2; }
.case-card__content p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* === Product === */
.product__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width:900px) { .product__grid { grid-template-columns: 1fr; } }
.product__visual { position: relative; display: flex; align-items: center; justify-content: center; padding: 3rem; }
.product__visual-ring {
  position: absolute; width: 80%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(255,92,77,0.2); animation: ringRotate 20s linear infinite;
}
.product__visual-ring--2 {
  width: 60%; border-color: rgba(139,92,246,0.15); animation-duration: 30s; animation-direction: reverse;
}
.product__visual-ring::before { content:''; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); transform: translateX(-50%); }
.product__visual-ring--2::before { background: var(--berry); }
@keyframes ringRotate { to { transform: rotate(360deg); } }
.product__visual-particles { position: absolute; inset: 0; pointer-events: none; }
.product__img { width: 100%; max-width: 320px; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5)); position: relative; z-index: 1; transition: transform 0.6s var(--ease); }
.product__visual:hover .product__img { transform: scale(1.05) rotate(-2deg); }
.product__list { list-style: none; margin-top: 2rem; }
.product__list li {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 1rem; font-weight: 500; color: var(--on-purple-muted);
  transition: padding-left 0.3s var(--ease), color 0.3s;
}
.product__list li:hover { padding-left: 8px; color: #fff; }
.product__list li:hover .product__list-num { color: #fff; transform: scale(1.15); }
.product__list-num { font-size: 0.7rem; font-weight: 800; color: var(--coral); letter-spacing: 0.1em; min-width: 28px; transition: transform 0.3s, color 0.3s; }
.product__list-text { flex: 1; }

/* === App === */
.app-section { background: rgba(255,255,255,0.07); border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); overflow: hidden; }
.app__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width:900px) { .app__grid { grid-template-columns: 1fr; } .app__phone { order: -1; } }
.app__phone { text-align: center; position: relative; }
.app__phone-glow {
  position: absolute; top: 50%; left: 50%; width: 300px; height: 300px;
  background: radial-gradient(circle,rgba(255,92,77,0.25),transparent 70%);
  transform: translate(-50%,-50%); border-radius: 50%; filter: blur(40px);
  animation: phoneGlow 4s ease-in-out infinite;
}
@keyframes phoneGlow { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%,-50%) scale(1.2); opacity: 1; } }
.app__phone img { max-width: min(280px,80vw); margin: 0 auto; border-radius: 32px; box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1); position: relative; z-index: 1; transition: transform 0.6s var(--ease); }
.app__phone:hover img { transform: translateY(-8px) rotate(-1deg); }
.app__desc { font-size: 1.05rem; color: var(--on-purple-muted); margin-bottom: 2rem; }
.app__features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.app__feat {
  padding: 0.55rem 1rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8); transition: 0.3s;
}
.app__feat:hover { background: rgba(255,92,77,0.12); border-color: rgba(255,92,77,0.25); color: #fff; transform: translateY(-2px); }

/* === Community === */
.community { position: relative; text-align: center; overflow: hidden; min-height: 500px; display: flex; align-items: center; }
.community__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 8s linear; }
.community:hover .community__bg { transform: scale(1.05); }
.community__overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center,rgba(60,30,140,0.6),rgba(30,15,80,0.92)); }
.community__inner { position: relative; z-index: 1; width: 100%; }
.community__title {
  font-size: clamp(2.5rem,6vw,4rem); font-weight: 900; letter-spacing: 0.1em; margin-bottom: 1rem;
  background: linear-gradient(135deg,#fff,rgba(255,255,255,0.7));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.community__text { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2rem; }
.community__text strong { color: #fff; font-weight: 800; }

/* === Franchise === */
.franchise__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1rem; }
@media (max-width:768px) { .franchise__grid { grid-template-columns: 1fr; } }
.franchise__card {
  padding: 2.5rem; border-radius: 22px;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(28,25,23,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.franchise__card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(28,25,23,0.15); }
.franchise__card h3 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 1.5rem; }
.franchise__card ul { list-style: none; display: grid; gap: 0.75rem; }
.franchise__card li { position: relative; padding-left: 1.5rem; color: var(--text); font-weight: 500; transition: padding-left 0.3s var(--ease); }
.franchise__card li:hover { padding-left: 1.8rem; }
.franchise__card li::before { content:''; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg,var(--coral),var(--berry)); transition: transform 0.3s; }
.franchise__card li:hover::before { transform: scale(1.3); }
.franchise__card--accent { background: linear-gradient(135deg,#fff 0%,#fff8f5 100%); }
.franchise__stat { display: flex; justify-content: space-between; align-items: baseline; padding: 1rem 0; border-bottom: 1px dashed rgba(20,16,60,0.12); }
.franchise__stat:last-child { border-bottom: none; }
.franchise__stat-label { color: var(--text-muted); font-size: 0.9rem; }
.franchise__stat-value { font-size: 1.25rem; font-weight: 800; color: var(--text); }

/* === Contact === */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: flex-start; }
@media (max-width:900px) { .contact__grid { grid-template-columns: 1fr; } }
.contact__text { font-size: 1.05rem; color: var(--on-purple-muted); line-height: 1.7; }
.contact__form { display: grid; gap: 1rem; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width:520px) { .contact__row { grid-template-columns: 1fr; } }
.contact__field { position: relative; }
.contact__input {
  font-family: var(--font); font-size: 0.95rem; padding: 1.2rem 1.25rem 0.8rem; border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08);
  color: #fff; outline: none; width: 100%; transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  backdrop-filter: blur(8px);
}
.contact__input:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,92,77,0.15); background: rgba(255,255,255,0.12); }
.contact__label {
  position: absolute; left: 1.25rem; top: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.4);
  pointer-events: none; transition: 0.3s var(--ease);
}
.contact__input:focus + .contact__label,
.contact__input:not(:placeholder-shown) + .contact__label {
  top: 0.35rem; font-size: 0.65rem; color: var(--coral); font-weight: 700; letter-spacing: 0.05em;
}
.contact__textarea { border-radius: 16px; resize: vertical; min-height: 100px; }
.contact__status { font-size: 0.85rem; font-weight: 600; min-height: 1.4em; text-align: center; }

/* === Gallery === */
.gallery-strip { overflow: hidden; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.gallery-strip__track { display: flex; gap: 12px; width: max-content; animation: galleryMarquee 50s linear infinite; }
.gallery-strip__track img { width: 260px; height: 260px; object-fit: cover; border-radius: 18px; flex-shrink: 0; transition: transform 0.4s var(--ease), filter 0.4s; filter: brightness(0.7); }
.gallery-strip__track img:hover { transform: scale(1.08); filter: brightness(1); }
@keyframes galleryMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === Footer === */
.footer { padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer__top { display: flex; justify-content: space-between; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; }
.footer__logo { font-size: 1.8rem; font-weight: 900; color: #fff; letter-spacing: -0.04em; }
.footer__brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }
.footer__cols { display: flex; gap: 4rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }
.footer__col a { font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: color 0.2s, padding-left 0.3s; }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 1rem; }

/* === Reveal === */
.reveal-up { opacity: 0; transform: translateY(50px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

/* === Mobile perf === */
@media (max-width:768px) {
  .grain { display: none; }
  .bubbles { display: none; }
  .header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(50,30,120,0.85); }
  .number-card { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .bg-layer__orbs { display: none; }
  .hero { height: 200vh; height: 200dvh; }
  .hero__video { object-fit: cover; }
  .drinks-carousel__arrow { width: 36px; height: 36px; }
  .cases__arrow { width: 36px; height: 36px; }
  .drinks-carousel__viewport { padding: 0 1vw; gap: 0.25rem; }
  .cases { padding: 1rem 1vw; gap: 0.25rem; }
}
@media (max-width:480px) {
  .about__features { gap: 1.5rem; }
}
