/**
 * vwa-references — /get-references/ landing page. Scoped under .vwa-gr.
 * Tokens mirror the theme + builder: Poppins (theme self-hosts 400/500 only —
 * never ask for 600/700 or the browser fakes the bold and text goes fuzzy), brand green #26ae61, ink
 * #32373c, muted #6b7280, line #e5e7eb. Mobile-first; every visual is
 * HTML/CSS + inline SVG (no bitmaps → no layout shift, no external requests).
 */

html:has(.vwa-gr) { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html:has(.vwa-gr) { scroll-behavior: auto; } }

.vwa-gr {
	--g: #26ae61;        /* brand fill — non-text only */
	--g-ui: #1b8249;     /* buttons: white text 4.84:1 */
	--g-ui-hover: #166e3c;
	--g-text: #187641;   /* green text on white/soft ≥ 5.3:1 */
	--g-dark: #187641;
	--g-soft: #e8f6ee;
	--a: #F5A524;        /* accent — money CTA only. Ink text on it: 10.4:1. Never white text. */
	--a-hover: #DC8C0A;
	--a-ink: #1c2024;
	--ink: #32373c;
	--muted: #6b7280;
	--line: #e5e7eb;
	--soft: #f6f8f7;
	--card: #fff;
	--radius: 12px;
	--shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(20,40,30,.06);
	--bleed: calc(50% - 50vw);
	color: var(--ink);
	font-size: 17px;
	line-height: 1.55;
	margin-top: 12px;
	padding-bottom: 8px;
}
.vwa-gr *, .vwa-gr *::before, .vwa-gr *::after { box-sizing: border-box; }
.vwa-gr h1, .vwa-gr h2, .vwa-gr h3 { color: var(--ink); font-weight: 500; letter-spacing: -.01em; margin: 0; }
.vwa-gr h1 { font-size: clamp(32px, 5.4vw, 52px); line-height: 1.12; }
.vwa-gr h2 { font-size: clamp(26px, 3.6vw, 38px); line-height: 1.2; margin-bottom: 14px; }
.vwa-gr h3 { font-size: 21px; line-height: 1.3; }
.vwa-gr p { margin: 0 0 12px; line-height: 1.6; }
.vwa-gr p:last-child { margin-bottom: 0; }
/* Second selector matches the nesting so the reset still out-ranks the theme's
   .type-page ol ul { margin-left: 15px } (0,1,2), which a plain .vwa-gr ul loses to. */
.vwa-gr :is(ul, ol), .vwa-gr :is(ul, ol) :is(ul, ol) { list-style: none; margin: 0; padding: 0; }
.vwa-gr figure { margin: 0; }
.vwa-gr li { list-style: none; margin: 0; padding-left: 0; background: none; }
.vwa-gr li::before, .vwa-gr li::after { content: none; display: none; }
/* Grid children must be allowed to shrink below their content width (mobile) */
.vwa-gr :is(.vwa-gr-hero, .vwa-gr-step, .vwa-gr-split, .vwa-gr-twocol, .vwa-gr-invite, .vwa-gr-kv > div, .vwa-gr-example-row, .vwa-gr-pick-row, .vwa-gr-reflist li, .vwa-gr-locked li) > * { min-width: 0; }
.vwa-gr :is(.vwa-gr-pick, .vwa-gr-refcard, .vwa-gr-invite, .vwa-gr-privcard, .vwa-gr-email, .vwa-gr-jcard) { max-width: 100%; }
.vwa-gr .vwa-gr-step-visual, .vwa-gr .vwa-gr-hero-visual { min-width: 0; max-width: 100%; }
.vwa-gr a { transition: color .15s, background-color .15s, box-shadow .15s; }
.vwa-gr :is(a, summary, .vwa-gr-btn):focus-visible { outline: 3px solid var(--g-ui) !important; /* theme sets a,button{outline:none!important} */ outline-offset: 3px; border-radius: 6px; }
.vwa-gr-final :is(a, .vwa-gr-btn):focus-visible { outline-color: #fff !important; }

/* Full-bleed sections */
.vwa-gr-section, .vwa-gr-hero, .vwa-gr-final { padding: clamp(52px, 7vw, 96px) 0; }
.vwa-gr-section--soft, .vwa-gr-hero, .vwa-gr-final { margin-inline: var(--bleed); padding-inline: max(20px, calc(50vw - 50%)); }
.vwa-gr-section--soft { background: var(--soft); }
.vwa-gr-hero { background: linear-gradient(180deg, #f3faf6 0%, #fff 100%); }
/* Section bodies centre in the theme wrapper; .vwa-gr prefix out-specifies the theme's .type-page ol { margin-left:15px }.
   No max-width here — it out-specifies the caps the components set on themselves (.vwa-gr-facts 900, .vwa-gr-timeline 820, .vwa-gr-tablewrap 1000…). */
.vwa-gr .vwa-gr-section > *, .vwa-gr .vwa-gr-section--soft > * { margin-left: auto; margin-right: auto; }
.vwa-gr .vwa-gr-section > h2 { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: 40px; }
.vwa-gr .vwa-gr-section > h2 + .vwa-gr-sub { margin-top: -26px; }
.vwa-gr .vwa-gr-split h2 { margin-inline: 0; }
.vwa-gr-sub { text-align: center; color: var(--muted); font-size: 20px; margin-bottom: 40px; }
.vwa-gr-ic { width: 1.25em; height: 1.25em; flex: 0 0 auto; vertical-align: -.25em; }

/* Buttons */
.vwa-gr .vwa-gr-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 52px; padding: 14px 28px; border-radius: 8px; border: 2px solid var(--g-ui);
	background: var(--g-ui); color: #fff; font-weight: 500; font-size: 17px; line-height: 1.2;
	text-decoration: none; cursor: pointer; box-shadow: 0 6px 16px rgba(38,174,97,.22);
	transition: background-color .15s, border-color .15s, transform .15s, box-shadow .15s;
}
.vwa-gr .vwa-gr-btn:hover, .vwa-gr .vwa-gr-btn:focus-visible { background: var(--g-ui-hover); border-color: var(--g-ui-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(38,174,97,.3); }
.vwa-gr .vwa-gr-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; font-weight: 500; }
.vwa-gr .vwa-gr-btn--ghost:hover, .vwa-gr .vwa-gr-btn--ghost:focus-visible { background: #fff; color: var(--ink); border-color: #c9cfd4; box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.vwa-gr .vwa-gr-btn--light { background: #fff; color: var(--g-dark); border-color: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.18); }
.vwa-gr .vwa-gr-btn--light:hover, .vwa-gr .vwa-gr-btn--light:focus-visible { background: #f1fbf5; color: var(--g-dark); border-color: #f1fbf5; }
/* --- Amber accent CTA -------------------------------------------------------
   One amber button per screen: the hero primary, the final green tile, and the
   mobile sticky bar. Everything else stays green (secondary) or ghost (tertiary).
   Selectors carry 3 classes so they beat the --dark / --light overrides in
   feature-pages.css without !important. Delete this block to revert. */
.vwa-gr .vwa-gr-hero .vwa-gr-actions > .vwa-gr-btn:not(.vwa-gr-btn--ghost),
.vwa-gr .vwa-gr-final .vwa-gr-btn:not(.vwa-gr-btn--ghost),
.vwa-gr .vwa-gr-mbar .vwa-gr-btn:not(.vwa-gr-btn--ghost) {
	background: var(--a); border-color: var(--a); color: var(--a-ink);
	box-shadow: 0 6px 16px rgba(180,110,10,.28);
}
.vwa-gr .vwa-gr-hero .vwa-gr-actions > .vwa-gr-btn:not(.vwa-gr-btn--ghost):is(:hover, :focus-visible),
.vwa-gr .vwa-gr-final .vwa-gr-btn:not(.vwa-gr-btn--ghost):is(:hover, :focus-visible),
.vwa-gr .vwa-gr-mbar .vwa-gr-btn:not(.vwa-gr-btn--ghost):is(:hover, :focus-visible) {
	background: var(--a-hover); border-color: var(--a-hover); color: var(--a-ink);
	box-shadow: 0 8px 20px rgba(180,110,10,.36);
}
/* Ghost sibling next to an amber primary on white needs a firmer edge or the
   pair reads as one button and a border. */
.vwa-gr .vwa-gr-hero:not(.vwa-gr-hero--dark) .vwa-gr-actions > .vwa-gr-btn--ghost { border-color: #d3d8dc; }

.vwa-gr .vwa-gr-link { color: var(--g-dark); font-weight: 500; text-decoration: none; border-bottom: 2px solid transparent; }
.vwa-gr .vwa-gr-link:hover, .vwa-gr .vwa-gr-link:focus-visible { color: var(--ink); border-bottom-color: currentColor; }
.vwa-gr-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 10px; }
.vwa-gr-actions-note { font-size: 14px; color: var(--muted); min-height: 1.2em; }
.vwa-gr-actions-note a { color: var(--g-dark); font-weight: 500; }
.vwa-gr-actions-note--light, .vwa-gr-actions-note--light a { color: #f1fbf5; }

/* Shared atoms */
.vwa-gr .vwa-gr-avatar, .vwa-gr .vwa-gr-person .vwa-gr-avatar { color: #fff; }
.vwa-gr-avatar { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; font-size: 13px; font-weight: 500; color: #fff; flex: 0 0 auto; }
.vwa-gr-avatar--a { background: #1b8249; } .vwa-gr-avatar--b { background: #2b5f9e; } .vwa-gr-avatar--c { background: #9c6410; } .vwa-gr-avatar--d { background: #6a459e; } .vwa-gr-avatar--e { background: #4d626c; }
.vwa-gr-person { display: flex; align-items: center; gap: 12px; margin: 8px 0; }
.vwa-gr-person div strong { display: block; font-size: 15px; line-height: 1.25; }
.vwa-gr-person div span { display: block; font-size: 13px; color: var(--muted); line-height: 1.3; }
.vwa-gr-cat { display: inline-block; font-size: 12px; font-weight: 500; border-radius: 20px; padding: 3px 10px; line-height: 1.4; }
.vwa-gr-cat--employment { background: #e8f6ee; color: #1d7a46; }
.vwa-gr-cat--professional { background: #e7f0fb; color: #2b5f9e; }
.vwa-gr-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.vwa-gr-vbadge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; background: #f1f6f3; border: 1px solid #bfe0cd; color: #1d7a46; border-radius: 6px; padding: 3px 9px; line-height: 1.4; }
.vwa-gr-vbadge .vwa-gr-ic { width: 14px; height: 14px; }
.vwa-gr-badges--lg .vwa-gr-vbadge { font-size: 14px; padding: 7px 12px; }
.vwa-gr-rel { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; border-radius: 6px; padding: 5px 11px; line-height: 1.3; }
.vwa-gr-rel::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: currentColor; opacity: .85; }
.vwa-gr-rel--high { background: #fff4e0; color: #8a5a00; }
.vwa-gr-rel--medium { background: #fff9e8; color: #7a5f10; }
.vwa-gr-rel--limited { background: #f1f3f4; color: #5b6770; }
.vwa-gr-status { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; border-radius: 20px; padding: 3px 10px; line-height: 1.4; }
.vwa-gr-status--sent { background: #e7f0fb; color: #2b5f9e; }
.vwa-gr-status--done { background: #e8f6ee; color: #1d7a46; }
.vwa-gr-stars { font-style: normal; color: #9a5d07; letter-spacing: 1px; }
.vwa-gr-eyebrow { display: block; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: var(--g-dark); margin-bottom: 10px; }
.vwa-gr-eyebrow em { font-style: normal; color: var(--muted); font-weight: 500; text-transform: none; letter-spacing: 0; }
.vwa-gr-kicker { font-size: 14px; font-weight: 500; color: var(--g-dark); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.vwa-gr-kv { margin: 0; display: grid; gap: 10px; }
.vwa-gr-kv > div { display: grid; grid-template-columns: minmax(96px, 130px) 1fr; gap: 10px; align-items: start; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.vwa-gr-kv > div:last-child { border-bottom: 0; padding-bottom: 0; }
.vwa-gr-kv dt { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.4; }
.vwa-gr-kv dd { font-size: 14px; font-weight: 500; margin: 0; line-height: 1.4; }
.vwa-gr-kv--tight { gap: 8px; }
.vwa-gr-kv--tight > div { padding-bottom: 8px; }
.vwa-gr-mailmock-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: #fff; background: var(--g-ui); border-radius: 6px; padding: 7px 12px; width: fit-content; }

/* 1 · Hero */
.vwa-gr-hero { display: grid; gap: 40px; align-items: center; padding-top: clamp(28px, 5vw, 64px); }
.vwa-gr-hero .vwa-gr-jcard { padding: 22px; gap: 8px; }
.vwa-gr-hero > * { max-width: 1120px; width: 100%; margin-inline: auto; }
.vwa-gr-lede { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 560px; margin-top: 18px; }
.vwa-gr-proof { display: grid; gap: 10px; margin-top: 24px; font-size: 15px; color: var(--ink); }
.vwa-gr-proof li { display: flex; align-items: center; gap: 10px; }
.vwa-gr-proof .vwa-gr-ic { color: var(--g-dark); }
.vwa-gr-jcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; display: grid; gap: 6px; align-content: start; }
.vwa-gr-jlabel { font-size: 12px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.vwa-gr-jrow { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding-top: 6px; border-top: 1px dashed var(--line); }
.vwa-gr-reflist { display: grid; gap: 8px; margin-top: 4px; }
.vwa-gr .vwa-gr-reflist li { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 6px 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--soft); }
.vwa-gr-reflist li strong { display: block; font-size: 15px; line-height: 1.25; }
.vwa-gr-reflist li > div > span { display: block; font-size: 13px; color: var(--muted); line-height: 1.3; }
.vwa-gr-reflist-tags { grid-column: 2; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
@media (min-width: 480px) { .vwa-gr .vwa-gr-reflist li { grid-template-columns: auto 1fr auto; } .vwa-gr .vwa-gr-reflist-tags { grid-column: auto; justify-content: flex-end; } }

/* 2 · Steps */
.vwa-gr-steps { display: grid; gap: 0; counter-reset: none; }
/* .vwa-gr prefix beats the theme's .type-page ol li { padding:5px } */
.vwa-gr .vwa-gr-step { display: grid; gap: 28px; align-items: center; padding: 48px 0; }
.vwa-gr .vwa-gr-step + .vwa-gr-step { border-top: 1px solid var(--line); }
.vwa-gr .vwa-gr-step:first-child { padding-top: 0; }
.vwa-gr .vwa-gr-step:last-child { padding-bottom: 0; }
.vwa-gr-stepnum { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--g-ui); color: #fff; font-weight: 500; font-size: 18px; margin-bottom: 14px; }
.vwa-gr-step h3 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 10px; }
.vwa-gr-step-copy p { font-size: 17px; }
.vwa-gr-step-cta { margin-top: 20px; }
.vwa-gr-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.vwa-gr-chips li { font-size: 14px; font-weight: 500; background: var(--soft); border: 1px solid var(--line); border-radius: 20px; padding: 6px 13px; color: var(--ink); }
.vwa-gr-step-visual { background: var(--soft); border: 1px solid var(--line); border-radius: 16px; padding: 28px; min-height: 260px; display: grid; place-items: center; }
.vwa-gr-pick { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); width: 100%; max-width: 360px; padding: 14px; display: grid; gap: 6px; }
.vwa-gr-pick-title { font-size: 13px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.vwa-gr-pick-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 10px; border: 1px solid transparent; }
.vwa-gr-pick-row strong { display: block; font-size: 14px; line-height: 1.25; }
.vwa-gr-pick-row span:not(.vwa-gr-avatar):not(.vwa-gr-pick-check) { display: block; font-size: 12px; color: var(--muted); }
.vwa-gr-pick-check { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--line); color: transparent; }
.vwa-gr-pick-check .vwa-gr-ic { width: 14px; height: 14px; }
.vwa-gr-pick-row.is-on { background: var(--g-soft); border-color: #bfe0cd; }
.vwa-gr-pick-row.is-on span:not(.vwa-gr-avatar):not(.vwa-gr-pick-check) { color: #4b5563; }
.vwa-gr-pick-row.is-on .vwa-gr-pick-check { background: var(--g-ui); border-color: var(--g-ui); color: #fff; }
.vwa-gr-invite { display: grid; gap: 16px; width: 100%; max-width: 420px; }
.vwa-gr-email { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 14px; display: grid; gap: 8px; }
.vwa-gr-email-head { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 14px; }
.vwa-gr-email-head .vwa-gr-ic { color: var(--g-dark); }
.vwa-gr-email p { font-size: 13px; color: var(--muted); margin: 0; }
.vwa-gr-phone { justify-self: end; width: min(200px, 100%); border: 8px solid #1e1e1e; border-radius: 26px; background: #1e1e1e; margin-top: -8px; }
.vwa-gr-phone-screen { background: #fff; border-radius: 18px; padding: 14px 12px; display: grid; gap: 8px; }
.vwa-gr-phone-title { font-size: 12px; font-weight: 500; }
.vwa-gr-phone-q { display: flex; justify-content: space-between; align-items: center; gap: 6px; font-size: 11px; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 6px; }
.vwa-gr-phone-q .vwa-gr-stars { font-size: 11px; }
.vwa-gr-yes { font-style: normal; font-weight: 500; color: var(--g-dark); }
.vwa-gr-phone-btn { text-align: center; font-size: 12px; font-weight: 500; color: #fff; background: var(--g-ui); border-radius: 6px; padding: 8px; }
.vwa-gr-refcard { background: #fff; border: 1px solid #bfe0cd; border-radius: 12px; box-shadow: var(--shadow); padding: 18px; width: 100%; max-width: 420px; display: grid; gap: 12px; }
.vwa-gr-refcard-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }

/* 3 · Categories */
.vwa-gr-cats { display: grid; gap: 14px; }
/* WorkScout base.min.css `.type-page ul li{padding:5px}` (0,1,2) outranks a bare
   `.vwa-gr-catcard` (0,1,0) and flattened every card's padding — keep the `.vwa-gr`
   prefix here so the card box wins. */
.vwa-gr .vwa-gr-catcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; box-shadow: var(--shadow); }
.vwa-gr-catcard h3 { font-size: 18px; margin: 12px 0 6px; }
.vwa-gr-catcard p { color: var(--muted); font-size: 15px; margin: 0; }
.vwa-gr-caticon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; }
.vwa-gr-caticon .vwa-gr-ic { width: 24px; height: 24px; }
.vwa-gr-catcard--employment .vwa-gr-caticon { background: #e8f6ee; color: #1d7a46; }
.vwa-gr-catcard--professional .vwa-gr-caticon { background: #e7f0fb; color: #2b5f9e; }
.vwa-gr-catcard--academic .vwa-gr-caticon { background: #f2ecfb; color: #6a459e; }
.vwa-gr-catcard--community .vwa-gr-caticon { background: #fdf3e5; color: #9c6410; }
.vwa-gr-catcard--character .vwa-gr-caticon { background: #eef2f4; color: #4d626c; }
.vwa-gr-catcard--personal .vwa-gr-caticon { background: #f5f0ee; color: #7d5a4a; }
.vwa-gr-note { display: flex; gap: 14px; align-items: flex-start; background: #fff8e6; border: 1px solid #f0d98c; border-radius: 12px; padding: 18px 20px; margin-top: 22px; color: #5c4500; }
.vwa-gr-note .vwa-gr-ic { width: 26px; height: 26px; color: #9c6410; margin-top: 2px; }
.vwa-gr-note strong { display: block; font-size: 17px; margin-bottom: 4px; color: #3d2e00; }
.vwa-gr-note p { margin: 0; font-size: 15px; }

/* 4 · Privacy */
.vwa-gr-split { display: grid; gap: 32px; align-items: center; }
.vwa-gr-split h2 { text-align: left; }
.vwa-gr-split p { font-size: 17px; color: var(--ink); }
.vwa-gr-privcard { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 20px; max-width: 460px; width: 100%; justify-self: center; }
.vwa-gr-privcard-head { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 14px; color: var(--g-dark); margin-bottom: 12px; }
.vwa-gr-privcard-head--locked { color: var(--muted); margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.vwa-gr-locked { display: grid; gap: 8px; }
.vwa-gr-locked li { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; background: var(--soft); border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; font-size: 14px; color: var(--muted); }
.vwa-gr-locked li i { width: 84px; height: 10px; border-radius: 5px; background: repeating-linear-gradient(90deg, #cfd5d9 0 6px, transparent 6px 10px); }

/* 5 · Verification vs relevance */
.vwa-gr-twocol { display: grid; gap: 16px; }
.vwa-gr-panel { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 26px; }
.vwa-gr-panel h3 { display: flex; align-items: center; gap: 10px; font-size: 20px; }
.vwa-gr-panel h3 .vwa-gr-ic { color: var(--g-dark); }
.vwa-gr-panel-lede { font-size: 18px; font-weight: 500; color: var(--ink); margin: 8px 0 16px; }
.vwa-gr-rels { display: flex; flex-wrap: wrap; gap: 8px; }
.vwa-gr-rels .vwa-gr-rel { font-size: 14px; padding: 7px 12px; }
.vwa-gr-example { margin-top: 28px; display: grid; justify-items: center; }
.vwa-gr .vwa-gr-refcard--inline { max-width: 560px; }
.vwa-gr-example-row { display: grid; grid-template-columns: 90px 1fr; gap: 10px; align-items: center; }
.vwa-gr-example-row > * { justify-self: start; }
.vwa-gr-example-row small { font-size: 13px; color: var(--muted); }

/* 6 · FAQ */
.vwa-gr .vwa-gr-acc { display: grid; gap: 10px; max-width: 800px; }
.vwa-gr-acc-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0 20px; scroll-margin-top: 110px; }
.vwa-gr-acc-item[open] { border-color: #bfe0cd; box-shadow: var(--shadow); }
.vwa-gr-acc-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-weight: 500; font-size: 17px; min-height: 56px; }
.vwa-gr-acc-item summary::-webkit-details-marker { display: none; }
.vwa-gr-acc-item summary i { position: relative; width: 28px; height: 28px; border-radius: 50%; background: var(--soft); flex: 0 0 auto; transition: transform .2s; }
.vwa-gr-acc-item summary i::before, .vwa-gr-acc-item summary i::after { content: ""; position: absolute; inset: 50% auto auto 50%; width: 12px; height: 2px; background: var(--ink); transform: translate(-50%, -50%); }
.vwa-gr-acc-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.vwa-gr-acc-item[open] summary i { transform: rotate(45deg); background: var(--g-soft); }
.vwa-gr-acc-item p { padding: 0 0 20px; color: var(--ink); font-size: 16px; max-width: 700px; }

/* 7 · Final */
.vwa-gr-final { background: #166e3c; color: #fff; text-align: center; }
.vwa-gr-final h2, .vwa-gr-final p { color: #fff; }
.vwa-gr-final p { font-size: 19px; color: #f1fbf5; margin-bottom: 24px; }
.vwa-gr-final .vwa-gr-actions-note { margin-top: 14px; }

/* Mobile sticky CTA */
.vwa-gr-mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(6px); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(0,0,0,.06); }
.vwa-gr-mbar[hidden] { display: none; }
.vwa-gr-mbar .vwa-gr-btn { width: 100%; }
@media (min-width: 768px) { .vwa-gr-mbar { display: none !important; } }

@media (max-width: 639px) { .vwa-gr-actions .vwa-gr-btn { flex: 1 1 100%; } }

/* ≥ 640 */
@media (min-width: 640px) {
	.vwa-gr-cats { grid-template-columns: 1fr 1fr; }
	.vwa-gr-kv > div { grid-template-columns: 150px 1fr; }
}

/* ≥ 768 */
@media (min-width: 768px) {
	.vwa-gr-step { grid-template-columns: 1.05fr 1fr; }
	/* zig-zag: visual swaps to the left on even-numbered steps (1 left, 2 right, 3 left…) */
	.vwa-gr .vwa-gr-steps--zig .vwa-gr-step:nth-child(even) .vwa-gr-step-copy { order: 2; }
	.vwa-gr .vwa-gr-steps--zig .vwa-gr-step:nth-child(even) .vwa-gr-step-visual { order: 1; }
	.vwa-gr-split { grid-template-columns: 1fr 1fr; gap: 48px; }
	.vwa-gr-twocol { grid-template-columns: 1fr 1fr; }
	.vwa-gr-invite { grid-template-columns: 1fr auto; align-items: start; }
	.vwa-gr-phone { margin-top: 24px; }
}

/* ≥ 1024 */
@media (min-width: 1024px) {
	.vwa-gr-hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 56px; }
	.vwa-gr-hero > * { margin-inline: 0; }
	.vwa-gr-hero-copy { justify-self: end; max-width: 560px; }
	.vwa-gr-hero-visual { justify-self: start; max-width: 620px; }
	.vwa-gr-cats { grid-template-columns: repeat(3, 1fr); }
}
/* Theme overrides that would otherwise leak in */
.vwa-gr .vwa-gr-btn, .vwa-gr .vwa-gr-btn:hover { text-transform: none; }
.vwa-gr dl, .vwa-gr dt, .vwa-gr dd { margin: 0; }

/* Page closes on the full-bleed CTA band — sit it flush on the footer. The theme
   prints a 45px .margin-top-45 spacer above #footer-new on every page
   (workscout/footer.php) and .vwa-gr adds 8px of tail padding; together they read
   as a white strip under the green band. Skipped where a section still follows the
   band (feature pages close on a white "Related …" block, which wants the spacer). */
.vwa-gr:has(.vwa-gr-final):not(:has(.vwa-gr-final ~ section)) { padding-bottom: 0; }
body:has(.vwa-gr-final):not(:has(.vwa-gr-final ~ section)) .margin-top-45 { margin-top: 0 !important; }
