/* ===== Base ===== */
:root {
  --bg: #0c0c10;
  --bg-raised: #14141a;
  --bg-card: #191922;
  --text: #f4f4f6;
  --text-dim: #9b9ba6;
  --accent: #b6ff3b;
  --accent-text: #0c0c10;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 20px;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

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

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

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 72px 0;
}

.section-head {
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
}

.section-head p {
  color: var(--text-dim);
  margin-top: 8px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.85rem;
  background: var(--accent);
  color: var(--accent-text);
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(12, 12, 16, 0.85);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
}

/* ===== Hero ===== */
.hero {
  padding: 96px 0 64px;
  text-align: center;
}

.hero-photo {
  display: block;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 0 48px rgba(182, 255, 59, 0.25);
  margin: 0 auto 28px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-sub {
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 32px 0;
}

.stat {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ===== Showreel ===== */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.reel-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-sound {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.reel-sound:hover {
  border-color: var(--accent);
}

.reel-sound.is-on {
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}

.reel-card.is-placeholder .reel-sound {
  display: none;
}

.reel-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 40px 16px 14px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

.reel-card.is-placeholder .reel-label {
  display: none;
}

/* Placeholder state: applied by JS when a video file is missing */
.reel-card.is-placeholder video {
  display: none;
}

.reel-card.is-placeholder::after {
  content: 'Coming soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  background:
    radial-gradient(circle at 30% 20%, rgba(182, 255, 59, 0.06), transparent 60%),
    var(--bg-card);
}

/* Play hint on cards with real video */
.reel-card:not(.is-placeholder)::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.25);
  opacity: 1;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.reel-card:not(.is-placeholder).is-playing::before {
  opacity: 0;
}

/* ===== Why ===== */
.why-body {
  max-width: 720px;
}

.why-lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-body p + p {
  margin-top: 16px;
  color: var(--text-dim);
}

/* ===== Channel showcase (YouTube mockup) ===== */
.yt-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.yt-card:hover,
.tt-card:hover {
  border-color: var(--accent);
}

.yt-banner {
  aspect-ratio: 2276 / 377;
  min-height: 110px;
  position: relative;
  background: #000;
  overflow: hidden;
}

.yt-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px 8px;
}

.yt-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-raised);
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.yt-meta {
  flex: 1;
  min-width: 0;
}

.yt-meta h3 {
  font-size: 1.3rem;
}

.yt-handle {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 2px;
}

.yt-handle span {
  margin: 0 4px;
}

.yt-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 6px;
}

.yt-subscribe {
  flex-shrink: 0;
  background: #f1f1f1;
  color: #0f0f0f;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 999px;
}

.yt-tabs {
  display: flex;
  gap: 28px;
  padding: 18px 28px 0;
  border-top: 1px solid transparent;
  overflow-x: auto;
}

.yt-tabs span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  padding-bottom: 14px;
  white-space: nowrap;
}

.yt-tabs span.active {
  color: var(--text);
  border-bottom: 2px solid var(--text);
}

/* TikTok profile mockup */
.tt-card {
  display: block;
  color: inherit;
  text-decoration: none;
  margin-top: 24px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s ease;
}

.tt-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tt-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.tt-meta {
  flex: 1;
  min-width: 0;
}

.tt-meta h3 {
  font-size: 1.3rem;
}

.tt-handle {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 2px;
}

.tt-handle span {
  margin: 0 4px;
}

.tt-bio {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 6px;
}

.tt-follow {
  flex-shrink: 0;
  background: #fe2c55;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 26px;
  border-radius: 8px;
}

.tt-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.9rem;
}

.tt-stats strong {
  color: var(--text);
  font-family: var(--font-display);
  margin-right: 6px;
}

.tt-videos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tt-videos span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
}

.tt-videos .tt-videos-note {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 400;
  padding: 0;
}

@media (max-width: 640px) {
  .yt-header {
    flex-wrap: wrap;
    gap: 14px;
    padding: 18px 20px 4px;
  }

  .yt-avatar {
    width: 64px;
    height: 64px;
    margin-top: -32px;
  }

  .yt-tabs {
    gap: 20px;
    padding: 12px 20px 0;
  }

  .tt-card {
    padding: 20px;
  }

  .tt-header {
    flex-wrap: wrap;
    gap: 14px;
  }

  .tt-stats {
    gap: 20px;
  }
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: var(--accent);
}

.service-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 0.9rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin: 12px 0 10px;
}

.service-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* ===== Process ===== */
.process-steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.process-steps li {
  counter-increment: step;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}

.process-steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 16px;
}

.process-steps h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.process-steps p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* ===== Contact ===== */
.contact {
  text-align: center;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 72px 32px;
  margin-bottom: 48px;
}

.contact h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.contact > p {
  color: var(--text-dim);
  margin-bottom: 32px;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 32px 24px 48px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ===== Mobile ===== */
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  section {
    padding: 48px 0;
  }

  .hero {
    padding: 64px 0 40px;
  }

  .reel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .reel-card {
    border-radius: 18px;
  }
}
