/* ============================
   ClipLocal — Theme CSS
   ============================ */

:root {
  --bg: #0D0D10;
  --bg-alt: #131318;
  --surface: #1A1A20;
  --lime: #B5FF3E;
  --amber: #FF8C42;
  --white: #FAFAF9;
  --muted: #888895;
  --border: #2A2A32;
}

/* ============================
   Base
   ============================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ============================
   Nav
   ============================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(13,13,16,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { color: var(--lime); font-size: 18px; line-height: 1; }
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.03em;
  color: var(--white);
}
.nav-badge {
  font-size: 12px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 99px;
  letter-spacing: 0.01em;
}

/* ============================
   Manifesto
   ============================ */
.manifesto {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(181,255,62,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(255,140,66,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.manifesto-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.manifesto-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}
.manifesto-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 32px;
}
.manifesto-headline .line { display: block; }
.manifesto-headline .line-2 { color: var(--lime); }
.manifesto-headline .line-3 { color: var(--amber); font-style: italic; }
.manifesto-sub {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 48px;
}
.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================
   Platforms
   ============================ */
.platforms { padding: 100px 48px; background: var(--bg-alt); }
.platforms-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.platforms-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 56px;
  max-width: 500px;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.platform-card {
  background: var(--bg);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}
.platform-card:hover { background: var(--surface); }
.platform-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.tiktok .platform-icon { background: rgba(0,0,0,0.6); color: #fff; }
.reels .platform-icon { background: rgba(131,58,180,0.25); color: #C13584; }
.shorts .platform-icon { background: rgba(255,0,0,0.15); color: #FF0000; }
.platform-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.platform-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}
.platform-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--lime);
  background: rgba(181,255,62,0.1);
  border: 1px solid rgba(181,255,62,0.2);
  padding: 4px 10px;
  border-radius: 99px;
  display: inline-block;
}

/* ============================
   Playbooks
   ============================ */
.playbooks { padding: 100px 48px; }
.playbooks-inner { max-width: 1100px; margin: 0 auto; }
.playbooks-header { margin-bottom: 64px; }
.playbooks-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.playbooks-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}
.playbook-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.playbook-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 200px 1fr 260px;
  gap: 48px;
  align-items: start;
}
.playbook-meta { display: flex; flex-direction: column; gap: 10px; }
.playbook-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.playbook-icon-barbers { color: var(--amber); display: block; }
.playbook-icon-restaurants { color: #FF6B6B; display: block; }
.playbook-icon-gym { color: var(--lime); display: block; }
.playbook-icon-realtor { color: #A78BFA; display: block; }
.playbook-icon-auto { color: #60A5FA; display: block; }
.playbook-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.playbook-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}
.playbook-hooks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
  align-content: flex-start;
}
.hook-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--white);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* ============================
   Sample
   ============================ */
.sample {
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.sample::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(181,255,62,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.sample-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.sample-glow {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,255,62,0.12) 0%, transparent 70%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  pointer-events: none;
  z-index: -1;
}
.sample-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}
.sample-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 48px;
}
.sample-cta { display: flex; justify-content: center; }
.sample-pill {
  background: var(--lime);
  color: #0D0D10;
  padding: 16px 36px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sample-pill-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.sample-pill-sub {
  font-size: 12px;
  opacity: 0.6;
}

/* ============================
   Closing
   ============================ */
.closing {
  padding: 80px 48px 100px;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-statement {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 580px;
}

/* ============================
   Footer
   ============================ */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}
.footer-meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .manifesto { padding: 60px 24px; }
  .manifesto-stats { gap: 20px; flex-wrap: wrap; }
  .platforms { padding: 60px 24px; }
  .platform-grid { grid-template-columns: 1fr; }
  .playbooks { padding: 60px 24px; }
  .playbook-item { grid-template-columns: 1fr; gap: 16px; }
  .playbook-hooks { flex-direction: row; }
  .sample { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .manifesto-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-div { display: none; }
}
