/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0C0C0C;
  --surface: #1A1A1A;
  --surface-2: #242424;
  --accent: #FF5722;
  --accent-dim: rgba(255, 87, 34, 0.15);
  --text: #F0EDE8;
  --text-muted: #8A8783;
  --text-dim: #555250;
  --border: #2E2C2A;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
.wordmark {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1, h2, h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* === NAV === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* === HERO === */
.hero {
  padding: 8rem 1.5rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-overline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  width: fit-content;
}

.hero-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 200px;
}

/* === PHONE MOCKUP === */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.phone {
  width: 200px;
  background: #111;
  border-radius: 32px;
  border: 3px solid #2a2a2a;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
}

.phone-notch {
  width: 64px;
  height: 20px;
  background: #0a0a0a;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
}

.phone-screen {
  background: #1a1a1a;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 9/19;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.video-thumb {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2015 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 87, 34, 0.15);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.8rem;
  padding-left: 4px;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
}

.progress-fill {
  height: 100%;
  width: 35%;
  background: var(--accent);
}

.video-captions {
  position: relative;
  z-index: 2;
  padding: 1rem 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
}

.caption-line {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  font-family: 'Instrument Sans', sans-serif;
}

.caption-line-sm {
  font-size: 0.5rem;
  color: rgba(240,237,232,0.6);
  font-family: 'Instrument Sans', sans-serif;
}

.platform-badges {
  display: flex;
  gap: 0.5rem;
}

.badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.badge-tiktok { background: rgba(255, 0, 80, 0.15); color: #FF0050; border: 1px solid rgba(255,0,80,0.3); }
.badge-reels { background: rgba(131, 58, 180, 0.15); color: #C13584; border: 1px solid rgba(193,53,132,0.3); }
.badge-shorts { background: rgba(255, 0, 0, 0.12); color: #FF0000; border: 1px solid rgba(255,0,0,0.25); }

/* === CLIENTS === */
.clients {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 1.5rem;
}

.clients-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.clients-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.client-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.client-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}

.client-chip:hover {
  border-color: var(--accent);
  color: var(--text);
}

.client-icon { font-size: 0.9rem; }

/* === HOW === */
.how {
  padding: 6rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.how-header {
  max-width: 560px;
  margin-bottom: 4rem;
}

.how-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.how-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.market-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.market-block {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
}

.market-block:hover { border-color: var(--text-dim); }

.market-block--highlight {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.market-icon { font-size: 1.75rem; margin-bottom: 1rem; }

.market-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.market-block p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.market-strike {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.market-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

/* === WHAT YOU GET === */
.whatyouget {
  padding: 6rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.whatyouget-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.whatyouget-inner .section-tag { display: block; }

.whatyouget-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 3rem;
  max-width: 500px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  padding: 2rem;
  background: var(--surface);
  transition: all 0.2s;
}

.service-card:hover { background: var(--surface-2); }

.service-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === PROCESS === */
.process {
  padding: 6rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.process-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 3rem;
  max-width: 500px;
}

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

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.25rem;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 80px;
  background: var(--border);
  margin-top: 0.75rem;
}

.step-line--last { min-height: 40px; }

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === MANIFESTO === */
.manifesto {
  padding: 5rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-quote {
  margin-bottom: 2rem;
  position: relative;
}

.quote-mark {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 5rem;
  color: var(--accent);
  line-height: 0.5;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.manifesto-quote p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.manifesto-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* === CLOSING === */
.closing {
  padding: 7rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--text);
}

.closing p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.footer-wordmark {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.78rem;
  color: var(--text-dim);
  max-width: 280px;
  line-height: 1.5;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { order: -1; }
  .market-blocks { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { align-items: flex-start; }
  .hero { padding-top: 6rem; }
  .phone { width: 160px; }
}

/* === SAMPLES / PORTFOLIO === */
.samples {
  padding: 6rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.samples-inner {}

.samples-header {
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.samples-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.samples-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.sample-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Phone mockup — matches hero phone style */
.sample-phone {
  width: 100%;
  max-width: 160px;
  background: #111;
  border-radius: 28px;
  border: 3px solid #2a2a2a;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  margin: 0 auto;
}

.sample-notch {
  width: 52px;
  height: 16px;
  background: #0a0a0a;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 6px;
}

.sample-screen {
  background: #0c0c0c;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
}

.sample-screen iframe,
.sample-screen video,
.sample-screen img.sample-thumb-img {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  object-fit: cover;
}

/* AI-generated thumbnail preview overlay */
.sample-screen {
  position: relative;
}

.sample-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.2s;
  z-index: 2;
}

.sample-screen:hover .sample-play-overlay {
  background: rgba(0,0,0,0.4);
}

.sample-play-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 87, 34, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s;
}

.sample-screen:hover .sample-play-btn {
  opacity: 1;
  transform: scale(1);
}

.sample-clip-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.5rem 0.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 3;
}

.sample-clip-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.sample-duration {
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(240,237,232,0.7);
}

/* Simulated caption text overlay on the thumbnail image */
.sample-caption-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  pointer-events: none;
}

.sample-caption-text {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(255,87,34,0.3);
  background: rgba(255,87,34,0.25);
  border: 1px solid rgba(255,87,34,0.5);
  border-radius: 4px;
  padding: 0.35rem 0.75rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Platform badge (top-right of the screen) */
.sample-platform-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.sample-pb--tiktok {
  background: rgba(255,0,80,0.85);
  color: #fff;
}

.sample-pb--reels {
  background: rgba(193,53,132,0.85);
  color: #fff;
}

.sample-pb--shorts {
  background: rgba(255,0,0,0.85);
  color: #fff;
}

/* Meta info below each phone */
.sample-meta {
  padding: 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sample-meta-top {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.1rem;
}

.sample-icon {
  font-size: 0.8rem;
}

.sample-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  flex: 1;
}

.sample-badge {
  font-size: 0.55rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sample-badge--tiktok { background: rgba(255,0,80,0.15); color: #FF0050; }
.sample-badge--reels { background: rgba(131,58,180,0.15); color: #C13584; }
.sample-badge--shorts { background: rgba(255,0,0,0.12); color: #FF0000; }

.sample-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
}

.sample-caption {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* CTA row */
.samples-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.samples-cta-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  flex: 1;
}

/* CTA button (matches landing page style) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #e64a19;
  transform: translateY(-1px);
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .samples-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { order: -1; }
  .market-blocks { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { align-items: flex-start; }
  .hero { padding-top: 6rem; }
  .phone { width: 160px; }
  .samples-grid { grid-template-columns: repeat(2, 1fr); }
  .samples-cta { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .client-grid { gap: 0.5rem; }
  .client-chip { font-size: 0.75rem; padding: 0.4rem 0.75rem; }
  .samples-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .sample-phone { max-width: 130px; }
}