/* ============================================================
   NIDHI ✦ UGC CREATOR — design system
   dark base / electric lime / hot pink accents
   ============================================================ */

:root {
  --bg: #0B0B0E;
  --bg-deep: #08080B;
  --surface: #14141A;
  --surface-2: #1A1A21;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);
  --ink: #F4F3EF;
  --muted: #9A9AA3;
  --lime: #D9FF3D;
  --pink: #FF5C8A;
  --display: 'Clash Display', 'Archivo Black', sans-serif;
  --body: 'Satoshi', 'Inter', system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --serif: 'Instrument Serif', Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: auto; }

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

body.menu-open, body.modal-open { overflow: hidden; }

::selection { background: var(--lime); color: #0B0B0E; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #2A2A33; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 4px; }

.mono { font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; }

.container { width: min(1240px, 92vw); margin-inline: auto; }

/* film grain over everything */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.055;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ambient glows */
.bg-glow {
  position: fixed;
  z-index: 0;
  width: 46vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.glow-a { top: -18%; right: -12%; background: radial-gradient(circle, rgba(217, 255, 61, 0.13), transparent 65%); animation: drift 22s ease-in-out infinite alternate; }
.glow-b { bottom: -22%; left: -14%; background: radial-gradient(circle, rgba(255, 92, 138, 0.1), transparent 65%); animation: drift 26s ease-in-out infinite alternate-reverse; }
@keyframes drift { to { transform: translate(6vw, 4vh) scale(1.12); } }

main { position: relative; z-index: 1; }

/* ============ CURSOR ============ */
.cursor-dot, .cursor-ring { display: none; }

@media (hover: hover) and (pointer: fine) {
  body, body a, body button, body .card { cursor: none; }
  .cursor-dot {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--lime);
    z-index: 10001;
    pointer-events: none;
  }
  .cursor-ring {
    display: grid;
    place-items: center;
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(244, 243, 239, 0.4);
    z-index: 10000;
    pointer-events: none;
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
                background 0.3s, border-color 0.3s;
  }
  .cursor-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #0B0B0E;
    opacity: 0;
    transition: opacity 0.2s;
  }
  body[data-cursor="link"] .cursor-ring { width: 56px; height: 56px; border-color: var(--lime); }
  body[data-cursor="play"] .cursor-ring,
  body[data-cursor="drag"] .cursor-ring {
    width: 72px; height: 72px;
    background: var(--lime);
    border-color: var(--lime);
  }
  body[data-cursor="play"] .cursor-label,
  body[data-cursor="drag"] .cursor-label { opacity: 1; }
  body[data-cursor="play"] .cursor-dot,
  body[data-cursor="drag"] .cursor-dot { opacity: 0; }
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: var(--bg-deep);
  display: grid;
  place-items: center;
  transition: transform 0.65s cubic-bezier(0.7, 0, 0.3, 1);
}
.preloader.done { transform: translateY(-101%); }
.preloader-inner { text-align: center; }
.preloader-top { font-size: 11px; color: var(--muted); margin-bottom: 18px; }
.preloader-count {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--lime);
}
.preloader-bar {
  width: 220px; height: 3px;
  margin: 22px auto 0;
  background: #1C1C22;
  border-radius: 3px;
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 4vw, 44px);
  transition: transform 0.45s var(--ease-out), background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
body.nav-scrolled .nav {
  background: rgba(11, 11, 14, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
body.nav-hidden .nav { transform: translateY(-110%); }

.nav-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.02em;
}
.nav-logo .accent { color: var(--lime); }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1.5px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-right { display: flex; align-items: center; gap: 16px; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 14px;
}
.status-pill i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.2; } }

.burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease-out); }
body.menu-open .burger span:first-child { transform: translateY(4px) rotate(45deg); }
body.menu-open .burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(8, 8, 11, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 8vw 40px;
  transform: translateY(-102%);
  transition: transform 0.55s cubic-bezier(0.7, 0, 0.3, 1);
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-links { display: flex; flex-direction: column; gap: 6px; }
.mobile-links a {
  font-family: var(--display);
  font-size: clamp(2.4rem, 9vw, 4rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), color 0.25s;
}
.mobile-links a:hover { color: var(--lime); }
body.menu-open .mobile-links a { opacity: 1; transform: none; }
body.menu-open .mobile-links a:nth-child(1) { transition-delay: 0.12s; }
body.menu-open .mobile-links a:nth-child(2) { transition-delay: 0.18s; }
body.menu-open .mobile-links a:nth-child(3) { transition-delay: 0.24s; }
body.menu-open .mobile-links a:nth-child(4) { transition-delay: 0.3s; }
body.menu-open .mobile-links a:nth-child(5) { transition-delay: 0.36s; }
.mobile-foot { margin-top: auto; font-size: 11px; color: var(--muted); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.btn-lime { background: var(--lime); color: #0B0B0E; }
.btn-lime:hover { box-shadow: 0 12px 34px -8px rgba(217, 255, 61, 0.45); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-small { padding: 10px 20px; font-size: 11px; border-color: var(--line-strong); }
.btn-small:hover { border-color: var(--lime); color: var(--lime); }
.btn-big { padding: 20px 36px; font-size: 14px; }

/* ============ SECTIONS ============ */
.section { padding: clamp(90px, 12vw, 150px) 0; position: relative; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-block;
  margin-bottom: 18px;
}

.section-head { margin-bottom: clamp(40px, 6vw, 64px); max-width: 760px; }

h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
h2 em, .hero-title em, .contact-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--lime);
  letter-spacing: 0;
}
.section-sub { color: var(--muted); margin-top: 16px; max-width: 520px; }

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
  overflow: hidden;
}
.hero-inner {
  flex: 1;
  width: min(1240px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding-bottom: clamp(40px, 6vw, 70px);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(3.4rem, 10.5vw, 9.2rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 6px 0 26px;
}
.reveal-line { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.reveal-line > span { display: block; will-change: transform; }
.hero-title .viral { font-size: 1.06em; }

.hero-sub { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.2rem); max-width: 480px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-proof { margin-top: 28px; font-size: 11px; color: var(--muted); }
.hero-proof .stars { color: var(--lime); letter-spacing: 0.2em; margin-right: 8px; }

/* phone mockup */
.hero-phone { position: relative; display: grid; place-items: center; }
.phone {
  position: relative;
  width: clamp(240px, 24vw, 310px);
  aspect-ratio: 9 / 19;
  border-radius: 54px;
  background: #000;
  border: 3px solid #26262E;
  box-shadow:
    0 50px 90px -25px rgba(0, 0, 0, 0.8),
    0 0 90px -18px rgba(217, 255, 61, 0.22);
  transition: transform 0.25s ease-out;
}
.phone-screen {
  position: absolute;
  inset: 9px;
  border-radius: 45px;
  overflow: hidden;
  background: linear-gradient(160deg, #FF5C8A, #7B2FFF 55%, #2B0A5E);
  background-size: 220% 220%;
  animation: pan 9s ease-in-out infinite alternate;
}
@keyframes pan { from { background-position: 0% 0%; } to { background-position: 100% 100%; } }
.phone-island {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 26px;
  border-radius: 20px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.phone-rec {
  position: absolute;
  top: 52px; left: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.phone-rec i { width: 8px; height: 8px; border-radius: 50%; background: #FF3B30; animation: blink 1.2s infinite; }
.phone-rec .rec-timer { color: rgba(255, 255, 255, 0.85); }
.phone-thumb-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(24px) brightness(0.5) saturate(1.2);
  transform: scale(1.2);
}
.phone-thumb {
  position: absolute;
  top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55);
}
.phone-screen::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}
@keyframes floaty { 50% { transform: translate(-50%, -56%) rotate(6deg); } }
.phone-rail {
  position: absolute;
  right: 10px; bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  font-size: 18px;
}
.phone-rail span { display: flex; flex-direction: column; gap: 2px; filter: drop-shadow(0 2px 5px rgba(0,0,0,.5)); }
.phone-rail b { font-size: 8.5px; color: #fff; }
.phone-caption {
  position: absolute;
  left: 14px; right: 62px; bottom: 16px;
  color: #fff;
  font-size: 11.5px;
  line-height: 1.45;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.phone-caption b { font-size: 12.5px; }
.phone-caption p { margin: 3px 0 5px; }
.phone-caption .mono { font-size: 9px; color: rgba(255, 255, 255, 0.85); letter-spacing: 0.06em; }

.orbit-badge {
  position: absolute;
  top: -34px; left: -34px;
  width: 128px; height: 128px;
  animation: spin 14s linear infinite;
}
.orbit-badge text {
  font-family: var(--mono);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  fill: var(--lime);
}
@keyframes spin { to { transform: rotate(360deg); } }

.float-chip {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.6);
  animation: chipfloat 5s ease-in-out infinite;
}
.chip-1 { top: 16%; right: -6%; background: var(--lime); color: #0B0B0E; }
.chip-2 { bottom: 3%; left: -8%; background: var(--pink); color: #0B0B0E; animation-delay: -2.5s; }
@keyframes chipfloat { 50% { transform: translateY(-14px) rotate(-2deg); } }

/* ticker */
.ticker {
  background: var(--lime);
  color: #0B0B0E;
  border-block: 2px solid #0B0B0E;
  padding: 15px 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.03);
  margin-bottom: 18px;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.ticker span {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ STATS ============ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px 22px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.stat-card:hover { border-color: rgba(217, 255, 61, 0.4); transform: translateY(-4px); }
.stat-label { font-size: 10px; color: var(--muted); }
.stat-num {
  font-family: var(--display);
  font-size: clamp(2.6rem, 3.6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 10px 0 12px;
}
.stat-num .suffix { color: var(--lime); }
.spark { width: 100%; height: 34px; }
.spark path { stroke: var(--lime); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.stat-note { margin-top: 12px; font-size: 13px; color: var(--muted); }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.about-sticky { position: sticky; top: 120px; }
.about-copy p { color: var(--muted); margin-top: 18px; max-width: 460px; }
.about-copy p strong { color: var(--ink); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  font-size: 13.5px;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.chip:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.drag-hint { margin-top: 26px; font-size: 10.5px; color: var(--muted); opacity: 0.8; }

.polaroid-field { position: relative; min-height: 620px; }
.polaroid {
  position: absolute;
  width: 225px;
  background: #F4F3EF;
  border-radius: 6px;
  padding: 12px 12px 46px;
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.65);
  transform: rotate(var(--r, 0deg));
  transition: box-shadow 0.3s;
}
.polaroid:hover { box-shadow: 0 34px 70px -12px rgba(0, 0, 0, 0.75); z-index: 5; }
.polaroid:active { cursor: grabbing; }
.polaroid:nth-child(1) { top: 2%; left: 6%; --r: -8deg; }
.polaroid:nth-child(2) { top: 10%; right: 4%; --r: 6deg; }
.polaroid:nth-child(3) { top: 48%; left: 14%; --r: 4deg; }
.polaroid:nth-child(4) { top: 54%; right: 10%; --r: -5deg; }
.polaroid-photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  background: #141419;
}
.polaroid-thumb-blur {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(18px) brightness(0.55);
  transform: scale(1.25);
}
.polaroid-thumb {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  border-radius: 3px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}
.polaroid-cap { margin-top: 12px; font-size: 10.5px; color: #55555E; text-align: center; letter-spacing: 0.08em; }

/* ============ WORK ============ */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chip-btn {
  font-size: 11px;
  font-weight: 700;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  transition: all 0.25s;
}
.chip-btn:hover { border-color: var(--lime); color: var(--ink); }
.chip-btn.active { background: var(--lime); border-color: var(--lime); color: #0B0B0E; }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(236px, 1fr));
  gap: 20px;
}
.card {
  position: relative;
  aspect-ratio: 9 / 15.5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.card:hover {
  border-color: rgba(217, 255, 61, 0.65);
  box-shadow: 0 24px 60px -14px rgba(217, 255, 61, 0.22);
}
.card.is-hidden { display: none; }
.card-bg {
  position: absolute;
  inset: 0;
  background-size: 200% 200%;
  animation: pan 8s ease-in-out infinite alternate;
}
.card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 55%);
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, transparent 42%),
              linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, transparent 26%);
}
.g1 { background-image: linear-gradient(160deg, #FF5C8A, #7B2FFF); }
.g2 { background-image: linear-gradient(160deg, #00E0A4, #0081FF); }
.g3 { background-image: linear-gradient(160deg, #FFB03A, #FF4D6D); }
.g4 { background-image: linear-gradient(160deg, #FFE45C, #FF7A3D); }
.g5 { background-image: linear-gradient(160deg, #B06BFF, #4D9FFF); }
.g6 { background-image: linear-gradient(160deg, #3DFFC0, #3D9BFF); }
.g7 { background-image: linear-gradient(160deg, #9DFF3D, #00C48C); }
.g8 { background-image: linear-gradient(160deg, #FF8AC2, #B06BFF); }
.g9 { background-image: linear-gradient(160deg, #6BB8FF, #8A5CFF); }

.card-thumb-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) brightness(0.5) saturate(1.2);
  transform: scale(1.2);
}
.card-thumb {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 16px);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s var(--ease-out);
}
.card:hover .card-thumb { transform: translate(-50%, -50%) scale(1.05); }
.card-top {
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.card-bottom { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; }
.card-caption { font-weight: 700; font-size: 15px; line-height: 1.3; color: #fff; }
.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  font-size: 8.5px;
}
.card-meta span {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

/* ============ BRANDS ============ */
.brands { padding: clamp(70px, 9vw, 110px) 0; border-block: 1px solid var(--line); overflow: hidden; }
.brands-label { text-align: center; font-size: 11px; color: var(--muted); margin-bottom: 40px; }
.brand-row { overflow: hidden; padding: 6px 0; }
.brand-row:hover .brand-track { animation-play-state: paused; }
.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.brand-row.reverse .brand-track { animation-direction: reverse; animation-duration: 36s; }
.brand-track span {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 0 26px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244, 243, 239, 0.32);
  transition: color 0.3s, -webkit-text-stroke-color 0.3s;
}
.brand-track span:hover { color: var(--lime); -webkit-text-stroke-color: transparent; }
.brand-track i { color: var(--lime); font-style: normal; font-size: 18px; }

/* ============ COMMENTS ============ */
.comments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.comment-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.comment-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.comment-card.pinned-card { border-color: rgba(217, 255, 61, 0.45); }
.comment-card header { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: #0B0B0E;
  flex-shrink: 0;
}
.a1 { background: linear-gradient(140deg, #D9FF3D, #00C48C); }
.a2 { background: linear-gradient(140deg, #FF8AC2, #B06BFF); }
.a3 { background: linear-gradient(140deg, #FFE45C, #FF7A3D); }
.a4 { background: linear-gradient(140deg, #6BB8FF, #8A5CFF); }
.a5 { background: linear-gradient(140deg, #3DFFC0, #3D9BFF); }
.c-id { display: flex; flex-direction: column; min-width: 0; }
.handle { font-family: var(--mono); font-size: 12.5px; color: var(--lime); }
.role { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pinned-badge {
  margin-left: auto;
  font-size: 9px;
  color: var(--lime);
  border: 1px solid rgba(217, 255, 61, 0.5);
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
}
.c-text { margin: 16px 0 18px; font-size: 15.5px; color: #D8D8DE; }
.comment-card footer { display: flex; align-items: center; gap: 18px; }
.heart-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  transition: color 0.25s, transform 0.15s;
}
.heart-btn:active { transform: scale(1.25); }
.heart-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: fill 0.25s, stroke 0.25s; }
.heart-btn:hover { color: var(--pink); }
.heart-btn.liked { color: var(--pink); }
.heart-btn.liked svg { fill: var(--pink); stroke: var(--pink); }
.heart-count { font-size: 11px; }
.c-meta { font-size: 10px; color: var(--muted); }

/* ============ MENU ============ */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.tier:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.tier.popular {
  border-color: var(--lime);
  background: linear-gradient(170deg, rgba(217, 255, 61, 0.09), var(--surface) 45%);
  box-shadow: 0 30px 70px -24px rgba(217, 255, 61, 0.28);
}
.tier-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #0B0B0E;
  font-size: 9.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-name { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: 0.02em; }
.tier-price { display: flex; align-items: baseline; gap: 10px; margin: 14px 0 10px; }
.tier-price .amount { font-family: var(--display); font-size: 46px; font-weight: 600; line-height: 1; }
.tier.popular .tier-price .amount { color: var(--lime); }
.tier-price .per { font-size: 10px; color: var(--muted); }
.tier-desc { font-size: 14px; color: var(--muted); }
.tier-feats { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.tier-feats li { font-size: 14.5px; padding-left: 24px; position: relative; color: #D8D8DE; }
.tier-feats li::before { content: '✦'; position: absolute; left: 0; color: var(--lime); font-size: 12px; top: 2px; }
.tier-btn { margin-top: auto; width: 100%; }

.addons {
  margin-top: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
}
.addons-label { grid-column: 1 / -1; font-size: 10px; color: var(--lime); }
.addon { display: flex; align-items: baseline; gap: 12px; font-size: 11.5px; color: #D8D8DE; }
.addon .dots { flex: 1; border-bottom: 2px dotted #33363F; transform: translateY(-4px); }
.addon b { color: var(--lime); }

/* ============ PROCESS ============ */
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  padding-top: 62px;
}
.process-line {
  position: absolute;
  top: 24px; left: 0; right: 0;
  height: 2px;
  background: #232329;
}
.process-line-fill {
  position: absolute;
  inset: 0;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}
.step { position: relative; }
.step::before {
  content: '';
  position: absolute;
  top: -47px; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--lime);
}
.step-num { font-size: 11px; color: var(--lime); }
.step h4 { font-family: var(--display); font-size: 19px; font-weight: 600; margin: 8px 0 8px; letter-spacing: 0.03em; }
.step p { font-size: 13.5px; color: var(--muted); }

/* ============ CONTACT ============ */
.contact { text-align: center; }
.contact .eyebrow { margin-bottom: 22px; }
.contact-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7.5vw, 6.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.contact-title em { font-size: 1.05em; }
.contact-sub { color: var(--muted); margin: 26px auto 0; max-width: 460px; }
.contact-sub strong { color: var(--lime); font-weight: 700; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }
.socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 46px; }
.social {
  font-size: 11px;
  padding: 12px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  transition: all 0.25s;
}
.social:hover { background: var(--lime); border-color: var(--lime); color: #0B0B0E; }

/* ============ FOOTER ============ */
footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(20px, 4vw, 44px);
  border-top: 1px solid var(--line);
  font-size: 10.5px;
  color: var(--muted);
}
.to-top { transition: color 0.25s; }
.to-top:hover { color: var(--lime); }

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s, visibility 0.35s;
}
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.modal-box {
  position: relative;
  width: min(880px, 94vw);
  max-height: 92svh;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: 26px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
  transform: translateY(26px) scale(0.97);
  transition: transform 0.4s var(--ease-out);
}
.modal.open .modal-box { transform: none; }
.modal-close {
  position: absolute;
  top: -14px; right: -14px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--lime);
  color: #0B0B0E;
  font-size: 15px;
  font-weight: 700;
  z-index: 2;
  transition: transform 0.35s var(--ease-out);
}
.modal-close:hover { transform: rotate(90deg); }

.modal-screen {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background-size: 200% 200%;
  animation: pan 8s ease-in-out infinite alternate;
}
.modal-thumb-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(24px) brightness(0.5) saturate(1.2);
  transform: scale(1.2);
}
.modal-thumb {
  position: absolute;
  top: 44%; left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 24px);
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55);
}
.modal-screen::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 34%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}
.modal-rec {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  color: #fff;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}
.modal-rec i { width: 7px; height: 7px; border-radius: 50%; background: #FF3B30; animation: blink 1.2s infinite; }
.modal-play {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 15px;
  transition: transform 0.25s var(--ease-out);
}
.modal-play:hover { transform: translateX(-50%) scale(1.1); }
.modal-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
}
.modal-progress span {
  display: block;
  height: 100%;
  background: var(--lime);
  animation: progress 9s linear infinite;
}
@keyframes progress { from { width: 0; } to { width: 100%; } }
.modal.paused .modal-progress span,
.modal.paused .mc-track { animation-play-state: paused; }

.modal-side { display: flex; flex-direction: column; min-width: 0; }
.modal-brand { font-size: 10.5px; color: var(--lime); }
.modal-title { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; line-height: 1.15; margin: 10px 0 8px; }
.modal-meta { font-size: 10.5px; color: var(--muted); }
.modal-comments {
  flex: 1;
  min-height: 180px;
  max-height: 250px;
  overflow: hidden;
  margin-top: 18px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}
.mc-track { animation: mcscroll 14s linear infinite; }
@keyframes mcscroll { to { transform: translateY(-50%); } }
.mc-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: #D8D8DE;
}
.mc-item b { display: block; font-size: 10px; color: var(--lime); font-weight: 400; margin-bottom: 2px; }
.modal-cta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 10.5px;
  color: var(--muted);
}
.modal-cta a { color: var(--lime); font-weight: 700; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 54px; padding-top: 20px; }
  .hero { justify-content: flex-start; }
  .hero-phone { order: 2; margin-bottom: 10px; }
  .orbit-badge { left: auto; right: 6%; top: -30px; }
  .chip-1 { right: 4%; }
  .chip-2 { left: 2%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-sticky { position: static; }
  .menu-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .tier.popular { order: -1; }
  .process-steps { grid-template-columns: repeat(2, 1fr); padding-top: 0; }
  .process-line { display: none; }
  .step::before { display: none; }
}

@media (max-width: 860px) {
  .nav-links, .status-pill { display: none; }
  .burger { display: flex; }
  .comments-grid { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .feed-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card { border-radius: 16px; }
  .card-caption { font-size: 12.5px; }
  .card-meta { display: none; }
  .polaroid-field {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .polaroid { position: static; width: auto; }
  .modal-box { grid-template-columns: 1fr; padding: 18px; }
  .modal-player { max-width: 300px; margin-inline: auto; width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .float-chip { display: none; }
  footer { justify-content: center; text-align: center; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track, .brand-track, .mc-track { animation: none !important; }
}
