/* =========================================================================
   EJAD LYCHEE — FAN PAGE STYLES
   ========================================================================= */

:root {
  /* lychee palette */
  --bg-0: #0a0212;          /* deepest */
  --bg-1: #11041d;          /* base */
  --bg-2: #1a0830;          /* panel */
  --bg-3: #251149;          /* elevated */
  --line: rgba(255, 79, 175, 0.12);
  --line-2: rgba(255, 79, 175, 0.25);

  --ink: #f7e9ff;           /* near-white w/ pink tint */
  --ink-2: #c9b5d6;
  --ink-3: #7a6788;

  --pink: #ff4faf;          /* lychee primary */
  --pink-2: #ff2d8a;
  --purple: #8a3df0;        /* secondary */
  --green: #5cffa0;         /* lychee fruit accent */
  --amber: #ffb800;
  --cyan: #00e5ff;          /* kept small for contrast */

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-1: 0 6px 24px rgba(0,0,0,.45);
  --shadow-glow: 0 0 40px rgba(255,79,175,.35);

  --font-disp: "Bebas Neue", "Anton", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Menlo", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg-0); color: var(--ink); font-family: var(--font-body); }
body { min-height: 100vh; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }
kbd { background: var(--bg-2); border: 1px solid var(--line); padding: 1px 6px; border-radius: 4px; font-family: var(--font-mono); font-size: 11px; }

/* ════════════════════ TICKER ════════════════════ */
.ticker {
  position: sticky; top: 0; z-index: 100;
  height: 38px;
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
  overflow: hidden;
}
.ticker__live {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 8px;
  padding: 0 16px; height: 100%;
  background: var(--pink);
  color: #0a0212;
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: .12em;
  position: relative;
  z-index: 2;
  box-shadow: 8px 0 18px -6px rgba(255, 47, 154, .55);
}
.ticker__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #0a0212;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.7); }
}
.ticker__track {
  display: flex; gap: 28px;
  padding-left: 28px;
  animation: tick 38s linear infinite;
  white-space: nowrap;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__seg {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: .08em;
}
.ticker__time {
  color: var(--green);
  font-weight: 700;
}
.ticker__txt { color: var(--ink-2); }
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ════════════════════ NAV ════════════════════ */
.nav {
  position: sticky; top: 38px; z-index: 99;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(10,2,18,.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-disp);
  font-size: 26px; line-height: 1;
  letter-spacing: .02em;
}
.nav__brand-mark { color: var(--ink); }
.nav__brand-mark--alt { color: var(--pink); }
.nav__brand-sep { color: var(--ink-3); font-weight: 100; padding: 0 2px; }
.nav__links {
  list-style: none;
  display: flex; gap: clamp(14px, 2.4vw, 28px);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
}
.nav__links a {
  color: var(--ink-2);
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--pink); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--pink);
  color: #0a0212;
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: .14em;
  transition: transform .15s ease, box-shadow .2s ease;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,79,175,.45); }
.nav__cta:active { transform: translateY(0); }

@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ════════════════════ HERO ════════════════════ */
.hero {
  position: relative;
  padding: clamp(48px, 9vw, 120px) clamp(20px, 4vw, 48px) clamp(80px, 12vw, 160px);
  overflow: hidden;
  isolation: isolate;
}
.hero__mesh, .hero__grid, .hero__scan, .hero__vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
}
/* gradient mesh — animated blobs */
.hero__mesh { z-index: -3; filter: blur(80px) saturate(140%); opacity: .55; }
.hero__mesh-blob {
  position: absolute; border-radius: 50%;
  width: 50vmax; height: 50vmax;
  animation: drift 28s ease-in-out infinite alternate;
}
.hero__mesh-blob--1 {
  background: radial-gradient(circle, var(--pink) 0%, transparent 60%);
  top: -20%; left: -10%;
}
.hero__mesh-blob--2 {
  background: radial-gradient(circle, var(--purple) 0%, transparent 60%);
  bottom: -25%; right: -15%;
  animation-delay: -8s;
}
.hero__mesh-blob--3 {
  background: radial-gradient(circle, var(--green) 0%, transparent 60%);
  top: 40%; left: 30%;
  width: 35vmax; height: 35vmax;
  animation-delay: -16s;
  opacity: .35;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(8%, 6%) scale(1.15); }
}
/* grid overlay */
.hero__grid {
  z-index: -2;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
}
/* scanlines */
.hero__scan {
  z-index: -1;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,.025) 0px,
    rgba(255,255,255,.025) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}
/* vignette */
.hero__vignette {
  background: radial-gradient(ellipse at 80% 30%, transparent 0%, var(--bg-0) 70%);
}

.hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.hero__kicker {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: .14em; color: var(--pink);
}
.hero__kicker-line {
  display: inline-block; width: 36px; height: 1px;
  background: var(--pink);
}
.hero__kicker-text { white-space: nowrap; }

.hero__title {
  margin: 0 0 26px;
  font-family: var(--font-disp);
  font-size: clamp(64px, 14vw, 200px);
  line-height: .88;
  letter-spacing: -.005em;
}
.hero__title-row {
  display: flex; align-items: center; gap: clamp(8px, 2vw, 24px);
  flex-wrap: wrap;
}
.hero__title-1 { color: var(--ink); }
.hero__title-slash { color: var(--ink-3); font-weight: 100; padding: 0 clamp(2px, 1vw, 12px); }
.hero__title-2 {
  background: linear-gradient(120deg, var(--pink) 0%, var(--purple) 50%, var(--green) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(255,79,175,.25));
}
.hero__title-sub {
  display: block;
  margin-top: clamp(8px, 2vw, 18px);
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.4vw, 15px);
  letter-spacing: .14em;
  color: var(--ink-2);
  -webkit-text-fill-color: var(--ink-2);
  font-weight: 500;
}

.hero__lede {
  max-width: 640px;
  margin: 0 0 36px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: .14em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  will-change: transform;
}
.btn--primary {
  background: var(--pink);
  color: #0a0212;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,79,175,.45); }
.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--pink); color: var(--pink); }

.hero__card {
  position: relative;
  max-width: 720px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,79,175,.08), rgba(138,61,240,.06));
  border: 1px solid var(--line-2);
  backdrop-filter: blur(6px);
}
.hero__card-glow {
  position: absolute; inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--pink), transparent 35%, transparent 65%, var(--purple));
  filter: blur(14px);
  opacity: .35;
  z-index: -1;
}
.hero__card-row {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.hero__card-avatar {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%; overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid var(--pink);
}
.hero__card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero__card-pulse {
  position: absolute; right: -2px; bottom: -2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--bg-1);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.hero__card-info { flex: 1 1 auto; min-width: 160px; }
.hero__card-name {
  font-family: var(--font-disp);
  font-size: 24px; line-height: 1;
  color: var(--ink);
}
.hero__card-handle {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3);
  margin-top: 4px;
  letter-spacing: .08em;
}
.hero__card-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-left: auto;
}
.hero__card-stat { text-align: right; }
.hero__card-stat-num {
  display: block;
  font-family: var(--font-disp);
  font-size: 28px; line-height: 1;
  color: var(--pink);
}
.hero__card-stat-lbl {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: .12em; color: var(--ink-3);
}

@media (max-width: 640px) {
  .hero__card-row { gap: 12px; }
  .hero__card-stats { width: 100%; margin-left: 0; grid-template-columns: repeat(3, 1fr); }
  .hero__card-stat { text-align: left; }
  .hero__card-stat-num { font-size: 22px; }
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em;
  color: var(--ink-3);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 30%;
  background: var(--pink);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(330%); }
}
@media (max-width: 640px) { .hero__scroll { display: none; } }

/* ════════════════════ MARQUEE ════════════════════ */
.marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 22px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee__track {
  display: flex; align-items: center; gap: 32px;
  animation: tick 30s linear infinite;
  white-space: nowrap;
  font-family: var(--font-disp);
  font-size: clamp(28px, 4.4vw, 56px);
  letter-spacing: .04em;
  color: var(--ink);
}
.marquee__track span:nth-child(7n+1) { color: var(--pink); }
.marquee__track span:nth-child(7n+3) { color: var(--purple); }
.marquee__track span:nth-child(7n+5) { color: var(--green); }

/* ════════════════════ CLIPS GRID ════════════════════ */
.clips {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 4vw, 48px);
  max-width: 1280px;
  margin: 0 auto;
}
.clips__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.clips__head-left { display: flex; align-items: flex-end; gap: 22px; }
.clips__num {
  font-family: var(--font-disp);
  font-size: clamp(56px, 8vw, 110px);
  line-height: .8;
  color: var(--pink);
  -webkit-text-stroke: 1px var(--pink);
  color: transparent;
}
.clips__kicker {
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: .14em; color: var(--ink-3);
  margin-bottom: 6px;
}
.clips__title {
  font-family: var(--font-disp);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  color: var(--ink);
}
.clips__more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: .14em; color: var(--pink);
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease;
}
.clips__more:hover { background: rgba(255,79,175,.1); border-color: var(--pink); }

/* grid: masonry-ish via CSS columns */
.clips__grid {
  column-count: 3;
  column-gap: 18px;
}
@media (max-width: 980px) { .clips__grid { column-count: 2; } }
@media (max-width: 560px) { .clips__grid { column-count: 1; } }

.clips__loading {
  break-inside: avoid;
  margin-bottom: 18px;
  padding: 60px 20px;
  text-align: center;
  color: var(--ink-3);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .14em;
}
.clips__loading-pulse {
  display: inline-block; width: 32px; height: 32px;
  border: 2px solid var(--line-2); border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* load-more */
.clips__loadmore {
  display: flex;
  justify-content: center;
  margin: 28px 0 8px;
}
.clips__loadmore[hidden] { display: none; }

/* clip card */
.clip {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .25s ease;
  transform-style: preserve-3d;
  perspective: 800px;
}
.clip:hover { border-color: var(--pink-2); }
.clip__thumb {
  position: relative; width: 100%;
  background: var(--bg-3);
  overflow: hidden;
}
.clip__img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .3s ease;
}
.clip:hover .clip__img { transform: scale(1.04); filter: brightness(.65); }
/* play button overlay */
.clip__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.clip__play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,79,175,.92);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 0 6px rgba(255,79,175,.18);
  animation: pulse-play 2.4s ease-in-out infinite;
}
@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255,79,175,.18); }
  50% { box-shadow: 0 0 0 14px rgba(255,79,175,0); }
}
.clip:hover .clip__play-btn { transform: scale(1.12); }
.clip__play-btn svg { margin-left: 3px; }
.clip__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,2,18,.92) 0%, rgba(10,2,18,.3) 35%, transparent 60%);
  pointer-events: none;
}
.clip__duration {
  position: absolute; top: 10px; right: 10px;
  padding: 3px 8px;
  background: rgba(10,2,18,.78);
  color: var(--ink);
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .08em;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.clip__live {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 8px;
  background: var(--pink);
  color: #0a0212;
  font-family: var(--font-mono); font-weight: 700; font-size: 9.5px;
  letter-spacing: .14em;
  border-radius: 4px;
}
.clip__meta {
  padding: 14px 16px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.clip__title {
  font-size: 14px; line-height: 1.4;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.clip__stats {
  display: flex; gap: 14px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .08em;
  color: var(--ink-3);
}
.clip__stats span { display: inline-flex; align-items: center; gap: 4px; }

/* iframe state — replaces thumb when clicked */
.clip__frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  background: #000;
}

/* ════════════════════ PULSE / STATS ════════════════════ */
.pulse {
  position: relative;
  padding: clamp(64px, 10vw, 120px) clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.pulse::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px);
  background-size: 60px 100%;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent 0%, #000 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 50%, transparent 100%);
}
.pulse__head {
  max-width: 1280px; margin: 0 auto 36px;
  text-align: center;
  position: relative;
}
.pulse__kicker {
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: .14em; color: var(--ink-3);
  margin-bottom: 8px;
}
.pulse__title {
  font-family: var(--font-disp);
  font-size: clamp(56px, 8vw, 110px);
  line-height: .9;
  background: linear-gradient(120deg, var(--pink), var(--purple), var(--green));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pulse__bar {
  position: relative;
  max-width: 1280px; margin: 0 auto 22px;
  height: 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.pulse__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 60%, var(--green) 100%);
  border-radius: 999px;
  transition: width 1.6s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 24px rgba(255,79,175,.5);
}
.pulse__bar-ticks {
  position: absolute; inset: 0;
  display: flex; justify-content: space-between;
  padding: 0 8px;
  align-items: center;
  pointer-events: none;
}
.pulse__bar-ticks span {
  width: 1px; height: 100%;
  background: rgba(10,2,18,.35);
}
.pulse__meta {
  max-width: 1280px; margin: 0 auto 56px;
  text-align: center;
}
.pulse__v {
  font-family: var(--font-disp);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--pink);
}
.pulse__v-lbl {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; color: var(--ink-3);
  margin-top: 8px;
}
.pulse__numbers {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 720px) { .pulse__numbers { grid-template-columns: 1fr; } }
.pulse__n {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  text-align: center;
}
.pulse__n-num {
  display: block;
  font-family: var(--font-disp);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--ink);
}
.pulse__n-num::after { content: attr(data-suffix); color: var(--green); }
.pulse__n-lbl {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; color: var(--ink-3);
}

/* ════════════════════ ABOUT ════════════════════ */
.about {
  position: relative;
  padding: clamp(64px, 10vw, 120px) clamp(20px, 4vw, 48px);
}
.about__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(28px, 5vw, 64px);
}
@media (max-width: 880px) { .about__inner { grid-template-columns: 1fr; } }

.about__head { display: flex; flex-direction: column; gap: 16px; }
.about__num {
  font-family: var(--font-disp);
  font-size: clamp(80px, 12vw, 160px);
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1px var(--pink);
}
.about__kicker {
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: .14em; color: var(--ink-3);
}
.about__title {
  font-family: var(--font-disp);
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: .9;
  color: var(--ink);
}
.about__body {
  font-size: 16px; line-height: 1.7;
  color: var(--ink-2);
  padding-top: 8px;
}
.about__body p + p { margin-top: 18px; }
.about__body strong { color: var(--pink); font-weight: 700; }
.about__body em { color: var(--green); font-style: normal; }
.about__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
}
.chip {
  display: inline-block;
  padding: 6px 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .1em; color: var(--ink);
  background: rgba(255,79,175,.1);
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.chip:nth-child(2n) { background: rgba(138,61,240,.12); border-color: rgba(138,61,240,.3); }
.chip:nth-child(3n) { background: rgba(92,255,160,.1); border-color: rgba(92,255,160,.3); color: var(--green); }

.about__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 120px;
  color: var(--bg-0);
  pointer-events: none;
}
.about__wave svg { width: 100%; height: 100%; }

/* ════════════════════ CONTACT ════════════════════ */
.contact {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 4vw, 48px);
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}
.contact__inner {
  max-width: 1280px; margin: 0 auto;
}
.contact__head {
  display: flex; align-items: flex-end; gap: 22px;
  margin-bottom: 48px;
}
.contact__num {
  font-family: var(--font-disp);
  font-size: clamp(56px, 8vw, 110px);
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1px var(--purple);
}
.contact__kicker {
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: .14em; color: var(--ink-3);
  margin-bottom: 6px;
}
.contact__title {
  font-family: var(--font-disp);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  color: var(--ink);
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__big {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 8px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .25s ease;
  overflow: hidden;
  isolation: isolate;
}
.contact__big::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c, var(--pink)) 0%, transparent 60%);
  opacity: .15;
  z-index: -1;
  transition: opacity .25s ease;
}
.contact__big:hover { transform: translateY(-4px); border-color: var(--c, var(--pink)); }
.contact__big:hover::before { opacity: .3; }
.contact__big--pink { --c: var(--pink); }
.contact__big--purple { --c: var(--purple); }
.contact__big--green { --c: var(--green); }

.contact__big-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; color: var(--ink-3);
}
.contact__big-lbl {
  font-family: var(--font-disp);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  color: var(--c, var(--pink));
}
.contact__big-sub {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--ink-2);
}
.contact__big-arrow {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 22px;
  color: var(--c, var(--pink));
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.contact__big:hover .contact__big-arrow { transform: translate(4px, -4px); }

/* ════════════════════ FOOTER ════════════════════ */
.foot {
  padding: 36px clamp(20px, 4vw, 48px);
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  color: var(--ink-3);
}
.foot__top {
  max-width: 1280px; margin: 0 auto 22px;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.foot__brand {
  font-family: var(--font-disp);
  font-size: 22px; letter-spacing: .04em;
  color: var(--ink);
}
.foot__meta {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .14em;
}
.foot__meta a.foot__studio {
  color: inherit;
  border-bottom: 1px solid var(--ink-3);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.foot__meta a.foot__studio:hover { color: var(--pink); border-color: var(--pink); }
.foot__bot {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .12em;
}
.foot__row { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.foot__row em { font-style: normal; color: var(--ink); }
.foot__sep { color: var(--ink-3); }
.foot__ok { color: var(--green); }
.foot__row--r { color: var(--ink-3); }

/* ════════════════════ CURSOR (desktop only) ════════════════════ */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  display: none;
}
.cursor__dot {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  transform: translate(-50%, -50%);
  transition: transform .12s ease, background .2s ease;
}
.cursor__ring {
  position: fixed;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, border-color .2s ease, background .2s ease;
  opacity: .5;
}
.cursor.is-hover .cursor__ring {
  width: 56px; height: 56px;
  background: rgba(255,79,175,.1);
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  /* hide native cursor on interactive elements */
  a, button, .clip { cursor: none; }
}

/* ════════════════════ REVEAL ANIMATIONS ════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
[data-reveal].is-in {
  opacity: 1; transform: translateY(0);
}

/* ════════════════════ REDUCED MOTION ════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__mesh-blob { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
