/* ============================================================
   djalildrh — Media Kit · Premium dark design system
   ============================================================ */

:root {
  --bg: #050505;
  --surface: #0F1115;
  --card: #171A20;
  --card-border: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --text-2: #9CA3AF;
  --accent: #7C3AED;
  --accent-2: #2563EB;
  --grad: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  --radius: 20px;
  --radius-lg: 28px;
  --font: 'Inter', -apple-system, 'SF Pro Display', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

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

::selection { background: rgba(124, 58, 237, 0.4); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.03em; line-height: 1.08; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

/* ============ Background scene ============ */
.bg-scene { position: fixed; inset: 0; z-index: -1; overflow: hidden; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  will-change: transform;
}
.blob-1 { width: 55vw; height: 55vw; background: #2a1065; top: -20vw; right: -15vw; animation: drift1 26s ease-in-out infinite alternate; }
.blob-2 { width: 40vw; height: 40vw; background: #0b2a6b; bottom: -15vw; left: -12vw; animation: drift2 32s ease-in-out infinite alternate; }
.blob-3 { width: 25vw; height: 25vw; background: #3b0f5c; top: 45%; left: 35%; opacity: 0.22; animation: drift3 24s ease-in-out infinite alternate; }

@keyframes drift1 { to { transform: translate(-8vw, 10vh) scale(1.15); } }
@keyframes drift2 { to { transform: translate(10vw, -8vh) scale(0.9); } }
@keyframes drift3 { to { transform: translate(-6vw, -10vh) scale(1.2); } }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 75%);
}

/* ============ Cursor glow ============ */
.cursor-glow {
  position: fixed;
  width: 480px; height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(124,58,237,0.09) 0%, rgba(37,99,235,0.05) 35%, transparent 65%);
  transform: translate(-50%, -50%);
  left: 50%; top: 30%;
  transition: opacity 0.4s;
}

/* ============ Glass utility ============ */
.glass {
  background: rgba(23, 26, 32, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--card-border);
}

/* ============ Nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  padding-top: 12px; padding-bottom: 12px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.nav-logo span { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--grad);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-burger {
  display: none;
  background: none; border: none;
  width: 38px; height: 38px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-burger.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s, border-color 0.35s;
  will-change: transform;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(124, 58, 237, 0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }

/* ============ Hero ============ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px clamp(20px, 5vw, 56px) 60px;
  position: relative;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  font-size: 0.8rem;
  font-weight: 500;
  color: #c4b5fd;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-title {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 700;
  margin-bottom: 26px;
}
.hero-title .line { display: block; }

.hero-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.hero-role {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 20px;
}
.hero-bio { color: var(--text-2); max-width: 520px; margin-bottom: 36px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-proof { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.proof-item { display: flex; flex-direction: column; }
.proof-item strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; }
.proof-item span { font-size: 0.78rem; color: var(--text-2); }
.proof-sep { width: 1px; height: 38px; background: rgba(255,255,255,0.1); }

/* Hero visual */
.hero-visual { display: flex; justify-content: center; }

.hero-card {
  position: relative;
  width: min(400px, 100%);
  border-radius: var(--radius-lg);
  overflow: visible;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-card img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 90px rgba(0,0,0,0.65), 0 0 0 1px rgba(124,58,237,0.15);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.hero-card-glow {
  position: absolute; inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: var(--grad);
  z-index: -1;
  filter: blur(38px);
  opacity: 0.4;
}

.float-chip {
  position: absolute;
  display: flex; flex-direction: column;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(15, 17, 21, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  animation: floaty 5s ease-in-out infinite;
}
.chip-num { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.chip-label { font-size: 0.68rem; color: var(--text-2); white-space: nowrap; }
.chip-1 { top: 8%; left: -14%; animation-delay: 0s; }
.chip-2 { bottom: 22%; right: -13%; animation-delay: 1.4s; }
.chip-3 { bottom: -5%; left: 6%; animation-delay: 2.8s; }
@keyframes floaty { 50% { transform: translateY(-12px); } }

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  display: flex; justify-content: center;
}
.scroll-hint span {
  width: 3px; height: 8px;
  background: var(--accent);
  border-radius: 3px;
  margin-top: 8px;
  animation: scrollhint 1.8s infinite;
}
@keyframes scrollhint { 60% { transform: translateY(14px); opacity: 0; } 100% { transform: translateY(14px); opacity: 0; } }

/* ============ Marquee ============ */
.marquee-section { padding: 30px 0 70px; overflow: hidden; }
.marquee-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 34px;
}
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex; gap: 22px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.mq-item {
  display: flex; align-items: center; justify-content: center;
  height: 74px; min-width: 150px;
  padding: 0 28px;
  border-radius: 18px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.9);
  transition: transform 0.3s, box-shadow 0.3s;
}
.mq-item:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,0.4); }
.mq-item img { max-height: 34px; max-width: 110px; object-fit: contain; }
.mq-text { background: rgba(255,255,255,0.06); border-color: var(--card-border); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: rgba(255,255,255,0.9); }

/* ============ Sections ============ */
.section { padding: 100px clamp(20px, 5vw, 56px); max-width: 1280px; margin: 0 auto; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 14px 0 16px; }
.section-head p { color: var(--text-2); }

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ Bars ============ */
.bar {
  height: 7px;
  border-radius: 100px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: var(--grad);
  transition: width 1.3s var(--ease);
}
.bar.animate i { width: var(--w); }

/* ============ Stats ============ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.6), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.stat-card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,0.35); box-shadow: 0 24px 50px rgba(0,0,0,0.45); }
.stat-card:hover::before { opacity: 1; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.6rem, 4vw, 3.4rem); font-weight: 700; line-height: 1; }
.stat-label { font-weight: 600; margin-top: 8px; }
.stat-sub { font-size: 0.82rem; color: var(--text-2); }

/* ============ Platforms ============ */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.platform-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex; flex-direction: column; gap: 22px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.platform-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.16); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }

.pc-head { display: flex; align-items: center; gap: 14px; }
.pc-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pc-icon.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.pc-icon.fb { background: #1877F2; color: #fff; }
.pc-icon.tt { background: #010101; color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.pc-icon.yt { background: #FF0000; color: #fff; }
.pc-head h3 { font-size: 1.12rem; }
.pc-head a { font-size: 0.82rem; color: var(--text-2); transition: color 0.25s; }
.pc-head a:hover { color: var(--accent); }
.pc-follow { margin-left: auto; font-size: 0.78rem; color: var(--text-2); text-align: right; }
.pc-follow strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--text); }

.pc-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pc-stats > div {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 13px 15px;
}
.pc-stats strong { font-family: var(--font-display); font-size: 1.2rem; display: block; }
.pc-stats span { font-size: 0.72rem; color: var(--text-2); }

.pc-bar-label { font-size: 0.76rem; color: var(--text-2); display: block; margin-bottom: 8px; }

.pc-btn {
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.86rem;
  font-weight: 600;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.pc-btn:hover { background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.5); transform: translateY(-2px); }

/* ============ Audience ============ */
.audience-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr;
  gap: 22px;
}
.aud-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.aud-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.15); }
.aud-card h3 { font-size: 1.2rem; margin-bottom: 26px; }
.aud-note { margin-top: 22px; font-size: 0.84rem; color: var(--text-2); }
.aud-note strong { color: var(--text); }

.country { margin-bottom: 18px; }
.country-row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 7px; }
.country-row strong { font-family: var(--font-display); }

.donut-wrap { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.donut {
  width: 150px; height: 150px;
  border-radius: 50%;
  background: conic-gradient(#7C3AED 0% calc(var(--p) * 1%), #2563EB calc(var(--p) * 1%) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.donut::after { content: ''; position: absolute; inset: 14px; border-radius: 50%; background: var(--card); }
.donut span { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; text-align: center; line-height: 1.15; }
.donut small { display: block; font-size: 0.68rem; font-weight: 500; color: var(--text-2); }
.gender-legend { display: flex; flex-direction: column; gap: 12px; font-size: 0.9rem; }
.gender-legend strong { font-family: var(--font-display); margin-left: 8px; }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 9px; }
.dot.men { background: #7C3AED; }
.dot.women { background: #2563EB; }

.age-bars { display: flex; flex-direction: column; gap: 13px; }
.age { display: grid; grid-template-columns: 52px 1fr 52px; align-items: center; gap: 12px; font-size: 0.84rem; }
.age strong { font-family: var(--font-display); text-align: right; }

/* ============ Performance ============ */
.perf-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 40px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 6px;
  width: max-content;
  margin-left: auto; margin-right: auto;
}
.perf-tab {
  background: none; border: none;
  color: var(--text-2);
  font-weight: 600; font-size: 0.88rem;
  padding: 11px 26px;
  border-radius: 100px;
  transition: background 0.35s, color 0.35s;
}
.perf-tab.active { background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(124,58,237,0.4); }

.perf-panel { display: none; }
.perf-panel.active { display: block; animation: panelIn 0.5s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } }

.perf-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.perf-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex; flex-direction: column; gap: 5px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.perf-card:hover { transform: translateY(-5px); border-color: rgba(124,58,237,0.35); }
.pf-platform {
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 10px;
}
.perf-card > strong { font-family: var(--font-display); font-size: 2.1rem; line-height: 1.05; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.perf-card > span { font-weight: 600; font-size: 0.95rem; }
.pf-extra { display: flex; flex-direction: column; gap: 4px; margin-top: 12px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); }
.pf-extra span { font-size: 0.8rem; color: var(--text-2); }
.up { color: #34d399; font-size: 0.78em; font-weight: 700; }

.proof-gallery { margin-top: 70px; }
.proof-gallery h3 { text-align: center; font-size: 1.3rem; margin-bottom: 28px; color: var(--text-2); font-family: var(--font); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.85rem; }
.proof-scroll {
  display: flex; gap: 18px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(124,58,237,0.5) transparent;
}
.proof-scroll figure {
  flex: 0 0 min(480px, 82vw);
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card);
  cursor: zoom-in;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.proof-scroll figure:hover { transform: translateY(-5px); border-color: rgba(124,58,237,0.4); }
.proof-scroll img { width: 100%; aspect-ratio: 3/2; object-fit: cover; object-position: top; }
.proof-scroll figcaption { padding: 13px 18px; font-size: 0.82rem; color: var(--text-2); }

/* ============ Brands ============ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.brand-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.brand-card:hover { transform: translateY(-6px) scale(1.02); border-color: rgba(124,58,237,0.4); box-shadow: 0 20px 44px rgba(0,0,0,0.45); }
.brand-logo {
  width: 100%; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 10px 14px;
}
.brand-logo img { max-height: 44px; max-width: 130px; object-fit: contain; }
.brand-logo:has(.brand-logo-text), .brand-logo-text { background: none; }
.brand-logo-text {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-card span { font-size: 0.85rem; font-weight: 600; color: var(--text-2); }

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,0.4); background: #1a1e26; }
.sv-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.06rem; margin-bottom: 9px; }
.service-card p { font-size: 0.85rem; color: var(--text-2); }

/* ============ Why ============ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.why-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.why-card::before {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.18), transparent 70%);
  top: -60px; right: -60px;
  transition: transform 0.5s var(--ease);
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,0.4); }
.why-card:hover::before { transform: scale(1.6); }
.why-card h3 { font-size: 1.3rem; margin-bottom: 12px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.why-card p { font-size: 0.9rem; color: var(--text-2); }

/* ============ Videos ============ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}
.video-card {
  position: relative;
  aspect-ratio: 9 / 14;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 100% at 20% 0%, rgba(124,58,237,0.25), transparent 55%),
    radial-gradient(120% 120% at 90% 100%, rgba(37,99,235,0.22), transparent 55%),
    var(--card);
  border: 1px solid var(--card-border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.video-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55));
}
.video-card:hover { transform: translateY(-7px) scale(1.02); border-color: rgba(124,58,237,0.5); box-shadow: 0 26px 54px rgba(0,0,0,0.55); }
.vc-play {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 1;
  transition: transform 0.35s var(--ease), background 0.35s;
}
.video-card:hover .vc-play { transform: scale(1.15); background: var(--accent); }
.vc-label { z-index: 1; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 0.05em; }

/* ============ About ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.about-quote {
  position: absolute;
  bottom: -26px; left: 8%; right: -6%;
  padding: 22px 26px;
  border-radius: 18px;
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin: 14px 0 22px; }
.about-copy > p { color: var(--text-2); margin-bottom: 18px; }
.about-values { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.value {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px 22px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  font-size: 0.88rem;
  transition: border-color 0.3s, transform 0.3s;
}
.value:hover { border-color: rgba(124,58,237,0.35); transform: translateX(6px); }
.value strong { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-family: var(--font-display); }
.value span { color: var(--text-2); }

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 0 26px;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(124,58,237,0.4); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  position: relative;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), background 0.35s;
}
.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 11px; height: 1.6px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-plus { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }
.faq-item p { padding: 0 0 24px; color: var(--text-2); font-size: 0.92rem; max-width: 90%; }

/* ============ Contact ============ */
.contact { padding-bottom: 130px; }
.contact-card {
  position: relative;
  background:
    radial-gradient(90% 130% at 50% -30%, rgba(124,58,237,0.22), transparent 60%),
    var(--surface);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 36px;
  padding: clamp(50px, 8vw, 90px) clamp(24px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.9), transparent);
}
.contact-card h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 16px 0 18px; }
.contact-card > p { color: var(--text-2); margin-bottom: 38px; }
.contact-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.contact-socials { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.contact-socials a {
  font-size: 0.9rem; font-weight: 600;
  color: var(--text-2);
  transition: color 0.25s, transform 0.25s;
}
.contact-socials a:hover { color: var(--text); transform: translateY(-2px); }

/* ============ Footer ============ */
.footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 54px clamp(20px, 5vw, 56px); }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-inner p { color: var(--text-2); font-size: 0.88rem; }
.footer-links { display: flex; gap: 26px; margin: 8px 0; }
.footer-links a { font-size: 0.86rem; color: var(--text-2); transition: color 0.25s; }
.footer-links a:hover { color: var(--text); }
.footer-inner small { color: rgba(156,163,175,0.55); font-size: 0.76rem; }

/* ============ Lightbox ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
  padding: 4vw;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 18px; box-shadow: 0 40px 100px rgba(0,0,0,0.8); }
.lightbox-close {
  position: absolute; top: 26px; right: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: background 0.3s, transform 0.3s;
}
.lightbox-close:hover { background: var(--accent); transform: rotate(90deg); }

/* ============ Reveal defaults (JS enhances) ============ */
.reveal { opacity: 1; transform: none; }
.js-anim .reveal { opacity: 0; transform: translateY(34px); }
.js-anim .reveal.shown, .reveal.shown { opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 70px; }
  .hero-bio { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-proof { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-card { width: min(340px, 84vw); }
  .chip-1 { left: -6%; }
  .chip-2 { right: -5%; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .aud-age { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-quote { right: 4%; left: 4%; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(320px, 80vw);
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 110px 40px;
    gap: 26px;
    transition: right 0.45s var(--ease);
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-burger { display: flex; z-index: 110; }
  .nav-actions .btn { display: none; }

  .audience-grid { grid-template-columns: 1fr; }
  .pc-follow { text-align: left; margin-left: 0; }
  .pc-head { flex-wrap: wrap; }
  .hero { padding-top: 110px; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .proof-sep { display: none; }
  .hero-proof { gap: 20px; }
  .value { grid-template-columns: 1fr; gap: 6px; }
  .section { padding: 70px 20px; }
  .contact-actions .btn { width: 100%; justify-content: center; }
  .float-chip { padding: 9px 13px; }
  .chip-num { font-size: 0.95rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
