/*
 * agents-style.css
 * Zen Aegis — /agents page styles
 * Scoped with .za- prefix throughout to avoid conflicts with existing theme.
 * Does NOT reset body/html/global — existing Kadence theme owns those.
 * Enqueued via functions.php snippet.
 */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------- Page-scoped tokens ---------- */
:root {
  --za-dark:    #000000;
  --za-card:    #161616;
  --za-teal:    #3FC8BB;
  --za-sky:     #70B0D3;
  --za-white:   #ffffff;
  --za-slate:   #B8B8B8;
  --za-muted:   #9CA3AF;
  --za-sage:    #1F1F1F;
  --za-danger:  #ef4444;
  --za-max-w:   1280px;
  --za-display: 'Space Grotesk', system-ui, sans-serif;
  --za-body:    'Inter', system-ui, sans-serif;
}

/* ---------- Layout ---------- */
.za-container { max-width: var(--za-max-w); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px)  { .za-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .za-container { padding: 0 2rem; } }

/* ---------- Buttons ---------- */
.za-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 600; font-family: var(--za-body);
  transition: opacity 0.2s, background-color 0.2s;
  white-space: nowrap; text-decoration: none; border: 0; cursor: pointer;
}
.za-btn-primary { background: var(--za-teal); color: #000; }
.za-btn-primary:hover { opacity: 0.9; }
.za-btn-ghost { background: transparent; color: var(--za-white); border: 1px solid rgba(255,255,255,0.2); }
.za-btn-ghost:hover { background: rgba(255,255,255,0.05); }
.za-btn-pill { background: var(--za-teal); color: #000; padding: 0.625rem 1.5rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; }
.za-btn-pill:hover { opacity: 0.9; }
.za-btn-block { width: 100%; }

/* ---------- Accent ---------- */
.za-accent { color: var(--za-teal); font-style: italic; }
.za-scale  { color: var(--za-teal); font-weight: 700; }

/* ---------- Hero ---------- */
.za-hero {
  position: relative; overflow: hidden;
  padding: 8rem 0 5rem;
  background: var(--za-dark);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
@media (min-width: 1024px) { .za-hero { padding: 12rem 0 8rem; } }
.za-hero-glow-1, .za-hero-glow-2 {
  position: absolute; border-radius: 9999px;
  filter: blur(80px); z-index: 0; pointer-events: none;
}
.za-hero-glow-1 { top: 25%; left: 25%; width: 24rem; height: 24rem; background: rgba(63,200,187,0.2); }
.za-hero-glow-2 { top: 33%; right: 25%; width: 28rem; height: 28rem; background: rgba(112,176,211,0.1); }
.za-hero-inner { position: relative; z-index: 1; text-align: center; max-width: var(--za-max-w); margin: 0 auto; padding: 0 1rem; }
.za-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  background: var(--za-card); border: 1px solid var(--za-sage);
  margin-bottom: 1.5rem;
}
.za-hero-badge span { font-size: 0.875rem; font-weight: 500; color: var(--za-slate); font-family: var(--za-body); }
.za-hero h1 {
  font-family: var(--za-display);
  font-size: 3.5rem; line-height: 0.95; color: var(--za-white);
  margin-bottom: 2rem; letter-spacing: -0.01em;
}
@media (min-width: 640px)  { .za-hero h1 { font-size: 4.5rem; } }
@media (min-width: 1024px) { .za-hero h1 { font-size: 6rem; } }
.za-hero p {
  font-size: 1.125rem; color: var(--za-slate); font-family: var(--za-body);
  max-width: 42rem; margin: 0 auto 2.5rem;
}
@media (min-width: 640px) { .za-hero p { font-size: 1.25rem; } }
.za-hero-actions { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; }
@media (min-width: 640px) { .za-hero-actions { flex-direction: row; } }
.za-hero-actions .za-btn { width: 100%; }
@media (min-width: 640px) { .za-hero-actions .za-btn { width: auto; } }

/* ---------- Stats ---------- */
.za-stats {
  background: var(--za-dark); padding: 3rem 0;
  border-top: 1px solid var(--za-sage); border-bottom: 1px solid var(--za-sage);
}
.za-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .za-stats-grid { grid-template-columns: repeat(5, 1fr); } }
.za-stat { text-align: center; }
.za-stat-value { display: block; font-family: var(--za-display); font-weight: 700; font-size: 1.875rem; color: var(--za-sky); }
@media (min-width: 768px) { .za-stat-value { font-size: 2.25rem; } }
.za-stat-label { display: block; font-size: 0.75rem; font-weight: 500; color: var(--za-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.5rem; font-family: var(--za-body); }

/* ---------- Section heads ---------- */
.za-section-head { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.za-section-head h2 { font-family: var(--za-display); font-size: 2.25rem; color: var(--za-white); margin-bottom: 1.5rem; line-height: 1.1; letter-spacing: -0.01em; }
@media (min-width: 768px) { .za-section-head h2 { font-size: 3rem; } }
.za-section-head p { font-size: 1.125rem; color: var(--za-slate); font-family: var(--za-body); }

/* ---------- Vision ---------- */
.za-vision { background: linear-gradient(180deg, var(--za-dark), #08111c); padding: 6rem 0; }
.za-vision h2 { font-family: var(--za-display); letter-spacing: -0.01em; }

.za-org-chart { overflow-x: auto; padding: 3rem 0; }
.za-org-inner { min-width: 800px; display: flex; flex-direction: column; align-items: center; }
.za-org-twin {
  background: rgba(0,0,0,0.5); border: 2px solid var(--za-sky);
  border-radius: 1rem; padding: 1.5rem; text-align: center;
  width: 20rem; box-shadow: 0 0 30px rgba(112,176,211,0.2);
}
.za-org-twin h3 { color: var(--za-sky); font-family: var(--za-display); font-size: 1.5rem; margin-bottom: 0.25rem; }
.za-org-twin .za-role { color: var(--za-white); font-weight: 700; font-size: 0.875rem; margin: 0 0 0.5rem; font-family: var(--za-body); }
.za-org-twin .za-desc { color: var(--za-muted); font-size: 0.75rem; margin: 0; line-height: 1.5; font-family: var(--za-body); }
.za-org-line-vert { width: 1px; height: 3rem; background: linear-gradient(180deg, var(--za-sky), var(--za-teal)); opacity: 0.5; }
.za-org-line-horiz { width: 600px; height: 1px; background: var(--za-teal); opacity: 0.5; position: relative; }
.za-org-line-horiz::before, .za-org-line-horiz::after, .za-org-line-horiz .za-mid {
  content: ''; position: absolute; top: 0; width: 1px; height: 2rem; background: var(--za-teal);
}
.za-org-line-horiz::before { left: 0; }
.za-org-line-horiz::after { right: 0; }
.za-org-line-horiz .za-mid { left: 50%; }
.za-org-row { display: flex; gap: 1.5rem; width: 640px; margin-top: 2rem; }
.za-org-row-mini { display: flex; gap: 1.5rem; width: 640px; }
.za-org-row-mini .za-stem { flex: 1; display: flex; justify-content: center; }
.za-org-row-mini .za-stem div { width: 1px; height: 2rem; background: rgba(184,184,184,0.5); }
.za-org-exec {
  flex: 1; background: rgba(184,184,184,0.1);
  border: 1px solid rgba(63,200,187,0.5);
  border-radius: 0.75rem; padding: 1rem; text-align: center;
}
.za-org-exec h4 { color: var(--za-teal); font-family: var(--za-display); font-weight: 700; font-size: 0.875rem; margin-bottom: 0.5rem; }
.za-org-exec p { color: var(--za-muted); font-size: 0.625rem; margin: 0; font-family: var(--za-body); }
.za-org-spec {
  flex: 1; background: rgba(0,0,0,0.8);
  border: 1px dashed rgba(184,184,184,0.3);
  border-radius: 0.5rem; padding: 0.75rem; text-align: center;
}
.za-org-spec h4 { color: var(--za-muted); font-family: var(--za-display); font-weight: 700; font-size: 0.75rem; margin-bottom: 0.25rem; }
.za-org-spec p { color: var(--za-slate); font-size: 0.625rem; margin: 0; font-family: var(--za-body); }

.za-cards-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .za-cards-3 { grid-template-columns: repeat(3, 1fr); } }
.za-vision-card {
  position: relative; padding: 1.5rem;
  border-radius: 1rem; border: 2px solid rgba(184,184,184,0.3);
  background: var(--za-card); display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.za-vision-card:hover { border-color: rgba(63,200,187,0.5); transform: translateY(-4px); }
.za-icon-wrap {
  color: var(--za-teal); background: rgba(63,200,187,0.1);
  width: 3rem; height: 3rem; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; flex-shrink: 0;
}
.za-vision-card h4, .za-flavor-card h4 { color: var(--za-white); font-family: var(--za-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 0.75rem; }
.za-vision-card .za-desc { color: var(--za-muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; font-family: var(--za-body); }
.za-vision-card .za-perfect-block { padding-top: 1rem; border-top: 1px solid rgba(184,184,184,0.2); margin-top: auto; }
.za-perfect-label { font-size: 0.75rem; font-weight: 700; color: var(--za-teal); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.25rem; font-family: var(--za-body); }
.za-perfect-text { font-size: 0.875rem; color: rgba(255,255,255,0.85); font-weight: 500; font-family: var(--za-body); }

.za-vision-quote {
  max-width: 48rem; margin: 0 auto;
  background: rgba(63,200,187,0.1); border: 1px solid rgba(63,200,187,0.3);
  padding: 2rem; border-radius: 1rem; text-align: center;
}
.za-vision-quote p { color: var(--za-white); font-size: 1.125rem; margin-bottom: 1.5rem; font-family: var(--za-body); }

/* ---------- Dashboard ---------- */
.za-dashboard-section { background: var(--za-card); padding: 6rem 0; }
.za-dashboard-section h2 { font-family: var(--za-display); letter-spacing: -0.01em; }
.za-dash-frame {
  max-width: 64rem; margin: 0 auto; background: var(--za-dark);
  border-radius: 1.5rem; padding: 1.5rem;
  border: 1px solid rgba(184,184,184,0.2);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3);
}
@media (min-width: 768px) { .za-dash-frame { padding: 2.5rem; } }
.za-dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.za-dash-title { display: flex; align-items: center; gap: 0.75rem; }
.za-dash-dot { width: 0.75rem; height: 0.75rem; border-radius: 9999px; background: var(--za-teal); animation: za-pulse 2s infinite; }
@keyframes za-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.za-dash-title h3 { color: var(--za-white); font-family: var(--za-display); font-weight: 700; font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.05em; }
.za-dash-date { color: var(--za-muted); font-size: 0.875rem; font-family: var(--za-body); }
.za-dash-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .za-dash-metrics { grid-template-columns: repeat(4, 1fr); } }
.za-dash-metric { background: var(--za-card); border-radius: 0.75rem; padding: 1rem; border: 1px solid rgba(184,184,184,0.1); }
.za-dash-metric-head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.za-dash-metric-head span { color: var(--za-muted); font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--za-body); }
.za-dash-metric-value { font-family: var(--za-display); font-weight: 700; font-size: 1.5rem; color: var(--za-white); }
@media (min-width: 768px) { .za-dash-metric-value { font-size: 1.875rem; } }
.za-dash-bars { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .za-dash-bars { grid-template-columns: repeat(2, 1fr); } }
.za-dash-bar-card { background: var(--za-card); border-radius: 0.75rem; padding: 1.25rem; border: 1px solid rgba(184,184,184,0.1); }
.za-dash-bar-card h4 { color: var(--za-muted); font-size: 0.75rem; font-family: var(--za-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.za-bar-row { margin-bottom: 0.75rem; }
.za-bar-meta { display: flex; justify-content: space-between; font-size: 0.75rem; margin-bottom: 0.25rem; font-family: var(--za-body); }
.za-bar-name { color: var(--za-muted); font-weight: 500; }
.za-bar-val { color: var(--za-white); font-weight: 700; }
.za-bar-track { width: 100%; background: rgba(184,184,184,0.2); border-radius: 9999px; height: 0.5rem; }
.za-bar-fill { background: var(--za-teal); height: 100%; border-radius: 9999px; }
.za-bar-fill.za-amber { background: var(--za-sky); }
.za-dash-activity { background: var(--za-card); border-radius: 0.75rem; padding: 1.25rem; border: 1px solid rgba(184,184,184,0.1); }
.za-dash-activity h4 { color: var(--za-muted); font-size: 0.75rem; font-family: var(--za-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.za-activity-row { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.5rem 0; }
.za-activity-row .za-icon { flex-shrink: 0; color: var(--za-teal); }
.za-activity-row .za-icon.za-amber { color: var(--za-sky); }
.za-activity-row p { flex-grow: 1; color: var(--za-white); font-size: 0.875rem; font-weight: 500; margin: 0; font-family: var(--za-body); }
.za-activity-row .za-time { color: var(--za-slate); font-size: 0.75rem; flex-shrink: 0; font-family: var(--za-body); }
.za-dashboard-footer { max-width: 48rem; margin: 2.5rem auto 0; text-align: center; }
.za-dashboard-footer p { color: var(--za-slate); margin-bottom: 1rem; font-family: var(--za-body); }
.za-dashboard-footer .za-small { font-size: 0.75rem; color: var(--za-muted); font-style: italic; font-family: var(--za-body); }

/* ---------- Flavors ---------- */
.za-flavors { background: var(--za-card); padding: 6rem 0; }
.za-flavors h2 { font-family: var(--za-display); letter-spacing: -0.01em; }
.za-flavors-intro { margin-bottom: 3rem; }
.za-flavors-intro h3 { color: var(--za-white); font-family: var(--za-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.za-flavors-intro p { color: var(--za-slate); font-family: var(--za-body); }
.za-cards-flavors { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px)  { .za-cards-flavors { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .za-cards-flavors { grid-template-columns: repeat(3, 1fr); } }
.za-flavor-card {
  position: relative; padding: 1.5rem;
  border-radius: 1rem; border: 2px solid var(--za-sage);
  background: var(--za-card); display: flex; flex-direction: column; height: 100%;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.za-flavor-card:hover { border-color: rgba(63,200,187,0.5); transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.za-flavor-card .za-desc { color: var(--za-slate); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; font-family: var(--za-body); }
.za-flavor-foot { padding-top: 1rem; border-top: 1px solid rgba(31,31,31,0.5); margin-top: auto; display: flex; flex-direction: column; gap: 1rem; }
.za-not-label { font-size: 0.75rem; font-weight: 700; color: var(--za-danger); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.25rem; font-family: var(--za-body); }
.za-not-text { font-size: 0.875rem; color: var(--za-slate); font-style: italic; font-family: var(--za-body); }
.za-flavor-foot .za-perfect-text { color: var(--za-white); font-weight: 500; font-size: 0.875rem; font-family: var(--za-body); }
.za-flavors-disclaimer { margin-top: 3rem; text-align: center; padding: 1.5rem; background: var(--za-dark); border-radius: 0.75rem; border: 1px solid var(--za-sage); }
.za-flavors-disclaimer p { color: var(--za-slate); font-style: italic; margin: 0; font-family: var(--za-body); }

/* ---------- Calculator ---------- */
.za-calculator { background: var(--za-dark); padding: 6rem 0; }
.za-calc-head { margin-bottom: 3rem; text-align: center; }
@media (min-width: 768px) { .za-calc-head { text-align: left; } }
.za-calc-head h2 { color: var(--za-white); font-family: var(--za-display); font-size: 2.25rem; margin-bottom: 1rem; letter-spacing: -0.01em; }
@media (min-width: 768px) { .za-calc-head h2 { font-size: 3rem; } }
.za-calc-head p { color: var(--za-slate); font-size: 1.125rem; font-family: var(--za-body); }
.za-calc-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .za-calc-grid { grid-template-columns: 7fr 5fr; } }
.za-calc-step { margin-bottom: 3rem; }
.za-calc-step-title { display: flex; align-items: center; gap: 0.5rem; color: var(--za-white); font-family: var(--za-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem; }
.za-step-num { background: var(--za-teal); color: var(--za-white); width: 1.5rem; height: 1.5rem; border-radius: 9999px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; flex-shrink: 0; }
.za-pkg-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .za-pkg-grid { grid-template-columns: repeat(3, 1fr); } }
.za-pkg-card {
  position: relative; padding: 1.25rem; border-radius: 1rem;
  background: var(--za-card); border: 2px solid transparent;
  cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s;
}
.za-pkg-card:hover { border-color: var(--za-sage); }
.za-pkg-card.za-selected { border-color: var(--za-teal); box-shadow: 0 4px 12px rgba(63,200,187,0.15); }
.za-pkg-tag {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem; border-radius: 9999px; white-space: nowrap; color: var(--za-white);
  font-family: var(--za-body);
}
.za-pkg-tag.za-amber { background: var(--za-sky); }
.za-pkg-tag.za-teal  { background: var(--za-teal); }
.za-pkg-card h4 { color: var(--za-white); font-family: var(--za-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 0.25rem; }
.za-pkg-price { color: var(--za-teal); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; font-family: var(--za-display); }
.za-pkg-desc { color: var(--za-white); font-weight: 700; font-size: 0.75rem; line-height: 1.3; margin-bottom: 0.5rem; font-family: var(--za-body); }
.za-pkg-sub { color: var(--za-slate); font-size: 0.75rem; line-height: 1.5; font-family: var(--za-body); }
.za-pkg-check { position: absolute; top: 0.75rem; right: 0.75rem; color: var(--za-teal); display: none; }
.za-pkg-card.za-selected .za-pkg-check { display: block; }
.za-slider-card { background: var(--za-card); padding: 1.5rem; border-radius: 1rem; border: 1px solid rgba(31,31,31,0.5); }
.za-slider-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.za-slider-head .za-label { color: var(--za-white); font-weight: 600; font-family: var(--za-body); }
.za-slider-head .za-value { font-family: var(--za-display); font-weight: 700; font-size: 1.5rem; color: var(--za-teal); }
#za-tasks-slider {
  width: 100%; height: 0.5rem; background: var(--za-dark); border-radius: 0.5rem;
  appearance: none; -webkit-appearance: none; cursor: pointer;
}
#za-tasks-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; background: var(--za-teal); border-radius: 50%; cursor: pointer; }
#za-tasks-slider::-moz-range-thumb { width: 18px; height: 18px; background: var(--za-teal); border-radius: 50%; cursor: pointer; border: 0; }
.za-slider-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--za-slate); margin-top: 0.75rem; font-weight: 500; font-family: var(--za-body); }
.za-intel-toggle {
  display: inline-flex; background: rgba(31,31,31,0.6);
  padding: 0.375rem; border-radius: 0.75rem; width: 100%;
}
@media (min-width: 640px) { .za-intel-toggle { width: auto; } }
.za-intel-btn {
  flex: 1; padding: 0.625rem 1rem; border-radius: 0.5rem;
  font-size: 0.875rem; color: var(--za-slate); font-weight: 500;
  text-align: center; transition: background-color 0.2s, color 0.2s;
  font-family: var(--za-body); cursor: pointer; border: 0; background: none;
}
.za-intel-btn .za-sub { display: block; font-size: 10px; color: rgba(184,184,184,0.7); margin-top: 2px; }
.za-intel-btn.za-active { background: var(--za-card); color: var(--za-white); font-weight: 700; }
.za-intel-btn.za-active .za-sub { color: var(--za-teal); }
#za-sub-intel-block { display: none; margin-top: 2rem; }
#za-sub-intel-block.za-visible { display: block; }
#za-sub-intel-block .za-note { color: var(--za-slate); font-size: 0.875rem; font-style: italic; margin-top: 0.75rem; font-family: var(--za-body); }
.za-calc-summary {
  position: sticky; top: 6rem;
  background: var(--za-card); border-radius: 1.5rem; padding: 2rem;
  border: 1px solid rgba(31,31,31,0.5);
}
.za-summary-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; color: var(--za-slate); font-family: var(--za-body); }
.za-summary-row.za-bordered { padding-bottom: 1rem; border-bottom: 1px dashed var(--za-sage); margin-bottom: 2rem; }
.za-summary-row .za-label-block .za-sub { font-size: 0.75rem; color: var(--za-muted); margin-top: 0.25rem; line-height: 1.3; max-width: 200px; font-family: var(--za-body); }
.za-summary-row .za-pill { font-size: 10px; text-transform: uppercase; background: var(--za-dark); padding: 2px 8px; border-radius: 4px; margin-left: 8px; color: var(--za-slate); font-family: var(--za-body); }
.za-summary-row .za-val { color: var(--za-white); font-weight: 700; }
.za-summary-monthly-label { font-size: 0.875rem; color: var(--za-slate); font-weight: 500; margin-bottom: 0.25rem; font-family: var(--za-body); }
.za-summary-monthly-val { font-family: var(--za-display); font-weight: 700; font-size: 3rem; color: var(--za-white); }
.za-summary-yearly { display: flex; justify-content: space-between; font-size: 0.875rem; font-weight: 500; color: var(--za-teal); margin-bottom: 2rem; font-family: var(--za-body); }
.za-diy-warn { background: rgba(112,176,211,0.1); border: 1px dashed var(--za-sky); border-radius: 0.75rem; padding: 1rem; margin-bottom: 2rem; font-size: 0.75rem; color: var(--za-white); line-height: 1.5; font-family: var(--za-body); }
.za-danger { color: var(--za-danger); font-weight: 700; }
.za-deposit-foot { text-align: center; margin-top: 1rem; font-size: 0.75rem; color: var(--za-slate); font-weight: 500; font-family: var(--za-body); }
.za-summary-tail { font-size: 10px; color: var(--za-muted); text-align: center; margin-top: 1.5rem; line-height: 1.5; font-family: var(--za-body); }

/* ---------- How It Works ---------- */
.za-how-it-works { background: var(--za-card); padding: 6rem 0; }
.za-how-it-works h2 { color: var(--za-white); font-family: var(--za-display); text-align: center; font-size: 2.25rem; margin-bottom: 4rem; letter-spacing: -0.01em; }
.za-steps { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .za-steps { flex-direction: row; } }
.za-step { flex: 1; }
.za-step-circle {
  width: 6rem; height: 6rem; background: var(--za-teal); color: var(--za-white);
  font-family: var(--za-display); font-size: 1.875rem;
  border-radius: 9999px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; border: 4px solid var(--za-sage);
  box-shadow: 0 10px 25px rgba(63,200,187,0.2);
}
.za-step h3 { color: var(--za-white); font-family: var(--za-display); text-align: center; font-size: 1.25rem; margin-bottom: 0.75rem; }
.za-step p { color: var(--za-slate); font-size: 0.875rem; line-height: 1.6; text-align: center; max-width: 18rem; margin: 0 auto; font-family: var(--za-body); }

/* ---------- Included ---------- */
.za-included { background: var(--za-dark); padding: 6rem 0; }
.za-included h2 { color: var(--za-white); font-family: var(--za-display); text-align: center; font-size: 2.25rem; margin-bottom: 4rem; letter-spacing: -0.01em; }
.za-included-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px)  { .za-included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .za-included-grid { grid-template-columns: repeat(3, 1fr); } }
.za-included-card { background: var(--za-card); border: 1px solid rgba(184,184,184,0.2); padding: 2rem; border-radius: 1rem; }
.za-included-card .za-icon-wrap { width: 3rem; height: 3rem; background: rgba(112,176,211,0.1); color: var(--za-sky); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.za-included-card h3 { color: var(--za-white); font-family: var(--za-display); font-weight: 700; font-size: 1.125rem; margin-bottom: 0.75rem; }
.za-included-card p { color: var(--za-muted); font-size: 0.875rem; line-height: 1.6; font-family: var(--za-body); }

/* ---------- Comparison ---------- */
.za-comparison { background: var(--za-dark); padding: 6rem 0; }
.za-comparison h2 { color: var(--za-white); font-family: var(--za-display); text-align: center; font-size: 2.25rem; margin-bottom: 4rem; letter-spacing: -0.01em; }
.za-comp-table { max-width: 64rem; margin: 0 auto; background: var(--za-card); border-radius: 1rem; overflow: hidden; border: 1px solid var(--za-sage); }
.za-comp-head { display: grid; grid-template-columns: 1fr 1fr; }
.za-comp-head > div { padding: 1.5rem; text-align: center; font-weight: 700; border-bottom: 1px solid var(--za-sage); font-family: var(--za-display); }
.za-comp-head .za-diy { background: rgba(184,184,184,0.05); color: var(--za-slate); border-right: 1px solid var(--za-sage); }
.za-comp-head .za-zen { background: rgba(63,200,187,0.1); color: var(--za-white); }
@media (max-width: 767px) { .za-comp-head { display: none; } }
.za-comp-row { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--za-sage); }
.za-comp-row:last-child { border-bottom: 0; }
@media (min-width: 768px) { .za-comp-row { grid-template-columns: 1fr 1fr; } }
.za-comp-cell { padding: 1.5rem; font-size: 0.875rem; font-family: var(--za-body); }
@media (min-width: 768px) { .za-comp-cell { padding: 2rem; } }
.za-comp-cell-diy { color: var(--za-slate); border-right: 1px solid var(--za-sage); border-bottom: 1px solid var(--za-sage); }
@media (min-width: 768px) { .za-comp-cell-diy { border-bottom: 0; } }
.za-comp-cell-zen { color: var(--za-white); font-weight: 500; background: rgba(63,200,187,0.03); }
.za-comp-feature { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--za-white); font-family: var(--za-display); }
.za-comp-cell-zen .za-comp-feature { color: var(--za-teal); }

/* ---------- Trust ---------- */
.za-trust { padding: 5rem 0; background: rgba(63,200,187,0.1); border-top: 1px solid rgba(63,200,187,0.2); border-bottom: 1px solid rgba(63,200,187,0.2); }
.za-trust-inner { max-width: 56rem; margin: 0 auto; padding: 0 1rem; text-align: center; }
.za-trust-eyebrow { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--za-teal); margin-bottom: 1rem; display: block; font-family: var(--za-body); }
.za-trust-quote { font-size: 1.25rem; color: var(--za-white); font-weight: 500; line-height: 1.6; margin-bottom: 3rem; font-family: var(--za-body); }
@media (min-width: 768px) { .za-trust-quote { font-size: 1.5rem; } }
.za-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.za-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; background: var(--za-card);
  border: 1px solid rgba(63,200,187,0.3); border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600; color: var(--za-white); font-family: var(--za-body);
}
.za-badge svg { color: var(--za-teal); }
.za-trust-footnote { color: var(--za-slate); font-size: 0.875rem; font-style: italic; text-decoration: none; font-family: var(--za-body); }
.za-trust-footnote:hover { color: var(--za-teal); }

/* ---------- FAQ ---------- */
.za-faq { background: var(--za-card); padding: 6rem 0; }
.za-faq h2 { color: var(--za-white); font-family: var(--za-display); text-align: center; font-size: 2.25rem; margin-bottom: 3rem; letter-spacing: -0.01em; }
.za-faq-inner { max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
.za-faq-list { display: flex; flex-direction: column; gap: 1rem; }
.za-faq-item { border: 1px solid var(--za-sage); border-radius: 1rem; overflow: hidden; background: var(--za-card); }
.za-faq-q { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1.5rem; text-align: left; transition: background-color 0.2s; cursor: pointer; border: 0; background: none; font-family: var(--za-body); }
.za-faq-q:hover { background: var(--za-dark); }
.za-faq-q-text { font-weight: 700; color: var(--za-white); padding-right: 2rem; font-size: 0.9375rem; }
.za-faq-q .za-plus { color: var(--za-teal); flex-shrink: 0; transition: transform 0.2s; }
.za-faq-item.za-open .za-faq-q .za-plus { transform: rotate(45deg); }
.za-faq-a { display: none; padding: 1.5rem; color: var(--za-slate); font-size: 0.875rem; line-height: 1.6; border-top: 1px solid var(--za-sage); font-family: var(--za-body); }
.za-faq-item.za-open .za-faq-a { display: block; }
.za-refund-box {
  margin-top: 3rem; background: rgba(112,176,211,0.1);
  border: 1px solid rgba(112,176,211,0.3);
  padding: 1.5rem; border-radius: 1rem; text-align: center;
}
.za-refund-box h4 { color: var(--za-white); font-family: var(--za-display); font-weight: 700; margin-bottom: 0.5rem; }
.za-refund-box p { color: var(--za-slate); font-size: 0.875rem; margin: 0.25rem 0; font-family: var(--za-body); }
.za-refund-box p strong { color: var(--za-white); }

/* ---------- Footer CTA ---------- */
.za-footer-cta { padding: 6rem 0; background: var(--za-dark); border-top: 1px solid rgba(31,31,31,0.5); text-align: center; }
.za-footer-cta-inner { max-width: 56rem; margin: 0 auto; padding: 0 1rem; }
.za-footer-cta h2 { color: var(--za-white); font-family: var(--za-display); font-size: 3rem; margin-bottom: 1.5rem; letter-spacing: -0.01em; }
.za-footer-cta p { color: var(--za-slate); font-size: 1.25rem; max-width: 42rem; margin: 0 auto 2.5rem; font-family: var(--za-body); }
.za-footer-cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; }
@media (min-width: 640px) { .za-footer-cta-actions { flex-direction: row; } }

/* ============================================================
   /reddit page — visual QA fixes (GTM-14)
   All rules scoped to avoid /agents page regressions.
   ============================================================ */

/* Fix 1: Hero H2 — force white on dark hero background */
.za-hero h2 {
  color: var(--za-white);
  font-family: var(--za-body);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 640px) { .za-hero h2 { font-size: 1.375rem; } }

/* Fix 2 + 3: Form inputs, selects, textareas — dark mode styling */
.za-playbook-form .za-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .za-playbook-form .za-form-grid { grid-template-columns: repeat(2, 1fr); } }

.za-playbook-form label {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--za-slate);
  font-family: var(--za-body);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.za-playbook-form input[type="text"],
.za-playbook-form select,
.za-playbook-form textarea {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  color: var(--za-white);
  font-family: var(--za-body);
  font-size: 0.9375rem;
  padding: 0.625rem 0.875rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.za-playbook-form input[type="text"]::placeholder,
.za-playbook-form textarea::placeholder {
  color: rgba(156,163,175,0.6);
}

.za-playbook-form input[type="text"]:focus,
.za-playbook-form select:focus,
.za-playbook-form textarea:focus {
  outline: none;
  border-color: var(--za-teal);
  box-shadow: 0 0 0 3px rgba(63,200,187,0.15);
}

.za-playbook-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.za-playbook-form select option {
  background: #1a1a1a;
  color: var(--za-white);
}

.za-playbook-form textarea {
  resize: vertical;
  min-height: 6rem;
  line-height: 1.5;
}

/* Span current-tools and bottleneck textareas to full width */
.za-playbook-form label:has(textarea) {
  grid-column: 1 / -1;
}

/* Fix 4: Value table — styled to match dark page */
.za-value-table {
  width: 100%;
  max-width: 48rem;
  margin: 2.5rem auto 3rem;
  border-collapse: collapse;
  font-family: var(--za-body);
}
.za-value-table th,
.za-value-table td {
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.9375rem;
}
.za-value-table th {
  background: rgba(63,200,187,0.08);
  color: var(--za-teal);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(63,200,187,0.2);
}
.za-value-table td { color: var(--za-slate); }
.za-value-table tr:last-child td,
.za-value-table tr:last-child th { border-bottom: none; }
.za-value-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.za-value-table td strong { color: var(--za-white); }
/* Highlight the "Your Cost: $0" row */
.za-value-table tr:last-child td { color: var(--za-teal); font-weight: 700; font-size: 1rem; }

/* Fix 5: .za-value-note — value callout paragraphs in vision cards */
.za-value-note {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--za-teal);
  font-family: var(--za-body);
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}

/* Fix 6: .za-hero-pull — anchor styling for the scroll CTA */
.za-hero-pull {
  margin: 0 0 2.5rem;
}
.za-hero-pull a {
  color: var(--za-teal);
  font-family: var(--za-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
  letter-spacing: 0.04em;
}
.za-hero-pull a:hover { opacity: 1; }

/* ============================================================ */

/* ── Stats grid — 4-column centered layout (GTM-14 follow-up) ── */
.za-hero .za-stats-grid {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
@media (min-width: 768px) {
  .za-hero .za-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
/* ────────────────────────────────────────────────────────────── */

/* ── Deliverables stack — 45-min offer section ── */
.za-deliverables-stack {
  max-width: 56rem;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.za-deliverable {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--za-card);
  border: 1px solid rgba(184,184,184,0.12);
  border-radius: 1rem;
  transition: border-color 0.25s;
}
.za-deliverable:hover { border-color: rgba(63,200,187,0.4); }
.za-deliverable-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: rgba(63,200,187,0.1);
  border: 1px solid rgba(63,200,187,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--za-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--za-teal);
  margin-top: 0.2rem;
}
.za-deliverable-body { flex: 1; min-width: 0; }
.za-deliverable-body h4 {
  color: var(--za-white);
  font-family: var(--za-display);
  font-weight: 700;
  font-size: 1.0625rem;
  margin: 0 0 0.2rem;
}
.za-deliverable-body .za-value-note { margin: 0 0 0.5rem; }
.za-deliverable-body .za-desc {
  color: var(--za-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  font-family: var(--za-body);
}
/* ─────────────────────────────────────────────── */
