:root {
  --bg: #0D0D0D;
  --fg: #F2F2F2;
  --accent: #BFFF00;
  --accent-dim: rgba(191, 255, 0, 0.12);
  --amber: #FF8C00;
  --muted: #6B6B6B;
  --border: rgba(242,242,242,0.08);
  --card-bg: #141414;
  --card-border: rgba(242,242,242,0.06);
}

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

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

h1, h2, h3 { font-family: 'Syne', sans-serif; font-weight: 800; line-height: 1.1; }

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 48px 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-size: clamp(42px, 5vw, 72px);
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-right { position: relative; }
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.flip-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s;
}
.flip-card:hover { border-color: var(--accent); }
.flip-card-2 { transform: translateX(24px); }
.flip-card-3 { transform: translateX(48px); }
.flip-badge {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}
.flip-product-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  flex: 1;
}
.flip-stats {
  display: flex;
  gap: 16px;
}
.flip-stat { text-align: right; }
.flip-stat-val {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
}
.flip-stat-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.flip-arrow {
  color: var(--muted);
  flex-shrink: 0;
}

/* HOW */
.how {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}
.how-header { max-width: 1200px; margin: 0 auto 64px; }
.how-title {
  font-size: clamp(28px, 3vw, 48px);
  color: var(--fg);
  margin-bottom: 12px;
}
.how-sub { font-size: 18px; color: var(--muted); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.step {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 24px;
}
.step-title {
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* NICHES */
.niches {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}
.niches-header { max-width: 1200px; margin: 0 auto 56px; }
.niches-title {
  font-size: clamp(28px, 3vw, 48px);
  color: var(--fg);
  margin-bottom: 12px;
}
.niches-sub { font-size: 18px; color: var(--muted); }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.niche {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0;
  padding: 32px;
}
.niche-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.niche-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 12px;
  font-family: 'Syne', sans-serif;
}
.niche-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.niche-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 3px;
}

/* MANIFESTO */
.manifesto {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 48px;
}
.manifesto-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 48px;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.m-stat {}
.m-val {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.m-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #111 100%);
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(32px, 4vw, 64px);
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-copy {
  margin-left: auto;
  font-size: 13px;
  color: var(--muted);
}

/* TRENDING NOW */
.trending {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}
.trending-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.trending-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.trending-title {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.trending-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
}
.trending-section-wrap {
  max-width: 1200px;
  margin: 0 auto 56px;
}
.trending-section-wrap:last-child { margin-bottom: 0; }
.trending-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.trending-section-icon { font-size: 22px; line-height: 1; }
.trending-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  flex: 1;
}
.trending-section-count {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 20px;
}
.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-niche-pill {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 8px;
  border-radius: 20px;
}
.product-niche-pill.truck {
  background: rgba(255, 140, 0, 0.12);
  color: var(--amber);
}
.product-niche-pill.men {
  background: rgba(191, 255, 0, 0.1);
  color: var(--accent);
}
.product-niche-pill.tech {
  background: rgba(120, 160, 255, 0.12);
  color: #7ab0ff;
}
.product-fire {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.product-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1.2;
}
.product-hook {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.product-price-label {
  display: block;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.product-price-val {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
}
.product-cta {
  background: var(--accent);
  color: #0D0D0D;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
  /* anchor reset — .product-cta is used on both <button> and <a> */
  display: inline-block;
  text-decoration: none;
}
.product-cta:hover { opacity: 0.85; }

/* EMAIL CAPTURE */
.email-capture {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #111 0%, var(--bg) 100%);
}
.ec-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.ec-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.ec-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.ec-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.6;
}
.ec-form { margin-bottom: 12px; }
.ec-field-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  max-width: 480px;
  margin: 0 auto;
}
.ec-email-input {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.ec-email-input::placeholder { color: var(--muted); }
.ec-email-input:focus { border-color: var(--accent); }
.ec-submit-btn {
  background: var(--accent);
  color: #0D0D0D;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.ec-submit-btn:hover:not(:disabled) { opacity: 0.85; }
.ec-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.ec-loading {
  animation: spin 0.8s linear infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ec-error {
  font-size: 13px;
  color: #ff6b6b;
  margin-top: 8px;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.ec-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(191,255,0,0.3);
  border-radius: 10px;
  padding: 16px 20px;
  max-width: 480px;
  margin: 0 auto;
  animation: fadeIn 0.3s ease;
}
.ec-success-icon {
  font-size: 18px;
  flex-shrink: 0;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.ec-fine-print {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .flip-card-2 { transform: none; }
  .flip-card-3 { transform: none; }
  .how-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-stats { grid-template-columns: 1fr; }
  .nav, .hero, .how, .niches, .manifesto, .closing, .email-capture, .footer, .trending { padding-left: 24px; padding-right: 24px; }
  .trending-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .niches-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 38px; }
  .flip-stats { display: none; }
  .trending-grid { grid-template-columns: 1fr; }
  .product-bottom { flex-direction: column; align-items: flex-start; }
  .product-cta { width: 100%; text-align: center; }
}

/* PLAYBOOK */
.pb-jump-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0D0D0D;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pb-jump-nav::-webkit-scrollbar { display: none; }
.pb-jump-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 14px 20px;
  white-space: nowrap;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.pb-jump-link:hover { color: var(--fg); }
.pb-jump-link.active { color: var(--accent); border-bottom-color: var(--accent); }

.pb-header {
  padding: 48px 24px 40px;
  border-bottom: 1px solid var(--border);
}
.pb-header-inner { max-width: 720px; margin: 0 auto; }
.pb-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.pb-back:hover { color: var(--fg); }
.pb-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pb-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pb-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.pb-mini-guide {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}
.pb-inner { max-width: 720px; margin: 0 auto; }
.pb-guide-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 20px;
}
.pb-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pb-guide-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pb-guide-num {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.pb-guide-text {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.5;
}
.pb-guide-text strong { color: var(--accent); }

.pb-niche { padding: 56px 0; border-bottom: 1px solid var(--border); }
.pb-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.pb-section-icon { font-size: 28px; line-height: 1; }
.pb-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--fg);
  flex: 1;
}
.pb-section-count {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-dim);
  color: var(--accent);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pb-script-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.pb-script-card:hover { border-color: rgba(191,255,0,0.25); }
.pb-script-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.pb-script-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 20px;
}
.pb-script-tag.truck { background: rgba(255,140,0,0.12); color: var(--amber); }
.pb-script-tag.men { background: var(--accent-dim); color: var(--accent); }
.pb-script-tag.luxury { background: rgba(180,100,255,0.12); color: #c480ff; }
.pb-script-tag.streetwear { background: rgba(100,180,255,0.12); color: #7ab0ff; }
.pb-script-tag.tech { background: rgba(80,220,180,0.12); color: #50dcb4; }
.pb-script-anchor {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}
.pb-script-anchor:hover { color: var(--fg); }

.pb-script-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 14px;
}

.pb-hook {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.35;
  font-family: 'Syne', sans-serif;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--accent-dim);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
}

.pb-beats { margin-bottom: 18px; }
.pb-beat {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.55;
}
.pb-beat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
  min-width: 90px;
}

.pb-script-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pb-chip {
  font-size: 12px;
  color: var(--muted);
  background: rgba(242,242,242,0.05);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(242,242,242,0.06);
}

.pb-script-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  padding: 12px 16px;
  background: var(--accent-dim);
  border-radius: 8px;
}

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

@media (max-width: 600px) {
  .pb-guide-grid { grid-template-columns: 1fr; }
  .pb-hook { font-size: 18px; }
  .pb-beat { flex-direction: column; gap: 4px; }
  .pb-beat-label { min-width: unset; }
  .pb-script-card { padding: 20px; }
  .pb-section-title { font-size: 22px; }
}

/* Buy Now button loading state */
.product-buy-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}