/* === CLIP CULT THEME === */
:root {
  --bg: #0b0b0b;
  --surface: #141414;
  --surface-2: #1e1e1e;
  --fg: #f0efe8;
  --fg-muted: #8a8a82;
  --accent: #c8ff00;
  --accent-dim: #9ab800;
  --red: #ff3d3d;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 255, 0, 0.08);
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--accent);
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(120px, 20vw, 240px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 255, 0, 0.05);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-content { max-width: 560px; }
.hero-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid rgba(200, 255, 0, 0.25);
  border-radius: 2px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline br { display: block; }
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === PHONE MOCKUP === */
.hero-visual { position: relative; }
.phone-frame {
  width: 220px;
  height: 440px;
  background: #1a1a1a;
  border-radius: 36px;
  border: 1.5px solid #2a2a2a;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 60px rgba(200, 255, 0, 0.04);
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.phone-screen {
  padding: 28px 14px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-placeholder {
  width: 100%;
  flex: 1;
  background: linear-gradient(135deg, #1c1c1c 0%, #222 100%);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: 12px;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(200, 255, 0, 0.015) 3px,
    rgba(200, 255, 0, 0.015) 4px
  );
}
.play-icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 255, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(200, 255, 0, 0.3);
}
.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid var(--accent);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}
.sound-label {
  font-size: 10px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.vid-stats {
  display: flex;
  gap: 12px;
  font-size: 10px;
  color: var(--fg);
  font-weight: 500;
}
.phone-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  width: 100%;
}
.avatar-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-caption span {
  font-size: 10px;
  color: var(--fg-muted);
}
.caption-text {
  font-size: 11px;
  color: var(--fg);
  font-style: italic;
  padding-bottom: 4px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* === SECTION LABELS === */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* === PROBLEM === */
.problem {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.problem-hook {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--fg);
}
.problem-right { display: flex; flex-direction: column; gap: 0; }
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.problem-item.highlight { border-bottom: none; margin-top: 16px; }
.problem-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  margin-top: 2px;
}
.highlight .problem-icon { color: var(--accent); }
.problem-item p { font-size: 15px; color: var(--fg-muted); line-height: 1.55; }
.highlight p { color: var(--fg); }

/* === SERVICES === */
.services { padding: 100px 48px; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.section-intro {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 60px;
  max-width: 480px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.service-card {
  background: var(--surface);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(200, 255, 0, 0.15); }
.service-num {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* === PROCESS === */
.process { padding: 100px 48px; background: var(--surface); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
}
.process-step { flex: 1; }
.step-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-body p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }
.process-arrow {
  font-size: 24px;
  color: var(--fg-muted);
  padding: 0 32px;
  flex-shrink: 0;
  padding-top: 40px;
}

/* === MANIFESTO === */
.manifesto { padding: 100px 48px; }
.manifesto-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: italic;
}
.manifesto-source {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 60px;
}
.manifesto-stat-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.m-stat {
  background: var(--surface);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
}
.m-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.m-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === CLOSING === */
.closing {
  padding: 120px 48px 100px;
  background: var(--surface);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 48px;
}
.closing-callout {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: 2px;
}
.callout-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* === FOOTER === */
.footer { padding: 60px 48px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}
.footer-desc { font-size: 13px; color: var(--fg-muted); margin-bottom: 24px; }
.footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}
.footer-links span {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.footer-copy { font-size: 11px; color: rgba(138,138,130,0.5); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-headline br { display: none; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .process-arrow { display: none; }
  .manifesto-stat-block { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero, .problem, .services, .process, .manifesto, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav { padding: 16px 24px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}