/* ═══════════════════════════════════════════
   FLAMINGO — showcase site
   Brand: #ed1968 (pink) · #595a5c (gray)
   Type: Playfair Display (display) · Poppins (body)
   Motion: Lenis (smooth scroll) + GSAP + Three.js
   ═══════════════════════════════════════════ */

:root {
  --pink: #ed1968;
  --pink-soft: #fce8f0;
  --pink-glow: rgba(237, 25, 104, 0.35);
  --gray: #595a5c;
  --ink: #1c1c1e;
  --bg: #fffdfe;
  --bg-tint: #fdf4f8;
  --white: #ffffff;
  --line: rgba(89, 90, 92, 0.14);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-swift: cubic-bezier(0.76, 0, 0.24, 1);
  --nav-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

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

/* Lenis recommended styles */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ─────────────── WEBGL BACKDROP ─────────────── */
#webgl {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0; /* faded in by JS once the scene is live */
}
main, footer { position: relative; z-index: 1; }

/* ─────────────── GRAIN ─────────────── */
.grain {
  position: fixed; inset: -100px;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.65'/%3E%3C/svg%3E");
  animation: grainShift 1.2s steps(6) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-38px, 22px); }
  50%  { transform: translate(24px, -30px); }
  75%  { transform: translate(-20px, -14px); }
  100% { transform: translate(30px, 26px); }
}

/* ─────────────── SCROLL PROGRESS ─────────────── */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 300;
  background: linear-gradient(90deg, var(--pink), #ff7fae);
  transform: scaleX(0); transform-origin: left center;
  pointer-events: none;
}

/* ─────────────── PRELOADER ─────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  overflow: hidden;
}
.preloader__panel {
  position: absolute; top: 0; height: 100%; width: 50.5%;
  background: #141416;
}
.preloader__panel:first-child { left: 0; }
.preloader__panel:nth-child(2) { right: 0; }
.preloader__inner { position: relative; text-align: center; }
.preloader__bird {
  width: 72px; margin: 0 auto 26px;
  animation: birdFloat 2.4s ease-in-out infinite;
}
.preloader__word {
  font-family: var(--font-display);
  font-size: clamp(38px, 8vw, 84px);
  letter-spacing: 0.14em; font-weight: 600;
  color: #fff; line-height: 1.1;
  padding-left: 0.14em;
  overflow: hidden;
}
.preloader__word .pl-char { display: inline-block; }
.preloader__tag {
  margin-top: 14px;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
}
.preloader__count {
  position: absolute; right: clamp(24px, 5vw, 60px); bottom: clamp(18px, 4vh, 44px);
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px); font-weight: 600; font-style: italic;
  color: var(--pink); line-height: 1;
}
.preloader__count::after { content: "%"; font-size: 0.4em; margin-left: 4px; opacity: 0.6; }

@keyframes birdFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-3deg); }
}

/* ─────────────── CURSOR ─────────────── */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 1001;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid var(--pink-glow);
  transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
  margin: -18px 0 0 -18px;
  transform: none;
}
.cursor.grow {
  width: 64px; height: 64px;
  margin: -32px 0 0 -32px;
  background: rgba(237, 25, 104, 0.08);
  border-color: transparent;
}
.cursor-dot {
  width: 5px; height: 5px; background: var(--pink);
  margin: -2.5px 0 0 -2.5px;
  transform: none;
}
@media (hover: none), (max-width: 900px) {
  .cursor, .cursor-dot { display: none; }
}

/* ─────────────── ROLLING LABELS ─────────────── */
.roll { position: relative; display: inline-block; overflow: hidden; vertical-align: top; }
.roll__t {
  display: block;
  transition: transform 0.55s var(--ease-swift);
  will-change: transform;
}
.roll__t--dup { position: absolute; inset: 0; transform: translateY(108%); }
[data-roll]:hover .roll__t:not(.roll__t--dup),
.btn:hover .roll__t:not(.roll__t--dup) { transform: translateY(-108%); }
[data-roll]:hover .roll__t--dup,
.btn:hover .roll__t--dup { transform: translateY(0); }

/* ─────────────── NAV ─────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
  will-change: transform;
}
.nav.scrolled {
  background: rgba(255, 253, 254, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { display: inline-block; }
.nav__logo img { height: 30px; width: auto; }
.nav__links { display: flex; gap: 38px; }
.nav__link {
  font-size: 14px; font-weight: 500; color: var(--gray);
  position: relative; transition: color 0.3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1.5px; background: var(--pink);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative; z-index: 210;
}
.nav__burger span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  margin: 5px auto; transition: transform 0.4s var(--ease-out), opacity 0.3s, background 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ─────────────── MOBILE MENU ─────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  display: grid; place-items: center;
  clip-path: circle(0% at calc(100% - 44px) 42px);
  transition: clip-path 0.7s var(--ease-out);
  visibility: hidden;
}
.mobile-menu.open { clip-path: circle(150% at calc(100% - 44px) 42px); visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.mobile-menu__links a {
  font-family: var(--font-display); font-size: clamp(34px, 9vw, 52px);
  font-weight: 500; color: var(--ink);
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}
.mobile-menu__links a:hover { color: var(--pink); }
.mobile-menu.open .mobile-menu__links a { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu__links a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__links a:nth-child(2) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-menu__links a:nth-child(3) { transition-delay: 0.29s; }
.mobile-menu.open .mobile-menu__links a:nth-child(4) { transition-delay: 0.36s; }
.mobile-menu__bird {
  position: absolute; bottom: -40px; right: -30px;
  width: 220px; opacity: 0.08; pointer-events: none;
  animation: birdFloat 5s ease-in-out infinite;
}

/* ─────────────── BUTTONS ─────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 100px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  position: relative; overflow: hidden; cursor: pointer;
  transition: box-shadow 0.35s, color 0.35s, background 0.35s, border-color 0.35s;
  will-change: transform;
}
.btn--lg { padding: 17px 34px; font-size: 15px; }
.btn--primary {
  background: var(--pink); color: #fff;
  box-shadow: 0 8px 24px -8px var(--pink-glow);
}
.btn--primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.35) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}
.btn--primary:hover { box-shadow: 0 14px 34px -8px var(--pink-glow); }
.btn--primary:hover::before { transform: translateX(120%); }
.btn--ghost {
  border: 1.5px solid var(--line); color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--pink); color: var(--pink); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--pink); }
.btn > * { position: relative; }

/* ─────────────── SECTION BASICS ─────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--pink);
  margin-bottom: 22px;
}
.section-tag span { width: 34px; height: 1.5px; background: var(--pink); display: inline-block; }
.section-tag--light { color: #ff6ea4; }
.section-tag--light span { background: #ff6ea4; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 600; line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title em {
  font-style: italic; font-weight: 500; color: var(--pink);
}
.section-title--light { color: #fff; }
.section-sub {
  font-size: 16px; color: var(--gray);
  max-width: 480px; margin-top: 22px; font-weight: 300;
}
.section-sub--light { color: rgba(255, 255, 255, 0.65); }

/* ─────────────── HERO ─────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  overflow: hidden;
}
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
  animation: blobDrift 14s ease-in-out infinite alternate;
  /* promote to its own layer so the expensive blur is rasterized once and
     merely composited as it drifts, instead of re-blurring every frame */
  will-change: transform;
}
.hero__blob--1 {
  width: 520px; height: 520px; top: -140px; right: -80px;
  background: radial-gradient(circle, rgba(237,25,104,0.13), transparent 65%);
}
.hero__blob--2 {
  width: 420px; height: 420px; bottom: -120px; left: -120px;
  background: radial-gradient(circle, rgba(237,25,104,0.09), transparent 65%);
  animation-delay: -5s;
}
.hero__blob--3 {
  width: 300px; height: 300px; top: 30%; left: 42%;
  background: radial-gradient(circle, rgba(89,90,92,0.07), transparent 65%);
  animation-delay: -9s;
}
@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, -30px) scale(1.12); }
}

.hero__inner {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  position: relative;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 28px;
}
.hero__eyebrow-line {
  width: 44px; height: 1.5px; background: var(--pink);
  transform-origin: left center;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.8vw, 104px);
  font-weight: 600; line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 30px;
}
.hero__title-line {
  display: block; overflow: hidden;
  padding-bottom: 0.08em; margin-bottom: -0.08em;
}
.hero__title .italic { font-style: italic; font-weight: 500; }
.hero__title .accent { color: var(--pink); }
.hero__sub {
  font-size: 17px; font-weight: 300;
  color: var(--gray); max-width: 470px;
  margin-bottom: 38px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__meta { display: flex; align-items: center; gap: 28px; }
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-item strong {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
}
.hero__meta-item span { font-size: 12.5px; color: var(--gray); font-weight: 300; }
.hero__meta-divider { width: 1px; height: 34px; background: var(--line); }

/* hero visual */
.hero__visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 560px;
}
.hero__ring {
  position: absolute; width: 480px; height: 480px;
  border: 1px solid rgba(237, 25, 104, 0.18);
  border-radius: 50%;
  animation: ringSpin 26s linear infinite;
}
.hero__ring::before {
  content: ""; position: absolute; top: -5px; left: 50%;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--pink);
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.hero__bird {
  position: absolute;
  width: 130px; top: 4%; left: 2%;
  opacity: 0.9;
}

/* phone mockup */
.phone {
  width: 300px;
  border-radius: 46px;
  background: linear-gradient(160deg, #2a2a2e, #131316);
  padding: 12px;
  box-shadow:
    0 60px 100px -30px rgba(28, 28, 30, 0.4),
    0 30px 50px -30px var(--pink-glow),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
  will-change: transform;
}
.phone__notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 24px; border-radius: 20px;
  background: #131316; z-index: 5;
}
.phone__screen {
  border-radius: 36px; overflow: hidden;
  background: #fff; aspect-ratio: 9 / 19.2;
}

/* mini app UI inside phone */
.app-ui {
  height: 100%; display: flex; flex-direction: column;
  padding: 56px 16px 12px; font-family: var(--font-body);
}
.app-ui__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.app-ui__greeting { font-size: 10px; color: #9a9b9e; }
.app-ui__name { font-size: 14px; font-weight: 600; }
.app-ui__avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #ff8fb5);
}
.app-ui__search {
  display: flex; align-items: center; gap: 8px;
  background: #f4f4f6; border-radius: 12px;
  padding: 9px 12px; font-size: 10.5px; color: #9a9b9e;
  margin-bottom: 12px;
}
.app-ui__chips { display: flex; gap: 6px; margin-bottom: 14px; }
.chip {
  font-size: 9.5px; font-weight: 500; padding: 5px 11px;
  border-radius: 20px; background: #f4f4f6; color: var(--gray);
  white-space: nowrap;
}
.chip--active { background: var(--ink); color: #fff; }
.app-ui__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  flex: 1;
}
.product__img {
  border-radius: 14px; aspect-ratio: 0.82; position: relative;
  margin-bottom: 6px;
}
.product--a .product__img { background: linear-gradient(140deg, #fbd3e0, #f6a9c4); }
.product--b .product__img { background: linear-gradient(140deg, #e8e8ec, #c9c9cf); }
.product--c .product__img { background: linear-gradient(140deg, #f3e3d3, #e0bfa0); }
.product--d .product__img { background: linear-gradient(140deg, #dde8e4, #b8cfc5); }
.product__heart {
  position: absolute; top: 7px; right: 7px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: grid; place-items: center;
  font-size: 9px; color: var(--pink);
}
.product__name { font-size: 10px; font-weight: 600; }
.product__price { font-size: 9.5px; color: var(--pink); font-weight: 600; }
.product__price em { font-style: normal; color: #9a9b9e; font-weight: 400; margin-left: 3px; }
.app-ui__tabbar {
  display: flex; justify-content: space-around; align-items: center;
  padding: 10px 6px 4px; border-top: 1px solid #f0f0f2;
}
.tab { color: #b9bac0; display: grid; place-items: center; }
.tab--active { color: var(--pink); }

/* floating cards */
.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px; padding: 12px 16px;
  box-shadow: 0 20px 40px -18px rgba(28, 28, 30, 0.25);
  font-size: 11px; line-height: 1.35;
  will-change: transform;
}
/* backdrop blur re-samples the animating WebGL backdrop every frame — only
   switch it on once the intro's scale-in has finished (added from JS) */
.float-card--ready {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.float-card strong { display: block; font-size: 12px; }
.float-card span { color: var(--gray); font-weight: 300; }
.float-card__icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: #fff3e6; display: grid; place-items: center; font-size: 15px;
}
.float-card__icon--pink { background: var(--pink-soft); color: var(--pink); }
.float-card--1 { top: 14%; right: -2%; }
.float-card--2 { bottom: 12%; left: -4%; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gray);
}
.hero__scroll-track {
  width: 1.5px; height: 44px; background: var(--line);
  position: relative; overflow: hidden; display: block;
}
.hero__scroll-thumb {
  position: absolute; top: 0; left: 0; width: 100%; height: 40%;
  background: var(--pink); display: block;
  animation: scrollThumb 1.8s var(--ease-out) infinite;
}
@keyframes scrollThumb {
  from { transform: translateY(-100%); }
  to { transform: translateY(260%); }
}

/* ─────────────── MARQUEE ─────────────── */
.marquee {
  border-block: 1px solid var(--line);
  padding: 30px 0; overflow: hidden;
  background: var(--bg);
}
.marquee__track {
  display: flex; align-items: center; gap: 48px;
  width: max-content;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 500; font-style: italic;
  color: var(--gray); white-space: nowrap;
}
.marquee__track span.hollow {
  color: transparent;
  -webkit-text-stroke: 1px rgba(89, 90, 92, 0.55);
}
.marquee__track i { color: var(--pink); font-style: normal; font-size: 16px; }

/* ─────────────── MANIFESTO ─────────────── */
.manifesto {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0;
  background: transparent;
}
.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 500; line-height: 1.42;
  max-width: 980px;
}
.manifesto__foot {
  display: flex; align-items: center; gap: 18px;
  margin-top: 54px;
}
.manifesto__foot img { width: 44px; }
.manifesto__foot p {
  font-size: 15px; color: var(--gray); font-weight: 400;
  max-width: 380px; line-height: 1.5;
}

/* ─────────────── SHOP (customer app) ─────────────── */
.shop {
  padding: 140px 0 160px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 50%, var(--bg) 100%);
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.split__sticky {
  position: sticky; top: 140px;
}
.split__sticky .btn { margin-top: 34px; }
.split__cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.split__cards .feature-card:nth-child(even) { margin-top: 44px; }

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px 28px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s, border-color 0.5s;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ""; position: absolute; inset: auto -30% -55% auto;
  width: 190px; height: 190px; border-radius: 50%;
  background: radial-gradient(circle, var(--pink-soft), transparent 70%);
  opacity: 0; transition: opacity 0.5s;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -30px rgba(28, 28, 30, 0.18);
  border-color: rgba(237, 25, 104, 0.25);
}
.feature-card:hover::after { opacity: 1; }
.feature-card__icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--pink-soft); color: var(--pink);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: transform 0.5s var(--ease-elastic), background 0.4s, color 0.4s;
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card:hover .feature-card__icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--pink); color: #fff;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 600; margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--gray); font-weight: 300; }

/* ─────────────── SELL (vendor, dark) ─────────────── */
.sell {
  background: #17171a;
  padding: 150px 0 160px;
  position: relative; overflow: hidden;
  border-radius: 56px 56px 0 0;
}
.sell__glow {
  position: absolute; top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(237,25,104,0.14), transparent 65%);
  pointer-events: none;
}
.sell__head { max-width: 640px; margin-bottom: 80px; }
.sell__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

/* dashboard mockup */
.dashboard {
  background: linear-gradient(165deg, #232327, #1b1b1f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.6), 0 20px 60px -20px rgba(237, 25, 104, 0.15);
  position: relative;
  will-change: transform;
}
.dashboard__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px;
}
.dashboard__label {
  font-size: 12px; color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.dashboard__value {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 600; color: #fff;
  line-height: 1.1; margin: 6px 0 4px;
}
.dashboard__delta { font-size: 12.5px; color: #4ade80; font-weight: 500; }
.dashboard__logo { width: 44px; border-radius: 12px; }
.dashboard__chart { margin-bottom: 26px; }
.dashboard__chart svg { width: 100%; height: 90px; overflow: visible; }
.dashboard__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.dstat { display: flex; flex-direction: column; gap: 3px; }
.dstat__num {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 600; color: #fff;
}
.dstat__label { font-size: 11px; color: rgba(255, 255, 255, 0.45); }
.dstat__bar {
  height: 4px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 8px; overflow: hidden;
}
.dstat__bar i {
  display: block; height: 100%; width: var(--w);
  border-radius: 4px;
  background: linear-gradient(90deg, var(--pink), #ff7fae);
}

/* vendor feature list */
.sell__features { display: flex; flex-direction: column; gap: 8px; }
.sell-feature {
  display: flex; gap: 26px; align-items: flex-start;
  padding: 26px 22px;
  border-radius: 20px;
  transition: background 0.4s, transform 0.4s var(--ease-out);
}
.sell-feature:hover { background: rgba(255, 255, 255, 0.04); transform: translateX(8px); }
.sell-feature__num {
  font-family: var(--font-display); font-style: italic;
  font-size: 18px; color: var(--pink);
  padding-top: 3px; min-width: 34px;
}
.sell-feature h3 {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 600; color: #fff;
  margin-bottom: 8px;
}
.sell-feature p { font-size: 14px; color: rgba(255, 255, 255, 0.55); font-weight: 300; }

/* ─────────────── STATS BAND ─────────────── */
.stats {
  background: #17171a;
  padding: 40px 0 140px;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 70px;
  gap: 30px;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 600; color: #fff; line-height: 1;
}
.stat__num span { color: var(--pink); }
.stat__label {
  font-size: 13px; color: rgba(255, 255, 255, 0.5);
  margin-top: 10px; font-weight: 300;
}

/* ─────────────── DOWNLOAD ─────────────── */
.download {
  padding: 160px 0 140px;
  position: relative; overflow: hidden;
  background: transparent;
}
.download__blob {
  position: absolute; border-radius: 50%; filter: blur(100px);
  pointer-events: none;
  animation: blobDrift 16s ease-in-out infinite alternate;
  will-change: transform;
}
.download__blob--1 {
  width: 500px; height: 500px; top: -100px; left: -140px;
  background: radial-gradient(circle, rgba(237,25,104,0.13), transparent 65%);
}
.download__blob--2 {
  width: 440px; height: 440px; bottom: -140px; right: -120px;
  background: radial-gradient(circle, rgba(237,25,104,0.10), transparent 65%);
  animation-delay: -7s;
}
.download__head { text-align: center; position: relative; }
.download__head .section-sub { margin-inline: auto; }
.download__icon {
  width: 88px; border-radius: 24px;
  margin: 0 auto 34px;
  box-shadow: 0 24px 48px -16px var(--pink-glow);
}
.download__cards {
  display: grid; grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 30px; margin-top: 70px;
  position: relative;
}
.qr-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(237, 25, 104, 0.12);
  border-radius: 30px;
  padding: 36px;
  display: flex; gap: 28px; align-items: center;
  transition: box-shadow 0.5s, border-color 0.5s;
  will-change: transform;
}
.qr-card:hover {
  box-shadow: 0 40px 80px -36px rgba(237, 25, 104, 0.35);
  border-color: rgba(237, 25, 104, 0.3);
}
.qr-card__qr {
  width: 132px; flex-shrink: 0;
  background: #fff; border-radius: 18px; padding: 12px;
  border: 1px solid var(--line);
  position: relative;
}
.qr-card__mark {
  position: absolute; inset: 0; margin: auto;
  width: 26px; height: auto;
  background: #fff; padding: 3px; border-radius: 6px;
  box-sizing: content-box;
}
.qr-card__soon {
  display: inline-block;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--pink);
  background: var(--pink-soft);
  border-radius: 20px; padding: 4px 12px;
  margin-bottom: 12px;
}
.qr-card h3 {
  font-family: var(--font-display);
  font-size: 23px; font-weight: 600; margin-bottom: 6px;
}
.qr-card p { font-size: 13.5px; color: var(--gray); font-weight: 300; margin-bottom: 18px; }

.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff;
  border-radius: 14px; padding: 9px 18px 9px 14px;
  transition: background 0.35s, box-shadow 0.35s;
  will-change: transform;
}
.store-badge:hover {
  background: var(--pink);
  box-shadow: 0 14px 28px -10px var(--pink-glow);
}
.store-badge small {
  display: block; font-size: 9.5px; opacity: 0.75; line-height: 1.2;
  letter-spacing: 0.02em;
}
.store-badge strong { font-size: 15px; font-weight: 600; line-height: 1.2; }
.download__note {
  text-align: center; margin-top: 46px;
  font-size: 13px; color: var(--gray); font-weight: 300;
}

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: #17171a;
  color: rgba(255, 255, 255, 0.6);
  padding: 90px 0 36px;
  border-radius: 56px 56px 0 0;
  overflow: hidden;
}
.footer__top {
  display: flex; justify-content: space-between; gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 70px;
}
.footer__logo { width: 150px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer__brand p {
  margin-top: 20px; font-weight: 300;
  font-style: italic; font-family: var(--font-display);
  font-size: 17px;
}
.footer__cols { display: flex; gap: clamp(40px, 7vw, 110px); flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 13px; }
.footer__col h4 {
  color: #fff; font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 8px;
}
.footer__col a {
  font-size: 14px; font-weight: 300;
  transition: color 0.3s, transform 0.3s;
}
.footer__col a:hover { color: var(--pink); }
.footer__word {
  font-family: var(--font-display);
  font-size: clamp(70px, 14.5vw, 210px);
  font-weight: 600; text-align: center;
  line-height: 0.95;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  user-select: none;
  transform: translateY(12%);
  overflow: hidden;
}
/* the gradient must live on the chars themselves: transformed children
   break background-clip:text applied on the parent */
.footer__word .fw-char {
  display: inline-block; will-change: transform;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px; margin-top: 10px;
  font-size: 12.5px; font-weight: 300;
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid; place-items: center;
  transition: background 0.35s, border-color 0.35s, color 0.35s;
}
.footer__socials a:hover {
  background: var(--pink); border-color: var(--pink); color: #fff;
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 80px; }
  .hero { padding-bottom: 120px; }
  .hero__visual { min-height: 520px; }
  .float-card--1 { right: 4%; }
  .float-card--2 { left: 4%; }
  .sell__grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__sticky { position: static; }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 50px 20px; }
  .download__cards { grid-template-columns: minmax(0, 460px); }
}
@media (max-width: 620px) {
  :root { --nav-h: 70px; }
  .nav__logo img { height: 24px; }
  .hero__title { font-size: clamp(44px, 12.5vw, 64px); }
  .hero__meta { gap: 18px; }
  .split__cards { grid-template-columns: 1fr; }
  .split__cards .feature-card:nth-child(even) { margin-top: 0; }
  .qr-card { flex-direction: column; text-align: center; align-items: center; }
  .qr-card__body { display: flex; flex-direction: column; align-items: center; }
  .phone { width: 260px; }
  .hero__ring { width: 380px; height: 380px; }
  .manifesto { padding: 110px 0; }
  .sell, .download, .shop { padding-block: 100px; }
  .sell { border-radius: 32px 32px 0 0; }
  .footer { border-radius: 32px 32px 0 0; }
  .footer__top { flex-direction: column; gap: 44px; }
}

/* ─────────────── REDUCED MOTION ─────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  #webgl, .grain { display: none; }
  .manifesto { min-height: 0; }
}
