@font-face { font-family: "Barlow Condensed"; src: url("../fonts/barlow-condensed-800.woff2") format("woff2"); font-style: normal; font-weight: 800; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("../fonts/barlow-condensed-900.woff2") format("woff2"); font-style: normal; font-weight: 900; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/inter-400.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/inter-600.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/inter-700.woff2") format("woff2"); font-style: normal; font-weight: 700; font-display: swap; }

:root {
  --ink: #0b0d0c;
  --ink2: #151815;
  --paper: #f4f0e6;
  --paper2: #e8e5dc;
  --white: #fffef8;
  --lime: #c8ff2e;
  --lime2: #dbff73;
  --muted: #9ca39b;
  --muted-dark: #5e655d;
  --line: #2a2f2b;
  --line-light: #c6c4bb;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body, button, input, select, textarea { font-family: var(--body); }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
::selection { background: var(--lime); color: var(--ink); }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.shell { width: var(--shell); margin-inline: auto; }
.dark { background: var(--ink); color: var(--paper); }
.soft { background: var(--paper2); }
.section { padding: 108px 0; }
.skip { position: fixed; z-index: 999; top: 8px; left: 8px; padding: 10px 14px; background: var(--lime); transform: translateY(-150%); font-weight: 800; }
.skip:focus { transform: translateY(0); }
.eyebrow { margin: 0; color: var(--lime); font-family: var(--display); font-size: .92rem; font-weight: 800; letter-spacing: .13em; line-height: 1.2; text-transform: uppercase; }
.ink-eyebrow { color: #526600; }

.utility { height: 36px; background: #070907; border-bottom: 1px solid var(--line); color: var(--paper); font-family: var(--display); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.utility .shell { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.utility b { color: var(--lime); }
.utility a { display: inline-flex; align-items: center; gap: 8px; }
.utility a:hover { color: var(--lime); }
header { position: sticky; z-index: 80; top: 0; display: grid; grid-template-columns: minmax(220px,1fr) auto minmax(290px,1fr); height: 82px; background: rgba(11,13,12,.96); border-bottom: 1px solid var(--line); color: var(--paper); backdrop-filter: blur(16px); }
.logo { display: flex; width: max-content; align-items: center; padding: 0 30px; border-right: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; font-family: var(--display); font-size: 2rem; font-style: normal; font-weight: 900; letter-spacing: -.045em; line-height: 1; }
.brand i { margin-right: 7px; color: var(--lime); font-style: normal; }
.brand b { color: var(--lime); }
.nav { display: flex; align-items: stretch; }
.nav a { position: relative; display: flex; align-items: center; padding: 0 20px; font-family: var(--display); font-size: 1rem; font-weight: 700; letter-spacing: .045em; text-transform: uppercase; }
.nav a::after { position: absolute; right: 20px; bottom: 21px; left: 20px; height: 2px; background: var(--lime); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .18s var(--ease); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; justify-content: flex-end; }
.icon-btn { display: grid; width: 78px; place-items: center; border: 0; border-left: 1px solid var(--line); background: transparent; cursor: pointer; }
.icon-btn:hover { background: var(--ink2); color: var(--lime); }
.goal-btn { display: flex; min-width: 210px; align-items: center; justify-content: center; gap: 10px; border: 0; background: var(--lime); color: var(--ink); cursor: pointer; font-family: var(--display); font-size: 1rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.goal-btn:hover { background: var(--lime2); }
.menu-btn { display: none; }
.scrim { position: fixed; z-index: 110; inset: 0; border: 0; background: rgba(0,0,0,.74); cursor: pointer; }
.mobile-menu { position: fixed; z-index: 120; inset: 0 0 0 auto; display: flex; width: min(440px,92vw); flex-direction: column; padding: 24px; background: var(--ink); color: var(--paper); animation: menu-in .25s var(--ease); }
@keyframes menu-in { from { transform: translateX(100%); } }
.mobile-menu > div { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.mobile-menu > div button, .search-top button, .goal-top button { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line); background: transparent; color: var(--paper); cursor: pointer; }
.mobile-menu nav { display: flex; flex: 1; flex-direction: column; padding: 20px 0; }
.mobile-menu nav a { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; min-height: 57px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; }
.mobile-menu nav a span { color: var(--lime); font-size: .72rem; }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 11px; padding: 13px 25px; border: 1px solid transparent; cursor: pointer; font-family: var(--display); font-size: .98rem; font-weight: 800; letter-spacing: .06em; line-height: 1; text-transform: uppercase; transition: transform .16s var(--ease), background .16s, color .16s; }
.button:hover { transform: translateY(-2px); }
.button.primary { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.button.primary:hover { background: var(--lime2); }
.button.outline { border-color: #626a5f; background: transparent; color: var(--paper); }
.button.outline:hover { border-color: var(--lime); color: var(--lime); }
.dark-button { background: var(--ink); color: var(--paper); }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }

.hero-grid { display: grid; grid-template-columns: 47% 53%; min-height: 670px; }
.hero-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 70px max(38px,calc((100vw - 1240px)/2)); overflow: hidden; }
.hero-copy::before { position: absolute; top: 8%; left: -40%; width: 520px; height: 520px; border: 1px solid rgba(200,255,46,.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(200,255,46,.025),0 0 0 160px rgba(200,255,46,.015); content: ""; }
.hero-copy > * { position: relative; }
.hero-copy h1 { max-width: 700px; margin: 21px 0 0; font-family: var(--display); font-size: clamp(4.8rem,7.3vw,7.7rem); font-weight: 900; letter-spacing: -.06em; line-height: .82; text-transform: uppercase; }
.hero-copy h1 span { display: block; color: var(--lime); }
.hero-copy > p:not(.eyebrow) { max-width: 570px; margin: 28px 0 0; color: #c4c9c1; font-size: 1.05rem; }
.hero-image { position: relative; overflow: hidden; border-left: 1px solid var(--lime); }
.hero-image::after { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(11,13,12,.2),transparent 30%),linear-gradient(0deg,rgba(11,13,12,.5),transparent 35%); content: ""; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; transition: transform .8s var(--ease); }
.hero:hover .hero-image img { transform: scale(1.018); }
.hero-image > div { position: absolute; z-index: 2; right: 26px; bottom: 28px; display: flex; min-width: 260px; flex-direction: column; padding: 16px 19px; border-left: 3px solid var(--lime); background: rgba(11,13,12,.87); backdrop-filter: blur(10px); }
.hero-image small { color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.hero-image strong { font-family: var(--display); font-size: 1.25rem; text-transform: uppercase; }
.trust { display: grid; grid-template-columns: repeat(4,1fr); min-height: 88px; border-top: 1px solid var(--line); }
.trust > div { display: flex; align-items: center; justify-content: center; gap: 15px; padding: 18px; border-right: 1px solid var(--line); font-family: var(--display); font-size: 1rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.trust > div:last-child { border-right: 0; }
.trust svg { color: var(--lime); }

.heading { display: grid; grid-template-columns: 220px minmax(0,1.3fr) minmax(260px,.7fr); align-items: end; gap: 42px; margin-bottom: 58px; }
.heading-index { display: grid; grid-template-columns: auto 1fr; align-self: start; align-items: center; gap: 8px 13px; padding-top: 10px; font-family: var(--display); font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.heading-index b { color: #526600; }
.heading-index i { height: 1px; background: var(--line-light); }
.heading-index span { grid-column: 1/-1; color: var(--muted-dark); }
.heading h2 { margin: 0; font-family: var(--display); font-size: clamp(3rem,5.2vw,5rem); font-weight: 900; letter-spacing: -.05em; line-height: .9; text-transform: uppercase; }
.heading > p { margin: 0; color: var(--muted-dark); font-size: .94rem; }
.dark-heading .heading-index b, .dark-heading .heading-index span { color: var(--lime); }
.dark-heading .heading-index i { background: var(--line); }
.dark-heading > p { color: var(--muted); }

.goal-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.goal-grid > a { position: relative; display: flex; min-height: 300px; flex-direction: column; justify-content: space-between; padding: 27px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: background .2s,color .2s; }
.goal-grid > a:hover { background: var(--ink); color: var(--paper); }
.goal-grid > a > span { color: #526600; font-family: var(--display); font-size: .75rem; font-weight: 800; }
.goal-grid h3 { margin: 0 0 9px; font-family: var(--display); font-size: 2.2rem; font-weight: 800; letter-spacing: -.03em; line-height: .95; text-transform: uppercase; }
.goal-grid p { max-width: 220px; margin: 0; color: var(--muted-dark); font-size: .86rem; }
.goal-grid > a:hover p { color: var(--muted); }
.goal-grid > a > svg { position: absolute; top: 23px; right: 23px; }
.underlink { display: flex; align-items: center; gap: 8px; margin: 32px auto 0; padding: 7px 0; border: 0; border-bottom: 1px solid; background: transparent; cursor: pointer; font-weight: 700; }

.method-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.method-grid article { min-height: 350px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .18s; }
.method-grid article:hover { background: var(--ink2); }
.method-grid article > div { display: flex; align-items: center; justify-content: space-between; color: var(--lime); }
.method-grid h3 { margin: 78px 0 12px; font-family: var(--display); font-size: 3.2rem; font-weight: 900; line-height: .9; text-transform: uppercase; }
.method-grid p { max-width: 330px; margin: 0; color: var(--muted); font-size: .9rem; }
.method-grid a { display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; padding-bottom: 3px; border-bottom: 1px solid var(--lime); color: var(--lime); font-size: .75rem; font-weight: 800; text-transform: uppercase; }

.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 23px; }
.article-card { display: grid; grid-template-rows: 245px 1fr; overflow: hidden; border: 1px solid var(--line-light); background: var(--white); }
.article-image { position: relative; overflow: hidden; background: var(--ink2); }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.article-card:hover .article-image img { transform: scale(1.035); }
.article-image > span { position: absolute; top: 14px; left: 14px; padding: 5px 9px; background: var(--lime); font-family: var(--display); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.article-body { display: flex; min-height: 300px; flex-direction: column; align-items: flex-start; padding: 24px; }
.meta { display: flex; width: 100%; justify-content: space-between; gap: 12px; color: var(--muted-dark); font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.meta span:last-child { display: inline-flex; align-items: center; gap: 5px; }
.article-body h3 { margin: 15px 0 11px; font-family: var(--display); font-size: 1.85rem; font-weight: 800; letter-spacing: -.03em; line-height: .98; text-transform: uppercase; }
.article-body > p { margin: 0; color: var(--muted-dark); font-size: .85rem; }
.read-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 20px; color: #526600; font-size: .74rem; font-weight: 800; text-transform: uppercase; }
.section-button { float: right; margin-top: 30px; }

.category-rail { padding: 40px 0; }
.category-rail .shell { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-rail a { position: relative; min-height: 215px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.category-rail a:hover { background: var(--ink2); }
.category-rail a > span { color: var(--lime); font-family: var(--display); font-size: .72rem; font-weight: 800; }
.category-rail h3 { margin: 35px 0 6px; font-family: var(--display); font-size: 2.2rem; font-weight: 800; text-transform: uppercase; }
.category-rail p { max-width: 310px; margin: 0; color: var(--muted); font-size: .8rem; }
.category-rail svg { position: absolute; top: 22px; right: 22px; }

.tools-preview { background: linear-gradient(135deg,rgba(200,255,46,.13),transparent 45%),var(--paper); }
.tools-preview .shell { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 95px; }
.tools-preview h2 { max-width: 560px; margin: 16px 0 20px; font-family: var(--display); font-size: clamp(3.5rem,5.8vw,5.5rem); font-weight: 900; letter-spacing: -.05em; line-height: .88; text-transform: uppercase; }
.tools-preview .shell > div:first-child > p:not(.eyebrow) { max-width: 500px; color: var(--muted-dark); }
.readiness-card { padding: 29px; background: var(--ink); box-shadow: 22px 22px 0 rgba(11,13,12,.08); color: var(--paper); }
.readiness-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-family: var(--display); text-transform: uppercase; }
.readiness-top > span { display: flex; align-items: center; gap: 7px; color: var(--lime); font-family: var(--body); font-size: .65rem; }
.readiness-top i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.readiness-score { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 24px; padding: 25px 0; }
.readiness-score > b { display: grid; width: 112px; height: 112px; place-items: center; border: 8px solid #2e3a26; border-top-color: var(--lime); border-right-color: var(--lime); border-radius: 50%; font-family: var(--display); font-size: 2.7rem; }
.readiness-score strong { display: block; font-family: var(--display); font-size: 1.6rem; line-height: 1; text-transform: uppercase; }
.readiness-score p { margin: 7px 0 0; color: var(--muted); font-size: .76rem; }
.mini-bar { display: grid; grid-template-columns: 70px 1fr 30px; align-items: center; gap: 10px; margin-top: 9px; font-size: .67rem; }
.mini-bar i { height: 5px; background: var(--line); }
.mini-bar i b { display: block; height: 100%; background: var(--lime); }
.readiness-card > a { display: inline-flex; align-items: center; gap: 7px; margin-top: 24px; color: var(--lime); font-size: .73rem; font-weight: 800; text-transform: uppercase; }

.recipe { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.recipe > img { width: 100%; height: 100%; object-fit: cover; }
.recipe > div { display: flex; flex-direction: column; justify-content: center; padding: 70px max(44px,calc((100vw - 1240px)/2)) 70px 70px; }
.recipe h2 { margin: 18px 0; font-family: var(--display); font-size: clamp(4rem,6.2vw,6.2rem); font-weight: 900; letter-spacing: -.055em; line-height: .84; text-transform: uppercase; }
.recipe > div > p:not(.eyebrow) { max-width: 560px; margin: 0; color: var(--muted); }
.recipe-facts { display: grid; grid-template-columns: repeat(3,1fr); margin: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.recipe-facts span { padding: 15px; border-right: 1px solid var(--line); color: var(--muted); font-size: .7rem; text-transform: uppercase; }
.recipe-facts span:last-child { border-right: 0; }
.recipe-facts b { display: block; color: var(--paper); font-family: var(--display); font-size: 1.5rem; }
.recipe .button { align-self: flex-start; }

.proof .shell { display: grid; grid-template-columns: 1.1fr .9fr; align-items: start; gap: 85px; }
.proof blockquote { max-width: 760px; margin: 22px 0; font-family: var(--display); font-size: clamp(3.2rem,5.4vw,5.3rem); font-weight: 800; letter-spacing: -.045em; line-height: .9; text-transform: uppercase; }
.proof .shell > div > p { max-width: 560px; color: var(--muted-dark); }
.proof aside { padding: 30px; border: 1px solid var(--line-light); background: var(--white); }
.proof aside > span { display: flex; align-items: center; gap: 12px; min-height: 56px; border-bottom: 1px solid #ddd9cf; font-size: .84rem; font-weight: 600; }
.proof aside svg { color: #526600; }
.proof aside > a { display: inline-flex; align-items: center; gap: 7px; margin-top: 22px; color: #526600; font-size: .73rem; font-weight: 800; text-transform: uppercase; }

.newsletter { padding: 70px 0; background: var(--lime); }
.newsletter .shell { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 80px; }
.newsletter h2 { margin: 11px 0 0; font-family: var(--display); font-size: clamp(3.2rem,5vw,4.8rem); font-weight: 900; letter-spacing: -.05em; line-height: .88; text-transform: uppercase; }
.newsletter .shell > div:last-child > p { margin: 0 0 16px; font-weight: 600; }
.newsletter form { display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 62px; padding-left: 17px; border: 1px solid var(--ink); background: var(--paper); }
.newsletter input { height: 60px; padding: 0 14px; border: 0; outline: 0; background: transparent; color: var(--ink); }
.newsletter form button { align-self: stretch; display: flex; align-items: center; gap: 8px; padding: 0 23px; border: 0; background: var(--ink); color: var(--paper); cursor: pointer; font-family: var(--display); font-weight: 800; text-transform: uppercase; }
.newsletter small { display: block; margin-top: 8px; font-size: .64rem; }
.success { display: flex; min-height: 62px; align-items: center; gap: 10px; padding: 14px 17px; border: 1px solid var(--ink); background: var(--paper); font-weight: 700; }

.page-hero { position: relative; overflow: hidden; }
.page-hero::before { position: absolute; top: -380px; left: -240px; width: 780px; height: 780px; border: 1px solid rgba(200,255,46,.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(200,255,46,.02),0 0 0 160px rgba(200,255,46,.012); content: ""; }
.page-hero > .shell { position: relative; display: grid; grid-template-columns: 1fr minmax(400px,.9fr); min-height: 565px; align-items: center; gap: 65px; padding-top: 68px; padding-bottom: 68px; }
.page-hero h1 { max-width: 760px; margin: 20px 0 22px; font-family: var(--display); font-size: clamp(4rem,7vw,7rem); font-weight: 900; letter-spacing: -.06em; line-height: .83; text-transform: uppercase; }
.page-hero .shell > div > p:not(.eyebrow) { max-width: 600px; margin: 0; color: #b5bbb2; font-size: 1.02rem; }
.page-hero > .shell > img { width: 100%; height: 420px; object-fit: cover; border-left: 3px solid var(--lime); }
.page-hero > .shell:not(:has(> img)) { grid-template-columns: 1fr; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.chips span { padding: 7px 10px; border: 1px solid #485047; color: #c4cac1; font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.steps article { min-height: 290px; padding: 29px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.steps article > span { color: #526600; font-family: var(--display); font-weight: 800; }
.steps h2 { margin: 80px 0 12px; font-family: var(--display); font-size: 2.2rem; line-height: .95; text-transform: uppercase; }
.steps p { color: var(--muted-dark); font-size: .86rem; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.filters button { min-height: 41px; padding: 8px 14px; border: 1px solid var(--line-light); background: transparent; cursor: pointer; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.filters button.active, .filters button:hover { background: var(--ink); color: var(--paper); }

.article-hero { padding: 68px 0; }
.article-hero .shell { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 65px; }
.article-hero .shell > div > a { display: inline-flex; align-items: center; gap: 4px; margin-bottom: 23px; color: var(--muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.article-hero h1 { margin: 18px 0 20px; font-family: var(--display); font-size: clamp(3.8rem,6vw,6.2rem); font-weight: 900; letter-spacing: -.055em; line-height: .84; text-transform: uppercase; }
.article-hero .shell > div > p:not(.eyebrow) { max-width: 680px; color: #b6bbb3; font-size: 1.05rem; }
.article-hero img { width: 100%; height: 465px; object-fit: cover; border-left: 3px solid var(--lime); }
.byline { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.byline > span { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-family: var(--display); font-weight: 900; }
.byline > div { display: flex; flex-direction: column; }
.byline small { color: var(--muted); font-size: .65rem; }
.article-layout { display: grid; grid-template-columns: 215px minmax(0,740px); justify-content: center; gap: 75px; padding-top: 85px; padding-bottom: 105px; }
.article-layout > aside { position: sticky; top: 112px; display: flex; height: max-content; flex-direction: column; border-top: 2px solid var(--ink); }
.article-layout > aside strong { padding: 12px 0; color: var(--muted-dark); font-size: .68rem; text-transform: uppercase; }
.article-layout > aside a { padding: 9px 0; border-top: 1px solid #d5d2c9; color: var(--muted-dark); font-size: .72rem; line-height: 1.4; }
.takeaways { padding: 27px; border-left: 4px solid var(--lime); background: var(--white); }
.takeaways h2 { display: flex; align-items: center; gap: 9px; margin: 0 0 14px; font-family: var(--display); font-size: 1.9rem; text-transform: uppercase; }
.takeaways svg { color: #526600; }
.article-content > section { scroll-margin-top: 110px; margin-top: 58px; }
.article-content h2 { margin: 0 0 18px; font-family: var(--display); font-size: 2.55rem; letter-spacing: -.03em; line-height: 1; text-transform: uppercase; }
.article-content p, .article-content li { color: #414641; font-size: 1rem; line-height: 1.85; }
.caution { display: flex; gap: 16px; margin-top: 55px; padding: 22px; border: 1px solid var(--line-light); }
.caution svg { flex: 0 0 auto; color: #526600; }
.caution strong { font-family: var(--display); font-size: 1.1rem; text-transform: uppercase; }
.caution p { margin: 3px 0 0; font-size: .78rem; line-height: 1.5; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; }
.tags span { padding: 6px 10px; border: 1px solid var(--line-light); font-size: .65rem; font-weight: 700; text-transform: uppercase; }

.calculator { border: 1px solid var(--line-light); background: var(--white); }
.tool-tabs { display: grid; grid-template-columns: repeat(5,1fr); border-bottom: 1px solid var(--line-light); }
.tool-tabs button { display: flex; min-height: 88px; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border: 0; border-right: 1px solid var(--line-light); background: transparent; cursor: pointer; color: var(--muted-dark); font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.tool-tabs button:last-child { border-right: 0; }
.tool-tabs button.active { background: var(--ink); color: var(--paper); }
.tool-tabs button.active svg { color: var(--lime); }
.tool-body { display: grid; grid-template-columns: 1fr minmax(410px,.9fr); min-height: 620px; }
.tool-inputs, .tool-result { padding: 48px; }
.tool-inputs > h2 { margin: 9px 0; font-family: var(--display); font-size: 3rem; line-height: .9; text-transform: uppercase; }
.tool-inputs > p:not(.eyebrow) { margin: 0 0 27px; color: var(--muted-dark); font-size: .84rem; }
.segments { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 14px; border: 1px solid var(--line-light); }
.segments button { min-height: 44px; border: 0; background: transparent; cursor: pointer; font-size: .73rem; font-weight: 700; text-transform: uppercase; }
.segments button.active { background: var(--ink); color: var(--paper); }
.field, .select, .range { display: block; margin-top: 14px; }
.field > span, .select > span, .range > span { display: flex; justify-content: space-between; margin-bottom: 6px; color: var(--muted-dark); font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.field > div { display: grid; grid-template-columns: 1fr auto; min-height: 50px; border: 1px solid var(--line-light); background: var(--paper); }
.field input, .select select { min-width: 0; width: 100%; padding: 0 14px; border: 0; outline: 0; background: var(--paper); color: var(--ink); font-weight: 700; }
.field b { display: flex; align-items: center; padding: 0 14px; border-left: 1px solid var(--line-light); color: var(--muted-dark); font-size: .67rem; text-transform: uppercase; }
.select select { min-height: 50px; border: 1px solid var(--line-light); }
.range { margin-top: 24px; }
.range input { width: 100%; accent-color: #708f00; }
.tool-result { position: relative; display: flex; flex-direction: column; justify-content: center; overflow: hidden; background: var(--ink); color: var(--paper); }
.tool-result::after { position: absolute; right: -220px; bottom: -240px; width: 500px; height: 500px; border: 1px solid rgba(200,255,46,.15); border-radius: 50%; box-shadow: 0 0 0 50px rgba(200,255,46,.02),0 0 0 100px rgba(200,255,46,.01); content: ""; }
.tool-result > * { position: relative; z-index: 1; }
.result > span { color: var(--lime); font-family: var(--display); font-size: .82rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.result > strong { display: block; margin-top: 10px; font-family: var(--display); font-size: clamp(5rem,8vw,8rem); font-weight: 900; letter-spacing: -.06em; line-height: .76; }
.result > b { display: block; margin-top: 13px; color: var(--muted); font-size: .72rem; text-transform: uppercase; }
.macros { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 35px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.macros span { padding: 15px 10px; border-right: 1px solid var(--line); color: var(--muted); font-size: .65rem; text-transform: uppercase; }
.macros span:last-child { border-right: 0; }
.macros b { display: block; color: var(--paper); font-family: var(--display); font-size: 1.25rem; }
.tool-note { display: flex; gap: 11px; margin: 28px 0 0; padding: 15px; border-left: 2px solid var(--lime); background: var(--ink2); color: var(--muted); font-size: .74rem; }
.tool-note svg { flex: 0 0 auto; color: var(--lime); }
.tool-result > h3 { margin: 20px 0 0; font-family: var(--display); font-size: 1.8rem; text-transform: uppercase; }
.tool-result > a { display: inline-flex; align-items: center; align-self: flex-start; gap: 7px; margin-top: 22px; color: var(--lime); font-size: .7rem; font-weight: 800; text-transform: uppercase; }

.about .shell { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; }
.about h2 { margin: 15px 0 0; font-family: var(--display); font-size: clamp(3.3rem,5.5vw,5.3rem); font-weight: 900; letter-spacing: -.05em; line-height: .88; text-transform: uppercase; }
.about .shell > div:last-child p { color: #414641; font-size: 1.03rem; }
.contact .shell { display: grid; grid-template-columns: .75fr 1.25fr; gap: 85px; }
.contact aside h2 { margin: 15px 0 28px; font-family: var(--display); font-size: clamp(3rem,5vw,4.6rem); line-height: .9; text-transform: uppercase; }
.contact aside > span { display: flex; align-items: center; gap: 12px; min-height: 65px; border-top: 1px solid var(--line-light); color: var(--muted-dark); font-size: .77rem; }
.contact aside svg { color: #526600; }
.contact form, .contact-success { padding: 36px; border: 1px solid var(--line-light); background: var(--white); }
.contact form { display: grid; gap: 18px; }
.contact form > div { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact form label:not(.check) { display: grid; gap: 6px; font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.contact input, .contact select, .contact textarea { width: 100%; border: 1px solid var(--line-light); background: var(--paper); color: var(--ink); outline: 0; }
.contact input, .contact select { min-height: 50px; padding: 0 13px; }
.contact textarea { resize: vertical; padding: 13px; }
.check { display: flex; align-items: flex-start; gap: 9px; color: var(--muted-dark); font-size: .7rem; }
.check input { width: 18px; min-height: 18px; accent-color: #526600; }
.contact form .button { justify-self: start; }
.contact-success { display: flex; min-height: 450px; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.contact-success > svg { box-sizing: content-box; padding: 18px; border-radius: 50%; background: var(--lime); }
.contact-success h2 { margin: 20px 0 5px; font-family: var(--display); font-size: 2.8rem; text-transform: uppercase; }
.contact-success p { max-width: 450px; color: var(--muted-dark); }
.legal .shell { display: grid; grid-template-columns: 230px minmax(0,750px); justify-content: center; gap: 85px; }
.legal aside { height: max-content; padding-top: 14px; border-top: 2px solid var(--ink); }
.legal aside span, .legal aside b { display: block; }
.legal aside span { color: var(--muted-dark); font-size: .67rem; font-weight: 700; text-transform: uppercase; }
.legal aside p { color: var(--muted-dark); font-size: .7rem; }
.legal .shell > div section { margin-bottom: 48px; }
.legal h2 { margin: 0 0 15px; font-family: var(--display); font-size: 2.5rem; text-transform: uppercase; }
.legal .shell > div section p { color: #414641; font-size: .98rem; line-height: 1.8; }
.legal-contact { display: flex; align-items: center; gap: 7px; padding: 16px; border-left: 3px solid var(--lime); background: var(--white); font-size: .8rem; }
.legal-contact a { font-weight: 800; text-decoration: underline; }
.not-found { display: flex; min-height: 700px; align-items: center; }
.not-found span { color: var(--lime); font-family: var(--display); font-weight: 800; text-transform: uppercase; }
.not-found h1 { max-width: 900px; margin: 15px 0; font-family: var(--display); font-size: clamp(5rem,10vw,10rem); font-weight: 900; letter-spacing: -.06em; line-height: .78; text-transform: uppercase; }
.not-found p { color: var(--muted); }

.search-panel { position: fixed; z-index: 200; inset: 0; overflow-y: auto; background: var(--ink); color: var(--paper); }
.search-top { display: flex; height: 90px; align-items: center; justify-content: space-between; padding: 0 max(30px,calc((100vw - 1240px)/2)); border-bottom: 1px solid var(--line); }
.search-content { width: min(900px,calc(100vw - 44px)); margin: 8vh auto; }
.search-content > p { color: var(--lime); font-family: var(--display); font-size: .75rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.search-input { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px; padding: 8px 12px; border-bottom: 2px solid var(--paper); }
.search-input input { min-width: 0; height: 68px; border: 0; outline: 0; background: transparent; color: var(--paper); font-family: var(--display); font-size: clamp(2rem,5vw,4rem); font-weight: 700; }
.search-content > span { display: block; margin: 30px 0 10px; color: var(--muted); font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.search-content > a { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; min-height: 75px; border-top: 1px solid var(--line); }
.search-content > a > span { color: var(--lime); font-family: var(--display); font-size: .7rem; }
.search-content > a > div { display: flex; flex-direction: column; }
.search-content > a strong { font-family: var(--display); font-size: 1.3rem; line-height: 1; text-transform: uppercase; }
.search-content > a small { margin-top: 4px; color: var(--muted); font-size: .63rem; text-transform: uppercase; }
.goal-modal-wrap { position: fixed; z-index: 210; inset: 0; display: grid; place-items: center; padding: 20px; }
.goal-modal { position: relative; z-index: 220; width: min(760px,100%); max-height: calc(100vh - 40px); overflow-y: auto; background: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.goal-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; min-height: 80px; padding: 14px 20px; background: var(--ink); color: var(--paper); }
.goal-top > span { padding-left: 20px; border-left: 1px solid var(--line); color: var(--muted); font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.progress { height: 5px; background: var(--line-light); }
.progress span { display: block; height: 100%; background: var(--lime); transition: width .2s; }
.question, .goal-result { padding: 42px; }
.question > p, .goal-result > p { margin: 0; color: #526600; font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.question h2, .goal-result h2 { margin: 9px 0 25px; font-family: var(--display); font-size: 3.1rem; letter-spacing: -.04em; line-height: .9; text-transform: uppercase; }
.question > div { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.question button { display: flex; min-height: 105px; align-items: center; justify-content: space-between; padding: 18px; border: 1px solid var(--line-light); background: var(--white); cursor: pointer; text-align: left; }
.question button:hover { border-color: var(--ink); background: var(--lime); }
.question button strong { font-family: var(--display); font-size: 1.35rem; text-transform: uppercase; }
.goal-result { text-align: center; }
.goal-result > svg { box-sizing: content-box; padding: 18px; border-radius: 50%; background: var(--lime); }
.goal-result > div { display: grid; grid-template-columns: repeat(3,1fr); margin-bottom: 24px; border: 1px solid var(--line-light); }
.goal-result > div span { display: flex; flex-direction: column; padding: 12px; border-right: 1px solid var(--line-light); color: var(--muted-dark); font-size: .63rem; text-transform: uppercase; }
.goal-result > div span:last-child { border-right: 0; }
.goal-result b { color: var(--ink); }

footer { padding-top: 75px; background: var(--ink); color: var(--paper); }
.footer-top { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; padding-bottom: 65px; }
.footer-top > div:first-child > p { max-width: 420px; color: var(--muted); font-size: .84rem; }
.footer-top > div:first-child > button { display: flex; align-items: center; gap: 8px; padding: 8px 0; border: 0; border-bottom: 1px solid var(--lime); background: transparent; color: var(--lime); cursor: pointer; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.footer-links > div { display: flex; flex-direction: column; gap: 9px; }
.footer-links strong { margin-bottom: 10px; color: var(--lime); font-family: var(--display); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-links a { width: max-content; color: var(--muted); font-size: .74rem; }
.footer-links a:hover { color: var(--paper); }
.footer-bottom { display: flex; min-height: 70px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: .65rem; }
.footer-bottom > div { display: flex; gap: 7px; }
.footer-bottom > div a { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid var(--line); }
.footer-bottom button { display: flex; align-items: center; gap: 6px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: .65rem; text-transform: uppercase; }
.social-soon { color: var(--muted); font-size: .62rem; letter-spacing: .05em; text-transform: uppercase; }
.toast { position: fixed; z-index: 300; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; max-width: calc(100vw - 44px); padding: 14px 17px; border-left: 3px solid var(--lime); background: var(--ink); box-shadow: 0 20px 60px rgba(0,0,0,.3); color: var(--paper); font-size: .75rem; font-weight: 700; }

@media (max-width: 1180px) {
  :root { --shell: min(1080px,calc(100vw - 46px)); }
  header { grid-template-columns: auto 1fr auto; }
  .nav a { padding: 0 12px; font-size: .88rem; }
  .goal-btn { min-width: 175px; }
  .hero-copy { padding-inline: 36px; }
  .heading { grid-template-columns: 170px 1.3fr .7fr; gap: 30px; }
}

@media (max-width: 1020px) {
  .nav, .goal-btn { display: none; }
  .menu-btn { display: grid; }
  .header-actions { grid-column: 3; }
  .goal-grid { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .tools-preview .shell, .proof .shell { gap: 55px; }
  .page-hero > .shell, .article-hero .shell { grid-template-columns: 1fr 42%; gap: 42px; }
  .tool-body { grid-template-columns: 1fr 43%; }
  .tool-inputs, .tool-result { padding: 36px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 34px); }
  .section { padding: 80px 0; }
  .utility .shell { justify-content: center; }
  .utility span { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 560px; padding: 65px 24px; }
  .hero-copy h1 { font-size: clamp(4.4rem,16vw,7rem); }
  .hero-image { min-height: 500px; border-top: 1px solid var(--lime); border-left: 0; }
  .trust { grid-template-columns: 1fr 1fr; }
  .trust > div:nth-child(2) { border-right: 0; }
  .trust > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 42px; }
  .heading-index { max-width: 220px; }
  .heading h2 { font-size: clamp(3.2rem,11vw,5rem); }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { min-height: 290px; }
  .category-rail .shell { grid-template-columns: 1fr 1fr; }
  .tools-preview .shell, .proof .shell, .newsletter .shell, .about .shell, .contact .shell { grid-template-columns: 1fr; gap: 48px; }
  .recipe { grid-template-columns: 1fr; }
  .recipe > img { min-height: 430px; }
  .recipe > div { padding: 60px 30px; }
  .page-hero > .shell, .article-hero .shell { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 60px; }
  .page-hero > .shell > img, .article-hero img { height: 380px; }
  .steps { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 30px; padding-top: 65px; }
  .article-layout > aside { display: none; }
  .tool-tabs { grid-template-columns: repeat(3,1fr); }
  .tool-tabs button:nth-child(-n+3) { border-bottom: 1px solid var(--line-light); }
  .tool-body { grid-template-columns: 1fr; }
  .tool-result { min-height: 490px; }
  .legal .shell { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 26px); }
  header { height: 72px; }
  .logo { padding: 0 13px; border-right: 0; }
  .brand { font-size: 1.58rem; }
  .icon-btn { width: 56px; }
  .hero-copy { min-height: 530px; padding: 55px 20px; }
  .hero-copy h1 { font-size: clamp(4rem,20vw,5.8rem); }
  .hero-copy > p:not(.eyebrow) { font-size: .91rem; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero-image { min-height: 420px; }
  .hero-image > div { right: 13px; bottom: 14px; left: 13px; min-width: 0; }
  .trust > div { min-height: 78px; flex-direction: column; gap: 5px; font-size: .75rem; text-align: center; }
  .goal-grid, .article-grid, .category-rail .shell { grid-template-columns: 1fr; }
  .goal-grid > a { min-height: 230px; }
  .article-card { grid-template-rows: 240px 1fr; }
  .article-body { min-height: 285px; padding: 21px; }
  .readiness-card { padding: 20px; box-shadow: 11px 11px 0 rgba(11,13,12,.08); }
  .readiness-score { grid-template-columns: 86px 1fr; gap: 16px; }
  .readiness-score > b { width: 84px; height: 84px; border-width: 6px; font-size: 2rem; }
  .recipe > img { min-height: 330px; }
  .recipe > div { padding: 55px 21px; }
  .recipe h2 { font-size: clamp(3.7rem,18vw,5rem); }
  .recipe-facts { grid-template-columns: 1fr; }
  .recipe-facts span { border-right: 0; border-bottom: 1px solid var(--line); }
  .newsletter form { grid-template-columns: auto 1fr; padding: 8px 10px; }
  .newsletter form button { grid-column: 1/-1; min-height: 46px; justify-content: center; }
  .page-hero h1, .article-hero h1 { font-size: clamp(3.8rem,18vw,5.4rem); }
  .page-hero > .shell > img, .article-hero img { height: 310px; }
  .article-content h2 { font-size: 2.2rem; }
  .article-content p, .article-content li { font-size: .94rem; }
  .tool-tabs { grid-template-columns: 1fr 1fr; }
  .tool-tabs button { border-bottom: 1px solid var(--line-light); }
  .tool-inputs, .tool-result { padding: 26px 21px; }
  .result > strong { font-size: 5rem; }
  .macros { grid-template-columns: 1fr; }
  .macros span { border-right: 0; border-bottom: 1px solid var(--line); }
  .contact form, .contact-success { padding: 21px; }
  .contact form > div { grid-template-columns: 1fr; }
  .question, .goal-result { padding: 28px 19px; }
  .question h2, .goal-result h2 { font-size: 2.6rem; }
  .question > div { grid-template-columns: 1fr; }
  .question button { min-height: 82px; }
  .goal-modal-wrap { padding: 0; }
  .goal-modal { width: 100%; min-height: 100vh; max-height: 100vh; }
  .goal-top > span { display: none; }
  .goal-result > div { grid-template-columns: 1fr; }
  .goal-result > div span { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .footer-bottom { flex-direction: column; justify-content: center; gap: 18px; padding: 22px 0; text-align: center; }
  .search-top { height: 74px; padding: 0 14px; }
  .search-content { margin-top: 5vh; }
  .search-content > a { grid-template-columns: 30px 1fr auto; }
}

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

[hidden] { display: none !important; }
.modal-open { overflow: hidden; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.trust b { color: var(--lime); font-size: 1.5rem; }
.goal-grid > a > b, .category-rail a > b { position: absolute; top: 23px; right: 23px; }
.search-content [data-search-results] > a { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; min-height: 75px; border-top: 1px solid var(--line); }
.search-content [data-search-results] > a > span { color: var(--lime); font-family: var(--display); font-size: .7rem; }
.search-content [data-search-results] > a > div { display: flex; flex-direction: column; }
.search-content [data-search-results] strong { font-family: var(--display); font-size: 1.3rem; line-height: 1; text-transform: uppercase; }
.search-content [data-search-results] small { margin-top: 4px; color: var(--muted); font-size: .63rem; text-transform: uppercase; }
.search-content [data-search-results] > p { padding: 25px 0; border-top: 1px solid var(--line); color: var(--muted); }
.goal-check { display: inline-grid; width: 64px; height: 64px; place-items: center; border-radius: 50%; background: var(--lime); font-size: 2rem; }
.tool-inputs { display: flex; flex-direction: column; align-items: stretch; }
.tool-inputs .button { align-self: flex-start; margin-top: 24px; }
.tool-inputs .segments button { color: var(--ink); }
.tool-inputs .segments button.active { color: var(--paper); }
.article-card[hidden] { display: none; }
.article-hero { position: static; display: block; height: auto; border: 0; }
.article-hero .shell { height: auto; }
.article-hero + * { clear: both; }
.contact label:not(.check) { display: grid; gap: 6px; font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.ajax-form button:disabled { cursor: wait; opacity: .65; }
.mobile-menu nav a b { font-weight: 400; }

@media (max-width: 560px) {
  .search-content [data-search-results] > a { grid-template-columns: 30px 1fr auto; }
}
