:root {
  --ink: #111319;
  --ink-soft: #1b1e25;
  --paper: #ffee9b;
  --white: #fffaf0;
  --soft: #f1efe7;
  --muted: #62645f;
  --acid: #adc642;
  --violet: #3546ff;
  --coral: #e95500;
  --line: rgba(17, 19, 25, .16);
  --sans: "Helvetica Neue", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --serif: Didot, "Bodoni 72", "Bodoni MT", Iowan Old Style, Baskerville, "Times New Roman", serif;
  --shell: min(1240px, calc(100vw - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 118px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--sans); line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--violet); outline-offset: 4px; }

.site-header { position: sticky; top: 0; z-index: 20; display: flex; width: 100%; min-height: 88px; padding: 15px max(24px, calc((100vw - 1240px) / 2)); align-items: center; justify-content: space-between; background: rgba(255, 250, 240, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(15px); }
.brand { display: block; width: 112px; height: 54px; }
.brand img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.preview-label, .back-link { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; }
.back-link span { color: var(--coral); }
.blog-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 750; }
.blog-nav a { text-decoration: none; }
.blog-nav > a:not(.blog-nav-cta) { position: relative; color: var(--muted); }
.blog-nav > a:not(.blog-nav-cta)::after { position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; background: var(--ink); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.blog-nav > a:not(.blog-nav-cta):hover { color: var(--ink); }
.blog-nav > a:not(.blog-nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.blog-nav > a[aria-current="page"]:not(.blog-nav-cta) { color: var(--ink); }
.blog-nav > a[aria-current="page"]:not(.blog-nav-cta)::after { transform: scaleX(1); }
.blog-nav-cta { display: inline-flex; min-height: 42px; padding: 0 17px; align-items: center; gap: 14px; color: var(--ink); background: var(--acid); border-radius: 999px; }
.blog-menu-toggle { display: none; color: var(--ink); background: transparent; border: 0; }

.hub-hero { width: var(--shell); margin: 0 auto; padding: clamp(78px, 10vw, 150px) 0 76px; }
.eyebrow { display: flex; margin: 0 0 28px; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 11px; height: 11px; background: var(--acid); border-radius: 50%; }
.hub-hero h1 { max-width: 1000px; margin: 0; font-size: clamp(58px, 8vw, 126px); font-weight: 500; line-height: .84; letter-spacing: -.075em; }
.hub-hero h1 em { color: var(--coral); font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
.hub-intro { max-width: 690px; margin: 48px 0 36px auto; color: var(--muted); font-size: clamp(20px, 2vw, 29px); line-height: 1.35; letter-spacing: -.025em; }
.intent-key { display: flex; margin-left: auto; max-width: 690px; padding-top: 25px; flex-wrap: wrap; gap: 12px 22px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 750; }
.intent-key span { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-orange { background: var(--coral); }.dot-blue { background: var(--violet); }.dot-green { background: var(--acid); }
.dot-ai { background: var(--ink); box-shadow: 0 0 0 3px var(--acid); }

.article-grid { width: var(--shell); margin: 0 auto 120px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.article-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 34px; transition: transform .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(17, 19, 25, .12); }
.article-card > a { display: block; height: 100%; text-decoration: none; }
.card-featured { grid-column: 1 / -1; }
.card-featured > a { display: grid; grid-template-columns: 1.12fr .88fr; }
.card-image { position: relative; min-height: 335px; overflow: hidden; background: var(--ink); }
.card-featured .card-image { min-height: 520px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.article-card:hover .card-image img { transform: scale(1.025); }
.card-number { position: absolute; top: 22px; left: 22px; display: grid; width: 52px; height: 52px; place-items: center; background: var(--white); border-radius: 50%; font-size: 13px; font-weight: 800; }
.card-body { display: flex; padding: 34px; flex-direction: column; align-items: flex-start; }
.card-featured .card-body { padding: 54px; justify-content: center; background: var(--paper); }
.card-meta { display: flex; flex-wrap: wrap; gap: 7px; }
.card-meta span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.card-body h2 { margin: 25px 0 18px; font-size: clamp(32px, 4vw, 61px); font-weight: 520; line-height: .98; letter-spacing: -.055em; }
.article-card:not(.card-featured) .card-body h2 { font-size: clamp(30px, 3vw, 45px); }
.card-wide { grid-column: 1 / -1; }
.card-wide > a { display: grid; grid-template-columns: .92fr 1.08fr; }
.card-wide .card-image { min-height: 430px; }
.card-wide .card-body { padding: 52px; justify-content: center; }
.card-blue .card-body { color: #fff; background: var(--violet); }
.card-blue .card-body p, .card-dark .card-body p { color: rgba(255,255,255,.72); }
.card-blue .card-meta span, .card-dark .card-meta span { border-color: rgba(255,255,255,.3); }
.card-blue .card-link b { color: var(--ink); background: var(--acid); }
.card-dark .card-body { color: #fff; background: var(--ink); }
.card-dark .card-link b { color: var(--ink); background: var(--paper); }
.card-paper .card-body { background: var(--paper); }
.card-body p { margin: 0 0 32px; color: var(--muted); font-size: 18px; line-height: 1.5; }
.card-link { margin-top: auto; font-size: 13px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.card-link b { display: inline-grid; width: 34px; height: 34px; margin-left: 8px; place-items: center; color: #fff; background: var(--ink); border-radius: 50%; }

.preview-footer { display: flex; min-height: 120px; padding: 34px max(24px, calc((100vw - 1240px) / 2)); align-items: center; justify-content: space-between; color: #fff; background: var(--ink); font-size: 13px; font-weight: 750; }
.blog-footer { color: #fff; background: var(--ink); }
.blog-footer-main { width: var(--shell); margin: 0 auto; padding: 58px 0 45px; display: grid; grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(140px, .65fr)) minmax(220px, 1fr); gap: 42px; }
.blog-footer-brand img { width: 116px; height: auto; }
.blog-footer-brand p { max-width: 300px; margin: 18px 0 0; color: rgba(255,255,255,.62); font-size: 14px; }
.blog-footer-column { display: flex; flex-direction: column; gap: 10px; }
.blog-footer-column > p { margin: 0 0 6px; color: rgba(255,255,255,.42); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.blog-footer-column a { color: rgba(255,255,255,.82); font-size: 14px; text-decoration: none; }
.blog-footer-column a:hover { color: var(--acid); }
.blog-footer-cta { align-self: start; padding: 19px 21px; color: var(--ink); background: var(--acid); border-radius: 18px; text-decoration: none; }
.blog-footer-cta strong { display: block; font-size: 18px; }
.blog-footer-cta span { display: block; margin-top: 5px; font-size: 12px; }
.blog-footer-bottom { width: var(--shell); margin: 0 auto; padding: 22px 0 30px; display: flex; justify-content: space-between; color: rgba(255,255,255,.46); border-top: 1px solid rgba(255,255,255,.13); font-size: 12px; }
.blog-footer-bottom a { color: inherit; text-decoration: none; }

.loading { display: grid; min-height: 60vh; place-items: center; color: var(--muted); }
.article-shell { width: var(--shell); margin: 0 auto; padding: 70px 0 130px; display: grid; grid-template-columns: 230px minmax(0, 820px); justify-content: space-between; gap: 80px; }
.article-rail { position: sticky; top: 120px; height: max-content; }
.rail-label { margin: 0 0 16px; font-size: 11px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.toc { display: grid; gap: 0; border-top: 1px solid var(--line); }
.toc a { padding: 10px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 13px; line-height: 1.3; text-decoration: none; transition: color .2s ease; }
.toc a:hover, .toc a.is-active { color: var(--ink); }
.progress-panel { margin-top: 30px; padding: 20px; background: var(--ink); color: #fff; border-radius: 20px; }
.progress-panel > span { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.progress-panel strong { display: block; margin: 12px 0; font-size: 32px; line-height: 1; }
.progress-track { height: 7px; overflow: hidden; background: rgba(255,255,255,.16); border-radius: 99px; }
.progress-track i { display: block; width: 0; height: 100%; background: var(--acid); border-radius: inherit; transition: width .2s ease; }
.progress-panel button { margin-top: 14px; padding: 0; color: rgba(255,255,255,.64); background: none; border: 0; cursor: pointer; font-size: 11px; text-decoration: underline; }

.article-content { min-width: 0; }
.article-hero { margin: 0 0 50px; }
.article-hero img { display: block; width: 100%; max-height: 590px; object-fit: cover; background: var(--ink); border-radius: 36px; }
.article-meta { display: flex; margin: 0 0 24px; flex-wrap: wrap; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-meta span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; }
.article-content > img:first-child { width: 100%; max-height: 590px; margin: 0 0 54px; object-fit: cover; background: var(--ink); border-radius: 36px; }
.article-content > img:not(:first-child) { display: block; width: 100%; height: auto; margin: 36px 0 50px; border: 1px solid var(--line); border-radius: 28px; }
.article-content h1 { max-width: 900px; margin: 0 0 34px; font-size: clamp(52px, 7vw, 88px); font-weight: 510; line-height: .91; letter-spacing: -.065em; text-wrap: balance; }
.article-content h1 + p, .article-body > p:first-child { padding: 30px 0 36px; color: var(--muted); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 23px; line-height: 1.45; letter-spacing: -.02em; }
.article-content h2 { margin: 96px 0 30px; padding-top: 24px; border-top: 1px solid var(--ink); font-size: clamp(38px, 5vw, 61px); font-weight: 520; line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.article-content h3 { margin: 64px 0 20px; font-size: clamp(27px, 3.5vw, 39px); font-weight: 650; line-height: 1.08; letter-spacing: -.045em; }
.article-content p { margin: 0 0 24px; color: #33352f; font-size: 18px; line-height: 1.7; }
.article-content a { color: var(--violet); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-content strong { color: var(--ink); font-weight: 750; }
.article-content ol, .article-content ul { margin: 0 0 30px; padding-left: 26px; }
.article-content li { margin: 0 0 12px; padding-left: 5px; font-size: 17px; line-height: 1.62; }
.article-content blockquote { margin: 36px 0; padding: 30px; color: var(--ink); background: var(--paper); border-radius: 24px; }
.article-content blockquote p { margin: 0; color: inherit; font-size: 22px; }
.email-template { margin: 38px 0 52px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: 0 24px 60px rgba(17, 19, 25, .09); }
.email-template-toolbar { min-height: 48px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.68); background: var(--ink); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.email-window-dots { display: flex; gap: 6px; }
.email-window-dots i { width: 9px; height: 9px; display: block; background: var(--acid); border-radius: 50%; }
.email-window-dots i:nth-child(2) { background: var(--paper); }
.email-window-dots i:nth-child(3) { background: var(--coral); }
.email-template-fields { padding: 10px 26px; background: var(--soft); border-bottom: 1px solid var(--line); }
.email-template-field { min-width: 0; padding: 12px 0; display: grid; grid-template-columns: 74px minmax(0, 1fr); align-items: baseline; gap: 12px; border-bottom: 1px solid rgba(17,19,25,.1); }
.email-template-field:last-child { border-bottom: 0; }
.email-template-field span { color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.email-template-field strong { min-width: 0; color: var(--ink); font-size: 16px; font-weight: 720; line-height: 1.45; overflow-wrap: break-word; }
.email-template-preview strong { color: var(--muted); font-weight: 620; }
.email-template-body { padding: clamp(26px, 5vw, 48px); }
.article-content .email-template-body p { max-width: 690px; margin: 0 0 20px; color: #33352f; font-size: 17px; line-height: 1.64; }
.article-content .email-template-body ul, .article-content .email-template-body ol { max-width: 690px; margin: -4px 0 22px; padding-left: 24px; }
.article-content .email-template-body li { margin-bottom: 7px; font-size: 16px; line-height: 1.55; }
.article-content .email-template-body .email-action { width: fit-content; max-width: 100%; margin: 8px 0 24px; padding: 13px 18px; color: var(--ink); background: var(--acid); border-radius: 999px; font-weight: 780; line-height: 1.35; }
.article-content .email-template-body .email-signature { margin-top: 30px; margin-bottom: 0; color: var(--ink); font-weight: 760; }
.article-content hr { margin: 70px 0; border: 0; border-top: 1px solid var(--line); }

.article-section-heading { min-width: 0; margin: 100px 0 34px; padding-top: 24px; display: grid; grid-template-columns: 116px minmax(0, 1fr); align-items: start; gap: 22px; border-top: 1px solid var(--ink); }
.article-section-heading > p:empty { display: none; }
.article-section-heading > .article-section-number { grid-column: 1; grid-row: 1; }
.article-section-heading > h2 { min-width: 0; margin: 0; padding: 0; grid-column: 2; grid-row: 1; border: 0; overflow-wrap: anywhere; font-size: clamp(38px, 5vw, 61px); font-weight: 520; line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.article-section-heading > .interactive-tool, .article-section-heading > .lead-magnet-card, .article-section-heading > .phase-nav { width: 100%; min-width: 0; grid-column: 1 / -1; }
.article-section-number { padding-top: 8px; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.article-section-heading--feature { width: calc(100% + 70px); min-height: 310px; margin: 112px 0 46px -70px; padding: 42px; grid-template-columns: minmax(0, 1fr); grid-template-rows: auto minmax(0, 1fr); align-content: stretch; row-gap: 32px; border: 0; border-radius: 34px; overflow: hidden; }
.article-section-heading--feature h2 { max-width: 760px; grid-column: 1; grid-row: 2; align-self: end; font-size: clamp(48px, 6vw, 74px); overflow-wrap: normal; word-break: normal; }
.article-section-heading--feature .article-section-number { padding: 0; grid-column: 1; grid-row: 1; color: inherit; opacity: .66; }
.article-section-heading--paper.article-section-heading--feature { background: var(--paper); }
.article-section-heading--acid.article-section-heading--feature { background: var(--acid); }
.article-section-heading--blue.article-section-heading--feature { color: #fff; background: var(--violet); }
.article-section-heading--orange.article-section-heading--feature { color: #fff; background: var(--coral); }
.article-section-heading--paper:not(.article-section-heading--feature) .article-section-number { color: var(--coral); }
.article-section-heading--acid:not(.article-section-heading--feature) .article-section-number { color: #718411; }
.article-section-heading--blue:not(.article-section-heading--feature) .article-section-number { color: var(--violet); }
.article-section-heading--orange:not(.article-section-heading--feature) .article-section-number { color: var(--coral); }

.article-inline-image { width: calc(100% + 70px); margin: 74px 0 82px -70px; }
.article-inline-image img { display: block; width: 100%; height: auto; background: var(--soft); border: 1px solid var(--line); border-radius: 30px; }
.article-inline-image--editorial { width: calc(100% + 90px); margin: 92px 0 96px -90px; padding: 18px; background: var(--ink); border-radius: 38px; box-shadow: 0 28px 80px rgba(17, 19, 25, .16); }
.article-inline-image--editorial img { aspect-ratio: 16 / 9; object-fit: cover; border: 0; border-radius: 24px; }

.table-wrap { margin: 28px 0 42px; overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; }
.article-content table { width: 100%; border-collapse: collapse; min-width: 720px; }
.article-content th { padding: 16px; color: #fff; background: var(--ink); font-size: 11px; letter-spacing: .08em; text-align: left; text-transform: uppercase; }
.article-content td { padding: 16px; vertical-align: top; border-top: 1px solid var(--line); font-size: 14px; line-height: 1.45; }
.article-content tr:nth-child(even) td { background: rgba(241,239,231,.55); }
.article-content tr.is-complete td { color: #6e706b; background: rgba(173,198,66,.15); }
.row-check { display: inline-grid; width: 28px; height: 28px; place-items: center; background: #fff; border: 1px solid var(--ink); border-radius: 50%; cursor: pointer; }
.row-check[aria-pressed="true"] { background: var(--acid); }
.row-check[aria-pressed="true"]::after { content: "✓"; font-size: 15px; font-weight: 850; }

.task-list { display: grid; margin: 28px 0 38px !important; padding: 0 !important; gap: 10px; list-style: none; }
.task-item { margin: 0 !important; padding: 0 !important; }
.task-button { display: grid; width: 100%; padding: 16px 18px; grid-template-columns: 30px 1fr; align-items: start; gap: 12px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; text-align: left; }
.task-button::before { content: ""; display: block; width: 24px; height: 24px; margin-top: 1px; border: 1.5px solid var(--ink); border-radius: 50%; }
.task-button[aria-pressed="true"] { color: #5f625b; background: rgba(173,198,66,.13); }
.task-button[aria-pressed="true"]::before { content: "✓"; display: grid; place-items: center; color: var(--ink); background: var(--acid); font-size: 13px; font-weight: 850; }
.task-button[aria-pressed="true"] span { text-decoration: line-through; text-decoration-thickness: 1px; }

.lead-magnet-card { margin: 36px 0 60px; overflow: hidden; color: #fff; background: var(--ink); border-radius: 30px; }
.lead-magnet-copy { padding: clamp(28px, 5vw, 48px); background: radial-gradient(circle at 90% 0%, rgba(53,70,255,.26), transparent 34%), var(--ink); }
.lead-magnet-tag { display: flex; margin: 0 0 18px !important; align-items: center; gap: 9px; color: var(--acid) !important; font-size: 11px !important; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.lead-magnet-tag::before { width: 10px; height: 10px; background: var(--acid); border-radius: 50%; content: ""; }
.lead-magnet-card h3 { margin: 0 0 14px; color: #fff; font-size: clamp(32px, 4.5vw, 52px); }
.lead-magnet-copy > p:last-child { max-width: 610px; margin: 0; color: rgba(255,255,255,.66); font-size: 16px; }
.kit-form-slot { min-height: 126px; padding: 0 clamp(28px, 5vw, 48px) clamp(28px, 5vw, 48px); }
.kit-form-slot .formkit-form { max-width: none !important; margin: 0 !important; padding: 0 !important; background: transparent !important; border: 0 !important; box-shadow: none !important; }
.kit-form-slot .formkit-fields { display: grid !important; grid-template-columns: minmax(0, 1fr) auto !important; gap: 10px !important; }
.kit-form-slot .formkit-field { margin: 0 !important; }
.kit-form-slot .formkit-input { width: 100% !important; min-height: 54px !important; padding: 0 18px !important; color: #fff !important; background: rgba(255,255,255,.08) !important; border: 1px solid rgba(255,255,255,.28) !important; border-radius: 999px !important; }
.kit-form-slot [data-element="submit"] { min-height: 54px !important; padding: 0 24px !important; color: var(--ink) !important; background: var(--acid) !important; border: 0 !important; border-radius: 999px !important; font-weight: 800 !important; }
.kit-form-slot .formkit-alert-success { color: var(--ink) !important; background: var(--acid) !important; border-radius: 14px !important; }
.kit-form-slot .formkit-powered-by-convertkit-container { opacity: .45; }

.article-author { margin-top: 82px; padding: 28px; display: grid; grid-template-columns: 112px 1fr; gap: 26px; align-items: center; background: var(--soft); border: 1px solid var(--line); border-radius: 26px; }
.article-author img { width: 112px; height: 112px; object-fit: cover; border-radius: 50%; }
.article-author-label { margin: 0 0 5px !important; color: var(--coral) !important; font-size: 10px !important; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.article-author h2 { margin: 0 0 8px; padding: 0; border: 0; font-size: 30px; }
.article-author p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.article-author a { font-weight: 750; }

.interactive-tool { width: 100%; max-width: 100%; min-width: 0; margin: 54px 0 70px; padding: clamp(28px, 5vw, 52px); clear: both; color: #fff; background: var(--ink); border-radius: 32px; }
.tool-tag { display: flex; margin: 0 0 20px; align-items: center; gap: 9px; color: var(--acid); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.tool-tag::before { content: ""; width: 10px; height: 10px; background: var(--acid); border-radius: 50%; }
.interactive-tool h3 { margin: 0 0 12px; color: #fff; font-size: clamp(30px, 4vw, 48px); }
.interactive-tool > p { color: rgba(255,255,255,.65); }
.tool-grid { display: grid; margin-top: 30px; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: grid; padding: 16px; gap: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); border-radius: 14px; }
.field label { color: rgba(255,255,255,.7); font-size: 12px; font-weight: 750; }
.field input { width: 100%; padding: 0; color: #fff; background: transparent; border: 0; font-size: 28px; font-weight: 700; }
.field select { width: 100%; padding: 2px 28px 2px 0; color: #fff; background: transparent; border: 0; font-size: 20px; font-weight: 700; }
.field select option { color: var(--ink); background: #fff; }
.tool-result { display: grid; margin-top: 16px; padding: 22px; grid-template-columns: 1fr auto; align-items: end; gap: 20px; color: var(--ink); background: var(--acid); border-radius: 18px; }
.tool-result span { font-size: 13px; font-weight: 750; }
.tool-result strong { color: var(--ink); font-size: clamp(32px, 5vw, 54px); line-height: 1; letter-spacing: -.04em; }
.tool-note { margin: 13px 0 0 !important; color: rgba(255,255,255,.48) !important; font-size: 12px !important; }
.choice-grid { display: grid; margin: 28px 0 18px; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.choice-button, .diagnostic-button, .quote-check { color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); cursor: pointer; }
.choice-button { padding: 16px; border-radius: 999px; font-size: 13px; font-weight: 800; }
.choice-button[aria-pressed="true"] { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.tool-action { padding: 15px 21px; color: var(--ink); background: var(--paper); border: 0; border-radius: 999px; cursor: pointer; font-size: 13px; font-weight: 850; }
.tool-status { display: inline-block; margin: 0 0 0 15px !important; color: rgba(255,255,255,.62) !important; font-size: 12px !important; }
.diagnostic-list { display: grid; margin-top: 28px; gap: 10px; }
.diagnostic-button, .quote-check { display: grid; padding: 16px; grid-template-columns: 25px 1fr; align-items: center; gap: 12px; border-radius: 14px; text-align: left; }
.diagnostic-button span, .quote-check span { width: 23px; height: 23px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; }
.diagnostic-button[aria-pressed="true"], .quote-check[aria-pressed="true"] { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.diagnostic-button[aria-pressed="true"] span, .quote-check[aria-pressed="true"] span { display: grid; place-items: center; border-color: var(--ink); }
.diagnostic-button[aria-pressed="true"] span::after, .quote-check[aria-pressed="true"] span::after { content: "✓"; font-size: 13px; font-weight: 900; }
.diagnostic-result, .quote-result { display: grid; margin-top: 18px; padding: 20px; gap: 5px; color: var(--ink); background: var(--paper); border-radius: 18px; }
.diagnostic-result span, .quote-result span, .scope-summary span { font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.diagnostic-result strong { font-size: 20px; line-height: 1.3; }
.scope-summary { margin-top: 18px; padding: 23px; color: var(--ink); background: var(--acid); border-radius: 18px; }
.scope-summary strong { display: block; margin-top: 8px; font-size: 21px; line-height: 1.3; }
.scope-summary p { margin: 10px 0 0; color: rgba(17,19,25,.72); font-size: 13px; }
.quote-grid { display: grid; margin-top: 28px; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.quote-result { grid-template-columns: auto 1fr; align-items: baseline; }
.quote-result strong { font-size: 40px; letter-spacing: -.04em; }
.quote-result.is-complete { background: var(--acid); }

.phase-nav { position: sticky; top: 87px; z-index: 10; display: flex; margin: 32px 0 50px; padding: 8px; gap: 6px; overflow-x: auto; background: rgba(255,250,240,.94); border: 1px solid var(--line); border-radius: 999px; backdrop-filter: blur(12px); }
.phase-nav a { flex: 0 0 auto; padding: 9px 13px; color: var(--ink); background: transparent; border-radius: 999px; font-size: 11px; font-weight: 800; text-decoration: none; }
.phase-nav a:hover { background: var(--paper); }

.article-footer a { color: var(--acid); text-decoration: none; }

@media (max-width: 980px) {
  .card-featured > a { grid-template-columns: 1fr; }
  .card-wide > a { grid-template-columns: 1fr; }
  .card-featured .card-image { min-height: 420px; }
  .card-wide .card-image { min-height: 360px; }
  .article-shell { grid-template-columns: 1fr; gap: 0; }
  .article-rail { display: none; }
  .article-section-heading--feature, .article-inline-image, .article-inline-image--editorial { width: 100%; margin-right: 0; margin-left: 0; }
  .blog-footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .blog-footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 28px); }
  .site-header { min-height: 74px; padding: 10px 16px; }
  .brand { width: 88px; height: 48px; }
  .preview-label { font-size: 9px; }
  .blog-menu-toggle { position: relative; z-index: 2; display: inline-flex; min-height: 42px; padding: 0; align-items: center; gap: 10px; font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
  .blog-menu-toggle i, .blog-menu-toggle i::after { display: block; width: 27px; height: 1px; background: currentColor; content: ""; transition: transform .2s ease; }
  .blog-menu-toggle i::after { transform: translateY(7px); }
  .blog-menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .blog-menu-toggle[aria-expanded="true"] i::after { transform: rotate(-90deg); }
  .blog-nav { position: fixed; inset: 0; display: none; padding: 112px 22px 28px; flex-direction: column; align-items: stretch; gap: 0; color: #fff; background: var(--ink); }
  .blog-nav.is-open { display: flex; }
  .blog-nav > a:not(.blog-nav-cta) { padding: 19px 0; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.14); font-size: 30px; font-weight: 500; letter-spacing: -.04em; }
  .blog-nav-cta { margin-top: 24px; justify-content: center; }
  .site-header:has(.blog-nav.is-open) { color: #fff; background: var(--ink); }
  .site-header:has(.blog-nav.is-open) .brand { filter: invert(1); }
  .site-header:has(.blog-nav.is-open) .blog-menu-toggle { color: #fff; }
  .hub-hero { padding: 56px 0 50px; }
  .hub-hero h1 { font-size: clamp(50px, 16vw, 76px); }
  .hub-intro { margin: 34px 0 28px; font-size: 20px; }
  .intent-key { margin: 0; }
  .article-grid { grid-template-columns: 1fr; gap: 18px; margin-bottom: 70px; }
  .card-featured { grid-column: auto; }
  .card-wide { grid-column: auto; }
  .card-featured > a { display: block; }
  .card-featured .card-image, .card-wide .card-image, .card-image { min-height: 250px; }
  .card-featured .card-body, .card-wide .card-body, .card-body { padding: 25px; }
  .card-body h2, .article-card:not(.card-featured) .card-body h2 { font-size: 37px; }
  .card-body p { font-size: 16px; }
  .article-shell { padding-top: 24px; }
  .article-content > img:first-child { margin-bottom: 34px; border-radius: 22px; }
  .article-hero { margin-bottom: 34px; }
  .article-hero img { border-radius: 22px; }
  .article-content h1 { font-size: clamp(44px, 13vw, 64px); }
  .article-content h1 + p { font-size: 20px; }
  .article-content h2 { margin-top: 70px; font-size: 40px; }
  .article-content h3 { margin-top: 48px; font-size: 29px; }
  .article-content p { font-size: 17px; }
  .email-template { margin: 30px 0 42px; border-radius: 20px; }
  .email-template-toolbar { padding: 0 16px; }
  .email-template-fields { padding: 8px 18px; }
  .email-template-field { grid-template-columns: 1fr; gap: 4px; }
  .email-template-body { padding: 24px 20px; }
  .article-content .email-template-body p { font-size: 16px; line-height: 1.58; }
  .article-section-heading { margin-top: 72px; padding-top: 18px; grid-template-columns: 1fr; gap: 9px; }
  .article-section-heading > .article-section-number, .article-section-heading > h2 { grid-column: 1; }
  .article-section-heading h2 { font-size: clamp(34px, 10.5vw, 40px); overflow-wrap: normal; word-break: normal; }
  .article-section-heading--feature { min-height: 250px; margin-top: 78px; padding: 26px; row-gap: 24px; border-radius: 26px; }
  .article-section-heading--feature h2 { font-size: clamp(38px, 12vw, 46px); }
  .article-inline-image { margin-top: 54px; margin-bottom: 62px; }
  .article-inline-image img { border-radius: 22px; }
  .article-inline-image--editorial { margin-top: 66px; margin-bottom: 70px; padding: 10px; border-radius: 27px; }
  .article-inline-image--editorial img { border-radius: 18px; }
  .tool-grid { grid-template-columns: 1fr; }
  .choice-grid, .quote-grid { grid-template-columns: 1fr; }
  .tool-status { display: block; margin: 13px 0 0 !important; }
  .tool-result { grid-template-columns: 1fr; }
  .kit-form-slot .formkit-fields { grid-template-columns: 1fr !important; }
  .article-author { grid-template-columns: 82px 1fr; padding: 20px; gap: 18px; }
  .article-author img { width: 82px; height: 82px; }
  .article-author h2 { font-size: 25px; }
  .phase-nav { top: 74px; margin-inline: -7px; border-radius: 18px; }
  .preview-footer { padding: 28px 18px; align-items: flex-start; flex-direction: column; gap: 8px; }
  .blog-footer-main { padding: 44px 0 30px; grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .blog-footer-brand { grid-column: 1 / -1; }
  .blog-footer-cta { grid-column: 1 / -1; }
  .blog-footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
