/* =====================
   CLIPFORGE — THEME CSS
   ===================== */

:root {
  --bg: #fafaf7;
  --bg-2: #f2f2ed;
  --fg: #0f0f0f;
  --fg-2: #555550;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --border: #e2e2dc;
  --card: #ffffff;
  --radius: 4px;
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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 {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-2);
  font-weight: 300;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav-link:hover { color: var(--fg); }
.nav-link-cta {
  background: var(--fg);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
}
.nav-link-cta:hover { background: var(--fg-2); color: white; }

/* HERO */
.hero {
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.65;
  max-width: 420px;
}

/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.video-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.video-thumb {
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.08) 0%, transparent 60%);
}
.video-thumb.gym {
  background: linear-gradient(160deg, #e8f4e8 0%, #c8dcc8 100%);
}
.video-thumb.tattoo {
  background: linear-gradient(160deg, #f0e8f4 0%, #d8c8e8 100%);
}
.video-thumb.auto {
  background: linear-gradient(160deg, #e8eef4 0%, #c8d4e8 100%);
}
.video-thumb.realty {
  background: linear-gradient(160deg, #f4ede8 0%, #e0d0c4 100%);
}
.video-thumb.barbershop {
  background: linear-gradient(160deg, #eef4e8 0%, #d0dcc0 100%);
}
.video-thumb.restaurant {
  background: linear-gradient(160deg, #f4f0e8 0%, #e0d8c8 100%);
}
.video-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* HERO STATS */
.hero-stats {
  max-width: 1100px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
}
.stat-label {
  font-size: 13px;
  color: var(--fg-2);
  font-weight: 400;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 32px;
}

/* WHAT SECTION */
.what {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.what-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.what-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.what-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin: 12px 0 48px;
  max-width: 480px;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.what-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.what-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.what-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
}
.what-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* PRICING (HOMEPAGE SECTION) */
.pricing {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--fg);
  color: white;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.pricing-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* 3-column tier grid */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.tier {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier-featured {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-head { margin-bottom: 24px; }
.tier-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 14px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 8px;
}
.tier-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.tier-period {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
}
.tier-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}
.tier-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.tier-features li::before {
  content: '';
  width: 14px;
  height: 14px;
  min-width: 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  margin-top: 2px;
}
.tier-featured .tier-features li::before {
  background: rgba(255,255,255,0.3);
}
.tier-btn {
  display: block;
  text-align: center;
  padding: 11px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.15s ease;
}
.tier-btn:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}
.tier-btn-accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.tier-btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
}
.pricing-note {
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* PROCESS */
.process {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.process-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin: 12px 0 56px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 32px;
  border-right: 1px solid var(--border);
  padding-left: 0;
}
.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; padding-right: 0; }
.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 48px;
  color: var(--bg-2);
  line-height: 1;
}
.step-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.step-body p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* CLOSER */
.closer {
  padding: 100px 40px;
  background: var(--fg);
  color: white;
}
.closer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closer-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.closer-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
}
.closer-sigma {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.sigma {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* FOOTER */
.footer {
  padding: 28px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { gap: 8px; }
  .nav-link { font-size: 13px; }
  .nav-link-cta { padding: 7px 12px; font-size: 12px; }
  .hero { padding: 48px 20px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 40px; }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { gap: 0; }
  .stat-num { font-size: 22px; }
  .stat-sep { margin: 0 20px; }
  .what { padding: 60px 20px; }
  .what-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pricing { padding: 60px 20px; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .tier-featured { border-color: rgba(255,255,255,0.3); }
  .nav-tagline { display: none; }
  .process { padding: 60px 20px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 40px; padding-right: 0; }
  .step:last-child { border-bottom: none; padding-bottom: 0; }
  .closer { padding: 60px 20px; }
  .closer-sigma { gap: 20px; }
  .footer { padding: 20px; }
}

@media (max-width: 480px) {
  .what-grid { grid-template-columns: 1fr; }
  .pricing-num { font-size: 40px; }
}