/* =========================================================
   LEARNING REWIRED LAB
   LEARNING FEEDBACK AUDIT
   Field Guide detail page
   URL: /field-guides/learning-feedback-audit/

   Pathway Version
   - Field Guides signal: teal / practical methods
   - Field Guide → Free Companion → Paid Lab Good → My Library → Studio
   - Open editorial layout
   - Reduced card dependency
   - Digital-first, no downloadable artifact styling
   ========================================================= */

:root {
  --lfa-ink: #07111f;
  --lfa-navy: #0b1728;
  --lfa-slate: #243246;
  --lfa-muted: #526174;
  --lfa-soft: #f8fafc;
  --lfa-soft-2: #eef8f7;
  --lfa-line: rgba(7, 17, 31, 0.1);
  --lfa-line-strong: rgba(7, 17, 31, 0.18);

  --lfa-teal: #0f8f84;
  --lfa-teal-dark: #0c756d;
  --lfa-teal-bright: #14b8a6;
  --lfa-cyan: #16b8d9;
  --lfa-mint: #6ee7d8;
  --lfa-gold: #f4c95d;
  --lfa-white: #ffffff;

  --lfa-shadow-soft: 0 18px 48px rgba(7, 17, 31, 0.07);
  --lfa-shadow-small: 0 10px 26px rgba(7, 17, 31, 0.05);
}

.ac-lfa-page {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0 clamp(88px, 9vw, 140px);
  background: #ffffff;
  color: var(--lfa-ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.ac-lfa-page,
.ac-lfa-page * {
  box-sizing: border-box;
}

.ac-lfa-page button,
.ac-lfa-page input,
.ac-lfa-page textarea,
.ac-lfa-page select {
  font: inherit;
}

.ac-lfa-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   Breadcrumbs
   ========================================================= */

.ac-lfa-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 980px;
  margin: 0 0 38px;
  color: var(--lfa-muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ac-lfa-breadcrumbs a {
  color: var(--lfa-teal);
  text-decoration: none;
  transition: color 180ms ease;
}

.ac-lfa-breadcrumbs a:hover {
  color: var(--lfa-ink);
}

.ac-lfa-breadcrumbs span {
  color: rgba(7, 17, 31, 0.26);
}

.ac-lfa-breadcrumbs strong {
  color: var(--lfa-ink);
  font-weight: 950;
}

/* =========================================================
   Shared small labels
   ========================================================= */

.ac-lfa-eyebrow,
.ac-lfa-small-eyebrow,
.ac-lfa-panel-kicker {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 0 11px;
  border: 1px solid rgba(15, 143, 132, 0.18);
  border-radius: 999px;
  background: rgba(15, 143, 132, 0.08);
  color: var(--lfa-teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ac-lfa-eyebrow::before,
.ac-lfa-small-eyebrow::before,
.ac-lfa-panel-kicker::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--lfa-teal-bright);
}

/* =========================================================
   Hero
   ========================================================= */

.ac-lfa-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.42fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: end;
  margin: 0 0 clamp(70px, 9vw, 118px);
}

.ac-lfa-hero-copy {
  max-width: 900px;
}

.ac-lfa-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--lfa-ink);
  font-size: clamp(3rem, 6.1vw, 5.8rem);
  font-weight: 880;
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.ac-lfa-hero h1 span {
  display: block;
  color: var(--lfa-teal);
}

.ac-lfa-intro {
  max-width: 780px;
  margin: 28px 0 0;
  color: #415168;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

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

.ac-lfa-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.92rem;
  font-weight: 950;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.ac-lfa-btn:hover {
  transform: translateY(-1px);
}

.ac-lfa-btn.primary,
.ac-lfa-btn.primary:visited,
.ac-lfa-btn.primary:active {
  border-color: var(--lfa-teal);
  background: var(--lfa-teal);
  color: #ffffff !important;
  box-shadow: 0 14px 32px rgba(15, 143, 132, 0.22);
}

.ac-lfa-btn.primary:hover {
  border-color: var(--lfa-teal-dark);
  background: var(--lfa-teal-dark);
  color: #ffffff !important;
  box-shadow: 0 18px 40px rgba(15, 143, 132, 0.26);
}

.ac-lfa-btn.secondary,
.ac-lfa-btn.secondary:visited,
.ac-lfa-btn.secondary:active {
  border-color: rgba(15, 143, 132, 0.38);
  background: rgba(255, 255, 255, 0.82);
  color: var(--lfa-ink) !important;
}

.ac-lfa-btn.secondary:hover {
  border-color: rgba(15, 143, 132, 0.7);
  background: rgba(15, 143, 132, 0.075);
  color: var(--lfa-ink) !important;
}

/* Hero pathway panel */

.ac-lfa-hero-panel {
  position: relative;
  padding: 28px 0 0;
  border-top: 3px solid var(--lfa-teal);
}

.ac-lfa-hero-panel ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-hero-panel li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--lfa-line);
}

.ac-lfa-hero-panel li span {
  color: var(--lfa-teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.ac-lfa-hero-panel li strong {
  color: var(--lfa-ink);
  font-size: 1rem;
  line-height: 1.2;
}

/* =========================================================
   Article shell
   ========================================================= */

.ac-lfa-article {
  max-width: 100%;
  margin: 0;
}

.ac-lfa-section {
  padding: clamp(58px, 8vw, 96px) 0;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.ac-lfa-section h2,
.ac-lfa-snapshot-copy h2,
.ac-lfa-digital-header h2,
.ac-lfa-tool-header h2,
.ac-lfa-related-header h2,
.ac-lfa-companion-copy h2,
.ac-lfa-paid-copy h2,
.ac-lfa-pathway-header h2,
.ac-lfa-closing h2 {
  max-width: 820px;
  margin: 0;
  color: var(--lfa-ink);
  font-size: clamp(2.15rem, 4.8vw, 4.55rem);
  font-weight: 860;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.ac-lfa-section p,
.ac-lfa-snapshot-copy p,
.ac-lfa-digital-header p,
.ac-lfa-tool-header p,
.ac-lfa-related-header p,
.ac-lfa-companion-copy p,
.ac-lfa-paid-copy p,
.ac-lfa-pathway-header p,
.ac-lfa-closing p {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--lfa-muted);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.7;
}

.ac-lfa-section p:last-child,
.ac-lfa-snapshot-copy p:last-child,
.ac-lfa-digital-header p:last-child,
.ac-lfa-tool-header p:last-child,
.ac-lfa-related-header p:last-child,
.ac-lfa-companion-copy p:last-child,
.ac-lfa-paid-copy p:last-child,
.ac-lfa-pathway-header p:last-child,
.ac-lfa-closing p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   Argument
   ========================================================= */

.ac-lfa-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.48fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.ac-lfa-intro-section .ac-lfa-small-eyebrow {
  grid-column: 1 / -1;
}

.ac-lfa-rich-copy {
  padding-top: 8px;
}

.ac-lfa-rich-copy p {
  margin: 0;
  color: var(--lfa-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.74;
}

.ac-lfa-rich-copy p + p {
  margin-top: 20px;
}

/* =========================================================
   Snapshot
   ========================================================= */

.ac-lfa-snapshot {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
  padding: clamp(58px, 8vw, 96px) 0;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-snapshot-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-stat-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--lfa-line);
  background: transparent;
  box-shadow: none;
}

.ac-lfa-stat-card strong {
  display: block;
  color: var(--lfa-ink);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 880;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.ac-lfa-stat-card span {
  display: block;
  color: var(--lfa-teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* =========================================================
   Six lenses / digital guide
   ========================================================= */

.ac-lfa-digital-guide-section {
  padding: clamp(58px, 8vw, 96px) 0;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-digital-header {
  max-width: 820px;
  margin-bottom: 38px;
}

.ac-lfa-artifact {
  position: relative;
  padding: clamp(28px, 5vw, 52px) 0 0;
  border-top: 3px solid var(--lfa-teal);
  background: transparent;
}

.ac-lfa-artifact-frame {
  margin: 0;
  padding: 0 0 0 22px;
  border-left: 4px solid var(--lfa-teal);
}

.ac-lfa-frame-label {
  margin-bottom: 12px;
  color: var(--lfa-teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ac-lfa-artifact-frame p {
  max-width: 840px;
  margin: 0;
  color: #374151;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  line-height: 1.68;
}

.ac-lfa-audit-grid {
  display: grid;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-audit-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 0.72fr) minmax(260px, 0.72fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--lfa-line);
  background: transparent;
  box-shadow: none;
}

.ac-lfa-audit-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(15, 143, 132, 0.22);
  border-radius: 16px;
  background: rgba(15, 143, 132, 0.08);
  color: var(--lfa-teal);
  font-size: 0.78rem;
  font-weight: 950;
}

.ac-lfa-audit-card h3 {
  margin: 0;
  color: var(--lfa-ink);
  font-size: clamp(1.35rem, 2.3vw, 2.05rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.ac-lfa-audit-card p {
  margin: 0;
  color: var(--lfa-muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.ac-lfa-audit-card ul {
  display: grid;
  grid-column: 3;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.ac-lfa-audit-card li {
  position: relative;
  padding-left: 18px;
  color: #374151;
  font-size: 0.92rem;
  line-height: 1.45;
}

.ac-lfa-audit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lfa-teal-bright);
}

/* =========================================================
   Interactive audit tool
   ========================================================= */

.ac-lfa-tool-section {
  padding: clamp(58px, 8vw, 96px) 0;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-tool-header {
  max-width: 840px;
  margin-bottom: 34px;
}

.ac-lfa-checklist {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-check-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--lfa-line);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.ac-lfa-check-item input {
  width: 24px;
  height: 24px;
  margin-top: 3px;
  accent-color: var(--lfa-teal);
}

.ac-lfa-check-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--lfa-ink);
  font-size: 1.04rem;
  font-weight: 850;
  line-height: 1.2;
}

.ac-lfa-check-item span {
  color: var(--lfa-muted);
  font-size: 1rem;
  line-height: 1.62;
}

.ac-lfa-check-item.is-checked span {
  color: #324354;
}

.ac-lfa-check-item.is-checked strong {
  color: var(--lfa-teal);
}

.ac-lfa-score-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(15, 143, 132, 0.16);
  border-radius: 32px;
  background: var(--lfa-soft-2);
}

.ac-lfa-score-panel h3 {
  max-width: 720px;
  margin: 0;
  color: var(--lfa-ink);
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  font-weight: 860;
  line-height: 1;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.ac-lfa-score-panel p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--lfa-muted);
  font-size: 1rem;
  line-height: 1.62;
}

.ac-lfa-score-ring {
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  border: 3px solid var(--lfa-teal);
  border-radius: 999px;
  background: #ffffff;
  text-align: center;
  box-shadow: var(--lfa-shadow-small);
}

.ac-lfa-score-ring strong {
  display: block;
  color: var(--lfa-ink);
  font-size: 2.1rem;
  font-weight: 880;
  line-height: 1;
  letter-spacing: -0.055em;
}

.ac-lfa-score-ring span {
  display: block;
  margin-top: 8px;
  color: var(--lfa-teal);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================
   Free companion asset
   ========================================================= */

.ac-lfa-companion-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
  padding: clamp(58px, 8vw, 96px) 0;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-companion-copy {
  max-width: 820px;
}

.ac-lfa-companion-list {
  padding: 28px;
  border: 1px solid rgba(15, 143, 132, 0.18);
  border-radius: 30px;
  background: var(--lfa-soft-2);
}

.ac-lfa-companion-list ul {
  display: grid;
  gap: 14px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.ac-lfa-companion-list li {
  position: relative;
  padding-left: 22px;
  color: #324354;
  font-size: 0.96rem;
  line-height: 1.5;
}

.ac-lfa-companion-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lfa-teal-bright);
}

/* =========================================================
   Example rewrite
   ========================================================= */

.ac-lfa-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 52px);
  margin-top: 34px;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-example-card {
  padding: 28px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ac-lfa-example-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ac-lfa-example-card.weak span {
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(148, 163, 184, 0.1);
  color: #64748b;
}

.ac-lfa-example-card.strong span {
  border: 1px solid rgba(15, 143, 132, 0.22);
  background: rgba(15, 143, 132, 0.08);
  color: var(--lfa-teal);
}

.ac-lfa-example-card h3 {
  margin: 0;
  color: var(--lfa-ink);
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.ac-lfa-example-card p {
  margin: 16px 0 0;
  color: var(--lfa-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* =========================================================
   Paid Lab Good
   ========================================================= */

.ac-lfa-paid-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.52fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
  padding: clamp(58px, 8vw, 96px) 0;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-paid-copy {
  max-width: 820px;
}

.ac-lfa-paid-includes {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(7, 17, 31, 0.14);
}

.ac-lfa-paid-includes div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(7, 17, 31, 0.14);
}

.ac-lfa-paid-includes span {
  color: var(--lfa-teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.ac-lfa-paid-includes strong {
  color: var(--lfa-ink);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 850;
  line-height: 1.25;
}

/* =========================================================
   Pathway
   ========================================================= */

.ac-lfa-pathway-section {
  padding: clamp(58px, 8vw, 96px) 0;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-pathway-header {
  max-width: 880px;
  margin-bottom: 36px;
}

.ac-lfa-pathway-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-pathway-rail a {
  display: grid;
  grid-template-columns: 70px minmax(0, 0.55fr) minmax(220px, 0.75fr);
  gap: 22px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--lfa-line);
  color: var(--lfa-ink);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.ac-lfa-pathway-rail a:hover {
  transform: translateX(3px);
  border-color: rgba(15, 143, 132, 0.38);
}

.ac-lfa-pathway-rail a.is-current {
  border-color: rgba(15, 143, 132, 0.38);
}

.ac-lfa-pathway-rail span {
  color: var(--lfa-teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.ac-lfa-pathway-rail strong {
  color: var(--lfa-ink);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  font-weight: 860;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.ac-lfa-pathway-rail small {
  color: var(--lfa-muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

/* =========================================================
   Related patterns
   ========================================================= */

.ac-lfa-related {
  padding: clamp(58px, 8vw, 96px) 0;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-related-header {
  max-width: 840px;
  margin-bottom: 32px;
}

.ac-lfa-related-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--lfa-line);
}

.ac-lfa-related-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 0.8fr) minmax(220px, 0.72fr) auto;
  gap: 22px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--lfa-line);
  color: var(--lfa-ink);
  text-decoration: none;
  background: transparent;
  box-shadow: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.ac-lfa-related-card:hover {
  transform: translateX(3px);
  border-color: rgba(15, 143, 132, 0.38);
}

.ac-lfa-related-card span {
  color: var(--lfa-teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ac-lfa-related-card h3 {
  margin: 0;
  color: var(--lfa-ink);
  font-size: clamp(1.18rem, 2vw, 1.75rem);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.ac-lfa-related-card p {
  margin: 0;
  color: var(--lfa-muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.ac-lfa-related-card strong {
  color: var(--lfa-teal);
  font-size: 0.9rem;
  font-weight: 950;
  white-space: nowrap;
}

.ac-lfa-related-card strong::after {
  content: " →";
}

/* =========================================================
   Closing
   ========================================================= */

.ac-lfa-closing {
  margin-top: clamp(54px, 8vw, 90px);
  padding: clamp(34px, 6vw, 64px);
  border-radius: 34px;
  background: var(--lfa-navy);
  color: #ffffff;
}

.ac-lfa-closing h2 {
  max-width: 840px;
  color: #ffffff;
}

.ac-lfa-closing p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.ac-lfa-closing .ac-lfa-btn.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
}

.closing-actions {
  justify-content: flex-start;
}

/* =========================================================
   Accessibility + responsive
   ========================================================= */

:focus-visible {
  outline: 3px solid rgba(15, 143, 132, 0.42);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .ac-lfa-page *,
  .ac-lfa-page *::before,
  .ac-lfa-page *::after {
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 980px) {
  .ac-lfa-hero,
  .ac-lfa-intro-section,
  .ac-lfa-snapshot,
  .ac-lfa-score-panel,
  .ac-lfa-companion-section,
  .ac-lfa-paid-section {
    grid-template-columns: 1fr;
  }

  .ac-lfa-hero-panel {
    max-width: 560px;
  }

  .ac-lfa-audit-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .ac-lfa-audit-card p,
  .ac-lfa-audit-card ul {
    grid-column: 2;
  }

  .ac-lfa-related-card,
  .ac-lfa-pathway-rail a {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ac-lfa-related-card:hover,
  .ac-lfa-pathway-rail a:hover {
    transform: none;
  }
}

@media (max-width: 760px) {
  .ac-lfa-inner {
    width: min(100% - 28px, 1120px);
  }

  .ac-lfa-page {
    padding-top: 56px;
  }

  .ac-lfa-breadcrumbs {
    margin-bottom: 28px;
    font-size: 0.68rem;
  }

  .ac-lfa-hero {
    margin-bottom: 62px;
  }

  .ac-lfa-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.15rem);
    line-height: 0.98;
  }

  .ac-lfa-intro {
    font-size: 1rem;
    line-height: 1.68;
  }

  .ac-lfa-actions,
  .closing-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ac-lfa-btn {
    width: 100%;
  }

  .ac-lfa-section,
  .ac-lfa-snapshot,
  .ac-lfa-digital-guide-section,
  .ac-lfa-tool-section,
  .ac-lfa-companion-section,
  .ac-lfa-paid-section,
  .ac-lfa-pathway-section,
  .ac-lfa-related {
    padding: 52px 0;
  }

  .ac-lfa-section h2,
  .ac-lfa-snapshot-copy h2,
  .ac-lfa-digital-header h2,
  .ac-lfa-tool-header h2,
  .ac-lfa-related-header h2,
  .ac-lfa-companion-copy h2,
  .ac-lfa-paid-copy h2,
  .ac-lfa-pathway-header h2,
  .ac-lfa-closing h2 {
    font-size: clamp(2.05rem, 9vw, 3.35rem);
    line-height: 1;
  }

  .ac-lfa-stat-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .ac-lfa-artifact {
    padding-top: 34px;
  }

  .ac-lfa-audit-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ac-lfa-audit-card p,
  .ac-lfa-audit-card ul {
    grid-column: auto;
  }

  .ac-lfa-example-grid {
    grid-template-columns: 1fr;
  }

  .ac-lfa-score-ring {
    width: 126px;
    height: 126px;
  }

  .ac-lfa-score-ring strong {
    font-size: 1.8rem;
  }

  .ac-lfa-companion-list {
    padding: 24px;
    border-radius: 26px;
  }

  .ac-lfa-closing {
    border-radius: 28px;
    padding: 28px;
  }
}

@media (max-width: 460px) {
  .ac-lfa-breadcrumbs {
    gap: 8px;
  }

  .ac-lfa-hero h1 {
    letter-spacing: -0.058em;
  }

  .ac-lfa-intro-section h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .ac-lfa-score-panel {
    padding: 24px;
    border-radius: 26px;
  }

  .ac-lfa-paid-includes div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
