/* ==============================
   SPOTSTUDIO — Theme CSS
   ============================== */

:root {
  --bg: #0F0F0F;
  --bg-alt: #181818;
  --fg: #F5F0E8;
  --fg-dim: rgba(245,240,232,0.55);
  --accent: #FF5C00;
  --accent-dim: rgba(255,92,0,0.18);
  --border: rgba(245,240,232,0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,92,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(255,92,0,0.3);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-dim);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.hero-price {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-cta-note {
  font-size: 0.85rem;
  color: var(--fg-dim);
}

/* Phone mockup */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-frame {
  position: relative;
  width: 220px;
  height: 460px;
  background: #1a1a1a;
  border-radius: 36px;
  border: 2px solid rgba(255,92,0,0.25);
  padding: 16px 12px;
  box-shadow: 0 0 60px rgba(255,92,0,0.15), 0 40px 80px rgba(0,0,0,0.6);
}

.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(255,92,0,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px;
}

.video-card {
  background: #1e1e1e;
  border-radius: 14px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}

.video-card-2 { opacity: 0.75; }

.video-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.vid-2 { background: #E91E8C; }

.video-thumb {
  height: 70px;
  background: #2a2a2a;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.thumb-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,92,0,0.4) 0%, rgba(255,92,0,0.1) 100%);
}

.tg-2 {
  background: linear-gradient(135deg, rgba(233,30,140,0.4) 0%, rgba(233,30,140,0.1) 100%);
}

.thumb-barber-icon {
  position: absolute;
  bottom: 6px; right: 8px;
  width: 28px; height: 28px;
  background: rgba(255,92,0,0.25);
  border: 2px solid rgba(255,92,0,0.5);
  border-radius: 50%;
}

.thumb-nail-icon {
  position: absolute;
  bottom: 6px; right: 8px;
  width: 28px; height: 28px;
  background: rgba(233,30,140,0.25);
  border: 2px solid rgba(233,30,140,0.5);
  border-radius: 50%;
}

.video-info { }

.vi-handle {
  font-size: 0.65rem;
  color: var(--fg);
  font-weight: 500;
  margin-bottom: 4px;
}

.vi-stat {
  font-size: 0.6rem;
  color: var(--fg-dim);
  display: inline;
}

.vi-stat + .vi-stat::before { content: ' · '; }

.vi-views, .vi-likes { color: var(--fg); font-weight: 500; }

/* Social row */
.hero-social-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.social-count {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sc-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--fg);
}

.sc-label {
  font-size: 0.75rem;
  color: var(--fg-dim);
}

.social-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Problem ── */
.problem {
  padding: 120px 48px;
  background: var(--bg-alt);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.problem-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
  max-width: 600px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.problem-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-icon {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.3);
}

.pc-text {
  font-size: 0.95rem;
  color: var(--fg-dim);
  line-height: 1.5;
}

.problem-arrow {
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(255,92,0,0.08) 0%, rgba(255,92,0,0.03) 100%);
  border: 1px solid rgba(255,92,0,0.2);
  border-radius: 16px;
  max-width: 640px;
}

.pa-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.pa-text {
  font-size: 1.05rem;
  color: var(--fg);
  line-height: 1.65;
}

/* ── Services ── */
.services {
  padding: 120px 48px;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 72px;
}

.services-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.services-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  max-width: 600px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.si-alt { background: rgba(255,255,255,0.015); padding: 40px 32px; border-radius: 12px; border-top: 1px solid var(--border); }

.si-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
  padding-top: 4px;
}

.si-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.si-desc {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.65;
  max-width: 520px;
}

.si-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,92,0,0.2);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── Pricing ── */
.pricing {
  padding: 120px 48px;
  background: var(--bg-alt);
}

.pricing-inner { max-width: 1200px; margin: 0 auto; }

.pricing-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.pricing-sub {
  color: var(--fg-dim);
  margin-bottom: 64px;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.tier {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}

.tier-hot {
  border-color: var(--accent);
  background: rgba(255,92,0,0.05);
}

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
}

.tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tier-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 28px;
}

.tp-per {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-dim);
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.tier-features li {
  font-size: 0.9rem;
  color: var(--fg-dim);
  padding-left: 20px;
  position: relative;
}

.tier-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

.tier-note {
  font-size: 0.75rem;
  color: var(--fg-dim);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.pricing-math {
  background: linear-gradient(135deg, rgba(255,92,0,0.06) 0%, rgba(255,92,0,0.02) 100%);
  border: 1px solid rgba(255,92,0,0.15);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.pm-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.pm-calc {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.pm-result { color: var(--accent); }

/* ── Proof ── */
.proof { padding: 120px 48px; }
.proof-inner { max-width: 1200px; margin: 0 auto; }

.proof-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.proof-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.025em;
  max-width: 580px;
  margin-bottom: 64px;
  line-height: 1.2;
}

.proof-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

.proof-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.pc-large { grid-row: 1; }

.pc-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg);
  margin-bottom: 20px;
  font-style: italic;
}

.pc-attribution {
  font-size: 0.8rem;
  color: var(--fg-dim);
  margin-bottom: 20px;
  font-weight: 500;
}

.pc-results {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.pr-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
}

.pr-label { font-size: 0.75rem; color: var(--fg-dim); }
.pr-sep { color: var(--fg-dim); font-size: 0.75rem; }

.proof-platforms {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pp-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.pp-list { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.pp-item {
  font-size: 0.85rem;
  color: var(--fg);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
}

.pp-sep { color: var(--fg-dim); font-size: 0.7rem; }

/* ── Closing ── */
.closing {
  padding: 120px 48px;
  background: var(--bg-alt);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.closing-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.closing-sub {
  color: var(--fg-dim);
  margin-bottom: 40px;
  line-height: 1.65;
}

.closing-vibe {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.cv-line {
  width: 4px;
  height: 40px;
  background: var(--accent);
  border-radius: 999px;
}

.cv-text {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* Closing phone */
.closing-visual {
  display: flex;
  justify-content: center;
}

.closing-phone {
  width: 200px;
  height: 400px;
  background: #1a1a1a;
  border-radius: 32px;
  border: 1px solid rgba(255,92,0,0.2);
  padding: 12px;
  box-shadow: 0 0 40px rgba(255,92,0,0.1);
}

.cp-screen {
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 22px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cps-header {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
}

.cps-streak {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
}

.cs-label {
  font-size: 0.7rem;
  color: var(--fg-dim);
}

.cs-fire {
  width: 16px; height: 20px;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.8;
}

.cps-posts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cp-post {
  height: 30px;
  background: #2a2a2a;
  border-radius: 6px;
}

.cps-msg {
  font-size: 0.65rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: auto;
}

/* ── Footer ── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ft-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}

.ft-desc {
  font-size: 0.85rem;
  color: var(--fg-dim);
  max-width: 360px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-dim);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 120px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .hero-headline { font-size: 2.8rem; }
  .hero-social-row { gap: 20px; flex-wrap: wrap; }
  .sc-num { font-size: 1.4rem; }
  .problem { padding: 80px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services { padding: 80px 24px; }
  .service-item { grid-template-columns: 40px 1fr; gap: 16px; }
  .si-tag { display: none; }
  .pricing { padding: 80px 24px; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .pricing-math { flex-direction: column; gap: 16px; }
  .proof { padding: 80px 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .closing-inner { grid-template-columns: 1fr; }
  .footer { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .phone-frame { width: 180px; height: 380px; }
}
