/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.15s;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-left: auto;
  min-width: 0;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  text-align: center;
  white-space: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}

.nav-link:hover,
.nav-link--active {
  color: var(--fg);
  background: var(--accent-dim);
}

.nav-link--active {
  color: var(--accent);
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 4px;
  margin-left: 8px;
  transition: opacity 0.15s;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  max-width: max-content;
  box-sizing: border-box;
}

.nav-cta:hover {
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    gap: 4px;
    margin-left: 0;
  }

  .nav-links--open {
    display: flex;
  }

  .nav-link,
  .nav-cta {
    display: block;
    padding: 10px 12px;
    margin-left: 0;
    border-radius: 4px;
  }
}

/* ===== FOOTER NAV ===== */
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-nav-link:hover {
  color: var(--fg);
}

@media (max-width: 768px) {
  .footer-nav {
    display: none;
  }
}

/* ===== INNER PAGE SHARED ===== */
.inner-hero {
  padding: 80px 24px 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.inner-hero .page-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

.inner-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 760px;
}

.inner-hero h1 .accent {
  color: var(--accent);
}

.inner-hero .hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 640px;
}

/* ===== SERVICE OVERVIEW CARDS ===== */
.service-overview {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
}

.service-card {
  background: var(--bg-card);
  padding: 36px;
}

.service-card-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ===== ENGAGEMENT SHAPE ===== */
.engagement {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.engagement-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}

.engagement-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent);
}

.timeline-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== PITFALLS ===== */
.pitfalls {
  padding: 80px 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.pitfall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pitfall-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}

.pitfall-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pitfall-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.pitfall-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pitfall-label--problem {
  color: #f87171;
}

.pitfall-label--solution {
  color: #4ade80;
}

/* ===== METHODOLOGY PAGE ===== */
.method-phases {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.phase {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.phase:last-child {
  border-bottom: none;
}

.phase-label {
  padding-top: 4px;
}

.phase-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.phase-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.phase-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deliverables li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.deliverables li::before {
  content: '→';
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ===== ABOUT PAGE ===== */
.about-layout {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}

.about-bio {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-bio strong {
  color: var(--fg);
  font-weight: 600;
}

.about-sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}

.sidebar-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: var(--accent);
  margin-bottom: 20px;
}

.credential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.credential-list li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
  padding-left: 14px;
  border-left: 2px solid var(--accent-dim);
}

.credential-list li strong {
  color: var(--fg);
  display: block;
  font-size: 0.92rem;
}

/* ===== INNER CTA ===== */
.inner-cta {
  padding: 100px 0;
  text-align: center;
}

.inner-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.inner-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.inner-cta p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Shared section heading */
.section-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-subhead {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
}

/* ===== SIGNUP FORM (inner pages) ===== */
.inner-signup-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.inner-signup-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
}

.inner-signup-form input[type="email"]:focus {
  border-color: var(--accent);
}

.inner-signup-form button {
  padding: 12px 24px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity 0.15s;
}

.inner-signup-form button:hover {
  opacity: 0.85;
}

.form-message {
  margin-top: 12px;
  font-size: 0.9rem;
  min-height: 20px;
}

/* ===== INSIGHTS LIST ===== */
.insights-list {
  padding: 80px 0;
}

.insights-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 48px;
}

.insight-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.insight-card:hover {
  border-color: rgba(56, 189, 248, 0.4);
  background: var(--bg-elevated);
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.insight-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.insight-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.insight-title {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--fg);
}

.insight-excerpt {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 24px;
}

.insight-readmore {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ===== ARTICLE BODY ===== */
.article-body {
  padding: 0 0 100px;
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 0 80px;
}

.article-lead {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-bottom: 32px;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}

.article-content p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--fg);
  margin-top: 56px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.article-content strong {
  color: var(--fg);
  font-weight: 600;
}

.article-cta {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
  text-align: center;
}

.article-cta h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.article-cta p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* CTA buttons used in article-cta blocks */
.cta-btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, background 0.15s, color 0.15s;
  cursor: pointer;
}

.cta-btn--primary {
  background: var(--accent);
  color: var(--bg);
  border: none;
}

.cta-btn--primary:hover {
  opacity: 0.85;
}

.cta-btn--secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.cta-btn--secondary:hover {
  background: var(--accent);
  color: var(--bg);
}

@media (max-width: 768px) {
  .insight-card {
    padding: 28px 20px;
  }

  .article-content {
    padding: 48px 0 64px;
  }

  .article-cta {
    padding: 32px 20px;
  }

  .article-content h2 {
    margin-top: 40px;
  }
}

/* ===== TOOLKIT PRODUCT / LIBRARY ===== */
.inner-page-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero actions row */
.toolkit-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  align-items: center;
}

.toolkit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
}

/* Shared buttons */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-primary.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-primary.btn-large {
  font-size: 1.05rem;
  padding: 16px 36px;
}

.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.btn-ghost:hover {
  color: var(--accent);
}

/* Sections */
.toolkit-section {
  border-top: 1px solid var(--border);
  padding: 80px 0;
}

.toolkit-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.toolkit-section-header {
  margin-bottom: 56px;
}

/* Includes grid */
.toolkit-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.toolkit-include-item {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  padding: 36px;
  align-items: flex-start;
}

.toolkit-include-icon {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  padding-top: 4px;
  width: 24px;
}

.toolkit-include-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.toolkit-include-body p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Platform tags */
.toolkit-platform-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.platform-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.platform-tag--crd {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.platform-tag--aim {
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.platform-tag--universal {
  background: rgba(163, 163, 163, 0.1);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

/* Value section */
.toolkit-value-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.toolkit-value-text {
  padding-top: 8px;
}

.toolkit-value-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.toolkit-value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.toolkit-value-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--fg-muted);
}

.toolkit-value-list li::before {
  content: '→';
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Pricing card */
.toolkit-pricing-card {
  position: sticky;
  top: 80px;
}

.pricing-card-inner {
  background: var(--bg-card);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 10px;
  padding: 40px 36px;
}

.pricing-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.pricing-period {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.pricing-features li::before {
  content: '✓';
  color: #4ade80;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 14px;
  font-family: var(--font-mono);
}

.pricing-library-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}

.pricing-library-link:hover {
  opacity: 0.75;
}

/* Audience grid */
.toolkit-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.toolkit-audience-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}

.toolkit-audience-item h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.toolkit-audience-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* CTA subtext */
.cta-subtext {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 16px;
}

.cta-link {
  color: var(--accent);
  text-decoration: none;
}

.cta-link:hover {
  text-decoration: underline;
}

/* Toolkit access gate */
.toolkit-access-hero {
  border-bottom: 1px solid var(--border);
  max-width: 640px;
}

.toolkit-access-section {
  padding: 80px 0 120px;
}

.toolkit-access-card {
  max-width: 560px;
}

.toolkit-access-error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #fca5a5;
  margin-bottom: 24px;
  line-height: 1.6;
}

.toolkit-access-error a {
  color: var(--accent);
}

.toolkit-access-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.toolkit-access-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.toolkit-access-input {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
}

.toolkit-access-input:focus {
  border-color: var(--accent);
}

.toolkit-access-note {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-top: 20px;
}

/* Success page */
.toolkit-success-tag {
  color: #4ade80;
}

.toolkit-success-msg {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.toolkit-success-msg strong {
  color: var(--fg);
}

/* Library */
.toolkit-lib-hero {
  border-bottom: 1px solid var(--border);
}

.toolkit-lib-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.toolkit-lib-sep {
  opacity: 0.4;
}

.toolkit-lib-section {
  border-top: 1px solid var(--border);
  padding: 64px 0;
}

.toolkit-new-section {
  background: var(--bg-elevated);
}

.toolkit-lib-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.toolkit-new-header {
  margin-bottom: 32px;
}

.new-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 4px;
  padding: 5px 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.toolkit-category-group {
  margin-bottom: 56px;
}

.toolkit-category-group:last-child {
  margin-bottom: 0;
}

.toolkit-category-heading {
  font-size: 0.82rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.toolkit-template-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toolkit-template-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 28px;
  transition: border-color 0.15s, background 0.15s;
}

.toolkit-template-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  background: var(--bg-elevated);
}

.toolkit-template-info {
  flex: 1;
}

.toolkit-template-title {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.toolkit-template-desc {
  font-size: 0.87rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 12px;
  max-width: 620px;
}

.toolkit-template-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.toolkit-template-updated {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

.toolkit-new-chip {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 3px;
  padding: 2px 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.toolkit-template-action {
  flex-shrink: 0;
}

.btn-download {
  display: inline-block;
  padding: 9px 20px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-download:hover {
  opacity: 0.85;
}

.btn-coming-soon {
  display: inline-block;
  padding: 9px 20px;
  background: var(--bg-elevated);
  color: var(--fg-muted);
  font-size: 0.82rem;
  border-radius: 5px;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

/* Two-button download group (PDF + Excel/Word) */
.btn-download-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-icon {
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: -1px;
  margin-right: 4px;
  flex-shrink: 0;
}

.btn-download--pdf {
  background: var(--accent);
  color: var(--bg);
}

.btn-download--editable {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  display: inline-flex;
  align-items: center;
}

.btn-download--pdf,
.btn-download--editable {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: opacity 0.15s, background 0.15s;
  white-space: nowrap;
}

.btn-download--pdf:hover {
  opacity: 0.85;
}

.btn-download--editable:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ===== CROSS-SELL CARDS ===== */
/* Used across /products/toolkit, /assessment results, /assessment landing */
.crosssell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.crosssell-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s;
}

.crosssell-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
}

.crosssell-card--primary {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.15);
}

.crosssell-card-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.crosssell-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.crosssell-card-desc {
  font-size: 0.87rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.crosssell-card-price {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
}

.crosssell-card-btn {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s, color 0.15s;
  margin-top: 4px;
}

.crosssell-card-btn:hover {
  background: var(--accent);
  color: var(--bg);
}

.crosssell-card-btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.crosssell-card-btn--primary:hover {
  opacity: 0.88;
  background: var(--accent);
}

.crosssell-section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 6px;
}

.crosssell-section-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .crosssell-grid {
    grid-template-columns: 1fr;
  }
}

/* Toolkit responsive */
@media (max-width: 900px) {
  .toolkit-includes-grid {
    grid-template-columns: 1fr;
  }

  .toolkit-value-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .toolkit-pricing-card {
    position: static;
  }

  .toolkit-audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .toolkit-template-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .toolkit-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-card-inner {
    padding: 28px 20px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .engagement-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pitfall-grid {
    grid-template-columns: 1fr;
  }

  .phase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .inner-hero {
    padding: 56px 20px 56px;
  }

  .service-overview,
  .engagement,
  .pitfalls,
  .method-phases,
  .inner-cta {
    padding: 56px 0;
  }
}

/* ===== PLAYBOOK PAGES ===== */

/* Shared section wrapper */
.playbook-section { padding: 80px 0; }
.playbook-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.playbook-section-header { margin-bottom: 48px; }

/* Hero */
.playbook-hero { text-align: center; }
.playbook-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.playbook-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 14px;
}

/* Value grid */
.playbook-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.playbook-value-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.playbook-value-item h3 { font-size: 1rem; margin-bottom: 8px; }
.playbook-value-item p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; margin: 0; }
.playbook-value-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 3px;
}

/* Table of contents */
.playbook-toc-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.playbook-toc-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.15s;
}
.playbook-toc-item:last-child { border-bottom: none; }
.playbook-toc-item--sample { background: rgba(99, 179, 237, 0.06); }
.toc-ch { font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent); font-weight: 600; grid-row: 1; }
.toc-title { font-size: 0.95rem; font-weight: 600; grid-column: 2; grid-row: 1; }
.toc-desc { font-size: 0.8rem; color: var(--fg-muted); grid-column: 2; grid-row: 2; line-height: 1.5; }
.toc-sample-badge {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(99,179,237,0.15);
  border: 1px solid rgba(99,179,237,0.3);
  border-radius: 999px;
  padding: 1px 8px;
  vertical-align: middle;
}

/* Tier pricing grid */
.playbook-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}
.playbook-tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
}
.playbook-tier-card--featured {
  border-color: var(--accent);
  background: rgba(99, 179, 237, 0.04);
}
.tier-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #1a0e00;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-header { margin-bottom: 24px; }
.tier-label { font-size: 0.8rem; font-weight: 600; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.tier-price { font-size: 2rem; font-weight: 700; color: var(--fg); }
.tier-price-note { font-size: 0.8rem; color: var(--fg-muted); }
.tier-features { list-style: none; padding: 0; margin: 0 0 28px 0; display: flex; flex-direction: column; gap: 10px; }
.tier-features li { font-size: 0.9rem; color: var(--fg-muted); padding-left: 18px; position: relative; line-height: 1.4; }
.tier-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-size: 0.8rem; top: 1px; }
.tier-features li strong { color: var(--fg); }
.tier-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.tier-cta-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.tier-cta-btn--secondary { background: var(--surface-2); color: var(--fg); border: 1px solid var(--border-strong); }
.tier-cta-btn--primary { background: rgba(99,179,237,0.15); color: var(--accent); border: 1px solid rgba(99,179,237,0.3); }
.tier-cta-btn--featured { background: var(--accent); color: var(--bg); }
.tier-guarantee { font-size: 0.78rem; color: var(--fg-muted); text-align: center; margin-top: 14px; line-height: 1.5; }

/* Background / practitioner credibility */
.playbook-background-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.playbook-background-text p {
  color: var(--fg-muted);
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 18px;
}
.playbook-background-text p:last-child { margin-bottom: 0; }
.playbook-background-credentials {
  background: var(--surface-2, var(--surface));
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}
.credential-item { margin-bottom: 22px; }
.credential-item:last-child { margin-bottom: 0; }
.credential-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 5px;
}
.credential-value { font-size: 0.9rem; color: var(--fg); line-height: 1.5; }

/* Sample chapter CTA band */
.playbook-sample-cta { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.playbook-sample-cta-inner { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.playbook-sample-cta h2 { font-size: 1.4rem; margin-bottom: 12px; }
.playbook-sample-cta p { color: var(--fg-muted); margin-bottom: 24px; }

/* ===== SAMPLE CHAPTER PAGE ===== */
.playbook-sample-page { padding: 80px 0 40px; }
.playbook-sample-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: start;
}
.playbook-sample-left h1 { font-size: 1.6rem; margin-bottom: 16px; line-height: 1.3; }
.playbook-sample-desc { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 32px; }
.playbook-sample-contents { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 24px; margin-bottom: 24px; }
.sample-contents-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 14px; }
.sample-contents-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.sample-contents-list li { font-size: 0.875rem; color: var(--fg-muted); padding-left: 16px; position: relative; line-height: 1.5; }
.sample-contents-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 0.75rem; }
.playbook-sample-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.playbook-sample-meta span { font-size: 0.78rem; color: var(--fg-muted); background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 4px 10px; }

/* Public preview section */
.playbook-sample-preview { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.playbook-preview-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 16px; display: block; }
.playbook-preview-content { font-size: 0.9rem; color: var(--fg); line-height: 1.75; }
.playbook-preview-content p { margin: 0 0 18px; }
.playbook-preview-h2 { font-size: 1rem; font-weight: 700; color: var(--fg); margin: 28px 0 4px; }
.playbook-preview-h3 { font-size: 0.875rem; font-weight: 600; color: var(--fg); margin: 20px 0 8px; }
.playbook-preview-bullets { list-style: none; padding: 0; margin: 0 0 18px; }
.playbook-preview-bullets li { padding-left: 16px; position: relative; margin-bottom: 7px; line-height: 1.6; }
.playbook-preview-bullets li::before { content: '›'; position: absolute; left: 0; color: var(--accent); }
.playbook-preview-callout { border-left: 3px solid; border-radius: 4px; padding: 12px 14px; margin: 0 0 18px; font-size: 0.825rem; line-height: 1.65; }
.playbook-preview-callout.crd { border-color: #166534; background: #f0fdf4; }
.playbook-preview-callout.aim { border-color: #1e40af; background: #eff6ff; }
.playbook-preview-callout-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.playbook-preview-callout.crd .playbook-preview-callout-label { color: #166534; }
.playbook-preview-callout.aim .playbook-preview-callout-label { color: #1e40af; }
.playbook-preview-callout h4 { font-size: 0.825rem; font-weight: 700; margin: 0 0 6px; color: var(--fg); }
.playbook-preview-callout p { margin: 0 0 4px; }
.playbook-preview-fade {
  background: linear-gradient(to bottom, transparent, var(--bg));
  height: 80px; margin: 24px 0 0; position: relative;
}
.playbook-preview-cta {
  text-align: center; padding: 0 0 4px; border-top: 1px solid var(--border);
}
.playbook-preview-cta p { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 14px; line-height: 1.55; }
.playbook-preview-cta strong { color: var(--fg); }

/* Form card */
.playbook-sample-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  position: sticky;
  top: 80px;
}
.playbook-sample-form-card h2 { font-size: 1.2rem; margin-bottom: 8px; }
.playbook-sample-form-card > p { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.6; }
.playbook-sample-form { display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.825rem; font-weight: 600; color: var(--fg-muted); }
.form-field .optional { font-weight: 400; opacity: 0.7; }
.form-field input, .form-field select {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--fg);
  font-family: inherit;
  transition: border-color 0.15s;
}
.form-field input:focus, .form-field select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field select { cursor: pointer; }
.form-error-msg {
  background: rgba(245, 101, 101, 0.1);
  border: 1px solid rgba(245, 101, 101, 0.3);
  color: #fc8181;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.85rem;
}
.sample-submit-btn { width: 100%; padding: 13px; font-size: 0.95rem; }
.sample-privacy { font-size: 0.78rem; color: var(--fg-muted); text-align: center; margin: 0; }

/* Success state */
.sample-success-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 12px; }
.sample-download-btn { display: block; text-align: center; margin-bottom: 12px; }
.sample-confirm-note { font-size: 0.8rem; color: var(--fg-muted); text-align: center; }

/* Back link */
.playbook-back-cta { text-align: center; padding: 32px 24px 80px; }

@media (max-width: 900px) {
  .playbook-sample-inner { grid-template-columns: 1fr; }
  .playbook-tiers-grid { grid-template-columns: 1fr; }
  .playbook-sample-form-card { position: static; }
}

/* ===== PRODUCTS INDEX PAGE (/products) ===== */

.products-hero {
  text-align: left;
  padding-bottom: 64px;
}

.products-grid-section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.products-grid-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Three-column grid — stacks to single column on mobile */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

/* Individual product card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Playbook card — subtle left accent bar */
.product-card--playbook {
  border-left: 3px solid var(--accent);
}

/* Toolkit card — slightly elevated background */
.product-card--toolkit {
  background: var(--bg-elevated);
}

/* Assessment card — standard */
.product-card--assessment {}

/* Card header row: tag + price badge */
.product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.product-card-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 12px;
  white-space: nowrap;
}

.product-card-badge--recurring {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.25);
}

.product-card-badge--free {
  color: var(--accent);
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.25);
}

/* Title */
.product-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Description */
.product-card-desc {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

/* Feature list */
.product-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.product-card-features li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.product-card-features li::before {
  content: '→';
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* CTA buttons row */
.product-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.product-card-actions .btn-primary {
  text-align: center;
}

.product-card-actions .btn-ghost {
  text-align: center;
  font-size: 0.85rem;
}

/* ===== BUNDLE CALLOUT ===== */
.products-bundle-section {
  border-top: 1px solid var(--border);
  padding: 64px 0 80px;
  background: var(--bg-elevated);
}

.products-bundle-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.products-bundle-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.products-bundle-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}

.products-bundle-heading {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.products-bundle-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ===== PRODUCTS PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .products-grid-section {
    padding: 48px 0;
  }

  .product-card {
    padding: 28px 24px;
    gap: 16px;
  }

  .product-card--playbook {
    border-left: 2px solid var(--accent);
  }

  .product-card-title {
    font-size: 1.15rem;
  }

  .products-bundle-section {
    padding: 48px 0 60px;
  }

  .products-bundle-heading {
    font-size: 1.4rem;
  }
}

/* ── Public Template Library ──────────────────────────────────────────────── */

/* Hero */
.lib-hero {
  padding-bottom: 0;
  border-bottom: none;
}

.lib-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.lib-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.lib-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lib-stat-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.lib-stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.lib-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Catalog header */
.lib-catalog-header {
  margin-bottom: 48px;
}

/* Category groups */
.lib-category-group {
  margin-bottom: 56px;
}

.lib-category-label {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.lib-cat-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.lib-cat-count {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* Public cards — no download buttons, subscribe CTA instead */
.lib-public-card .toolkit-template-action {
  flex-shrink: 0;
}

.lib-public-card .btn-download {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  color: var(--fg-muted);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 8px 16px;
  white-space: nowrap;
}

.lib-public-card .btn-download:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}

/* Redacted preview section */
.lib-preview-header {
  margin-bottom: 48px;
}

.lib-preview-doc {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  overflow: hidden;
}

.lib-preview-doc-header {
  background: linear-gradient(135deg, #111827 0%, #151d2e 100%);
  border-bottom: 1px solid var(--border-strong);
  padding: 28px 32px;
}

.lib-preview-doc-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 3px;
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 12px;
}

.lib-preview-doc-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.lib-preview-doc-subtitle {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

.lib-preview-doc-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lib-preview-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lib-preview-section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* Preview tables */
.lib-preview-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
}

.lib-preview-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 0;
  background: var(--bg-elevated);
  padding: 10px 14px;
  font-size: 0.82rem;
}

.lib-preview-table-row--head {
  background: var(--bg-card);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.lib-preview-field {
  color: var(--fg);
  font-weight: 500;
}

.lib-preview-val {
  font-family: var(--font-mono);
  color: var(--fg-muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.lib-preview-val--pass { color: #4ade80; }
.lib-preview-val--fail { color: #f87171; }
.lib-preview-val--warn { color: #fbbf24; }

.lib-preview-note {
  color: var(--fg-muted);
  font-size: 0.8rem;
}

/* Code block preview */
.lib-preview-code-block {
  background: #0a0e17;
  border: 1px solid #1e293b;
  border-radius: 5px;
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lib-preview-code-line {
  display: flex;
  gap: 8px;
}

.lib-preview-code-comment { color: #64748b; font-style: italic; }
.lib-preview-code-key { color: #7dd3fc; }
.lib-preview-code-val { color: #a5b4fc; }

.lib-preview-redact-line {
  color: #334155;
  letter-spacing: 0.05em;
  font-size: 0.7rem;
  padding: 2px 0;
}

/* Note bar */
.lib-preview-note-bar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(56, 189, 248, 0.05);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 5px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.lib-preview-note-bar svg {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Changelog */
.lib-changelog-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.lib-changelog-text {
  padding-top: 8px;
}

.lib-changelog-entries {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.lib-changelog-list {
  display: flex;
  flex-direction: column;
}

.lib-changelog-entry {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.lib-changelog-entry:last-child {
  border-bottom: none;
}

.lib-changelog-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.lib-changelog-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lib-changelog-item {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.lib-changelog-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
  padding: 2px 7px;
  flex-shrink: 0;
  margin-top: 1px;
}

.lib-changelog-tag--new {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.lib-changelog-tag--updated {
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .lib-changelog-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lib-stats {
    gap: 20px;
  }

  .lib-stat-sep {
    display: none;
  }

  .toolkit-template-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .lib-preview-table-row {
    grid-template-columns: 1fr 1fr;
  }

  .lib-preview-table-row > *:last-child {
    display: none;
  }
}

/* ── Toolkit Sales Page Changelog ─────────────────────────────────────────── */

.toolkit-changelog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
}

.toolkit-changelog-entry {
  background: var(--bg-card);
  padding: 28px 32px;
}

.toolkit-changelog-entry-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.toolkit-changelog-entry-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toolkit-changelog-item {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.toolkit-changelog-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
  padding: 2px 7px;
  flex-shrink: 0;
  margin-top: 1px;
}

.toolkit-changelog-tag--added {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.toolkit-changelog-tag--updated {
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.toolkit-changelog-cta {
  display: flex;
  justify-content: center;
}

.btn-ghost--small {
  font-size: 0.85rem;
  padding: 8px 18px;
}

@media (max-width: 700px) {
  .toolkit-changelog-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ENGAGEMENT OPTIONS PAGE (/services/engagement-options) ===== */

/* Value-based anchoring section */
.eo-anchoring {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.eo-anchoring-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}

.eo-anchoring-label {
  padding-top: 6px;
}

.eo-anchoring-content .engagement-body:last-child {
  margin-bottom: 0;
}

/* Engagement tiers grid */
.eo-tiers {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.eo-tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
}

.eo-tier-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.15s;
}

.eo-tier-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
}

.eo-tier-card--featured {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.03);
}

.eo-tier-header {
  margin-bottom: 24px;
}

.eo-tier-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

.eo-tier-price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 6px;
}

.eo-tier-price-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-family: var(--font-mono);
}

.eo-tier-price-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.eo-tier-meta {
  display: flex;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.eo-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eo-meta-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.eo-meta-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
}

.eo-tier-scope {
  margin-bottom: 24px;
}

.eo-tier-scope h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 14px;
}

.eo-scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eo-scope-list li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}

.eo-scope-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  top: 2px;
}

.eo-tier-fit {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.eo-tier-fit h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.eo-tier-fit p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 0;
}

.eo-tier-cta {
  margin-top: auto;
}

.eo-retainer-note {
  max-width: 640px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.eo-retainer-note p {
  margin: 0;
}

/* Platform cross-links section */
.eo-platforms {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.eo-platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.eo-platform-card {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  align-items: flex-start;
  transition: border-color 0.15s;
}

.eo-platform-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
}

.eo-platform-icon {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 6px;
  padding: 10px 14px;
  flex-shrink: 0;
  letter-spacing: 0.08em;
}

.eo-platform-body {
  flex: 1;
}

.eo-platform-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.eo-platform-body p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Featured tier CTA button variant */
.btn-tier-featured {
  background: var(--accent);
  color: var(--bg);
}

.btn-tier-featured:hover {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 900px) {
  .eo-anchoring-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .eo-tier-grid {
    grid-template-columns: 1fr;
  }

  .eo-platform-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .eo-anchoring,
  .eo-tiers,
  .eo-platforms {
    padding: 56px 0;
  }

  .eo-tier-card {
    padding: 28px 24px;
  }
}

