:root {
  --ink: #070b23;
  --muted: #667085;
  --soft: #f7fafc;
  --line: #e8edf2;
  --green: #2fc878;
  --green-dark: #0d7d50;
  --violet: #5b47f5;
  --violet-dark: #4934ee;
  --shadow-soft: 0 18px 52px rgba(7, 11, 35, 0.08);
  --shadow-glow: 0 28px 80px rgba(47, 200, 120, 0.22);
}

/* Recovery Options */
.recovery-options-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 6%, rgba(47, 200, 120, 0.13), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(91, 71, 245, 0.1), transparent 28%),
    linear-gradient(180deg, #fbfcff 0%, #f7fafc 100%);
}

.recovery-options-header {
  padding-bottom: 12px;
}

.recovery-options-hero {
  display: grid;
  justify-items: center;
  max-width: 900px;
  padding: 74px 0 54px;
  text-align: center;
}

.recovery-options-hero h1 {
  max-width: 820px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.recovery-options-hero p {
  max-width: 700px;
  margin: 20px 0 0;
  color: #334155;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.6;
}

.recovery-options-hero p + p {
  margin-top: 6px;
  color: #64748b;
}

.recovery-options-hero .recovery-confidence-note {
  display: inline-flex;
  width: auto;
  max-width: 720px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 200, 120, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(7, 11, 35, 0.06);
  margin-top: 26px;
  padding: 12px 18px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.recovery-choice-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.recovery-choice-card {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 12% 0%, rgba(47, 200, 120, 0.14), transparent 34%);
  box-shadow: 0 26px 80px rgba(7, 11, 35, 0.08);
  padding: 34px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.recovery-choice-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(47, 200, 120, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(91, 71, 245, 0.06), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.recovery-choice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 200, 120, 0.38);
  box-shadow: 0 32px 90px rgba(7, 11, 35, 0.12);
}

.recovery-choice-card:focus-within {
  border-color: rgba(47, 200, 120, 0.46);
  box-shadow:
    0 32px 90px rgba(7, 11, 35, 0.12),
    0 0 0 4px rgba(47, 200, 120, 0.16);
}

.recovery-choice-card:hover::before {
  opacity: 1;
}

.choice-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(47, 200, 120, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(47, 200, 120, 0.14), rgba(255, 255, 255, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.choice-icon span,
.choice-icon span::before,
.choice-icon span::after {
  display: block;
  content: "";
}

.choice-icon.single-site span {
  width: 36px;
  height: 30px;
  border: 3px solid #108f59;
  border-radius: 9px;
}

.choice-icon.single-site span::before {
  width: 16px;
  height: 3px;
  margin: 34px auto 0;
  border-radius: 999px;
  background: #108f59;
}

.choice-icon.recurring-work span {
  position: relative;
  width: 38px;
  height: 38px;
  border: 3px solid #108f59;
  border-radius: 999px;
}

.choice-icon.recurring-work span::before,
.choice-icon.recurring-work span::after {
  position: absolute;
  border-radius: 999px;
  background: #108f59;
}

.choice-icon.recurring-work span::before {
  width: 18px;
  height: 3px;
  left: 14px;
  top: 8px;
  transform: rotate(38deg);
}

.choice-icon.recurring-work span::after {
  width: 3px;
  height: 18px;
  left: 13px;
  top: 13px;
  transform: rotate(38deg);
}

.choice-card-copy {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}

.choice-card-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.choice-card-copy p {
  max-width: 520px;
  margin: 18px 0 0;
  color: #475569;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.65;
}

.choice-card-copy .choice-recommendation {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.1);
  color: #0b8f5a;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.choice-ideal {
  margin-top: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.78);
  padding: 22px;
}

.choice-ideal span {
  display: block;
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
}

.choice-ideal ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.choice-ideal li {
  position: relative;
  color: #334155;
  padding-left: 26px;
  font-size: 14px;
  font-weight: 750;
}

.choice-ideal li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.14);
  color: #108f59;
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.choice-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fc878, #108f59);
  color: #fff;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(16, 143, 89, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.choice-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 46px rgba(16, 143, 89, 0.28);
}

.recovery-choice-card:hover .choice-button,
.recovery-choice-card:focus-within .choice-button {
  box-shadow: 0 22px 46px rgba(16, 143, 89, 0.28);
}

.recovery-options-explainer {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
  margin-top: 34px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(7, 11, 35, 0.06);
  padding: 32px;
}

.recovery-options-explainer h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.recovery-options-explainer > p {
  margin: 0;
  color: #334155;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.7;
}

.recovery-options-footer {
  margin-top: 54px;
}

@media (max-width: 920px) {
  .recovery-choice-section,
  .recovery-options-explainer {
    grid-template-columns: 1fr;
  }

  .recovery-choice-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .recovery-options-hero {
    padding: 52px 0 38px;
  }

  .recovery-options-hero h1 {
    font-size: 3rem;
    letter-spacing: -0.06em;
  }

  .recovery-options-hero .recovery-confidence-note {
    border-radius: 18px;
  }

  .recovery-choice-card,
  .recovery-options-explainer {
    border-radius: 20px;
    padding: 24px;
  }

  .choice-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }
}

/* Recommended Plan */
.recommended-plan-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 6%, rgba(47, 200, 120, 0.1), transparent 28%),
    linear-gradient(180deg, #fbfcff 0%, #f7fafc 100%);
}

.plan-header {
  width: min(100% - 48px, 1280px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  padding-bottom: 24px;
}

.plan-steps {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  color: #475569;
  font-size: 12px;
  font-weight: 850;
  list-style: none;
}

.plan-steps li {
  display: grid;
  justify-items: center;
  gap: 8px;
  white-space: nowrap;
}

.plan-steps span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: #eef2f7;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.plan-steps .is-complete span,
.plan-steps .is-current span {
  background: #16a663;
  color: #fff;
}

.plan-steps .is-complete span::before {
  content: "✓";
}

.plan-steps .is-current {
  color: var(--ink);
}

.plan-shell {
  width: min(100% - 48px, 1280px);
  padding: 50px 0 28px;
}

.plan-recommendation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 405px;
  gap: 52px;
  align-items: start;
}

.plan-recommendation-copy h1 {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.04;
}

.recommended-plan-card,
.plan-summary-card,
.recommendation-reason-card,
.campaign-includes-card,
.plan-price-card,
.plan-next-card,
.plan-guarantee-card,
.plan-support-card {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(7, 11, 35, 0.07);
}

.recommended-plan-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  background:
    radial-gradient(circle at 9% 18%, rgba(47, 200, 120, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.92);
  padding: 38px;
}

.recommended-plan-icon {
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  border: 1px solid rgba(47, 200, 120, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.recommended-plan-icon span {
  display: block;
  width: 46px;
  height: 36px;
  border: 4px solid #108f59;
  border-radius: 10px;
}

.recommended-plan-icon span::after {
  display: block;
  width: 22px;
  height: 4px;
  margin: 42px auto 0;
  border-radius: 999px;
  background: #108f59;
  content: "";
}

.recommended-plan-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.plan-fit-badge {
  display: inline-flex;
  width: fit-content;
  margin: 14px 0 0;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.13);
  color: #0b8f5a;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 900;
}

.recommended-plan-card p:last-child {
  max-width: 560px;
  margin: 20px 0 0;
  color: #0f172a;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.65;
}

.recommended-plan-card .plan-confidence {
  max-width: 560px;
  margin: 18px 0 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.5;
}

.plan-summary-card {
  padding: 30px;
}

.plan-summary-card h2,
.campaign-includes-card h2,
.recommendation-reason-card h2,
.plan-support-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.plan-summary-card h2 {
  color: #475569;
  font-size: 14px;
  text-transform: uppercase;
}

.summary-metric {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  padding: 22px 0;
}

.summary-metric:last-of-type {
  border-bottom: 0;
}

.summary-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 14px;
  background: rgba(47, 200, 120, 0.12);
}

.summary-icon::before {
  color: #108f59;
  font-size: 28px;
  font-weight: 900;
}

.summary-icon.links::before { content: "↗"; }
.summary-icon.star { background: rgba(245, 158, 11, 0.14); }
.summary-icon.star::before { content: "★"; color: #f59e0b; }
.summary-icon.clock { background: rgba(59, 130, 246, 0.12); }
.summary-icon.clock::before { content: "◷"; color: #2563eb; }

.summary-metric p {
  margin: 0;
  color: #334155;
  font-size: 13px;
  font-weight: 850;
}

.summary-metric strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.summary-note {
  margin: 26px 0 0;
  color: #475569;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.recommendation-reason-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  background:
    linear-gradient(90deg, rgba(47, 200, 120, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.94);
  padding: 34px;
}

.reason-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 3px solid #108f59;
  border-radius: 999px;
}

.reason-icon::before {
  color: #108f59;
  content: "◎";
  font-size: 44px;
  font-weight: 900;
}

.recommendation-reason-card p {
  max-width: 900px;
  margin: 10px 0 0;
  color: #334155;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.6;
}

.plan-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 40px;
  align-items: start;
  margin-top: 34px;
}

.campaign-includes-card,
.plan-price-card {
  padding: 34px;
}

.plan-side-column {
  display: grid;
  gap: 20px;
  align-content: start;
}

.plan-guarantee-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.plan-next-card {
  padding: 24px;
}

.campaign-includes-card h2,
.plan-price-card .eyebrow {
  color: #0b8f5a;
  font-size: 14.5px;
  font-weight: 950;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.campaign-feature {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  padding: 22px 0;
}

.campaign-feature-group {
  margin: 26px 0 0;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.11);
  color: #087a4c;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 980;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.campaign-feature-group + .campaign-feature {
  margin-top: 8px;
}

.campaign-feature-group.is-exclusive {
  background: rgba(91, 71, 245, 0.1);
  color: #3f2bd7;
}

.campaign-feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 14px;
  background: rgba(47, 200, 120, 0.12);
  color: #108f59;
}

.campaign-feature-icon::before {
  font-size: 25px;
  font-weight: 900;
}

.campaign-feature-icon.workspace::before { content: "▣"; }
.campaign-feature-icon.verification::before { content: "⌕"; }
.campaign-feature-icon.intelligence::before { content: "◇"; }
.campaign-feature-icon.outreach::before { content: "✉"; }
.campaign-feature-icon.tracking::before { content: "▥"; }
.campaign-feature-icon.export::before { content: "↓"; }
.campaign-feature-icon.support::before { content: "?"; }

.campaign-feature h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.campaign-feature p {
  margin: 6px 0 0;
  color: #475569;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.campaign-pace-note {
  margin: 24px 0 0;
  border: 1px solid rgba(47, 200, 120, 0.16);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(47, 200, 120, 0.13), rgba(47, 200, 120, 0.06));
  color: #0f172a;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.plan-price {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(4rem, 8vw, 5.3rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.plan-price span {
  font-size: 0.28em;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.plan-price-card h2 {
  margin: 18px 0 0;
  color: #0f172a;
  font-size: 19px;
  font-weight: 850;
  line-height: 1.35;
}

.price-description {
  margin: 6px 0 0;
  color: #475569;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.price-positioning {
  margin: 12px 0 0;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.plan-price-card ul {
  display: grid;
  gap: 13px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  margin: 26px 0 0;
  padding: 24px 0 0;
  list-style: none;
}

.plan-price-card li {
  position: relative;
  color: #334155;
  padding-left: 30px;
  font-size: 15px;
  font-weight: 750;
}

.plan-price-card li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.14);
  color: #108f59;
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.plan-primary-action {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(135deg, #16a663, #0b8f5a);
  color: #fff;
  margin-top: 28px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 20px 44px rgba(16, 143, 89, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.plan-primary-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 52px rgba(16, 143, 89, 0.32);
}

.plan-security-note {
  margin: 18px 0 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.plan-next-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.plan-next-card ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: next-step;
}

.plan-next-card li {
  position: relative;
  color: #334155;
  padding-left: 34px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
  counter-increment: next-step;
}

.plan-next-card li::before {
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.14);
  color: #108f59;
  content: counter(next-step);
  font-size: 11px;
  font-weight: 900;
}

.guarantee-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  background: rgba(47, 200, 120, 0.12);
  color: #108f59;
}

.guarantee-icon::before {
  content: "◇";
  font-size: 26px;
  font-weight: 900;
}

.plan-guarantee-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.plan-guarantee-card p {
  margin: 4px 0 0;
  color: #334155;
  font-size: 14px;
  font-weight: 650;
}

.plan-support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  margin-top: 42px;
  padding: 34px;
}

.plan-support-card > div + div {
  border-left: 1px solid rgba(226, 232, 240, 0.9);
  padding-left: 40px;
}

.plan-support-card p {
  max-width: 420px;
  margin: 12px 0 0;
  color: #334155;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.6;
}

.plan-support-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #0b8f5a;
  font-size: 15px;
  font-weight: 900;
}

.plan-footer {
  justify-content: center;
  margin-top: 34px;
  color: #64748b;
}

@media (max-width: 1040px) {
  .plan-header {
    display: grid;
    justify-items: start;
  }

  .plan-steps {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .plan-recommendation-grid,
  .plan-detail-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .plan-shell,
  .plan-header {
    width: min(100% - 32px, 1280px);
  }

  .recommended-plan-card,
  .recommendation-reason-card,
  .plan-support-card {
    grid-template-columns: 1fr;
  }

  .recommended-plan-card,
  .recommendation-reason-card,
  .campaign-includes-card,
  .plan-price-card,
  .plan-support-card {
    padding: 24px;
  }

  .plan-support-card > div + div {
    border-left: 0;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    padding-top: 28px;
    padding-left: 0;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(47, 200, 120, 0.1), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(91, 71, 245, 0.1), transparent 28%),
    #fbfcff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

svg {
  display: block;
}

::selection {
  background: rgba(47, 200, 120, 0.22);
}

.section-shell {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  border-radius: 10px;
  background: #fff;
  padding: 12px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  outline: 4px solid rgba(47, 200, 120, 0.22);
}

.site-header {
  display: flex;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand span span {
  color: var(--green);
}

.brand-mark {
  width: 31px;
  height: 31px;
  color: var(--green);
  flex: 0 0 auto;
}

.brand.compact {
  font-size: 21px;
}

.brand.compact .brand-mark {
  width: 24px;
  height: 24px;
}

.primary-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.primary-nav a,
.site-footer nav a {
  transition: color 180ms ease;
}

.primary-nav a:hover,
.site-footer nav a:hover {
  color: var(--green);
}

.header-cta,
.waitlist-form button,
.issue-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-cta {
  min-height: 48px;
  border-radius: 999px;
  background: var(--violet);
  padding: 0 28px;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(91, 71, 245, 0.28);
}

.header-cta:hover,
.waitlist-form button:hover,
.issue-action:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.waitlist-form button:hover {
  background: var(--violet-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 4px solid rgba(47, 200, 120, 0.22);
  outline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
  gap: 68px;
  align-items: center;
  padding: 76px 0 64px;
  background-image:
    linear-gradient(rgba(47, 200, 120, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 200, 120, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-copy {
  max-width: 585px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(47, 200, 120, 0.2);
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.07);
  padding: 10px 15px;
  color: #0b8f5a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow svg,
.priority-callout svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

h1 {
  margin: 35px 0 0;
  color: var(--ink);
  font-size: clamp(3.3rem, 7vw, 5.45rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.hero-subcopy {
  max-width: 530px;
  margin: 28px 0 0;
  color: #334155;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
}

.hero-points {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.hero-points li,
.privacy-note {
  display: flex;
  align-items: center;
  gap: 14px;
}

.check-icon {
  position: relative;
  display: inline-grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 999px;
}

.check-icon::after {
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: "";
  transform: rotate(-45deg) translate(1px, -1px);
}

.waitlist-form {
  position: relative;
  display: flex;
  width: min(100%, 580px);
  gap: 15px;
}

.hero-form {
  margin-top: 44px;
  border: 1px solid rgba(91, 71, 245, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px;
  box-shadow: 0 18px 44px rgba(7, 11, 35, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

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

.hero-secondary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(91, 71, 245, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7, 11, 35, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.hero-secondary-cta:hover {
  border-color: rgba(47, 200, 120, 0.4);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.waitlist-form input {
  min-height: 72px;
  min-width: 0;
  flex: 1;
  border: 1px solid #c7d2df;
  border-radius: 13px;
  background: #fff;
  padding: 0 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.waitlist-form input::placeholder {
  color: #68788e;
}

.waitlist-form input:focus {
  border-color: var(--violet);
  background: #fff;
  box-shadow:
    0 0 0 5px rgba(91, 71, 245, 0.14),
    0 14px 28px rgba(7, 11, 35, 0.1);
}

.waitlist-form button {
  min-height: 72px;
  border-radius: 13px;
  background: var(--violet);
  padding: 0 32px;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 16px 36px rgba(91, 71, 245, 0.38);
  white-space: nowrap;
}

.form-note {
  max-width: 520px;
  margin: 34px 0 0;
  color: #475569;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.form-message {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  margin: 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.form-message.is-error {
  color: #dc2626;
}

.form-message.is-success {
  color: var(--green-dark);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: -32px;
  border-radius: 42px;
  background: rgba(47, 200, 120, 0.1);
  content: "";
  filter: blur(36px);
}

.assistant-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 200, 120, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  padding: 25px;
  box-shadow: var(--shadow-glow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brief-preview-card {
  background:
    radial-gradient(circle at 0% 12%, rgba(47, 200, 120, 0.1), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(91, 71, 245, 0.1), transparent 38%),
    rgba(255, 255, 255, 0.94);
}

.assistant-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.assistant-title {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.assistant-subtitle {
  margin: 10px 0 0;
  color: #475569;
  font-size: 16px;
  font-weight: 600;
}

.date-chip {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(7, 11, 35, 0.04);
}

.date-chip svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.report-chip {
  border-color: rgba(47, 200, 120, 0.16);
  background: rgba(47, 200, 120, 0.1);
  color: #08764c;
}

.brief-preview-hero {
  margin-top: 28px;
  text-align: center;
}

.brief-preview-hero span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.1);
  padding: 8px 13px;
  color: #08764c;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-preview-hero i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.brief-preview-hero h2 {
  max-width: 460px;
  margin: 18px auto 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.brief-preview-hero p {
  max-width: 430px;
  margin: 18px auto 0;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.brief-preview-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.brief-preview-kpis article,
.brief-preview-breakdown {
  border: 1px solid rgba(226, 232, 240, 0.78);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 32px rgba(7, 11, 35, 0.06);
}

.brief-preview-kpis article {
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
}

.brief-preview-kpis span {
  display: block;
  min-height: 30px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.35;
}

.brief-preview-kpis strong {
  display: block;
  margin-top: 10px;
  color: #3f9f63;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brief-preview-kpis article:first-child strong {
  color: #f59e0b;
}

.brief-preview-kpis p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.brief-preview-breakdown {
  margin-top: 18px;
  border-radius: 18px;
  padding: 22px;
}

.brief-preview-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.brief-preview-section-heading strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brief-preview-section-heading span {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.brief-preview-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
}

.brief-preview-breakdown-grid article {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 18px 10px;
  text-align: center;
}

.brief-preview-breakdown-grid article + article {
  border-left: 1px solid rgba(226, 232, 240, 0.9);
}

.brief-preview-breakdown-grid i {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.12);
}

.brief-preview-breakdown-grid article:nth-child(2) i {
  background: rgba(91, 71, 245, 0.12);
}

.brief-preview-breakdown-grid article:nth-child(3) i {
  background: rgba(59, 130, 246, 0.12);
}

.brief-preview-breakdown-grid span {
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
}

.brief-preview-breakdown-grid strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brief-preview-breakdown-grid small {
  color: #08764c;
  font-size: 10px;
  font-weight: 900;
}

.brief-preview-breakdown > p {
  margin: 16px 0 0;
  border-radius: 12px;
  background: rgba(47, 200, 120, 0.08);
  padding: 13px 15px;
  color: #1f2937;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.priority-callout {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  margin-top: 26px;
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 200, 120, 0.12), transparent 45%),
    rgba(47, 200, 120, 0.08);
  padding: 25px;
  color: var(--green);
}

.priority-callout p {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.priority-callout strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.priority-callout strong:first-of-type,
.priority-callout span {
  color: #08764c;
}

.issue-list {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.issue-card {
  display: grid;
  grid-template-columns: 48px 42px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 16px;
}

.issue-red {
  border-color: #fee2e2;
  background: #fff1f1;
  color: #ef4444;
}

.issue-amber {
  border-color: #fdebc0;
  background: #fff8e9;
  color: #f59e0b;
}

.issue-green {
  border-color: #ccefdc;
  background: #eefcf5;
  color: var(--green);
}

.issue-rank,
.issue-symbol {
  display: grid;
  place-items: center;
}

.issue-rank {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 25px;
  font-weight: 900;
}

.issue-symbol svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.issue-body {
  min-width: 0;
  color: var(--ink);
}

.issue-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.issue-topline h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.issue-topline span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 6px 9px;
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.issue-body p {
  margin: 5px 0 0;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.issue-body .issue-path {
  color: var(--ink);
  font-weight: 900;
}

.issue-action {
  min-height: 39px;
  border-radius: 10px;
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(7, 11, 35, 0.07);
  white-space: nowrap;
}

.view-all {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin: 24px auto 0;
  color: var(--violet);
  font-size: 14px;
  font-weight: 900;
  transition: color 180ms ease;
}

.view-all:hover {
  color: var(--violet-dark);
}

.trust-strip {
  padding: 20px 0 42px;
}

.trust-strip > p {
  max-width: 820px;
  margin: 0 auto;
  color: #475569;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.55;
  text-align: center;
}

.process-section {
  padding: 62px 0 56px;
  border-top: 1px solid rgba(226, 232, 240, 0.75);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 5vw, 3.55rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.section-heading > p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #475569;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.75;
}

.section-heading span,
.final-cta span {
  color: var(--green);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  margin-top: 62px;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step + .process-step::before {
  position: absolute;
  left: -50px;
  top: 47px;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green));
  content: "";
}

.journey-grid .process-step:nth-child(4)::before {
  display: none;
}

.step-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(47, 200, 120, 0.32);
  border-radius: 50%;
  background: rgba(47, 200, 120, 0.09);
  color: var(--green);
}

.step-icon.violet {
  border-color: rgba(91, 71, 245, 0.12);
  background: rgba(91, 71, 245, 0.1);
  color: var(--violet);
}

.step-icon svg,
.benefits svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.process-step > p {
  max-width: 292px;
  margin: 12px auto 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.mini-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.mini-icons span {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #64748b;
  font-size: 21px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.mini-icons svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #f59e0b;
  stroke-width: 2.3;
}

.metric-card {
  max-width: 285px;
  margin: 28px auto 0;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 13px;
  background: #fff;
  padding: 20px;
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.metric-card p,
.metric-card small {
  margin: 0;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.metric-card div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
}

.metric-card strong {
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.metric-card strong span {
  color: #64748b;
  font-size: 16px;
  font-weight: 800;
}

.metric-card svg {
  width: 112px;
  height: 58px;
}

.metric-card path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
}

.process-step:nth-child(2) .metric-card {
  color: var(--violet);
}

.process-step:nth-child(3) .metric-card {
  color: var(--green);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.brief-section {
  padding: 68px 0 48px;
}

.brief-section .benefits {
  margin-top: 38px;
}

.benefits article {
  padding: 34px;
}

.benefits article + article {
  border-left: 1px solid var(--line);
}

.benefits svg {
  width: 43px;
  height: 43px;
  color: var(--green);
}

.benefits h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.benefits p {
  margin: 12px 0 0;
  color: #334155;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
}

.home-frameworks {
  padding: 68px 0 18px;
}

.home-frameworks-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.home-frameworks-heading h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.home-frameworks-heading p:not(.framework-label) {
  max-width: 760px;
  margin: 18px auto 0;
  color: #475569;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.7;
}

.home-framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.home-framework-card {
  display: block;
  min-height: 100%;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  padding: 28px;
  box-shadow: 0 18px 52px rgba(7, 11, 35, 0.075);
  transition:
    transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 200ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 200ms ease;
}

.home-framework-card.live {
  background:
    radial-gradient(circle at 100% 0%, rgba(91, 71, 245, 0.1), transparent 34%),
    radial-gradient(circle at 8% 100%, rgba(47, 200, 120, 0.12), transparent 34%),
    #fff;
}

.home-framework-card:hover {
  border-color: rgba(47, 200, 120, 0.24);
  box-shadow: 0 26px 66px rgba(7, 11, 35, 0.105);
  transform: translateY(-3px);
}

.home-framework-card.live:hover {
  border-color: rgba(91, 71, 245, 0.22);
}

.home-framework-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 17px;
  background: rgba(47, 200, 120, 0.1);
  color: var(--green-dark);
}

.home-framework-card.live .home-framework-icon {
  background: rgba(91, 71, 245, 0.1);
  color: var(--violet);
}

.home-framework-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-framework-topline {
  display: flex;
  margin-top: 22px;
}

.home-framework-topline span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.1);
  padding: 0 10px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-framework-card.live .home-framework-topline span {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 10px 22px rgba(91, 71, 245, 0.2);
}

.home-framework-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.home-framework-card p {
  margin: 14px 0 0;
  color: #475569;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.home-framework-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 900;
}

.home-framework-card strong span {
  transition: transform 180ms ease;
}

.home-framework-card.live:hover strong span {
  transform: translateX(3px);
}

.framework-library-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin: 26px auto 0;
  color: var(--violet);
  font-size: 14px;
  font-weight: 900;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.framework-library-link:hover {
  color: var(--violet-dark);
  transform: translateY(-1px);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 38px;
  align-items: center;
  overflow: hidden;
  margin-top: 38px;
  border-radius: 19px;
  background:
    radial-gradient(ellipse at 55% 120%, rgba(47, 200, 120, 0.42), transparent 34%),
    radial-gradient(ellipse at 65% 120%, rgba(91, 71, 245, 0.56), transparent 42%),
    linear-gradient(180deg, #060b25 0%, #020617 100%);
  padding: 38px 44px;
  color: #fff;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.24);
}

.wave-lines {
  position: absolute;
  inset: auto -4% -8%;
  height: 58%;
  opacity: 0.76;
}

.wave-lines svg {
  width: 100%;
  height: 100%;
}

.wave-lines path {
  fill: none;
  stroke-width: 2;
}

.wave-lines path:first-child {
  stroke: var(--violet);
}

.wave-lines path:last-child {
  stroke: var(--green);
}

.final-cta > div,
.final-cta form {
  position: relative;
}

.final-cta-actions {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.final-cta h2 {
  max-width: 450px;
  margin: 0;
  font-size: clamp(1.95rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.final-cta > div > p {
  max-width: 430px;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.dark-form {
  width: 100%;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  box-shadow: 0 22px 52px rgba(2, 6, 23, 0.3);
}

.dark-form input {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.22);
  color: #fff;
  box-shadow: none;
}

.dark-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 200, 120, 0.16);
}

.dark-form .form-message {
  top: calc(100% + 42px);
  color: #9ff0c5;
}

.privacy-note {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
}

.final-cta-actions .privacy-note {
  position: static;
  margin: 0;
  line-height: 1.45;
}

.privacy-note .check-icon {
  width: 18px;
  height: 18px;
}

.privacy-note .check-icon::after {
  width: 7px;
  height: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 0 32px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.site-footer nav {
  gap: 34px;
  color: #64748b;
}

.site-footer p {
  margin: 0;
}

.thank-you-page {
  background:
    radial-gradient(circle at 50% 4%, rgba(47, 200, 120, 0.13), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(91, 71, 245, 0.1), transparent 28%),
    #fbfcff;
}

.secondary-header-link {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(7, 11, 35, 0.07);
  border: 1px solid var(--line);
}

.secondary-header-link:hover {
  background: #fff;
  color: var(--violet);
}

.thank-hero {
  padding: 70px 0 34px;
  text-align: center;
}

.success-mark {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.96), transparent 28%),
    rgba(47, 200, 120, 0.12);
  color: var(--green);
  box-shadow: 0 24px 58px rgba(47, 200, 120, 0.2);
}

.success-mark svg {
  width: 66px;
  height: 66px;
}

.success-mark circle,
.success-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-hero .eyebrow {
  margin-bottom: 28px;
}

.thank-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(3rem, 7vw, 5.1rem);
}

.thank-subhead {
  margin: 28px 0 0;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.thank-intro {
  max-width: 760px;
  margin: 16px auto 0;
  color: #334155;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.75;
}

.thank-message {
  padding: 18px 0 28px;
}

.message-card,
.question-section,
.share-section,
.closing-quote {
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.message-card {
  max-width: 840px;
  margin: 0 auto;
  padding: 34px 38px;
  text-align: center;
}

.message-card h2,
.question-copy h2,
.next-section h2,
.share-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.message-card p,
.question-copy p,
.share-section p {
  margin: 18px 0 0;
  color: #475569;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.75;
}

.question-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 42px;
  align-items: start;
  margin-top: 30px;
  padding: 42px;
}

.feedback-form {
  display: grid;
  gap: 16px;
}

.feedback-form textarea {
  width: 100%;
  min-height: 230px;
  resize: vertical;
  border: 1px solid #c7d2df;
  border-radius: 16px;
  background: #fff;
  padding: 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.feedback-form textarea::placeholder {
  color: #7d8ca1;
}

.feedback-form textarea:focus {
  border-color: var(--violet);
  outline: none;
  box-shadow:
    0 0 0 5px rgba(91, 71, 245, 0.14),
    0 14px 28px rgba(7, 11, 35, 0.08);
}

.feedback-form button,
.share-action button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 13px;
  background: var(--violet);
  padding: 0 26px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(91, 71, 245, 0.34);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.feedback-form button:hover,
.share-action button:hover {
  transform: translateY(-2px);
  background: var(--violet-dark);
}

.feedback-message,
.copy-message {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.feedback-message.is-error {
  color: #dc2626;
}

.feedback-success {
  border: 1px solid rgba(47, 200, 120, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 200, 120, 0.1), transparent 38%),
    #fff;
  padding: 32px;
  box-shadow: 0 16px 38px rgba(7, 11, 35, 0.06);
  animation: fadeSuccess 360ms ease both;
}

.feedback-success-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 200, 120, 0.12);
  color: var(--green-dark);
  font-size: 26px;
  font-weight: 900;
}

.feedback-success h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.feedback-success p {
  margin: 12px 0 0;
  color: #475569;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

@keyframes fadeSuccess {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.next-section {
  padding: 64px 0 20px;
}

.next-section h2 {
  text-align: center;
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.next-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(7, 11, 35, 0.06);
}

.next-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(47, 200, 120, 0.1);
  color: var(--green);
}

.next-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.next-grid h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.share-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
  padding: 38px;
}

.share-section h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}

.share-section p {
  max-width: 720px;
}

.share-action {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.share-action button {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(7, 11, 35, 0.08);
}

.share-action button:hover {
  background: #fff;
  color: var(--violet);
}

.share-action button:disabled {
  cursor: default;
  color: var(--green-dark);
  transform: none;
}

.founder-note {
  max-width: 920px;
  margin-top: 48px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  padding: 34px 38px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(7, 11, 35, 0.05);
}

.founder-note h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.founder-note p {
  max-width: 690px;
  margin: 16px auto 0;
  color: #475569;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.founder-note p:nth-of-type(2),
.founder-note p:nth-of-type(3) {
  margin-top: 8px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.closing-quote {
  margin-top: 48px;
  padding: 48px;
  text-align: center;
}

.closing-quote blockquote {
  margin: 0;
}

.closing-quote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.12;
}

.closing-quote p + p {
  margin-top: 10px;
  color: var(--green-dark);
}

.closing-quote cite {
  display: block;
  margin-top: 24px;
  color: #64748b;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

.thank-footer {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

.thank-footer a {
  transition: color 180ms ease;
}

.thank-footer a:hover {
  color: var(--green);
}

.legal-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(47, 200, 120, 0.1), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(91, 71, 245, 0.08), transparent 28%),
    #fbfcff;
}

.legal-content {
  max-width: 860px;
  margin-top: 56px;
  margin-bottom: 44px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}

.legal-content h1 {
  margin-top: 0;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
}

.legal-content h2 {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.legal-content p {
  margin: 14px 0 0;
  color: #475569;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.75;
}

.resource-hero,
.category-hero,
.article-header {
  padding: 74px 0 36px;
}

.resource-hero {
  max-width: 900px;
  text-align: center;
}

.resource-hero h1,
.category-hero h1,
.article-header h1 {
  margin-top: 28px;
  font-size: clamp(3rem, 6.6vw, 5.15rem);
}

.resource-hero p,
.category-hero p,
.article-description {
  margin: 24px auto 0;
  color: #334155;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.75;
}

.resource-hero p,
.article-description {
  max-width: 760px;
}

.resource-section {
  padding: 44px 0;
}

.resource-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.resource-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.resource-heading p {
  max-width: 440px;
  margin: 0;
  color: #64748b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.resource-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(5, 1fr);
}

.resource-card,
.article-card,
.toc-card,
.insight-box,
.article-cta,
.related-grid a {
  border: 1px solid rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.resource-card,
.article-card {
  display: block;
  min-height: 100%;
  border-radius: 19px;
  padding: 28px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.resource-card:hover,
.article-card:hover,
.related-grid a:hover {
  border-color: rgba(47, 200, 120, 0.28);
  box-shadow: 0 24px 58px rgba(7, 11, 35, 0.1);
  transform: translateY(-3px);
}

.resource-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(47, 200, 120, 0.1);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.resource-card h3,
.article-card h3,
.article-card h2,
.related-articles h2 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.article-card h2 {
  font-size: 28px;
}

.resource-card p,
.article-card p {
  margin: 14px 0 0;
  color: #475569;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.single-feature {
  align-items: stretch;
}

.article-card > span,
.article-kicker,
.article-meta,
.breadcrumb {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 900;
}

.resource-cta {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin-top: 38px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 24% 12%, rgba(47, 200, 120, 0.16), transparent 34%),
    radial-gradient(circle at 76% 0%, rgba(91, 71, 245, 0.13), transparent 32%),
    #fff;
  padding: 52px 32px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.86);
}

.resource-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.resource-cta p {
  max-width: 620px;
  margin: 0;
  color: #475569;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #64748b;
}

.breadcrumb a {
  color: var(--violet);
}

.category-hero {
  max-width: 900px;
}

.category-hero p {
  margin-left: 0;
}

.article-shell {
  padding-bottom: 28px;
}

.article-header {
  max-width: 920px;
}

.article-kicker {
  margin: 34px 0 0;
}

.article-description {
  margin-left: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  color: #64748b;
}

.article-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 8px 12px;
}

.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: 54px;
  align-items: start;
  padding-top: 26px;
}

.toc-card {
  position: sticky;
  top: 24px;
  border-radius: 18px;
  padding: 22px;
}

.toc-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.toc-card a {
  display: block;
  border-top: 1px solid var(--line);
  padding: 13px 0;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  transition: color 180ms ease;
}

.toc-card a:hover {
  color: var(--green-dark);
}

.article-body {
  min-width: 0;
}

.article-body section {
  scroll-margin-top: 24px;
}

.article-body section + section,
.insight-box,
.related-articles,
.article-nav {
  margin-top: 42px;
}

.article-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.14;
}

.article-body p,
.article-body li {
  color: #334155;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.85;
}

.article-body p {
  margin: 18px 0 0;
}

.article-body ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 24px;
}

.article-body strong {
  color: var(--ink);
}

.insight-box {
  border-radius: 19px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 200, 120, 0.12), transparent 38%),
    #fff;
  padding: 30px;
}

.insight-box p {
  margin: 0;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insight-box strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.28;
}

.article-cta {
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 18%, rgba(91, 71, 245, 0.15), transparent 30%),
    #fff;
  padding: 34px;
}

.article-cta h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
}

.article-cta .header-cta {
  margin-top: 22px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.related-grid a {
  display: block;
  border-radius: 16px;
  padding: 22px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.related-grid span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.4;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.article-nav a {
  color: var(--violet);
  font-size: 14px;
  font-weight: 900;
}

.framework-library {
  padding: 36px 0 28px;
}

.framework-library-card,
.framework-summary-card,
.framework-board,
.dimension-card,
.priority-legend,
.recovery-workflow,
.ai-callout,
.product-feature-section {
  border: 1px solid rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.framework-library-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  border-radius: 24px;
  padding: 38px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.framework-library-card:hover {
  border-color: rgba(47, 200, 120, 0.28);
  box-shadow: 0 26px 62px rgba(7, 11, 35, 0.11);
  transform: translateY(-3px);
}

.framework-label {
  margin: 0;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.framework-library-card h2,
.framework-board h2,
.framework-section-heading h2,
.priority-legend h2,
.recovery-workflow h2,
.ai-callout h2,
.product-feature-section h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.framework-library-card p,
.framework-board-header > p,
.dimension-card p,
.ai-callout p,
.product-feature-section p {
  margin: 18px 0 0;
  color: #475569;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.7;
}

.framework-mini-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.framework-mini-matrix span {
  display: grid;
  min-height: 120px;
  place-items: center;
  border-radius: 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.framework-hero {
  padding: 72px 0 36px;
}

.framework-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
  margin-top: 32px;
}

.framework-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(3.2rem, 7vw, 5.45rem);
}

.framework-hero p:not(.framework-label) {
  max-width: 780px;
  margin: 24px 0 0;
  color: #334155;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.75;
}

.framework-summary-card {
  border-radius: 22px;
  padding: 28px;
}

.framework-summary-card span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.framework-summary-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.download-placeholder {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 18px;
  color: #64748b;
  cursor: not-allowed;
  font-size: 14px;
  font-weight: 900;
}

.framework-board {
  border-radius: 26px;
  padding: 38px;
}

.framework-board-header {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 34px;
  align-items: end;
}

.matrix-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  padding: 34px 34px 48px 54px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(7, 11, 35, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 11, 35, 0.05) 1px, transparent 1px),
    #f8fafc;
  background-size: 36px 36px;
}

.matrix-axis {
  position: absolute;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.y-axis {
  left: 14px;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
}

.x-axis {
  right: 34px;
  bottom: 16px;
}

.matrix-cell {
  min-height: 220px;
  border-radius: 20px;
  padding: 26px;
  color: var(--ink);
}

.matrix-cell span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.matrix-cell strong {
  display: block;
  margin-top: 52px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.matrix-cell p {
  margin: 12px 0 0;
  color: #334155;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.55;
}

.matrix-hot,
.priority-pill.hot,
.legend-dot.hot {
  background: #fee2e2;
}

.matrix-plan,
.priority-pill.plan,
.legend-dot.plan {
  background: #fef3c7;
}

.matrix-watch,
.priority-pill.watch,
.legend-dot.watch {
  background: #dcfce7;
}

.matrix-ignore,
.priority-pill.ignore,
.legend-dot.ignore {
  background: #e2e8f0;
}

.framework-section {
  padding: 64px 0 0;
}

.framework-section-heading {
  max-width: 840px;
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.dimension-card {
  border-radius: 18px;
  padding: 24px;
}

.dimension-card span,
.product-feature-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: rgba(47, 200, 120, 0.11);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.dimension-card h3,
.product-feature-grid h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.dimension-card p,
.product-feature-grid p {
  font-size: 14px;
}

.score-table-wrap {
  overflow-x: auto;
  margin-top: 28px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.score-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.score-table th,
.score-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px 16px;
  text-align: left;
}

.score-table th {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.score-table td {
  color: #334155;
  font-size: 14px;
  font-weight: 750;
}

.score-table tbody tr:last-child td {
  border-bottom: 0;
}

.priority-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.legend-workflow-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.priority-legend,
.recovery-workflow {
  border-radius: 22px;
  padding: 30px;
}

.priority-legend ul,
.recovery-workflow ol {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.priority-legend li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #475569;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.legend-dot {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.recovery-workflow li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.recovery-workflow strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.recovery-workflow span {
  color: #475569;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.6;
}

.ai-callout {
  display: grid;
  margin-top: 64px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 10%, rgba(91, 71, 245, 0.16), transparent 34%),
    radial-gradient(circle at 18% 90%, rgba(47, 200, 120, 0.14), transparent 34%),
    #fff;
  padding: 44px;
}

.ai-callout > div {
  max-width: 840px;
}

.product-feature-section {
  margin-top: 64px;
  border-radius: 24px;
  padding: 42px;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.product-feature-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
}

.framework-method-page,
.framework-library-page {
  overflow: hidden;
}

.method-hero,
.library-hero {
  padding: 88px 0 44px;
}

.method-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 64px;
  align-items: center;
  margin-top: 38px;
}

.method-hero h1,
.library-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(3.65rem, 7.4vw, 6.1rem);
  letter-spacing: -0.08em;
}

.method-one-liner,
.library-hero p {
  max-width: 790px;
  margin: 24px 0 0;
  color: #334155;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 650;
  line-height: 1.72;
}

.executive-summary {
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(91, 71, 245, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.92);
  padding: 28px;
  box-shadow: 0 24px 64px rgba(7, 11, 35, 0.09);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.summary-row:first-child {
  padding-top: 0;
}

.summary-row span {
  color: #64748b;
  font-size: 13px;
  font-weight: 850;
}

.summary-row strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.summary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.summary-actions button,
.download-actions button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: not-allowed;
  font-size: 13px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.summary-actions button:first-child,
.download-actions button:first-child {
  border-color: transparent;
  background: var(--violet);
  color: #fff;
  box-shadow: 0 14px 30px rgba(91, 71, 245, 0.28);
}

.method-section,
.method-diagram {
  padding: 72px 0 0;
}

.method-section-title {
  max-width: 820px;
}

.method-section-title h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(2.05rem, 4.6vw, 3.45rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.matrix-svg-frame {
  margin-top: 34px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 200, 120, 0.1), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(91, 71, 245, 0.11), transparent 34%),
    #fff;
  padding: 26px;
  box-shadow: 0 38px 94px rgba(7, 11, 35, 0.14);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.priority-matrix-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.matrix-svg-frame:hover {
  border-color: rgba(47, 200, 120, 0.22);
  box-shadow: 0 44px 110px rgba(7, 11, 35, 0.16);
  transform: translateY(-2px);
}

.matrix-marker {
  transform-box: fill-box;
  transform-origin: center;
  animation: markerPulse 3.6s ease-in-out infinite;
}

.primary-marker {
  animation-duration: 2.8s;
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 0.88;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

.method-dimension-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.method-dimension-card,
.priority-demo,
.opportunity-card,
.assistant-panel,
.download-suite,
.method-related-card,
.framework-showcase-card {
  border: 1px solid rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 52px rgba(7, 11, 35, 0.075);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.method-dimension-card {
  border-radius: 22px;
  padding: 26px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.method-dimension-card:hover,
.priority-demo:hover,
.framework-showcase-card:hover,
.method-related-card:hover,
.opportunity-card:hover {
  box-shadow: 0 28px 68px rgba(7, 11, 35, 0.105);
  transform: translateY(-3px);
}

.method-dimension-card svg,
.method-flow svg,
.framework-showcase-card svg,
.assistant-avatar svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-dimension-card svg {
  width: 36px;
  height: 36px;
  color: var(--green-dark);
}

.method-dimension-card span {
  display: inline-flex;
  margin-top: 22px;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.1);
  padding: 7px 10px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.method-dimension-card h3,
.opportunity-card h3,
.method-flow h3,
.method-related-card h3,
.framework-showcase-card h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.22;
}

.method-dimension-card p,
.opportunity-card small,
.method-flow p,
.method-related-card p,
.framework-showcase-card p {
  margin: 12px 0 0;
  color: #475569;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.priority-demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  margin-top: 32px;
  border-radius: 28px;
  padding: 34px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.slider-panel {
  display: grid;
  gap: 20px;
}

.slider-panel label {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.slider-panel input[type="range"] {
  accent-color: var(--violet);
  cursor: pointer;
  transition: filter 180ms ease;
}

.slider-panel input[type="range"]:hover {
  filter: saturate(1.16);
}

.slider-panel span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(91, 71, 245, 0.1);
  color: var(--violet);
  font-size: 13px;
  font-weight: 900;
}

.demo-result {
  border-radius: 24px;
  padding: 28px;
  color: var(--ink);
  transition:
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.demo-result[data-recommendation-tone="recover"] {
  background: linear-gradient(145deg, #dcfce7, #fff);
}

.demo-result[data-recommendation-tone="plan"] {
  background: linear-gradient(145deg, #fef3c7, #fff);
}

.demo-result[data-recommendation-tone="monitor"] {
  background: linear-gradient(145deg, #e0f2fe, #fff);
}

.demo-result[data-recommendation-tone="ignore"] {
  background: linear-gradient(145deg, #e2e8f0, #fff);
}

.demo-result p {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-result > strong {
  display: block;
  margin-top: 8px;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.08em;
  transition:
    transform 220ms ease,
    color 220ms ease;
}

.demo-result > span {
  display: inline-flex;
  border-radius: 999px;
  background: #fff;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
}

.demo-reason {
  margin-top: 24px;
}

.demo-reason h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.demo-reason ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: #334155;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
  animation: fadeSuccess 260ms ease both;
}

.opportunity-card-grid,
.method-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.method-related-grid {
  grid-template-columns: repeat(2, 1fr);
}

.opportunity-card,
.method-related-card {
  border-radius: 24px;
  padding: 30px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.opportunity-card {
  border-top-width: 6px;
}

.priority-recover {
  border-top-color: #2fc878;
}

.priority-plan {
  border-top-color: #f59e0b;
}

.priority-monitor {
  border-top-color: #38bdf8;
}

.opportunity-card div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.opportunity-card p {
  margin: 18px 0 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 850;
}

.opportunity-card p strong {
  color: var(--ink);
  font-size: 36px;
  letter-spacing: -0.06em;
}

.opportunity-card b {
  display: inline-flex;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.1);
  padding: 8px 12px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 28px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 28px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.method-flow article {
  position: relative;
  border-radius: 20px;
  background: #f8fafc;
  padding: 24px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.method-flow article:hover {
  background: #fff;
  transform: translateY(-2px);
}

.method-flow article + article::before {
  position: absolute;
  left: -12px;
  top: 50%;
  color: var(--green-dark);
  content: ">";
  font-size: 18px;
  font-weight: 900;
  transform: translateY(-50%);
}

.method-flow svg {
  width: 30px;
  height: 30px;
  color: var(--green-dark);
}

.assistant-panel {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin-top: 76px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 0%, rgba(91, 71, 245, 0.2), transparent 34%),
    radial-gradient(circle at 10% 110%, rgba(47, 200, 120, 0.18), transparent 34%),
    #fff;
  padding: 46px;
  box-shadow: 0 34px 86px rgba(7, 11, 35, 0.12);
}

.assistant-avatar {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 22px;
  background: rgba(91, 71, 245, 0.1);
  color: var(--violet);
  box-shadow: 0 18px 38px rgba(91, 71, 245, 0.14);
  animation: assistantFloat 4.2s ease-in-out infinite;
}

@keyframes assistantFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.assistant-avatar svg {
  width: 42px;
  height: 42px;
}

.assistant-panel h2,
.download-suite h2,
.method-final-cta h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.assistant-panel p:not(.framework-label),
.method-final-cta p {
  margin: 18px 0 0;
  color: #475569;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.7;
}

.assistant-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.assistant-metrics span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 9px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.framework-system-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.framework-system-map a {
  position: relative;
  min-height: 150px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 22px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.framework-system-map a + a::before {
  position: absolute;
  left: -16px;
  top: 50%;
  color: var(--green-dark);
  content: ">";
  font-weight: 900;
  opacity: 0.7;
}

.framework-system-map a:hover {
  border-color: rgba(47, 200, 120, 0.24);
  box-shadow: 0 24px 58px rgba(7, 11, 35, 0.1);
  transform: translateY(-3px);
}

.framework-system-map span,
.method-related-card span,
.framework-showcase-card span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.framework-system-map strong {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.download-suite {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) 1.14fr;
  gap: 36px;
  align-items: center;
  margin-top: 76px;
  border-radius: 30px;
  padding: 42px;
}

.download-actions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.method-related-card h3 {
  font-size: 28px;
}

.method-final-cta {
  display: grid;
  justify-items: center;
  margin-top: 42px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(47, 200, 120, 0.36), transparent 34%),
    radial-gradient(ellipse at 72% 110%, rgba(91, 71, 245, 0.42), transparent 42%),
    linear-gradient(180deg, #060b25 0%, #020617 100%);
  padding: 58px 32px;
  color: #fff;
  text-align: center;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.24);
}

.method-final-cta h2 {
  max-width: 860px;
  color: #fff;
}

.method-final-cta p {
  max-width: 680px;
  color: #cbd5e1;
}

.method-final-cta .header-cta {
  margin-top: 12px;
}

.library-hero {
  max-width: 980px;
}

.library-hero p {
  max-width: 820px;
}

.library-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 8px 0 26px;
}

.library-stats div {
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  padding: 20px;
  box-shadow: 0 14px 34px rgba(7, 11, 35, 0.05);
}

.library-stats strong {
  display: block;
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.library-stats span {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}

.framework-controls {
  display: block;
  padding: 18px 0 18px;
}

.framework-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.framework-filter-row button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  padding: 0 13px;
  color: #7a8798;
  cursor: not-allowed;
  font-size: 12px;
  font-weight: 900;
  opacity: 0.76;
}

.framework-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 26px 0 22px;
}

.framework-showcase-card {
  display: grid;
  gap: 20px;
  min-height: 100%;
  border-radius: 24px;
  padding: 30px;
  cursor: pointer;
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease;
}

.framework-showcase-card.featured {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1fr) 1.08fr;
  align-items: stretch;
  min-height: 468px;
  background:
    radial-gradient(circle at 88% 0%, rgba(91, 71, 245, 0.13), transparent 35%),
    radial-gradient(circle at 18% 100%, rgba(47, 200, 120, 0.15), transparent 34%),
    #fff;
  padding: 42px;
  box-shadow: 0 34px 86px rgba(7, 11, 35, 0.13);
}

.framework-showcase-card.featured:hover {
  border-color: rgba(91, 71, 245, 0.24);
  box-shadow:
    0 36px 92px rgba(7, 11, 35, 0.15),
    0 0 0 1px rgba(91, 71, 245, 0.06);
}

.framework-showcase-card:hover {
  border-color: rgba(47, 200, 120, 0.28);
}

.framework-showcase-card:hover .framework-preview {
  color: var(--violet);
  transform: translateY(-2px) scale(1.025);
}

.framework-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  grid-column: 1 / -1;
}

.framework-card-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.1);
  padding: 0 10px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.framework-card-topline .status-live {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 10px 22px rgba(91, 71, 245, 0.22);
}

.framework-preview {
  width: 100%;
  height: auto;
  min-height: 112px;
  color: var(--green-dark);
  transition:
    color 180ms ease,
    transform 180ms ease;
  stroke-width: 2.25;
}

.framework-preview * {
  vector-effect: non-scaling-stroke;
}

.framework-showcase-card.featured .framework-preview {
  align-self: center;
  min-height: 300px;
  color: var(--violet);
}

.framework-showcase-card small {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.1);
  padding: 8px 11px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.framework-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.framework-showcase-card.featured .framework-card-body {
  justify-content: center;
}

.framework-showcase-card.featured h2 {
  font-size: clamp(2.35rem, 4.35vw, 3.55rem);
}

.framework-showcase-card.featured .framework-card-body > p {
  max-width: 560px;
  margin-top: 18px;
  color: #334155;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.72;
}

.featured-use-cases {
  margin-top: 26px;
}

.featured-use-cases strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-use-cases ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.featured-use-cases li {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 12px 12px 34px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.featured-use-cases li::before {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid var(--green);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.featured-use-cases li::after {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 5px;
  height: 3px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: "";
  transform: translateY(-62%) rotate(-45deg);
}

.featured-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}

.featured-info-row span {
  display: inline-flex;
  align-items: center;
}

.featured-info-row span + span::before {
  width: 4px;
  height: 4px;
  margin-right: 10px;
  border-radius: 50%;
  background: #94a3b8;
  content: "";
}

.featured-framework-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  border-radius: 999px;
  background: var(--violet);
  padding: 14px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(91, 71, 245, 0.28);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.featured-framework-cta span {
  transition: transform 180ms ease;
}

.framework-showcase-card.featured:hover .featured-framework-cta {
  background: var(--violet-dark);
  box-shadow: 0 18px 38px rgba(91, 71, 245, 0.34);
  transform: translateY(-1px);
}

.framework-showcase-card.featured:hover .featured-framework-cta span {
  transform: translateX(3px);
}

.framework-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.framework-showcase-card.featured .framework-meta {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.framework-meta div {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(248, 250, 252, 0.78);
  min-height: 62px;
  padding: 12px;
}

.framework-meta dt {
  margin: 0;
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.framework-meta dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.toolkit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: center;
  padding: 72px 0 46px;
}

.toolkit-hero-copy h1 {
  max-width: 780px;
}

.toolkit-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.toolkit-secondary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(91, 71, 245, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0 24px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7, 11, 35, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.toolkit-secondary-cta:hover {
  border-color: rgba(91, 71, 245, 0.36);
  box-shadow: 0 16px 34px rgba(7, 11, 35, 0.09);
  transform: translateY(-2px);
}

.toolkit-hero-panel,
.toolkit-section,
.toolkit-resource-card,
.toolkit-template-card,
.toolkit-checklist li,
.tracker-grid article,
.playbook-panel article {
  border: 1px solid rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.toolkit-hero-panel {
  border-radius: 28px;
  padding: 30px;
}

.toolkit-hero-panel div {
  display: grid;
  gap: 8px;
}

.toolkit-hero-panel span,
.toolkit-resource-card span,
.tracker-grid span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.toolkit-hero-panel strong {
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.toolkit-hero-panel ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.toolkit-hero-panel li,
.toolkit-checklist li {
  position: relative;
  padding-left: 30px;
  color: #334155;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.55;
}

.toolkit-hero-panel li::before,
.toolkit-checklist li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 200, 120, 0.12);
  color: var(--green-dark);
  content: "\2713";
  font-size: 12px;
  font-weight: 900;
}

.toolkit-resources {
  padding: 34px 0 28px;
}

.toolkit-resources .section-heading p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #475569;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.7;
}

.toolkit-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.toolkit-resource-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-radius: 22px;
  padding: 24px;
}

.toolkit-resource-card h3,
.tracker-grid h3,
.playbook-panel h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.toolkit-resource-card p,
.tracker-grid p,
.playbook-panel p {
  margin: 14px 0 0;
  color: #475569;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.68;
}

.toolkit-resource-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 900;
}

.toolkit-section {
  margin-top: 40px;
  border-radius: 30px;
  padding: 42px;
}

.toolkit-section-heading {
  max-width: 760px;
}

.toolkit-section-heading h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.toolkit-template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.toolkit-template-card {
  overflow: hidden;
  border-radius: 22px;
}

.template-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.86);
  padding: 18px;
}

.template-card-top span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.template-card-top button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--violet);
  padding: 0 14px;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.toolkit-template-card pre {
  min-height: 360px;
  margin: 0;
  padding: 20px;
  color: #334155;
  font: 650 14px/1.65 Inter, ui-sans-serif, system-ui, sans-serif;
  white-space: pre-wrap;
}

.toolkit-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.toolkit-checklist li {
  border-radius: 18px;
  padding: 22px 22px 22px 54px;
}

.toolkit-checklist li::before {
  left: 22px;
  top: 24px;
}

.toolkit-checklist strong,
.toolkit-checklist span {
  display: block;
}

.toolkit-checklist strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.toolkit-checklist span {
  margin-top: 8px;
  color: #64748b;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.6;
}

.tracker-grid,
.playbook-panel {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.tracker-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.playbook-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tracker-grid article,
.playbook-panel article {
  border-radius: 22px;
  padding: 26px;
}

.aweber-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.aweber-hidden iframe {
  width: 1px;
  height: 1px;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .toolkit-hero,
  .toolkit-card-grid,
  .toolkit-template-grid,
  .toolkit-checklist,
  .tracker-grid,
  .playbook-panel {
    grid-template-columns: 1fr;
  }

  .toolkit-hero {
    gap: 34px;
    padding-top: 54px;
  }

  .toolkit-resource-card {
    min-height: auto;
  }

  .toolkit-template-card pre {
    min-height: 240px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    max-width: 680px;
    margin: 0 auto;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .final-cta,
  .question-section,
  .share-section,
  .home-framework-grid,
  .category-grid,
  .article-layout,
  .framework-library-card,
  .framework-hero-grid,
  .framework-board-header,
  .dimension-grid,
  .legend-workflow-grid,
  .product-feature-grid,
  .method-hero-grid,
  .method-dimension-grid,
  .priority-demo,
  .opportunity-card-grid,
  .method-flow,
  .framework-system-map,
  .download-suite,
  .download-actions,
  .framework-showcase,
  .library-stats {
    grid-template-columns: 1fr;
  }

  .process-step + .process-step::before {
    display: none;
  }

  .benefits article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .benefits article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .thank-footer {
    align-items: center;
  }

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

  .home-frameworks {
    padding-top: 54px;
  }

  .resource-heading {
    display: block;
  }

  .resource-heading p {
    margin-top: 12px;
  }

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

  .toc-card {
    position: static;
  }

  .framework-mini-matrix {
    max-width: 560px;
  }

  .method-flow article + article::before,
  .framework-system-map a + a::before {
    display: none;
  }

  .framework-showcase-card.featured {
    grid-column: auto;
  }

  .framework-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .framework-showcase-card.featured,
  .framework-showcase-card.featured .framework-meta {
    grid-template-columns: 1fr;
  }

  .framework-showcase-card.featured .framework-preview {
    min-height: 220px;
  }

  .framework-controls {
    padding-top: 10px;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .site-header {
    width: min(100% - 32px, 1180px);
  }

  .toolkit-hero {
    padding: 46px 0 30px;
  }

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

  .toolkit-hero-actions .header-cta,
  .toolkit-secondary-cta {
    width: 100%;
  }

  .toolkit-hero-panel,
  .toolkit-section {
    border-radius: 24px;
    padding: 24px 20px;
  }

  .toolkit-hero-panel strong {
    font-size: 26px;
  }

  .toolkit-resource-card,
  .tracker-grid article,
  .playbook-panel article {
    padding: 22px 20px;
  }

  .template-card-top {
    align-items: stretch;
    flex-direction: column;
  }

  .template-card-top button {
    width: 100%;
  }

  .toolkit-template-card pre {
    min-height: 250px;
    padding: 18px;
  }

  .toolkit-checklist li {
    padding: 20px 18px 20px 50px;
  }

  .toolkit-checklist li::before {
    left: 18px;
    top: 22px;
  }

  .site-header {
    padding: 22px 0;
  }

  .brand {
    font-size: 22px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero {
    gap: 42px;
    padding: 42px 0 48px;
  }

  h1 {
    margin-top: 28px;
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

  .hero-subcopy {
    font-size: 17px;
    line-height: 1.7;
  }

  .hero-points {
    font-size: 16px;
  }

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

  .hero-actions .header-cta,
  .hero-secondary-cta {
    width: 100%;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .hero-form {
    margin-top: 36px;
    padding: 8px;
  }

  .waitlist-form button,
  .waitlist-form input {
    width: 100%;
  }

  .assistant-card {
    padding: 18px;
  }

  .assistant-header {
    flex-direction: column;
  }

  .brief-preview-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brief-preview-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brief-preview-section-heading span {
    white-space: normal;
  }

  .brief-preview-breakdown-grid {
    grid-template-columns: 1fr;
  }

  .brief-preview-breakdown-grid article + article {
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    border-left: 0;
  }

  .priority-callout {
    padding: 20px;
  }

  .priority-callout strong {
    font-size: 21px;
  }

  .issue-card {
    grid-template-columns: 46px 1fr;
  }

  .issue-symbol {
    display: none;
  }

  .issue-action {
    grid-column: 2;
    width: fit-content;
  }

  .issue-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .benefits article + article,
  .benefits article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-section {
    padding-top: 46px;
  }

  .process-grid {
    gap: 44px;
  }

  .final-cta {
    margin-top: 28px;
    padding: 30px 22px 42px;
  }

  .thank-hero {
    padding-top: 42px;
  }

  .success-mark {
    width: 78px;
    height: 78px;
  }

  .success-mark svg {
    width: 54px;
    height: 54px;
  }

  .message-card,
  .question-section,
  .share-section,
  .closing-quote,
  .legal-content {
    padding: 26px 20px;
  }

  .feedback-form button,
  .share-action button {
    width: 100%;
  }

  .privacy-note {
    position: static;
    margin-top: 14px;
  }

  .site-footer nav {
    gap: 18px 28px;
    flex-wrap: wrap;
  }

  .resource-hero,
  .category-hero,
  .article-header {
    padding: 48px 0 24px;
  }

  .resource-hero h1,
  .category-hero h1,
  .article-header h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .resource-section {
    padding: 30px 0;
  }

  .resource-card,
  .article-card,
  .article-cta,
  .insight-box {
    padding: 24px 20px;
  }

  .resource-cta {
    margin-top: 24px;
    padding: 36px 20px;
  }

  .article-layout {
    gap: 30px;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
    line-height: 1.78;
  }

  .related-grid,
  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav {
    display: grid;
  }

  .framework-hero {
    padding: 48px 0 24px;
  }

  .framework-board,
  .framework-library-card,
  .product-feature-section,
  .ai-callout {
    padding: 26px 20px;
  }

  .matrix-diagram {
    grid-template-columns: 1fr;
    padding: 22px 16px 48px;
  }

  .matrix-cell {
    min-height: 190px;
  }

  .matrix-axis.y-axis {
    display: none;
  }

  .x-axis {
    left: 16px;
    right: auto;
  }

  .recovery-workflow li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .method-hero,
  .library-hero {
    padding: 48px 0 24px;
  }

  .executive-summary,
  .priority-demo,
  .assistant-panel,
  .download-suite,
  .method-final-cta {
    padding: 24px 20px;
  }

  .summary-actions,
  .method-related-grid {
    grid-template-columns: 1fr;
  }

  .slider-panel label {
    grid-template-columns: 1fr 42px;
  }

  .slider-panel input {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .assistant-panel,
  .framework-showcase-card {
    grid-template-columns: 1fr;
  }

  .framework-meta {
    grid-template-columns: 1fr;
  }

  .library-stats div,
  .framework-showcase-card.featured,
  .framework-showcase-card {
    padding: 24px 20px;
  }

  .framework-showcase-card.featured .framework-preview {
    min-height: 170px;
  }

  .featured-use-cases ul {
    grid-template-columns: 1fr;
  }

  .featured-framework-cta {
    width: 100%;
  }

  .download-actions {
    grid-template-columns: 1fr;
  }

  .assistant-avatar {
    width: 60px;
    height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .matrix-marker,
  .assistant-avatar,
  .demo-reason ul {
    animation: none !important;
  }
}

.recovery-hub-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 200, 120, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(251, 252, 255, 0.98), rgba(247, 250, 252, 1)),
    #fbfcff;
  overflow-x: hidden;
}

.recovery-hub-header {
  padding-bottom: 12px;
}

.recovery-hub-hero {
  display: grid;
  max-width: 900px;
  justify-items: center;
  padding: 64px 0 52px;
  text-align: center;
}

.recovery-hub-hero h1 {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.45rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
  overflow-wrap: anywhere;
}

.recovery-hub-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px 0 0;
  color: #475569;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.recovery-start,
.recovery-resources {
  padding-bottom: 22px;
}

.recovery-section-label {
  display: grid;
  gap: 10px;
  max-width: 780px;
}

.recovery-section-label h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.start-star {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(47, 200, 120, 0.2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(240, 253, 244, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: 0 12px 28px rgba(47, 200, 120, 0.16);
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0;
}

.recovery-feature-card {
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 1fr) 320px;
  min-width: 0;
  gap: 44px;
  align-items: center;
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid rgba(47, 200, 120, 0.32);
  border-radius: 34px;
  background:
    radial-gradient(circle at 96% 12%, rgba(47, 200, 120, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(240, 253, 244, 0.98), rgba(255, 255, 255, 0.99) 68%),
    #fff;
  padding: 52px;
  box-shadow: 0 34px 92px rgba(47, 200, 120, 0.18), 0 18px 60px rgba(7, 11, 35, 0.08);
}

.recovery-feature-card::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  content: "";
  pointer-events: none;
}

.resource-kicker {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.16);
  color: var(--green-dark);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.recovery-feature-card h3,
.recovery-resource-card h3,
.resource-placeholder h1 {
  margin: 16px 0 0;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.recovery-feature-card h3 {
  font-size: clamp(2.45rem, 5vw, 4.35rem);
}

.recovery-feature-card p {
  max-width: 720px;
  margin: 16px 0 0;
  color: #334155;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.recovery-primary-action,
.recovery-resource-card a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.recovery-primary-action {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  padding: 0 24px;
  box-shadow: 0 18px 42px rgba(47, 200, 120, 0.32);
  white-space: nowrap;
}

.recovery-primary-action:hover,
.recovery-primary-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(47, 200, 120, 0.38);
}

.recovery-resources {
  margin-top: 56px;
}

.recovery-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.recovery-resource-card {
  display: flex;
  min-height: 292px;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  padding: 28px;
  box-shadow: 0 18px 52px rgba(7, 11, 35, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.recovery-resource-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 71, 245, 0.2);
  box-shadow: 0 26px 68px rgba(7, 11, 35, 0.09);
}

.recovery-resource-card h3 {
  margin-top: 0;
  font-size: 23px;
  line-height: 1.08;
}

.recovery-resource-card p {
  margin: 16px 0 28px;
  color: #475569;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.recovery-resource-card a {
  width: 100%;
  margin-top: auto;
  border: 1px solid rgba(91, 71, 245, 0.2);
  background: rgba(91, 71, 245, 0.075);
  color: var(--violet-dark);
  padding: 0 16px;
  text-align: center;
}

.recovery-resource-card a:hover,
.recovery-resource-card a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(91, 71, 245, 0.32);
  background: rgba(91, 71, 245, 0.11);
  box-shadow: 0 14px 32px rgba(91, 71, 245, 0.12);
}

.recovery-hub-footer {
  margin-top: 82px;
}

.resource-placeholder {
  max-width: 940px;
  padding: 74px 0;
}

.resource-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.resource-placeholder h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.resource-placeholder > p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #475569;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.7;
}

.resource-steps,
.resource-mini-grid {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
}

.resource-steps {
  list-style: none;
}

.resource-steps li,
.resource-mini-grid article {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(7, 11, 35, 0.05);
}

.resource-steps strong,
.resource-steps span {
  display: block;
}

.resource-steps strong,
.resource-mini-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.resource-steps span,
.resource-mini-grid p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.6;
}

.resource-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .recovery-feature-card,
  .recovery-resource-grid,
  .resource-mini-grid {
    grid-template-columns: 1fr;
  }

  .recovery-feature-card {
    align-items: stretch;
  }

  .recovery-primary-action {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .recovery-hub-page .section-shell,
  .recovery-hub-page .site-header,
  .recovery-hub-page .site-footer {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }

  .recovery-hub-page * {
    max-width: 100%;
  }

  .recovery-hub-hero {
    padding: 46px 0 28px;
  }

  .recovery-hub-hero h1 {
    max-width: 300px;
    font-size: 1.84rem;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
  }

  .recovery-hub-hero p:not(.eyebrow) {
    max-width: 320px;
    font-size: 0.95rem;
  }

  .recovery-feature-card,
  .recovery-resource-card,
  .resource-steps li,
  .resource-mini-grid article {
    border-radius: 20px;
    padding: 22px;
  }

  .recovery-feature-card p,
  .recovery-resource-card p {
    max-width: 300px;
  }

  .recovery-resource-card {
    min-height: auto;
  }

  .recovery-feature-card h3,
  .recovery-section-label h2 {
    max-width: 310px;
    font-size: 1.48rem;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
  }

  .recovery-resource-card h3 {
    max-width: 300px;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
  }

  .recovery-primary-action {
    max-width: 300px;
    white-space: normal;
    text-align: center;
  }

  .recovery-feature-copy,
  .recovery-resource-card {
    min-width: 0;
  }
}

/* Recovery Hub visual implementation: Revision 2 */
.recovery-hub-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(47, 200, 120, 0.08), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(47, 200, 120, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfefd 0%, #f8fbfb 54%, #ffffff 100%);
}

.recovery-hub-page::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 10px;
  content: "";
  pointer-events: none;
}

.recovery-hub-header {
  padding-top: 34px;
  padding-bottom: 8px;
}

.recovery-hub-hero {
  position: relative;
  max-width: 1040px;
  padding: 82px 0 64px;
}

.recovery-hero-badge {
  position: absolute;
  top: -42px;
  right: 0;
  border: 1px solid rgba(47, 200, 120, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 13px 20px;
  box-shadow: 0 12px 38px rgba(7, 11, 35, 0.04);
}

.recovery-hub-hero h1 {
  max-width: 980px;
  font-size: clamp(4.2rem, 7.4vw, 6.25rem);
  letter-spacing: -0.075em;
}

.recovery-hub-hero p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 24px;
  color: #18233d;
  font-size: 20px;
  font-weight: 560;
  line-height: 1.65;
}

.recovery-start {
  padding-bottom: 38px;
}

.start-here-label {
  display: flex;
  max-width: 960px;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.start-here-label::before,
.start-here-label::after {
  display: block;
  height: 1px;
  flex: 1 1 180px;
  background: linear-gradient(90deg, transparent, rgba(47, 200, 120, 0.7));
  content: "";
}

.start-here-label::after {
  background: linear-gradient(90deg, rgba(47, 200, 120, 0.7), transparent);
}

.start-here-label h2 {
  flex: 0 0 auto;
  justify-content: center;
  font-size: clamp(2.15rem, 4vw, 3rem);
}

.start-star {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 35px;
}

.recovery-feature-card {
  grid-template-columns: 250px 1px minmax(0, 1fr);
  gap: 42px;
  max-width: 1000px;
  margin: 28px auto 0;
  border-color: rgba(47, 200, 120, 0.62);
  border-radius: 18px;
  background:
    radial-gradient(circle at 17% 50%, rgba(47, 200, 120, 0.13), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fffb 100%);
  padding: 48px 56px;
  box-shadow: 0 28px 72px rgba(47, 200, 120, 0.16), 0 14px 42px rgba(7, 11, 35, 0.06);
}

.recovery-feature-card::before {
  display: none;
}

.recovery-feature-card::after {
  display: block;
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(148, 163, 184, 0.34), transparent);
  content: "";
}

.recovery-feature-icon {
  display: grid;
  position: relative;
  width: 176px;
  height: 176px;
  place-items: center;
  justify-self: center;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 200, 120, 0.16), rgba(47, 200, 120, 0.06));
}

.checklist-board {
  display: grid;
  position: relative;
  width: 92px;
  height: 112px;
  align-content: center;
  gap: 12px;
  border: 8px solid #31c878;
  border-radius: 12px;
  background: #fff;
  padding: 26px 16px 14px;
}

.checklist-board::before {
  position: absolute;
  top: -23px;
  left: 50%;
  width: 48px;
  height: 30px;
  border-radius: 12px 12px 4px 4px;
  background: #23b86b;
  content: "";
  transform: translateX(-50%);
}

.checklist-board i {
  display: block;
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(47, 200, 120, 0.24);
}

.checklist-board i::before {
  position: absolute;
  left: -2px;
  top: -7px;
  color: #16a34a;
  content: "✓";
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  transform: translateX(-24px);
}

.checklist-star {
  display: grid;
  position: absolute;
  right: 6px;
  bottom: 16px;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fc878, #08a45f);
  color: #fff;
  font-size: 35px;
  box-shadow: 0 20px 42px rgba(47, 200, 120, 0.34);
}

.recovery-feature-copy {
  grid-column: 3;
}

.resource-kicker {
  display: none;
}

.recovery-feature-card h3 {
  margin-top: 0;
  font-size: clamp(2.05rem, 3.6vw, 2.75rem);
  letter-spacing: -0.055em;
}

.recovery-feature-card p {
  max-width: 610px;
  font-size: 17px;
  font-weight: 560;
}

.recovery-feature-card p strong {
  color: #0b9f5a;
  font-size: 22px;
  font-weight: 900;
}

.recovery-feature-card .recovery-primary-action {
  grid-column: 3;
  width: min(420px, 100%);
  margin-top: -16px;
  justify-self: start;
}

.recovery-primary-action,
.recovery-resource-card a {
  gap: 10px;
  min-height: 56px;
  border-radius: 7px;
  font-size: 16px;
}

.recovery-primary-action {
  background: linear-gradient(135deg, #19c86f, #08a85c);
}

.recovery-resources {
  max-width: 1000px;
  margin-top: 34px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  padding: 34px 34px 38px;
  box-shadow: 0 20px 60px rgba(7, 11, 35, 0.06);
}

.toolkit-label {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  max-width: none;
  align-items: center;
  gap: 10px 16px;
}

.toolkit-label .eyebrow {
  grid-column: 2;
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  letter-spacing: -0.055em;
  text-transform: none;
}

.toolkit-label h2 {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: #18233d;
  font-size: 17px;
  font-weight: 560;
  letter-spacing: 0;
}

.toolkit-section-icon {
  display: grid;
  width: 38px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #2fc878, #0b9f5a);
}

.toolkit-section-icon::before {
  width: 18px;
  height: 12px;
  border: 3px solid #fff;
  border-top-width: 5px;
  border-radius: 3px;
  content: "";
}

.recovery-resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
  margin-top: 28px;
}

.recovery-resource-card {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  min-height: 226px;
  gap: 18px 26px;
  align-items: center;
  border-radius: 14px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(7, 11, 35, 0.08);
}

.recovery-resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(7, 11, 35, 0.11);
}

.resource-card-icon {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 200, 120, 0.18), rgba(47, 200, 120, 0.08));
}

.resource-card-icon::before {
  display: block;
  color: #14a95f;
  font-size: 42px;
  font-weight: 900;
}

.resource-card-icon.is-brief::before {
  content: "▤";
}

.resource-card-icon.is-outreach::before {
  content: "✉";
}

.resource-card-icon.is-tracker::before {
  content: "▦";
}

.resource-card-icon.is-playbook::before {
  content: "▰";
}

.recovery-resource-card h3 {
  max-width: none;
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.045em;
}

.recovery-resource-card p {
  max-width: none;
  margin: 14px 0 0;
  color: #18233d;
  font-size: 16px;
  font-weight: 530;
}

.recovery-resource-card a {
  grid-column: 2;
  width: 100%;
  min-height: 50px;
  border-color: rgba(47, 200, 120, 0.48);
  background: #fff;
  color: #0b9f5a;
}

.recovery-resource-card a:hover,
.recovery-resource-card a:focus-visible {
  border-color: rgba(47, 200, 120, 0.7);
  background: rgba(240, 253, 244, 0.84);
  box-shadow: 0 14px 32px rgba(47, 200, 120, 0.14);
}

@media (max-width: 960px) {
  .recovery-hero-badge {
    position: static;
    margin-bottom: 18px;
  }

  .start-here-label::before,
  .start-here-label::after {
    display: none;
  }

  .recovery-feature-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 28px;
  }

  .recovery-feature-card::after {
    display: none;
  }

  .recovery-feature-copy,
  .recovery-feature-card .recovery-primary-action {
    grid-column: 1;
  }

  .recovery-resource-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .recovery-hub-header {
    padding-top: 26px;
  }

  .recovery-hub-hero {
    padding-top: 48px;
  }

  .recovery-hub-hero h1 {
    max-width: 330px;
    font-size: 2.34rem;
  }

  .recovery-hub-hero p:not(.eyebrow) {
    max-width: 330px;
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .recovery-feature-icon {
    width: 132px;
    height: 132px;
  }

  .checklist-board {
    width: 70px;
    height: 86px;
    border-width: 6px;
    gap: 8px;
  }

  .checklist-star {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .recovery-resources {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    padding: 24px 16px 28px;
  }

  .recovery-feature-card h3 {
    max-width: 300px;
    font-size: 1.92rem;
  }

  .recovery-feature-card p {
    max-width: 300px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .recovery-feature-card .recovery-primary-action {
    max-width: 300px;
  }

  .recovery-resource-card {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px 18px;
    padding: 22px;
  }

  .resource-card-icon {
    width: 70px;
    height: 70px;
  }

  .resource-card-icon::before {
    font-size: 31px;
  }

  .recovery-resource-card a {
    grid-column: 1 / -1;
  }

  .recovery-resource-card h3,
  .recovery-resource-card p {
    max-width: 230px;
  }
}
