:root {
  --color-bg: #fbfaf3;
  --color-surface: #ffffff;
  --color-ink: #17231d;
  --color-muted: #5d6a63;
  --color-brand: #0f4d36;
  --color-brand-dark: #0a3526;
  --color-sage: #dce8d8;
  --color-slate: #536762;
  --color-gold: #d8b35f;
  --color-border: #dde3d8;
  --shadow-soft: 0 18px 45px rgba(24, 44, 34, .11);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1120px;
  --space-section: clamp(3rem, 7vw, 6rem);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  background: var(--color-bg);
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--color-brand);
  text-decoration-thickness: .08em;
  text-underline-offset: .22em;
}

a:hover {
  color: var(--color-brand-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.45rem, 8vw, 5.65rem);
  max-width: 10.8ch;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

p {
  margin: 0;
}

p + p,
h2 + p,
p + h2 {
  margin-top: 1.1rem;
}

ul {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: .4rem;
  background: var(--color-brand);
  color: #fff;
  padding: .7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(15, 77, 54, .12);
  background: rgba(251, 250, 243, .94);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.5rem;
}

.brand {
  color: var(--color-brand);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2.5vw, 1.75rem);
  font-size: .96rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  color: var(--color-ink);
  text-decoration: none;
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 2px;
  background: var(--color-brand);
  content: "";
}

.nav-toggle {
  display: none;
}

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

.hero,
.page-hero {
  padding-block: clamp(3rem, 8vw, 7rem);
}

.home-hero {
  overflow: clip;
  padding-block: clamp(3.2rem, 7vw, 6.4rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, .98fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 5rem);
}

.hero-copy {
  display: grid;
  gap: 1.35rem;
}

.eyebrow,
.card-kicker {
  color: var(--color-brand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-lede,
.page-hero p {
  max-width: 660px;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.home-hero .hero-lede {
  max-width: 620px;
  color: #2f3934;
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
  line-height: 1.55;
}

.home-hero h1 {
  max-width: 12.6ch;
  font-size: clamp(3rem, 6.25vw, 5.15rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: .35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--color-brand);
  border-radius: .5rem;
  padding: .82rem 1.1rem;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--color-brand);
  color: #fff;
}

.button-primary:hover {
  background: var(--color-brand-dark);
  color: #fff;
}

.button-secondary {
  background: transparent;
  color: var(--color-brand);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 440px;
  isolation: isolate;
}

.home-visual {
  min-height: 560px;
  align-self: end;
}

.desk-surface {
  position: absolute;
  right: -12vw;
  bottom: 0;
  left: -1.5rem;
  z-index: -3;
  height: 33%;
  background:
    linear-gradient(90deg, rgba(15, 77, 54, .08), rgba(255, 255, 255, .2) 35%, rgba(15, 77, 54, .09)),
    repeating-linear-gradient(0deg, rgba(39, 58, 46, .08) 0 1px, transparent 1px 8px),
    #f4f0e7;
  box-shadow: inset 0 18px 38px rgba(74, 61, 45, .08);
}

.chart-card,
.notebook-card {
  border: 1px solid rgba(15, 77, 54, .13);
  border-radius: .5rem;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.chart-card span,
.notebook-card span {
  display: block;
  color: var(--color-muted);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.line-card {
  align-self: start;
  width: min(100%, 420px);
  padding: 1.1rem;
  color: var(--color-brand);
}

.home-visual .line-card {
  position: absolute;
  top: 1.5rem;
  left: 2%;
  z-index: 1;
  width: min(68%, 430px);
  min-width: 300px;
  padding: 1.5rem 1.45rem 1rem;
  transform: rotate(-1.6deg);
}

.line-card svg {
  margin-top: 1rem;
}

.chart-grid line {
  stroke: rgba(15, 77, 54, .12);
  stroke-width: 1;
}

.chart-axis {
  fill: #5d6a63;
  font-size: 11px;
}

.donut-card {
  position: absolute;
  right: 0;
  top: 8.5rem;
  width: 190px;
  padding: 1rem;
}

.home-visual .donut-card {
  top: 10.3rem;
  right: 2%;
  z-index: 4;
  width: min(54%, 320px);
  min-width: 250px;
  padding: 1.2rem;
  transform: rotate(.7deg);
}

.donut-layout {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.donut {
  width: 110px;
  aspect-ratio: 1;
  margin: 1rem auto .25rem;
  border-radius: 50%;
  background: conic-gradient(var(--color-brand) 0 42%, var(--color-gold) 42% 68%, var(--color-sage) 68% 100%);
  box-shadow: inset 0 0 0 27px #fff;
}

.home-visual .donut {
  display: grid;
  place-items: center;
  margin: 0;
  background: conic-gradient(#0f4d36 0 32%, #69958d 32% 50%, #afc7a8 50% 65%, #d8d1c3 65% 77%, #e5e5df 77% 100%);
  color: var(--color-ink);
  text-align: center;
}

.home-visual .donut strong,
.home-visual .donut small {
  grid-area: 1 / 1;
}

.home-visual .donut strong {
  margin-top: -.5rem;
  font-size: .95rem;
}

.home-visual .donut small {
  margin-top: 1.25rem;
  color: var(--color-muted);
  font-size: .72rem;
}

.donut-legend {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding: 0;
  color: #35433d;
  font-size: .78rem;
  list-style: none;
}

.donut-legend li {
  display: grid;
  grid-template-columns: .7rem minmax(0, 1fr) auto;
  align-items: center;
  gap: .4rem;
}

.donut-legend span {
  width: .6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-brand);
}

.donut-legend li:nth-child(2) span {
  background: #69958d;
}

.donut-legend li:nth-child(3) span {
  background: #afc7a8;
}

.donut-legend li:nth-child(4) span {
  background: #d8d1c3;
}

.cash-card {
  position: absolute;
  top: 16.7rem;
  left: 0;
  z-index: 5;
  width: min(44%, 260px);
  min-width: 220px;
  border: 1px solid rgba(15, 77, 54, .14);
  border-radius: .5rem;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  padding: 1.05rem 1.15rem;
}

.cash-card span {
  display: block;
  margin-bottom: .85rem;
  color: #273a34;
  font-weight: 700;
}

.cash-card dl {
  display: grid;
  gap: .45rem;
  margin: 0;
}

.cash-card div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cash-card div:last-child {
  border-top: 1px solid var(--color-border);
  padding-top: .55rem;
}

.cash-card dt,
.cash-card dd {
  margin: 0;
  font-size: .86rem;
}

.cash-card dd {
  color: var(--color-brand);
  font-weight: 800;
}

.notebook-card {
  align-self: end;
  justify-self: center;
  width: min(88%, 330px);
  padding: 1.35rem;
  background: linear-gradient(135deg, #fff 0 72%, #eef3e8 72% 100%);
}

.notebook-card strong {
  display: block;
  margin-top: .8rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.12;
}

.home-visual .notebook-card {
  position: absolute;
  right: 6%;
  bottom: 0;
  z-index: 2;
  display: grid;
  align-content: start;
  width: min(66%, 390px);
  min-height: 170px;
  padding: 2.2rem 2.1rem 1.3rem;
  border-color: rgba(50, 60, 48, .12);
  background:
    repeating-linear-gradient(0deg, transparent 0 25px, rgba(15, 77, 54, .12) 26px 27px),
    #fffdf7;
  color: #273a34;
  transform: rotate(-7deg);
}

.home-visual .notebook-card p {
  justify-self: end;
  margin: 0;
  font-family: "Bradley Hand ITC", "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.35;
}

.spiral {
  position: absolute;
  top: .7rem;
  left: 50%;
  width: 78px;
  height: 24px;
  border-top: 4px double #26362f;
  border-bottom: 4px double #26362f;
  border-radius: 50%;
  transform: translateX(-50%) rotate(8deg);
}

.pen {
  position: absolute;
  right: 1rem;
  bottom: 1.3rem;
  width: 130px;
  height: 16px;
  border-radius: 99px;
  background: linear-gradient(90deg, #202a25 0 72%, #d8d1c3 72% 84%, #0f4d36 84%);
  box-shadow: 0 10px 18px rgba(23, 35, 29, .16);
  transform: rotate(25deg);
}

.plant {
  position: absolute;
  right: -1.2rem;
  top: 5.6rem;
  z-index: 0;
  width: 132px;
  height: 230px;
}

.plant span {
  position: absolute;
  left: 58px;
  bottom: 58px;
  width: 58px;
  height: 24px;
  border-radius: 100% 0 100% 0;
  background: #546d45;
  transform-origin: left center;
}

.plant span:nth-child(1) {
  transform: rotate(-72deg) translateX(8px);
}

.plant span:nth-child(2) {
  transform: rotate(-35deg) translateX(5px);
  background: #6f875a;
}

.plant span:nth-child(3) {
  transform: rotate(-7deg) translateX(10px);
}

.plant span:nth-child(4) {
  transform: rotate(-132deg) translateX(2px);
  background: #6f875a;
}

.plant span:nth-child(5) {
  transform: rotate(-165deg) translateX(-2px);
}

.plant span:nth-child(6) {
  transform: rotate(-205deg) translateX(4px);
  background: #6f875a;
}

.plant::before {
  position: absolute;
  left: 56px;
  bottom: 48px;
  width: 4px;
  height: 145px;
  border-radius: 99px;
  background: #6f875a;
  transform: rotate(12deg);
  content: "";
}

.plant-pot,
.mug {
  background:
    radial-gradient(circle at 36% 28%, rgba(109, 89, 63, .18) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 55%, rgba(109, 89, 63, .12) 0 1px, transparent 2px),
    #e4ded0;
}

.plant-pot {
  position: absolute;
  right: 8px;
  bottom: 0;
  width: 78px;
  height: 76px;
  border-radius: .9rem .9rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.mug {
  position: absolute;
  right: -3.7rem;
  bottom: 5.1rem;
  z-index: 5;
  width: 126px;
  height: 104px;
  border-radius: 0 0 2rem 2rem;
  box-shadow: var(--shadow-soft);
}

.mug::before {
  position: absolute;
  right: -31px;
  top: 25px;
  width: 42px;
  height: 46px;
  border: 12px solid #e4ded0;
  border-left: 0;
  border-radius: 0 99px 99px 0;
  content: "";
}

.mug::after {
  position: absolute;
  right: 0;
  left: 0;
  top: -9px;
  height: 18px;
  border: 1px solid rgba(68, 51, 35, .14);
  border-radius: 50%;
  background: #f1ebdd;
  content: "";
}

.section {
  padding-block: var(--space-section);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-link {
  font-weight: 800;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  text-decoration: none;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.card,
.topic-card,
.content-panel {
  border: 1px solid var(--color-border);
  border-radius: .5rem;
  background: var(--color-surface);
}

.card,
.topic-card {
  padding: clamp(1.1rem, 3vw, 1.45rem);
}

.card h2,
.card h3,
.topic-card h3 {
  margin-top: .55rem;
}

.card p:last-child,
.topic-card p {
  margin-top: .8rem;
  color: var(--color-muted);
}

.home-card-grid {
  gap: clamp(1rem, 2.4vw, 1.7rem);
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: .5rem;
  background: var(--color-surface);
  color: var(--color-ink);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(24, 44, 34, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.article-card:hover {
  border-color: rgba(15, 77, 54, .35);
  color: var(--color-ink);
  box-shadow: 0 18px 38px rgba(24, 44, 34, .12);
  transform: translateY(-2px);
}

.article-visual {
  position: relative;
  display: grid;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(135deg, #fbfaf3, #f0f3ec);
  color: var(--color-brand);
}

.article-body {
  display: grid;
  gap: .7rem;
  padding: clamp(1rem, 2.4vw, 1.25rem);
}

.article-body h3 {
  margin: 0;
}

.article-body p {
  color: #3c4842;
}

.article-meta {
  margin-top: .5rem;
  color: var(--color-muted);
  font-size: .88rem;
}

.library-hero h1 {
  max-width: 13ch;
}

.article-library-section {
  padding-top: 0;
}

.article-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.7rem);
}

.article-list-card {
  display: grid;
  align-content: start;
  gap: .8rem;
  min-height: 100%;
  border: 1px solid var(--color-border);
  border-radius: .5rem;
  background: var(--color-surface);
  color: var(--color-ink);
  padding: clamp(1.15rem, 3vw, 1.5rem);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(24, 44, 34, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.article-list-card:hover {
  border-color: rgba(15, 77, 54, .35);
  color: var(--color-ink);
  box-shadow: 0 18px 38px rgba(24, 44, 34, .12);
  transform: translateY(-2px);
}

.article-list-card h3 {
  margin: 0;
}

.article-list-card p:not(.card-kicker) {
  color: var(--color-muted);
}

.article-list-card span {
  margin-top: auto;
  color: var(--color-brand);
  font-size: .88rem;
  font-weight: 800;
}

.guide-library-section {
  padding-top: 0;
}

.guide-shelf {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr) minmax(0, .9fr);
  gap: clamp(1rem, 2.4vw, 1.7rem);
}

.guide-list-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 100%;
  border: 1px solid var(--color-border);
  border-radius: .5rem;
  background: var(--color-surface);
  color: var(--color-ink);
  padding: clamp(1.2rem, 3vw, 1.7rem);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(24, 44, 34, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.guide-list-card:hover {
  border-color: rgba(15, 77, 54, .35);
  color: var(--color-ink);
  box-shadow: 0 18px 38px rgba(24, 44, 34, .12);
  transform: translateY(-2px);
}

.guide-list-card h2 {
  margin-top: .55rem;
}

.guide-list-card p:not(.card-kicker) {
  color: var(--color-muted);
}

.guide-list-card > span {
  margin-top: auto;
  color: var(--color-brand);
  font-size: .88rem;
  font-weight: 800;
}

.flagship-guide-card {
  background:
    linear-gradient(135deg, rgba(220, 232, 216, .82), rgba(255, 255, 255, .94)),
    var(--color-surface);
}

.mini-check-list {
  display: grid;
  gap: .55rem;
  margin: .25rem 0 0;
  padding: 0;
  list-style: none;
}

.mini-check-list li {
  border-left: 3px solid var(--color-brand);
  background: rgba(255, 255, 255, .6);
  padding: .45rem .7rem;
  color: #33443c;
  font-weight: 700;
}

.guide-hero h1 {
  max-width: 12ch;
}

.guide-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  align-items: center;
  gap: clamp(2rem, 6vw, 4rem);
}

.guide-hero-grid > div:first-child p:last-child {
  max-width: 680px;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.workbook-preview {
  display: grid;
  gap: 1rem;
  min-height: 260px;
  border: 1px solid rgba(15, 77, 54, .14);
  border-radius: .5rem;
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(15, 77, 54, .11) 32px 33px),
    #fffdf7;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
  transform: rotate(1.5deg);
}

.workbook-preview span {
  color: var(--color-brand);
  font-weight: 800;
}

.preview-lines {
  min-height: 88px;
  background:
    linear-gradient(#dce8d8 0 0) 0 18px / 78% 8px no-repeat,
    linear-gradient(#dce8d8 0 0) 0 48px / 92% 8px no-repeat,
    linear-gradient(#dce8d8 0 0) 0 78px / 64% 8px no-repeat;
}

.preview-chart,
.checklist-preview p {
  border: 1px solid var(--color-border);
  border-radius: .35rem;
  background: rgba(255, 255, 255, .76);
}

.preview-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: .55rem;
  min-height: 84px;
  padding: .75rem;
}

.preview-chart i {
  display: block;
  border-radius: .2rem .2rem 0 0;
  background: #69958d;
}

.preview-chart i:nth-child(1) { height: 40%; }
.preview-chart i:nth-child(2) { height: 62%; }
.preview-chart i:nth-child(3) { height: 48%; }
.preview-chart i:nth-child(4) { height: 78%; }

.checklist-preview p {
  position: relative;
  margin: 0;
  padding: .6rem .7rem .6rem 2.2rem;
  color: #35433d;
  font-weight: 700;
}

.checklist-preview p::before {
  position: absolute;
  left: .75rem;
  top: .7rem;
  width: .8rem;
  aspect-ratio: 1;
  border: 2px solid var(--color-brand);
  border-radius: .18rem;
  content: "";
}

.debt-preview svg {
  align-self: center;
  color: var(--color-brand);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 320px);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--space-section);
}

.guide-content {
  display: grid;
  gap: 1.4rem;
  min-width: 0;
}

.workbook-block {
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: .5rem;
  background: var(--color-surface);
  padding: clamp(1.2rem, 4vw, 2rem);
}

.workbook-block h2 {
  margin-top: .55rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.workbook-block h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.25;
}

.workbook-block p,
.workbook-block li,
.workbook-block td {
  color: #35433d;
}

.printable-block {
  background:
    linear-gradient(90deg, rgba(15, 77, 54, .05) 0 1px, transparent 1px 100%),
    var(--color-surface);
}

.prompt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.prompt-grid > div {
  border: 1px solid var(--color-border);
  border-radius: .45rem;
  background: #fffdf7;
  padding: 1rem;
}

.table-wrap {
  width: 100%;
  margin-top: 1.2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.worksheet-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: .95rem;
}

.worksheet-table th,
.worksheet-table td {
  border: 1px solid var(--color-border);
  padding: .85rem;
  text-align: left;
  vertical-align: top;
}

.worksheet-table thead th,
.worksheet-table tbody th {
  color: var(--color-ink);
  font-weight: 800;
}

.worksheet-table thead th {
  background: #eef3e8;
}

.worksheet-table tbody th {
  background: #fffdf7;
}

.debt-paydown-table tbody th {
  white-space: nowrap;
}

.step-list,
.worksheet-checklist {
  display: grid;
  gap: .8rem;
  margin-top: 1.2rem;
}

.worksheet-checklist {
  padding: 0;
  list-style: none;
}

.worksheet-checklist li {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: .45rem;
  background: #fffdf7;
  padding: .85rem .9rem .85rem 2.8rem;
}

.worksheet-checklist li::before {
  position: absolute;
  left: .9rem;
  top: .95rem;
  width: 1rem;
  aspect-ratio: 1;
  border: 2px solid var(--color-brand);
  border-radius: .2rem;
  content: "";
}

.topic-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr);
  align-items: center;
  gap: 2rem;
}

.topic-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-pill-list a {
  display: inline-flex;
  border: 1px solid rgba(15, 77, 54, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  color: var(--color-brand);
  padding: .65rem .9rem;
  font-weight: 800;
  text-decoration: none;
}

.article-hero h1 {
  max-width: 14ch;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(220px, 320px);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--space-section);
}

.article-content {
  color: #2f3934;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.72;
}

.article-content > * + * {
  margin-top: 1.2rem;
}

.article-content h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.article-content ul {
  display: grid;
  gap: .55rem;
}

.article-note {
  margin-top: 2rem;
  background: #eef3e8;
}

.article-note h2 {
  margin-top: 0;
}

.article-aside {
  position: sticky;
  top: 104px;
}

.article-aside .content-panel {
  background: #fffdf7;
}

.article-aside h2 {
  margin-top: .5rem;
  font-size: 1.35rem;
}

.related-links {
  display: grid;
  gap: .75rem;
  padding-left: 1rem;
}

.bars-visual {
  align-items: end;
  grid-template-columns: repeat(6, 1fr);
  gap: .65rem;
  padding: 2.8rem 4rem 1.6rem 1.8rem;
}

.bars-visual span {
  width: 100%;
  border-radius: .18rem .18rem 0 0;
  background: linear-gradient(#9dc3b8, #6f9b90);
}

.bars-visual span:nth-child(1) { height: 34%; }
.bars-visual span:nth-child(2) { height: 48%; }
.bars-visual span:nth-child(3) { height: 58%; }
.bars-visual span:nth-child(4) { height: 72%; }
.bars-visual span:nth-child(5) { height: 55%; }
.bars-visual span:nth-child(6) { height: 88%; }

.bars-visual svg {
  position: absolute;
  inset: 1.4rem 2.8rem 2rem 1.5rem;
  width: auto;
  height: auto;
}

.bars-visual::before,
.bars-visual::after {
  position: absolute;
  background: rgba(15, 77, 54, .25);
  content: "";
}

.bars-visual::before {
  left: 1.7rem;
  bottom: 1.6rem;
  width: 78%;
  height: 1px;
}

.bars-visual::after {
  left: 1.7rem;
  bottom: 1.6rem;
  width: 1px;
  height: 70%;
}

.magnifier {
  position: absolute;
  right: 2rem;
  bottom: 1.25rem;
  width: 78px;
  aspect-ratio: 1;
  border: 7px solid #1c2d27;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  box-shadow: 12px 12px 0 -7px #1c2d27;
}

.magnifier::after {
  position: absolute;
  right: -28px;
  bottom: -22px;
  width: 44px;
  height: 10px;
  border-radius: 99px;
  background: #1c2d27;
  transform: rotate(45deg);
  content: "";
}

.debt-visual {
  padding: 1.5rem;
}

.debt-visual svg {
  width: 82%;
  align-self: center;
}

.balance-note {
  position: absolute;
  right: 1.8rem;
  top: 45%;
  border-radius: .35rem;
  background: var(--color-brand);
  color: #fff;
  padding: .75rem .9rem;
  font-size: .86rem;
  line-height: 1.25;
  box-shadow: 0 12px 24px rgba(15, 77, 54, .18);
}

.balance-note strong {
  font-size: 1.08rem;
}

.flow-visual {
  padding: 1.25rem;
}

.flow-visual svg {
  align-self: center;
  fill: rgba(105, 149, 141, .58);
}

.flow-visual path:nth-child(2) {
  fill: rgba(105, 149, 141, .45);
}

.flow-visual path:nth-child(3) {
  fill: rgba(105, 149, 141, .35);
}

.flow-label {
  position: absolute;
  color: #1c2d27;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.25;
}

.flow-label.income {
  left: 2rem;
  top: 47%;
}

.flow-label.needs {
  right: 1.3rem;
  top: 25%;
}

.flow-label.wants {
  right: 1.3rem;
  top: 51%;
}

.flow-label.savings {
  right: 1.3rem;
  top: 75%;
}

.feature-band {
  background: #eef3e8;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  align-items: center;
  gap: clamp(2rem, 6vw, 4rem);
}

.home-feature-section {
  padding-block: clamp(1.8rem, 5vw, 3.1rem);
}

.home-feature-section .feature-grid {
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
  overflow: hidden;
  border: 1px solid #d6e2d8;
  border-radius: .5rem;
  background:
    linear-gradient(90deg, rgba(201, 223, 211, .75), rgba(250, 251, 247, .93)),
    #eef3e8;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: 0 14px 38px rgba(24, 44, 34, .08);
}

.feature-copy {
  max-width: 640px;
}

.feature-copy .button {
  margin-top: 1.35rem;
}

.check-list li + li {
  margin-top: .45rem;
}

.check-list {
  display: grid;
  gap: .7rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2.1rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: .05rem;
  width: 1.35rem;
  aspect-ratio: 1;
  border: 1px solid rgba(15, 77, 54, .45);
  border-radius: 50%;
  content: "";
}

.check-list li::after {
  position: absolute;
  left: .45rem;
  top: .35rem;
  width: .38rem;
  height: .68rem;
  border-right: 2px solid var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
  transform: rotate(42deg);
  content: "";
}

.guide-visual {
  display: flex;
  position: relative;
  justify-content: center;
}

.guide-cover {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 1rem;
  width: min(100%, 250px);
  aspect-ratio: 3 / 4;
  border-radius: .45rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .1) 0 10%, transparent 10%),
    linear-gradient(145deg, var(--color-brand), #1f6b4b);
  color: #fff;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-serif);
  padding: 1.65rem 1.5rem;
}

.guide-cover span {
  display: block;
  max-width: 8ch;
  font-size: 2rem;
  line-height: 1.04;
}

.guide-cover small {
  max-width: 16ch;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.35;
}

.guide-cover svg {
  align-self: end;
  margin-top: auto;
  color: #b7d2c8;
}

.feature-plant {
  position: absolute;
  right: 9%;
  bottom: 0;
  width: 84px;
  height: 110px;
  border-radius: 0 0 1.2rem 1.2rem;
  background: #e4ded0;
  box-shadow: var(--shadow-soft);
}

.feature-plant::before {
  position: absolute;
  left: 32px;
  bottom: 72px;
  width: 68px;
  height: 68px;
  border-left: 12px solid #6f875a;
  border-top: 20px solid #6f875a;
  border-radius: 100% 0;
  transform: rotate(-42deg);
  content: "";
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.home-topic-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  padding: 0;
  text-decoration: none;
}

.home-topic-card:hover h3 {
  color: var(--color-brand);
}

.home-topic-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.25;
}

.home-topic-card p {
  margin-top: .35rem;
  color: var(--color-muted);
  font-size: .95rem;
}

.topic-icon {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 2px solid var(--color-brand);
  border-radius: 50%;
  color: var(--color-brand);
}

.pie-icon {
  background: conic-gradient(transparent 0 25%, rgba(15, 77, 54, .18) 25% 50%, transparent 50% 100%);
}

.pie-icon::before,
.down-icon::before,
.flow-icon::before,
.flow-icon::after {
  content: "";
}

.pie-icon::before {
  width: 1px;
  height: 100%;
  background: var(--color-brand);
}

.down-icon::before {
  width: 14px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}

.flow-icon {
  border: 0;
  border-radius: 0;
}

.flow-icon,
.flow-icon::before,
.flow-icon::after {
  width: 44px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-radius: 99px;
}

.flow-icon {
  position: relative;
  margin-top: .3rem;
}

.flow-icon::before,
.flow-icon::after {
  position: absolute;
  left: 0;
}

.flow-icon::before {
  top: 10px;
  transform: translateX(8px);
}

.flow-icon::after {
  top: 20px;
}

.content-panel {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.content-panel p {
  color: var(--color-muted);
}

.site-footer {
  border-top: 1px solid var(--color-border);
  padding-block: 2.5rem;
  background: #f4f3ea;
}

.footer-grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-grid p {
  max-width: 430px;
  margin-top: .6rem;
  color: var(--color-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1.25rem;
  justify-content: flex-end;
  font-weight: 700;
}

.footer-nav a {
  color: var(--color-ink);
  text-decoration: none;
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: .45rem;
    background: var(--color-surface);
    color: var(--color-ink);
  }

  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    content: "";
  }

  .nav-toggle-bars {
    position: relative;
  }

  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    position: absolute;
    left: 0;
  }

  .nav-toggle-bars::before {
    top: -6px;
  }

  .nav-toggle-bars::after {
    top: 6px;
  }

  .site-nav {
    position: absolute;
    right: 1rem;
    left: 1rem;
    top: calc(100% + .5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: .5rem;
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
    padding: .4rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: .35rem;
    padding: .85rem;
  }

  .site-nav a[aria-current="page"]::after,
  .site-nav a:hover::after {
    display: none;
  }

  .site-nav a[aria-current="page"],
  .site-nav a:hover {
    background: #eef3e8;
  }

  .hero-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .home-feature-section .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .home-visual {
    overflow: hidden;
    min-height: 440px;
  }

  .three-column {
    grid-template-columns: 1fr;
  }

  .article-library-grid,
  .article-layout,
  .guide-layout,
  .guide-shelf,
  .guide-hero-grid,
  .prompt-grid,
  .topic-strip {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .topic-pill-list {
    justify-content: flex-start;
  }

  .topic-list {
    grid-template-columns: 1fr;
  }

  .section-heading-row,
  .footer-grid {
    align-items: start;
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  h1 {
    font-size: clamp(2.25rem, 14vw, 3.4rem);
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    gap: 1rem;
  }

  .home-visual {
    position: relative;
    display: grid;
    min-height: auto;
    overflow: visible;
    gap: .9rem;
  }

  .desk-surface,
  .plant,
  .mug {
    display: none;
  }

  .home-visual .line-card,
  .cash-card,
  .home-visual .donut-card,
  .home-visual .notebook-card {
    position: static;
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .home-visual .line-card {
    padding: 1rem;
  }

  .cash-card {
    order: 2;
  }

  .donut-card {
    position: static;
    width: 100%;
  }

  .donut-layout {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .home-visual .donut {
    width: 104px;
  }

  .notebook-card {
    width: 100%;
  }

  .home-visual .notebook-card {
    position: relative;
    min-height: 150px;
    padding: 1.8rem 1.2rem 1.1rem;
  }

  .pen {
    width: 96px;
  }

  .home-feature-section .feature-grid {
    padding: 1rem;
  }

  .guide-cover {
    width: min(100%, 210px);
  }

  .feature-plant {
    right: 4%;
  }

  .home-topic-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .workbook-preview {
    min-height: 220px;
    transform: none;
  }

  .worksheet-table {
    min-width: 560px;
  }
}

/* Home page visual polish */
.site-header {
  box-shadow: 0 1px 0 rgba(255, 255, 255, .65);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  letter-spacing: -.01em;
}

.brand::before {
  display: inline-block;
  width: .72em;
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, currentColor 50% 52%, transparent 53%),
    conic-gradient(from -40deg, rgba(15, 77, 54, .18) 0 26%, transparent 26% 51%, rgba(15, 77, 54, .12) 51% 76%, transparent 76%);
  content: "";
}

.footer-brand::before {
  width: .68em;
}

.home-hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .14) 48%, rgba(220, 232, 216, .26)),
    linear-gradient(180deg, #fffef9 0%, var(--color-bg) 74%, rgba(244, 243, 234, .65) 100%);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 77, 54, .035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(15, 77, 54, .028) 1px, transparent 1px) 0 0 / 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent 72%);
  content: "";
}

.home-hero .hero-grid {
  min-height: calc(100vh - 76px);
  min-height: min(610px, calc(100vh - 76px));
  padding-block: clamp(1.5rem, 4vw, 3.4rem) clamp(1.25rem, 3vw, 2.4rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(15, 77, 54, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
  padding: .48rem .72rem;
  box-shadow: 0 10px 24px rgba(24, 44, 34, .06);
}

.home-hero h1 {
  letter-spacing: 0;
  text-wrap: balance;
  font-size: clamp(2.7rem, 5vw, 4.15rem);
}

.home-hero .hero-lede {
  max-width: 590px;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  box-shadow: 0 10px 24px rgba(15, 77, 54, .08);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 30px rgba(15, 77, 54, .14);
}

.button-primary {
  border-color: #0d5d43;
  background: linear-gradient(180deg, #137357, var(--color-brand));
}

.button-primary::after {
  width: .95rem;
  height: .95rem;
  margin-left: .55rem;
  background: currentColor;
  clip-path: polygon(42% 18%, 54% 18%, 88% 50%, 54% 82%, 42% 82%, 68% 56%, 14% 56%, 14% 44%, 68% 44%);
  content: "";
}

.button-secondary {
  background: rgba(255, 255, 255, .62);
}

.button-secondary:hover {
  border-color: rgba(15, 77, 54, .45);
  background: #fff;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: .25rem 0 0;
  padding: 0;
  color: #35443d;
  font-size: .92rem;
  font-weight: 800;
  list-style: none;
}

.hero-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid rgba(15, 77, 54, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  padding: .4rem .62rem;
}

.hero-proof-list li::before {
  width: .48rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(216, 179, 95, .18);
  content: "";
}

.home-visual {
  min-height: 485px;
}

.home-visual::before {
  position: absolute;
  right: -1.5rem;
  bottom: 2.2rem;
  z-index: -2;
  width: min(92%, 580px);
  height: 74%;
  border: 1px solid rgba(15, 77, 54, .09);
  border-radius: .7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(241, 244, 237, .7)),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(15, 77, 54, .035) 31px 32px);
  box-shadow: 0 32px 80px rgba(23, 35, 29, .1);
  transform: rotate(.8deg);
  content: "";
}

.home-visual .line-card,
.home-visual .donut-card,
.cash-card,
.home-visual .notebook-card {
  box-shadow: 0 24px 56px rgba(24, 44, 34, .14);
}

.home-visual .line-card {
  top: .6rem;
  left: 0;
  width: min(64%, 395px);
  min-width: 280px;
  border-color: rgba(15, 77, 54, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .86)),
    var(--color-surface);
}

.home-visual .line-card span,
.home-visual .donut-card span {
  color: #46534d;
}

.home-visual .donut-card {
  right: -1%;
  top: 7.7rem;
  width: min(53%, 302px);
}

.cash-card {
  top: 14.2rem;
  left: 4%;
  background:
    linear-gradient(180deg, #fff, #fffdf8),
    var(--color-surface);
}

.cash-card span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.cash-card div:last-child {
  margin-top: .15rem;
  border-top-color: rgba(15, 77, 54, .18);
}

.home-visual .notebook-card {
  right: 9%;
  bottom: 0;
  min-height: 160px;
  box-shadow: 0 20px 54px rgba(24, 44, 34, .13);
}

.desk-surface {
  height: 36%;
  border-top: 1px solid rgba(70, 55, 38, .12);
}

.plant-pot,
.mug {
  border: 1px solid rgba(82, 65, 44, .12);
}

.latest-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(251, 250, 243, 0));
}

.latest-section .section-heading-row,
.topics-section .section-heading-row {
  border-top: 1px solid rgba(15, 77, 54, .12);
  padding-top: clamp(1.5rem, 3vw, 2rem);
}

.section-heading-row h2 {
  text-wrap: balance;
}

.section-heading-row .arrow-link {
  white-space: nowrap;
}

.article-card {
  display: grid;
  min-height: 100%;
  border-color: rgba(15, 77, 54, .14);
  box-shadow: 0 16px 36px rgba(24, 44, 34, .07);
}

.article-card:hover {
  box-shadow: 0 22px 52px rgba(24, 44, 34, .14);
  transform: translateY(-4px);
}

.article-visual {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(230, 238, 229, .72)),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(15, 77, 54, .035) 19px 20px);
}

.article-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .45));
  pointer-events: none;
  content: "";
}

.article-body {
  align-content: start;
  min-height: 230px;
}

.article-body h3 {
  text-wrap: balance;
}

.article-meta {
  align-self: end;
  margin-top: auto;
}

.card-kicker {
  color: #0c6b55;
}

.home-feature-section .feature-grid {
  position: relative;
  isolation: isolate;
  border-color: rgba(15, 77, 54, .16);
  background:
    linear-gradient(90deg, rgba(206, 225, 215, .82), rgba(255, 255, 255, .92) 54%, rgba(239, 244, 237, .86)),
    repeating-linear-gradient(90deg, transparent 0 36px, rgba(15, 77, 54, .025) 37px 38px),
    #eef3e8;
  box-shadow: 0 24px 70px rgba(24, 44, 34, .11);
}

.home-feature-section .feature-grid::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 42%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(216, 179, 95, .12));
  content: "";
}

.guide-cover {
  box-shadow: 0 22px 52px rgba(15, 77, 54, .22);
}

.guide-cover::after {
  position: absolute;
  inset: .75rem .75rem auto auto;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: conic-gradient(rgba(255, 255, 255, .26) 0 35%, transparent 35%);
  content: "";
}

.feature-copy p:not(.eyebrow),
.check-list {
  color: #2f3d36;
}

.check-list li {
  font-weight: 700;
}

.topic-list {
  align-items: stretch;
}

.home-topic-card {
  grid-template-columns: 56px minmax(0, 1fr);
  min-height: 100%;
  border: 1px solid rgba(15, 77, 54, .13);
  border-radius: .5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .58)),
    var(--color-surface);
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(24, 44, 34, .055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-topic-card:hover {
  border-color: rgba(15, 77, 54, .32);
  box-shadow: 0 18px 40px rgba(24, 44, 34, .1);
  transform: translateY(-2px);
}

.topic-icon {
  background-color: rgba(220, 232, 216, .38);
}

.site-footer {
  background:
    linear-gradient(180deg, #f4f3ea, #ecefe5);
}

@media (max-width: 980px) {
  .home-hero .hero-grid {
    min-height: auto;
  }

  .home-visual {
    min-height: 540px;
  }

  .home-visual::before {
    right: -2rem;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .home-hero {
    padding-block-start: 1.5rem;
  }

  .home-hero .hero-grid {
    padding-block: clamp(1.8rem, 6vw, 3rem);
  }

  .hero-eyebrow {
    font-size: .72rem;
  }

  .home-visual::before {
    right: 0;
    bottom: 1.4rem;
    width: 94%;
    height: 82%;
  }

  .article-body {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: .4rem;
  }

  .brand::before {
    display: none;
  }

  .home-hero h1 {
    font-size: clamp(2.5rem, 13.5vw, 3.55rem);
    max-width: 9.5ch;
  }

  .hero-proof-list {
    gap: .4rem;
    font-size: .82rem;
  }

  .hero-proof-list li {
    padding: .34rem .5rem;
  }

  .home-visual::before {
    display: none;
  }

  .home-visual .line-card,
  .cash-card,
  .home-visual .donut-card,
  .home-visual .notebook-card {
    box-shadow: 0 14px 34px rgba(24, 44, 34, .09);
  }

  .donut-layout {
    gap: .75rem;
  }

  .home-feature-section .feature-grid::after {
    display: none;
  }

  .home-topic-card {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 1rem;
  }
}
