/* ═══════════════════════════════════════
   VIABLE — SHARED STYLESHEET
   Design tokens, components, layout
═══════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --black:   #0C0C0B;
  --white:   #F8F8F5;
  --off:     #F0F0EC;
  --g100:    #E2E2DC;
  --g300:    #BBBBB2;
  --g500:    #7A7A72;
  --g700:    #3A3A35;
  --lime:    #C9F53C;
  --lime-dk: #9DC02A;
  --amber:   #F5A623;
  --coral:   #FF4A35;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  60px;
  --space-2xl: 80px;
  --space-3xl: 120px;
}

/* ─── RESET ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0 !important;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50% !important;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
  mix-blend-mode: difference;
}
.cursor.grow { width: 32px; height: 32px; }

/* ─── NAVIGATION ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-xl);
  background: rgba(12, 12, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease;
}
.site-nav.scrolled { border-bottom-color: rgba(255, 255, 255, 0.08); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-logo:hover { color: var(--lime); }
.nav-logo-dot { color: var(--lime); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g500);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--lime);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--lime);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover {
  background: var(--lime-dk);
  transform: translateY(-1px);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--black);
  padding: 56px var(--space-xl) 40px;
  border-top: 1px solid var(--g700);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: 56px;
}
.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}
.footer-wordmark:hover { color: var(--lime); }
.footer-wordmark-dot { color: var(--lime); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--g700);
  line-height: 1.5;
}
.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--g700);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: var(--g500);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--g700);
}
.footer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50% !important;
  background: var(--lime);
}

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--lime);
  padding: 16px 32px;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background: var(--lime-dk);
  transform: translateY(-2px);
}

.btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--g700);
  background: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover { color: var(--white); border-color: var(--g500); }
.btn-ghost .arrow { transition: transform 0.2s ease; display: inline-block; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn-outline {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(201, 245, 60, 0.4);
  padding: 14px 28px;
  display: inline-block;
  background: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-outline:hover {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

/* ─── SECTION HEADER ROW ─── */
.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.section-num {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--g700);
}
.section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g500);
}
.section-rule {
  flex: 1;
  height: 1px;
  background: var(--g700);
  max-width: 200px;
}

/* ─── SECTION TITLES ─── */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  letter-spacing: 0.04em;
  line-height: 0.92;
  margin-bottom: 16px;
}

/* ─── SCORE BADGE ─── */
.score-badge {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--lime);
  letter-spacing: -0.02em;
  line-height: 1;
}
.score-badge .denom {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--g700);
}

/* ─── FREE TAG ─── */
.tag-free {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--lime);
  padding: 5px 12px;
  display: inline-block;
}

/* ─── LOGO TICKER ─── */
.ticker {
  background: var(--lime);
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
  white-space: nowrap;
}
.ticker-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.ticker-logo:hover {
  opacity: 1;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── EMAIL MODAL OVERLAY ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 11, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--black);
  border: 1px solid var(--g700);
  max-width: 500px;
  width: 100%;
  padding: 48px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--g500);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
}
.modal-close:hover { color: var(--white); }
.modal-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 8px;
}
.modal-subtitle {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: var(--g500);
  line-height: 1.6;
  margin-bottom: 32px;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--g700);
  padding: 16px 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  color: var(--g300);
  width: 100%;
  transition: border-color 0.2s ease;
  outline: none;
}
.modal-input::placeholder { color: var(--g700); }
.modal-input:focus { border-color: var(--lime); }
.modal-submit {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--lime);
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 100%;
}
.modal-submit:hover {
  background: var(--lime-dk);
  transform: translateY(-1px);
}
.modal-note {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--g700);
  margin-top: 12px;
}
.modal-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.modal-success.active { display: block; }
.modal-success-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.modal-success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--lime);
  margin-bottom: 12px;
}
.modal-success-text {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: var(--g500);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ─── BLINK ANIMATION ─── */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.blink-dot {
  width: 7px;
  height: 7px;
  border-radius: 50% !important;
  background: var(--lime);
  animation: blink 2s ease-in-out infinite;
  display: inline-block;
}

/* ─── FADE UP ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up-1 { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.fade-up-2 { animation: fadeUp 0.8s ease both; animation-delay: 0.2s; }
.fade-up-3 { animation: fadeUp 0.8s ease both; animation-delay: 0.4s; }
.fade-up-4 { animation: fadeUp 0.8s ease both; animation-delay: 0.6s; }

/* ─── PDP LAYOUT ─── */
.pdp-hero {
  background: var(--black);
  min-height: 60vh;
  padding: 140px var(--space-xl) 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.pdp-hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(201, 245, 60, 0.05) 0%, transparent 65%);
  pointer-events: none;
}
.pdp-hero-bg-text {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  letter-spacing: 0.04em;
  color: rgba(201, 245, 60, 0.04);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.pdp-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.pdp-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 24px;
}
.pdp-hook {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--g300);
  max-width: 640px;
  line-height: 1.4;
  margin-bottom: 40px;
}
.pdp-hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.pdp-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pdp-meta-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g700);
}
.pdp-meta-value {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: var(--g300);
}

/* ─── SCORECARD TABLE ─── */
.scorecard-section {
  background: var(--off);
  padding: var(--space-3xl) var(--space-xl);
}
.scorecard-table {
  width: 100%;
  border-collapse: collapse;
}
.scorecard-table th {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g500);
  padding: 12px 20px;
  border-bottom: 2px solid var(--g100);
  text-align: left;
}
.scorecard-table th:last-child { text-align: right; }
.scorecard-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--g100);
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: var(--g700);
}
.scorecard-table tr:hover td { background: rgba(0,0,0,0.02); }
.scorecard-criterion {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: var(--black);
  font-weight: 400;
}
.scorecard-note {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  color: var(--g500);
}
.scorecard-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--lime);
  text-align: right;
  white-space: nowrap;
}
.score-bar-wrap { width: 120px; }
.score-bar-bg {
  background: var(--g100);
  height: 4px;
  width: 100%;
}
.score-bar-fill {
  background: var(--lime);
  height: 4px;
  transition: width 0.6s ease;
}
.scorecard-total-row td {
  border-top: 2px solid var(--g300);
  border-bottom: none;
  padding-top: 20px;
}
.scorecard-total-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--black);
}
.scorecard-total-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--lime);
  text-align: right;
}

/* ─── ANALYSIS SECTIONS ─── */
.analysis-section {
  padding: var(--space-3xl) var(--space-xl);
  border-bottom: 1px solid var(--g100);
}
.analysis-section.dark {
  background: var(--black);
  border-bottom-color: var(--g700);
}
.analysis-section.light { background: var(--white); }
.analysis-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 32px;
}
.analysis-section.dark .analysis-title { color: var(--white); }
.analysis-section.light .analysis-title { color: var(--black); }
.analysis-body {
  font-family: 'Courier Prime', monospace;
  font-size: 15px;
  color: var(--g500);
  line-height: 1.7;
  max-width: 760px;
}
.analysis-section.dark .analysis-body { color: var(--g300); }
.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}
.analysis-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--g700);
}
.analysis-section.light .analysis-card {
  background: var(--off);
  border-color: var(--g100);
}
.analysis-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.analysis-section.light .analysis-card-label { color: var(--g500); }
.analysis-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.analysis-section.light .analysis-card-value { color: var(--black); }
.analysis-card-desc {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  color: var(--g500);
  line-height: 1.5;
}
.analysis-pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: var(--g300);
  line-height: 1.5;
  border-left: 2px solid var(--lime);
  padding-left: 24px;
  margin: 40px 0;
  max-width: 680px;
}
.analysis-section.light .analysis-pullquote { color: var(--g700); }

/* ─── DOWNLOAD CTA SECTION ─── */
.download-cta-section {
  background: var(--lime);
  padding: var(--space-3xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}
.download-cta-section::before {
  content: 'VIABLE';
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 260px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.download-cta-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
}
.download-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--black);
  margin-bottom: 20px;
}
.download-cta-desc {
  font-family: 'Courier Prime', monospace;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}
.download-btn {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--black);
  border: none;
  padding: 18px 40px;
  cursor: pointer;
  transition: background 0.2s ease;
  display: inline-block;
}
.download-btn:hover { background: var(--g700); }

/* ─── TEMPLATE PDP ─── */
.template-preview-section {
  background: var(--off);
  padding: var(--space-3xl) var(--space-xl);
}
.template-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}
.template-include-item {
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--g100);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.template-include-check {
  color: var(--lime);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.template-include-text {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: var(--g700);
  line-height: 1.5;
}

/* ─── ALL PLAYBOOKS PAGE ─── */
.playbooks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* ─── PLAYBOOK TILE ─── */
.playbook-tile {
  background: var(--white);
  border: 1px solid var(--g100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.playbook-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12, 12, 11, 0.08);
  border-color: rgba(201, 245, 60, 0.4);
}
.playbook-tile:hover .playbook-tile-cta {
  background: var(--lime);
  color: var(--black);
}
.playbook-tile:hover .playbook-cover-img {
  transform: scale(1.03);
}
.playbook-cover {
  position: relative;
  overflow: hidden;
}
.playbook-cover-img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.playbook-cover-score {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--lime);
  background: var(--black);
  padding: 6px 12px;
  line-height: 1;
}
.playbook-cover-denom {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--g500);
}
.playbook-tile-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.playbook-tile-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1;
}
.playbook-tile-hook {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--g500);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}
.playbook-tile-cta {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--lime);
  padding: 14px;
  text-align: center;
  display: block;
  transition: background 0.25s ease, color 0.25s ease;
}

/* ─── TEMPLATE CARD ─── */
.template-card {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--g700);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.template-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--lime);
  transition: height 0.3s ease;
}
.template-card:hover {
  border-color: rgba(201, 245, 60, 0.3);
  background: rgba(201, 245, 60, 0.02);
}
.template-card:hover::after { height: 3px; }
.template-card:hover .template-card-link { color: var(--g300); }
.template-card-icon {
  font-size: 22px;
  color: var(--g500);
  margin-bottom: 20px;
}
.template-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1;
}
.template-card-desc {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  color: var(--g500);
  line-height: 1.6;
  flex: 1;
}
.template-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--g700);
  margin-top: 20px;
}
.template-card-link {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--g700);
  transition: color 0.2s ease;
}

/* ─── PRICING CARDS ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pricing-card {
  padding: 40px 36px;
  border: 1px solid var(--g100);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover { border-color: rgba(201, 245, 60, 0.3); }
.pricing-card.featured {
  background: var(--black);
  border-color: var(--black);
}
.pricing-card.featured:hover { box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3); }
.pricing-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g300);
  margin-bottom: 16px;
}
.pricing-card.featured .pricing-label { color: var(--lime); }
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card.featured .pricing-price { color: var(--lime); }
.pricing-price-sub {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--g300);
  margin-bottom: 20px;
}
.pricing-card.featured .pricing-price-sub { color: var(--g700); }
.pricing-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1;
}
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-desc {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  color: var(--g500);
  line-height: 1.6;
  flex: 1;
}
.pricing-includes {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-include {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  color: var(--g500);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}
.pricing-check { color: var(--g500); flex-shrink: 0; margin-top: 2px; }
.pricing-card.featured .pricing-check { color: var(--lime); }
.pricing-card.featured .pricing-include { color: var(--g300); }
.pricing-action {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px;
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid var(--g100);
  color: var(--g500);
  background: var(--off);
  text-decoration: none;
  display: block;
  transition: background 0.2s ease, color 0.2s ease;
}
.pricing-card.featured .pricing-action {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}
.pricing-card.featured .pricing-action:hover { background: var(--lime-dk); }
.pricing-action:hover { background: var(--g100); color: var(--black); }

/* ─── AGENCY UPSELL ─── */
.agency-section {
  background: var(--black);
  padding: var(--space-3xl) var(--space-xl);
}
.agency-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.agency-text {
  max-width: 640px;
}
.agency-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 16px;
}
.agency-desc {
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  color: var(--g500);
  line-height: 1.65;
  max-width: 480px;
}
.agency-action {
  flex-shrink: 0;
}
.agency-cta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--lime);
  padding: 18px 36px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, transform 0.2s ease;
}
.agency-cta:hover {
  background: var(--lime-dk);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .agency-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

/* ─── NEWSLETTER SECTION ─── */
.newsletter-section {
  background: var(--lime);
  padding: var(--space-3xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: 'VIABLE';
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 260px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.newsletter-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}
.newsletter-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 80px);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--black);
  margin-bottom: 20px;
}
.newsletter-proof {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}
.newsletter-desc {
  font-family: 'Courier Prime', monospace;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 36px;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
}
.newsletter-input {
  flex: 1;
  background: var(--black);
  border: none;
  padding: 16px 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: var(--g300);
  outline: none;
}
.newsletter-input::placeholder { color: var(--g700); }
.newsletter-submit {
  background: var(--black);
  color: var(--lime);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.newsletter-submit:hover { background: var(--g700); }
.newsletter-fine-print {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(0, 0, 0, 0.35);
  margin-top: 14px;
}

/* ─── VS TABLE ─── */
.vs-table {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 60px;
  margin-top: 48px;
}
.vs-divider {
  background: var(--g700);
  align-self: stretch;
  justify-self: center;
  width: 2px;
}
.vs-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.vs-label-them { color: var(--g700); }
.vs-label-us { color: var(--lime-dk); }
.vs-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.vs-icon-them { color: var(--g700); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.vs-icon-us { color: var(--lime-dk); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.vs-text {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  line-height: 1.5;
}
.vs-text-them { color: var(--g700); }
.vs-text-us { color: var(--g300); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  :root { --space-xl: 40px; --space-3xl: 80px; }
  body { cursor: auto; }
  .cursor { display: none; }
  .nav-links { display: none; }
  .playbooks-grid { grid-template-columns: repeat(2, 1fr); }
  .template-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .analysis-grid { grid-template-columns: 1fr; }
  .vs-table { grid-template-columns: 1fr; gap: 0; }
  .vs-divider { display: none; }
  .pdp-hero { padding-top: 112px; }
}

@media (max-width: 768px) {
  :root { --space-xl: 24px; --space-3xl: 80px; }
  .nav-links { display: none; }
  #hero { min-height: auto; padding-bottom: 32px; }
  .hero-center { padding: 32px 0 20px; justify-content: flex-start; }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero-headline { font-size: 52px !important; margin-bottom: 28px; }
  .hero-actions { gap: 16px; }
  .social-proof { gap: 16px; padding-top: 12px; }
  .social-proof-avatar { width: 30px; height: 30px; margin-left: -8px; }
  .social-proof-count { font-size: 18px; }
  .playbooks-grid { grid-template-columns: 1fr; }
  .template-cards-grid { grid-template-columns: 1fr !important; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; max-width: 100%; }
  .newsletter-input { width: 100%; }
  .newsletter-submit { width: 100%; text-align: center; }
  .ticker { height: 50px; }
  .ticker-content { gap: 32px; }
  .ticker-logo { height: 22px; }
  .template-includes { grid-template-columns: 1fr; }
  .modal-box { padding: 32px 24px; }
  .pdp-hero { padding: 112px 24px 60px; }
}
