/* ============================================================
   REUSABLE UI COMPONENTS
   ============================================================ */


/* ── Buttons — base ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* Arrow / icon nudge on hover */
.btn svg,
.btn .icon {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.btn:hover svg,
.btn:hover .icon {
  transform: translateX(3px);
}

.hero-inner {
  margin: 0 auto;
}
/* ── .btn-primary — dark ink ── */
.btn-primary {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-primary:active {
  opacity: 1;
  transform: translateY(0);
}


/* ── .btn-green — brand green (inverted CTA section only) ── */
.btn-green {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 0 0 0 rgba(26, 184, 74, 0);
}

.btn-green:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  box-shadow: 0 4px 20px rgba(26, 184, 74, 0.35);
  transform: translateY(-1px);
}

.btn-green:active {
  transform: translateY(0);
  box-shadow: none;
}


/* ── .btn-ghost — secondary / outline ── */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--bg-card-2);
  transform: translateY(-1px);
}

.btn-ghost:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  color: var(--ink);
  background: var(--bg-card-2);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
}



/* ── Shared Page Container ── */
.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-padding) var(--container-padding);
}

.section-inner > .eyebrow {
  margin-bottom: 20px;
}

.section-inner > h2 {
  margin-bottom: var(--headline-to-lead);
}

.section-inner > .lead {
  margin-bottom: 64px;
}
/* ── Standard Hero (Used across inner pages) ── */
.hero {
  background: var(--bg);
  padding: 120px var(--container-padding) 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 680px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--green-tint);
  color: var(--green-dim);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid var(--green-tint-2);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-graphic {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 48px;
}

/* ── Prose (Article Content) ── */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px var(--container-padding);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.prose p {
  margin-bottom: 24px;
}
.prose h2 {
  font-size: 2rem;
  margin-top: 56px;
  margin-bottom: 24px;
  color: var(--ink);
  line-height: 1.2;
}
.prose h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--ink);
}
.prose ul, .prose ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.prose li {
  margin-bottom: 10px;
}
.prose ul {
  list-style-type: disc;
}
.prose ol {
  list-style-type: decimal;
}
.prose strong {
  font-weight: 600;
  color: var(--ink);
}
.prose em {
  font-style: italic;
}
.prose a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover {
  color: var(--green-dim);
}
.prose .callout {
  background: var(--green-tint);
  border-left: 4px solid var(--green);
  padding: 24px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 40px 0;
}
.prose .callout p {
  margin: 0;
  font-size: 1.05rem;
}
.prose hr {
  border: none;
  border-top: 1px solid var(--line-strong);
  margin: 64px 0;
}

.article-hero {
  text-align: center;
  padding: 100px var(--container-padding) 60px;
  background: var(--bg);
}
.article-tag-pill {
  display: inline-block;
  background: var(--green-tint);
  color: var(--green-dim);
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid var(--green-tint-2);
}
.article-dateline {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 24px;
  font-family: var(--font-mono);
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 32px;
  text-decoration: none;
  transition: color 0.2s;
}
.article-back:hover {
  color: var(--green);
}

/* ── Card ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}


/* ── Section Tag / pill label ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-sm);
  background: var(--green-tint);
  color: var(--green-dim);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

/* dot prefix variant */
.section-tag::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ── Final CTA (inverted dark card) ── */

.final-cta-section {
  background: var(--bg);
}

.final-cta-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-padding) var(--container-padding);
}

.final-cta-card {
  background: var(--ink);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 80px 64px;
  text-align: center;
  color: #ffffff;
}

.final-cta-card .eyebrow {
  color: var(--green-bright);
  justify-content: center;
  margin-bottom: 20px;
}

.final-cta-card .accent--inverted {
  color: var(--green-bright);
}

.final-cta-card h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.final-cta-lead {
  max-width: 540px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.68);
}



@media (max-width: 900px) {
  .final-cta-card { padding: 56px 40px; }
}

@media (max-width: 700px) {
  .final-cta-card { padding: 48px 28px; border-radius: var(--r-lg); }
}

/* ============================================================
   PRICING TIERS — Chunk 3
   ============================================================ */

#pricing {
  background: var(--bg);
}

.pricing-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-tier-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.pricing-tier-card:hover {
  box-shadow: var(--shadow-md);
}

.pricing-tier-featured {
  border-color: var(--green);
  background: var(--green-tint);
}

.pricing-popular-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.ptc-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ptc-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.ptc-price {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--ink);
  line-height: 1;
}

.ptc-price sup {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
  color: var(--muted);
}

.ptc-price sub {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.ptc-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.ptc-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.ptc-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.ptc-features .chk {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.pricing-tier-highlighted {
  box-shadow:
    0 0 0 2px var(--green),
    var(--shadow-md);
}

.pricing-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
  margin-top: 48px;
}

.pricing-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  text-align: center;
}

.pricing-btn-primary {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}

.pricing-btn-primary:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
}

.pricing-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.pricing-btn-ghost:hover {
  border-color: var(--green);
  color: var(--green-dim);
}

/* ============================================================
   FAQ — Chunk 3
   ============================================================ */

#faq {
  background: var(--bg-elev);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--green-dim);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.faq-open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-a p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 22px;
  padding-right: 40px;
}

.faq-item.faq-open .faq-q {
  color: var(--green-dim);
}
/* ============================================================
   RESULTS — Chunk 3
   ============================================================ */

#results {
  background: var(--bg-elev);
}

.results-lead {
  max-width: 520px;
  margin-bottom: 64px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.result-card {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-metric {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--green);
}

.result-unit {
  font-size: 0.55em;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
}

.result-unit-sm {
  font-size: 0.75em;
  font-weight: 700;
}

.result-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -8px;
}

.result-quote {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-style: italic;
  border-left: 2px solid var(--green);
  padding-left: 16px;
  margin: 4px 0;
  flex: 1;
}

.result-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.result-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-tint);
  border: 2px solid var(--green-tint-2);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-dim);
  flex-shrink: 0;
}

.result-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.result-biz {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}


/* ============================================================
   DIAGNOSIS
   ============================================================ */

#diagnosis {
  background: var(--bg-elev);
}

.diag-lead {
  max-width: 560px;
  margin-bottom: 64px;
}

.diag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diag-card {
  padding: 36px 32px;
}

.diag-stat {
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--red);
  margin-bottom: 16px;
}

.diag-pct {
  font-size: 0.55em;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
}

.diag-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.diag-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}
/* ++++++++++++++++++++++++++++++ */
/* Articles Grid */
/* +++++++++++++++++++++++++++++ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.article-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  text-transform: uppercase;
}
.article-tag {
  color: var(--green-dim);
  font-weight: 600;
}
.article-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.article-card p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.article-read-more {
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.article-read-more:hover {
  color: var(--green);
}

/* ── Breadcrumb ── */

.breadcrumb {
  position: relative;
  z-index: 1;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--container-padding);
  margin-top: 73px;
}

.breadcrumb-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumb-inner a {
  color: var(--muted);
  transition: color 0.2s;
}

.breadcrumb-inner a:hover {
  color: var(--green);
}

.breadcrumb-inner .sep {
  margin: 0 8px;
  color: var(--line-strong);
}

.breadcrumb-inner [aria-current="page"] {
  color: var(--ink);
}