/* ==========================================================================
   Wellstaq — hand-authored custom-properties stylesheet
   Tokens mirror theme.json; this file styles the section patterns + ACF blocks
   and the motion layer. No build step — plain CSS custom properties only.
   Motion is opt-in via .wq-js + prefers-reduced-motion (see bottom).
   ========================================================================== */

:root {
	/* Palette (kept in sync with theme.json) */
	--wq-ink: #0B1A15;
	--wq-ink-2: #10241D;
	--wq-ink-3: #173329;
	--wq-emerald: #0E875C;
	--wq-emerald-strong: #0A6A48;
	--wq-emerald-soft: #D7EFE5;
	--wq-off-white: #F7F5EF;
	--wq-off-white-2: #EFEDE4;
	--wq-gray: #6A7B74;
	--wq-gray-line: #D9D7CD;
	--wq-white: #FFFFFF;

	/* Type */
	--wq-display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--wq-body: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

	/* Layout */
	--wq-maxw: 1200px;
	--wq-narrow: 760px;
	--wq-gutter: clamp(1.25rem, 4vw, 2.5rem);
	--wq-radius: 18px;
	--wq-radius-lg: 28px;

	/* Shadows */
	--wq-shadow-soft: 0 1px 2px rgba(11,26,21,.04), 0 12px 32px rgba(11,26,21,.08);
	--wq-shadow-lift: 0 2px 6px rgba(11,26,21,.06), 0 30px 60px rgba(11,26,21,.14);
	--wq-shadow-emerald: 0 20px 50px rgba(10,106,72,.28);

	/* Motion */
	--wq-ease: cubic-bezier(.22,.61,.36,1);
	--wq-dur: .7s;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
/* Border-box everywhere: the raw markup in the wp:html section patterns isn't
   covered by WordPress's block box-sizing, so width:100% + padding (e.g.
   .wq-container) overflowed the viewport and bled off-screen on mobile. */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
/* Offset in-page anchors so the sticky header doesn't cover the section. */
:target { scroll-margin-top: 84px; }
#waitlist { scroll-margin-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
	font-family: var(--wq-body);
	color: var(--wq-ink);
	background: var(--wq-off-white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	/* Global guard against horizontal bleed on mobile. `clip` (not hidden) keeps
	   the sticky header working. */
	overflow-x: clip;
	max-width: 100vw;
}
.wq-main { overflow-x: clip; }
/* Kill the root block-gap between the top-level blocks (header → main → footer)
   on every page. WordPress puts that margin on the template-part WRAPPERS
   (header.wp-block-template-part / footer.wp-block-template-part), so the
   footer sat below the last section with a strip of body colour showing. This
   makes the footer butt flush against the final section sitewide. */
.wp-site-blocks > * { margin-block: 0; }
.wp-block-template-part { margin-block: 0; }
/* Nothing should be able to push the page wider than the screen. */
img, svg, video, iframe, table { max-width: 100%; }
/* Home page: sections are full-bleed (each has its own .wq-container that
   re-centers the content), so the main must NOT constrain width or add gaps. */
.wq-main--home { max-width: none; padding-inline: 0; margin-block: 0; }
.wq-main--home > * { margin-block: 0; max-width: none; }
img, svg { max-width: 100%; }

.wq-container {
	width: 100%;
	max-width: var(--wq-maxw);
	margin-inline: auto;
	padding-inline: var(--wq-gutter);
}
.wq-container--narrow { max-width: var(--wq-narrow); }

.wq-section {
	position: relative;
	padding-block: clamp(3.5rem, 8vw, 7rem);
}
.wq-section--dark {
	background: var(--wq-ink);
	color: var(--wq-off-white);
}
.wq-section--dark .wq-section__title,
.wq-section--dark h1, .wq-section--dark h2, .wq-section--dark h3 { color: var(--wq-off-white); }
.wq-section--dark .wq-section__intro { color: rgba(247,245,239,.74); }

/* Section heads */
.wq-section__head { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.wq-eyebrow {
	font-family: var(--wq-display);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--wq-emerald-strong);
	margin: 0 0 .9rem;
}
.wq-eyebrow--light { color: var(--wq-emerald-soft); }
.wq-section__title {
	font-family: var(--wq-display);
	font-weight: 700;
	font-size: clamp(2rem, 4.4vw, 3rem);
	line-height: 1.08;
	letter-spacing: -.02em;
	margin: 0;
}
.wq-section__title--center { text-align: center; }
.wq-section__intro {
	margin: 1.1rem 0 0;
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--wq-gray);
	max-width: 60ch;
}
.wq-accent { color: var(--wq-emerald); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.wq-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-family: var(--wq-display);
	font-weight: 500;
	font-size: 1.0625rem;
	line-height: 1;
	padding: .95rem 1.6rem;
	border-radius: 999px;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .25s var(--wq-ease), background-color .25s var(--wq-ease), box-shadow .25s var(--wq-ease), color .25s var(--wq-ease);
}
.wq-btn--lg { padding: 1.05rem 1.9rem; font-size: 1.125rem; }
.wq-btn--primary {
	background: var(--wq-emerald);
	color: var(--wq-off-white);
	box-shadow: var(--wq-shadow-emerald);
}
.wq-btn--primary:hover { background: var(--wq-emerald-strong); transform: translateY(-2px); }
.wq-btn--ghost {
	background: transparent;
	color: currentColor;
	border-color: color-mix(in srgb, currentColor 32%, transparent);
}
.wq-btn--ghost:hover { border-color: currentColor; transform: translateY(-2px); }
.wq-section--dark .wq-btn--ghost { color: var(--wq-off-white); }

/* Core button block alignment with our system */
.wp-block-button__link { font-family: var(--wq-display); font-weight: 500; }
.is-style-outline .wp-block-button__link { border-width: 1px; }

.wq-pill-tag {
	display: inline-block;
	font-family: var(--wq-display);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--wq-emerald-strong);
	background: var(--wq-emerald-soft);
	padding: .35rem .7rem;
	border-radius: 999px;
}

.wq-icon { display: block; color: var(--wq-emerald); flex: none; }

/* --------------------------------------------------------------------------
   Header / footer
   -------------------------------------------------------------------------- */
.wq-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: color-mix(in srgb, var(--wq-off-white) 86%, transparent);
	backdrop-filter: saturate(1.4) blur(12px);
	border-bottom: 1px solid var(--wq-gray-line);
}
.wq-header__inner {
	max-width: var(--wq-maxw);
	margin-inline: auto;
	padding-inline: var(--wq-gutter);
	min-height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
/* Inline-SVG brand lockup: emerald blood-drop mark with a checkmark + display
   wordmark. Transparent, links home. Explicit ink text so theme.json's
   link:hover never recolours the wordmark. */
.wq-logo { display: inline-flex; align-items: center; gap: .3rem; text-decoration: none; line-height: 1; background: transparent; padding: 0; }
.wq-logo__mark { color: var(--wq-emerald); flex: none; display: block; transition: color .25s var(--wq-ease); }
.wq-logo__check { stroke: var(--wq-off-white); }
.wq-logo__text { font-family: var(--wq-display); font-weight: 600; font-size: 1.4rem; letter-spacing: -.02em; color: var(--wq-ink); }
.wq-logo:hover .wq-logo__mark, .wq-logo:focus .wq-logo__mark { color: var(--wq-emerald-strong); }
.wq-logo:hover .wq-logo__text, .wq-logo:focus .wq-logo__text { color: var(--wq-ink); }
/* Belt-and-suspenders: suppress any stray uploaded Custom Logo / site-title. */
.wq-header .wp-block-site-logo,
.wq-header .wp-block-site-title,
.wq-header .custom-logo-link,
.wq-header img.custom-logo { display: none !important; }

/* Primary nav — horizontal on desktop. */
.wq-nav { display: flex; align-items: center; gap: 1.75rem; }
.wq-nav > a, .wq-nav__dropbtn { color: var(--wq-ink); font-weight: 500; font-size: 1.0625rem; text-decoration: none; }
.wq-nav > a:hover, .wq-nav__dropbtn:hover { color: var(--wq-emerald-strong); }

/* "For Your Practice" audience dropdown */
.wq-nav__group { position: relative; }
.wq-nav__dropbtn { display: inline-flex; align-items: center; gap: .4rem; background: none; border: 0; padding: 0; margin: 0; cursor: pointer; font-family: var(--wq-body); }
.wq-caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-1px,-1px); transition: transform .2s var(--wq-ease); }
.wq-nav__group.is-open .wq-caret { transform: rotate(225deg); }
.wq-dropdown {
	position: absolute; top: calc(100% + .5rem); left: 0; min-width: 210px; margin: 0; padding: .4rem; list-style: none;
	background: var(--wq-off-white); border: 1px solid var(--wq-gray-line); border-radius: 14px; box-shadow: var(--wq-shadow-lift);
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .2s var(--wq-ease), transform .2s var(--wq-ease), visibility .2s; z-index: 60;
}
/* Click-only (no hover-open) so hovering never traps page scroll; JS toggles
   .is-open with aria-expanded, Escape and outside-click close it. */
.wq-nav__group.is-open .wq-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.wq-dropdown a { display: block; padding: .6rem .75rem; border-radius: 9px; color: var(--wq-ink); text-decoration: none; font-size: 1rem; }
.wq-dropdown a:hover, .wq-dropdown a:focus { background: var(--wq-emerald-soft); color: var(--wq-emerald-strong); }

/* "Who it's for" mega-menu — click-only flyout with descriptive cards. Same
   .is-open mechanism as the simple dropdown (JS toggles it; Escape / outside
   click close it), so it never traps page scroll on hover. */
.wq-mega {
	position: absolute; top: calc(100% + .5rem); left: 0; width: min(560px, 86vw); margin: 0; padding: .6rem;
	background: var(--wq-off-white); border: 1px solid var(--wq-gray-line); border-radius: 16px; box-shadow: var(--wq-shadow-lift);
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .2s var(--wq-ease), transform .2s var(--wq-ease), visibility .2s; z-index: 60;
}
.wq-nav__group.is-open .wq-mega { opacity: 1; visibility: visible; transform: translateY(0); }
/* Wide full-panel variant: two labelled groups (clinical | brands); group A
   splits into 2 sub-columns so the panel reads as a balanced ~3-column grid. */
.wq-mega--wide { width: min(820px, 94vw); padding: 1rem; }
.wq-mega__cols { display: grid; grid-template-columns: 2fr 1fr; gap: 1.25rem; }
.wq-mega__grouph { font-family: var(--wq-display); font-weight: 600; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--wq-gray); margin: 0 0 .5rem .55rem; }
.wq-mega__group + .wq-mega__group { border-left: 1px solid var(--wq-gray-line); padding-left: 1.25rem; }
.wq-mega__subcols { display: grid; grid-template-columns: 1fr 1fr; gap: .1rem .5rem; }
.wq-mega__list { display: flex; flex-direction: column; }
.wq-mega__item { display: flex; align-items: center; gap: .55rem; padding: .45rem .55rem; border-radius: 10px; color: var(--wq-ink); text-decoration: none; }
.wq-mega__item:hover, .wq-mega__item:focus { background: var(--wq-emerald-soft); color: var(--wq-emerald-strong); }
.wq-mega__ico { width: 18px; height: 18px; flex: none; color: var(--wq-emerald); }
.wq-mega__item:hover .wq-mega__ico, .wq-mega__item:focus .wq-mega__ico { color: var(--wq-emerald-strong); }
.wq-mega__label { font-size: .88rem; font-weight: 500; line-height: 1.2; }
.wq-mega__all { display: inline-flex; align-items: center; gap: .4rem; margin: .85rem .35rem 0; padding: .55rem .5rem; font-family: var(--wq-display); font-weight: 600; font-size: .9rem; color: var(--wq-emerald-strong); text-decoration: none; border-top: 1px solid var(--wq-gray-line); width: 100%; }
.wq-mega__all:hover, .wq-mega__all:focus { color: var(--wq-emerald); }
/* "How we help" — three equal labelled columns (by program | by outcome | what's included). */
.wq-mega--help { width: min(920px, 95vw); }
.wq-help__cols { display: grid; grid-template-columns: 1.15fr .95fr .95fr; gap: 1.25rem; }

/* Header actions: CTA persists (sticky) at all sizes; toggle shows on mobile. */
.wq-header__actions { display: flex; align-items: center; gap: .6rem; }
.wq-nav__cta {
	background: var(--wq-emerald); color: var(--wq-off-white) !important;
	font-family: var(--wq-display); font-weight: 600; border-radius: 999px; padding: .6rem 1.15rem; white-space: nowrap;
	box-shadow: var(--wq-shadow-emerald);
	transition: transform .25s var(--wq-ease), background-color .25s var(--wq-ease);
}
.wq-nav__cta:hover, .wq-nav__cta:focus { background: var(--wq-emerald-strong); color: var(--wq-off-white) !important; transform: translateY(-2px); }

/* Hamburger toggle — hidden on desktop. */
.wq-nav-toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; margin: 0; padding: 0; border: 0; background: transparent; cursor: pointer; color: var(--wq-ink); }
.wq-nav-toggle__box { position: relative; width: 24px; height: 18px; }
.wq-nav-toggle__bar, .wq-nav-toggle__bar::before, .wq-nav-toggle__bar::after {
	position: absolute; left: 0; width: 24px; height: 2px; border-radius: 2px;
	background: currentColor; transition: transform .25s var(--wq-ease), opacity .2s var(--wq-ease);
}
.wq-nav-toggle__bar { top: 50%; transform: translateY(-50%); }
.wq-nav-toggle__bar::before { content: ""; top: -8px; }
.wq-nav-toggle__bar::after { content: ""; top: 8px; }
.wq-header.is-nav-open .wq-nav-toggle__bar { background: transparent; }
.wq-header.is-nav-open .wq-nav-toggle__bar::before { transform: translateY(8px) rotate(45deg); }
.wq-header.is-nav-open .wq-nav-toggle__bar::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 820px) {
	.wq-nav-toggle { display: inline-flex; }
	.wq-nav {
		position: absolute; top: 100%; left: 0; right: 0;
		flex-direction: column; align-items: stretch; gap: 0;
		background: var(--wq-off-white);
		border-bottom: 1px solid var(--wq-gray-line);
		box-shadow: var(--wq-shadow-lift);
		padding: .5rem var(--wq-gutter) 1.25rem;
		display: none;
	}
	.wq-header.is-nav-open .wq-nav { display: flex; }
	.wq-nav > a, .wq-nav__dropbtn { width: 100%; padding: .95rem .25rem; font-size: 1.15rem; border-bottom: 1px solid var(--wq-gray-line); }
	.wq-nav__dropbtn { justify-content: space-between; }
	/* Dropdown collapses to an inline accordion inside the panel. */
	.wq-nav__group { position: static; }
	.wq-dropdown {
		position: static; opacity: 1; transform: none; min-width: 0; border: 0; box-shadow: none; background: transparent;
		padding: 0 0 0 .25rem; visibility: hidden; max-height: 0; overflow: hidden;
		transition: max-height .25s var(--wq-ease), visibility .25s;
	}
	.wq-nav__group.is-open .wq-dropdown { visibility: visible; max-height: 320px; }
	.wq-dropdown a { padding: .8rem .5rem; font-size: 1.05rem; border-bottom: 1px solid var(--wq-gray-line); }
	/* Mega-menu collapses to a stacked accordion inside the mobile panel. */
	.wq-mega {
		position: static; opacity: 1; transform: none; width: auto; border: 0; box-shadow: none; background: transparent;
		padding: 0 0 0 .25rem; visibility: hidden; max-height: 0; overflow: hidden;
		transition: max-height .25s var(--wq-ease), visibility .25s;
	}
	.wq-nav__group.is-open .wq-mega { visibility: visible; max-height: 1600px; }
	.wq-mega--wide { width: auto; padding: 0 0 0 .25rem; }
	.wq-mega__cols, .wq-help__cols { grid-template-columns: 1fr; gap: .5rem; }
	.wq-mega--help { width: auto; padding: 0 0 0 .25rem; }
	.wq-mega__group + .wq-mega__group { border-left: 0; padding-left: 0; }
	.wq-mega__subcols { grid-template-columns: 1fr; gap: 0; }
	.wq-mega__grouph { margin-top: .5rem; }
	.wq-mega__item { padding: .7rem .5rem; border-bottom: 1px solid var(--wq-gray-line); border-radius: 0; }
	.wq-mega__label { font-size: 1rem; }
	.wq-mega__all { margin: 0; padding: .8rem .5rem; border-top: 0; }
	.wq-nav__cta { padding: .5rem .9rem; font-size: .95rem; box-shadow: none; }
}

.wq-footer {
	background: var(--wq-ink);
	color: rgba(247,245,239,.8);
	padding-block: clamp(3rem, 6vw, 5rem);
	/* Sit flush against the last section — kill the root block-gap that left a
	   cream strip between the final section and the footer. */
	margin-block-start: 0;
}
/* Trust badge (e.g. LegitScript Certified) — styled for dark sections. */
.wq-badge { display: inline-flex; align-items: center; gap: .55rem; padding: .5rem .9rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); }
.wq-badge__icon { color: #4fd3a0; flex: none; display: block; }
.wq-badge__text { display: flex; flex-direction: column; line-height: 1.15; }
.wq-badge__k { font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(247,245,239,.6); }
.wq-badge__v { font-family: var(--wq-display); font-weight: 600; font-size: .92rem; color: var(--wq-off-white); }
.wq-badge-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.wq-footer__badges { margin-bottom: 1.75rem; }
.wq-footer a { color: rgba(247,245,239,.8); text-decoration: none; }
.wq-footer a:hover { color: var(--wq-off-white); }
.wq-footer .wp-block-site-title a { font-family: var(--wq-display); font-weight: 600; color: var(--wq-off-white); font-size: 1.4rem; }
/* Even, full-width footer: brand column + 3 link columns spread across. */
.wq-footer__top { display: grid !important; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.wq-footer__brandcol { max-width: 360px; }
.wq-footer__blurb { color: rgba(247,245,239,.62); font-size: .98rem; margin: 1rem 0 1.25rem; }
/* Let the 3 link groups become direct columns of the footer grid. */
.wq-footer__links { display: contents !important; }
.wq-footer__h { font-family: var(--wq-display); font-weight: 600; color: var(--wq-off-white); margin: 0 0 .6rem; font-size: .95rem; }
.wq-footer__links p { margin: .35rem 0; font-size: .95rem; }
.wq-footer__legal { border-top: 1px solid rgba(247,245,239,.12); padding-top: 1.75rem; text-align: center; }
.wq-footer__fine { font-size: .8rem; line-height: 1.6; color: rgba(247,245,239,.66); max-width: 90ch; margin-inline: auto; }
.wq-footer__copy { font-size: .8rem; color: rgba(247,245,239,.66); margin-top: .75rem; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.wq-hero {
	color: var(--wq-off-white);
	background: var(--wq-ink);
	/* Clip horizontally only (the floating device can overhang); never clip
	   vertically, so a tall headline can grow the hero instead of being cut. */
	overflow-x: clip;
	overflow-y: visible;
	padding-block: clamp(3.5rem, 8vw, 6.5rem);
	/* Fill the screen below the sticky header; grow if the content is taller. */
	min-height: calc(100vh - 4.5rem);
	min-height: calc(100svh - 4.5rem);
	display: grid;
	align-content: center;
}
.wq-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(80% 90% at 88% -10%, rgba(14,135,92,.55) 0%, rgba(14,135,92,0) 55%),
		radial-gradient(60% 70% at 0% 100%, rgba(10,106,72,.32) 0%, rgba(10,106,72,0) 60%),
		linear-gradient(160deg, #0B1A15 0%, #10241D 60%, #0B1A15 100%);
}
.wq-hero__bg::after {
	content: "";
	position: absolute; inset: 0;
	background-image: linear-gradient(rgba(247,245,239,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(247,245,239,.09) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(80% 80% at 50% 30%, #000 0%, transparent 90%);
}
/* Widen just the hero so the long headline wraps cleanly (the rest of the site
   stays at the standard container width). */
.wq-hero > .wq-container { max-width: 1440px; }
.wq-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 2.4fr .58fr;
	align-items: center;
	gap: clamp(1.5rem, 3vw, 2.5rem);
}
/* Scoped to .wq-hero so it reliably beats theme.json's element-level h1 size
   (the "hero" preset) regardless of stylesheet order. */
.wq-hero .wq-hero__title {
	font-family: var(--wq-display);
	font-weight: 700;
	/* Deliberate 4-line breaks (.wq-hero__br) + wide hero let this run larger. */
	font-size: clamp(2.2rem, 1.2rem + 3.2vw, 3.35rem);
	line-height: 1.1;
	letter-spacing: -.02em;
	hyphens: none;
	text-wrap: pretty;
	margin: 0 0 1.25rem;
	max-width: none;
	color: var(--wq-off-white);
	overflow-wrap: break-word;
}
/* Second sentence of the headline reads in the light-emerald accent. */
.wq-hero__accent { color: #4fd3a0; }
/* Hard line breaks give the headline a clean 4-line shape on desktop; on
   mobile they collapse so it wraps naturally to the narrow column. */
.wq-hero__br { display: inline; }
@media (max-width: 820px) { .wq-hero__br { display: none; } }
.wq-hero__sub {
	font-size: 1.18rem;
	line-height: 1.62;
	color: rgba(247,245,239,.74);
	max-width: 46ch;
	margin: 0 0 1.9rem;
}
.wq-hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.4rem; }
.wq-hero__meta { font-size: .92rem; color: rgba(247,245,239,.6); margin: 0; }

/* Device mockups */
.wq-hero__visual { position: relative; justify-self: center; }
.wq-device--phone {
	position: relative;
	width: clamp(248px, 30vw, 320px);
	aspect-ratio: 320 / 660;
	background: linear-gradient(180deg, #16322a, #0d231c);
	border-radius: 42px;
	padding: 12px;
	box-shadow: var(--wq-shadow-lift), 0 0 0 1px rgba(255,255,255,.06) inset;
	border: 1px solid rgba(255,255,255,.08);
}
.wq-device__notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 90px; height: 7px; border-radius: 999px; background: rgba(255,255,255,.14); }
.wq-device__screen { height: 100%; border-radius: 32px; overflow: hidden; background: linear-gradient(180deg, #0f261e, #0b1a15); }
/* border-box so the app's height:100% includes its padding — otherwise it
   overflows the screen and the bottom CTA gets clipped (green poking out). */
.wq-device, .wq-device * { box-sizing: border-box; }
.wq-app { padding: 24px 16px 18px; display: flex; flex-direction: column; gap: 12px; height: 100%; color: var(--wq-off-white); overflow: hidden; }
.wq-app__top { display: flex; align-items: center; justify-content: space-between; }
.wq-app__brand { display: flex; align-items: center; gap: 7px; font-family: var(--wq-display); font-weight: 600; font-size: .82rem; }
.wq-app__dot { width: 12px; height: 12px; border-radius: 5px; background: var(--wq-emerald); box-shadow: 0 0 12px rgba(14,135,92,.8); }
.wq-app__avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--wq-emerald), #15463a); }
.wq-app__greet { font-family: var(--wq-display); font-size: 1.05rem; margin: 2px 0 2px; }
.wq-app__card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 14px; }
.wq-app__card--score { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.wq-app__label { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(247,245,239,.68); }
.wq-app__hint { font-size: .72rem; color: rgba(247,245,239,.6); }
.wq-ring { position: relative; width: 96px; height: 96px; }
.wq-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.wq-ring__bg { fill: none; stroke: rgba(255,255,255,.1); stroke-width: 3; }
.wq-ring__fg { fill: none; stroke: var(--wq-emerald); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: calc(100 - var(--wq-ring)); }
.wq-ring__num { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--wq-display); font-weight: 600; font-size: 1.5rem; }
.wq-app__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.wq-app__tile { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 10px; display: flex; flex-direction: column; gap: 3px; }
.wq-app__tile-k { font-size: .66rem; color: rgba(247,245,239,.68); }
.wq-app__tile-v { font-family: var(--wq-display); font-weight: 600; font-size: .82rem; }
.wq-app__cta { margin-top: auto; text-align: center; background: var(--wq-emerald); color: var(--wq-off-white); font-family: var(--wq-display); font-weight: 500; font-size: .85rem; padding: 11px; border-radius: 12px; }
/* Bloodwork card */
.wq-app__cardhead { display: flex; align-items: center; justify-content: space-between; }
.wq-app__owned { display: inline-flex; align-items: center; gap: 3px; font-size: .66rem; font-weight: 600; color: #4fd3a0; }
.wq-labs { list-style: none; margin: 10px 0 8px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.wq-labs li { display: flex; align-items: center; justify-content: space-between; font-size: .82rem; color: var(--wq-off-white); }
.wq-lab__val { display: inline-flex; align-items: center; gap: 6px; font-family: var(--wq-display); font-weight: 600; }
.wq-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.wq-dot--ok { background: #4fd3a0; }
.wq-dot--warn { background: #e0a23b; }
/* Provider-recommended plan card */
.wq-app__card--rec { border-color: rgba(79,211,160,.35); background: rgba(14,135,92,.14); display: flex; flex-direction: column; gap: 6px; }
.wq-app__reclabel { font-size: .62rem; font-weight: 600; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; color: #4fd3a0; }
.wq-app__recplan { font-family: var(--wq-display); font-weight: 600; font-size: .92rem; color: var(--wq-off-white); line-height: 1.25; }
.wq-app__recfoot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; }
.wq-app__recprice { font-family: var(--wq-display); font-weight: 700; font-size: 1.05rem; line-height: 1; color: #4fd3a0; }
.wq-app__recprice span { font-size: .7rem; font-weight: 500; color: rgba(247,245,239,.6); }
.wq-app__recbtn { flex: none; background: var(--wq-emerald); color: #fff; font-family: var(--wq-display); font-weight: 600; font-size: .72rem; padding: 8px 14px; border-radius: 999px; }

.wq-device--mini {
	position: absolute;
	right: -8%;
	bottom: 12%;
	background: var(--wq-off-white);
	color: var(--wq-ink);
	border-radius: 16px;
	padding: 14px 16px;
	box-shadow: var(--wq-shadow-lift);
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 170px;
}
.wq-mini__k { font-size: .72rem; color: var(--wq-gray); }
.wq-mini__v { font-family: var(--wq-display); font-weight: 600; font-size: 1.15rem; color: var(--wq-emerald-strong); }
.wq-mini__bar { display: block; height: 6px; border-radius: 999px; background: var(--wq-gray-line); overflow: hidden; margin-top: 4px; }
.wq-mini__bar i { display: block; height: 100%; width: var(--wq-bar, 100%); background: var(--wq-emerald); border-radius: 999px; }

/* --------------------------------------------------------------------------
   Comparison
   -------------------------------------------------------------------------- */
.wq-compare__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.wq-compare__col {
	position: relative;
	background: var(--wq-white);
	border: 1px solid var(--wq-gray-line);
	border-radius: var(--wq-radius);
	padding: 1.75rem 1.6rem;
	box-shadow: var(--wq-shadow-soft);
}
.wq-compare__col.is-featured {
	border-color: var(--wq-emerald);
	box-shadow: var(--wq-shadow-emerald);
	background: linear-gradient(180deg, #ffffff, #f3faf6);
}
.wq-compare__col.is-featured .wq-pill-tag { position: absolute; top: -.8rem; left: 1.6rem; }
.wq-compare__label { font-family: var(--wq-display); font-size: 1.25rem; margin: .25rem 0 1rem; }
.wq-compare__metrics { display: flex; flex-direction: column; gap: .15rem; margin-bottom: 1rem; }
.wq-compare__cost { font-family: var(--wq-display); font-weight: 600; font-size: 1.6rem; color: var(--wq-ink); letter-spacing: -.02em; }
.wq-compare__time { font-size: .92rem; color: var(--wq-gray); }
.wq-bar { height: 12px; border-radius: 999px; background: var(--wq-off-white-2); overflow: hidden; }
/* Default = final width (visible without JS). JS animates it from 0 (below). */
.wq-bar__fill { display: block; height: 100%; width: var(--wq-bar); border-radius: 999px; background: linear-gradient(90deg, var(--wq-emerald), var(--wq-emerald-strong)); }
.is-featured .wq-bar__fill { background: linear-gradient(90deg, #16a571, var(--wq-emerald)); }
.wq-compare__note { font-size: .95rem; line-height: 1.55; color: var(--wq-gray); margin: 1rem 0 0; }

/* --------------------------------------------------------------------------
   Revenue stack (signature)
   -------------------------------------------------------------------------- */
.wq-revenue .wq-section__head { margin-inline: auto; text-align: center; }
.wq-revenue .wq-section__intro { margin-inline: auto; }
.wq-stack { position: relative; max-width: 880px; margin-inline: auto; }
.wq-stack__layers { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .85rem; counter-reset: layer; }
.wq-layer {
	position: relative;
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	align-items: center;
	gap: 1rem;
	padding: 1.15rem 1.4rem;
	/* Solid-ish tints over the dark section. No backdrop-filter: it created
	   a GPU compositing artifact (a stray slanted region) behind the cards. */
	background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
	border: 1px solid rgba(255,255,255,.1);
	border-radius: var(--wq-radius);
}
.wq-layer__num { font-family: var(--wq-display); font-weight: 600; font-size: .85rem; color: var(--wq-emerald-soft); opacity: .6; }
.wq-layer__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(14,135,92,.16); border: 1px solid rgba(14,135,92,.3); }
.wq-layer__icon .wq-icon { color: #4fd3a0; }
.wq-layer__body { display: flex; flex-direction: column; gap: .2rem; }
.wq-layer__title { font-family: var(--wq-display); font-weight: 600; font-size: 1.15rem; color: var(--wq-off-white); }
.wq-layer__desc { font-size: .95rem; line-height: 1.5; color: rgba(247,245,239,.66); }
.wq-layer__tag {
	font-family: var(--wq-display);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .04em;
	color: #58dba8;
	background: rgba(14,135,92,.16);
	border: 1px solid rgba(79,211,160,.3);
	padding: .35rem .65rem;
	border-radius: 999px;
	white-space: nowrap;
}
.wq-stack__lock {
	margin-top: 1.1rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	padding: 1.3rem 1.6rem;
	border-radius: var(--wq-radius);
	/* Vertical (not slanted) gradient + contained shadow so the band reads as a
	   clean footer to the stack and never bleeds green over the cards. */
	background: linear-gradient(180deg, var(--wq-emerald), var(--wq-emerald-strong));
	box-shadow: 0 12px 30px rgba(10,106,72,.22);
}
.wq-stack__lock-badge { font-family: var(--wq-display); font-weight: 700; font-size: 1.05rem; color: #fff; background: rgba(11,26,21,.35); padding: .5rem .9rem; border-radius: 999px; }
.wq-stack__lock-text { margin: 0; font-family: var(--wq-display); font-weight: 500; font-size: 1.1rem; color: #fff; }

/* --------------------------------------------------------------------------
   Catalog
   -------------------------------------------------------------------------- */
.wq-catalog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.wq-cat-card {
	background: var(--wq-white);
	border: 1px solid var(--wq-gray-line);
	border-radius: var(--wq-radius);
	padding: 1.5rem 1.4rem;
	box-shadow: var(--wq-shadow-soft);
	transition: transform .3s var(--wq-ease), box-shadow .3s var(--wq-ease);
}
.wq-cat-card:hover { transform: translateY(-4px); box-shadow: var(--wq-shadow-lift); }
.wq-cat-card__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--wq-emerald-soft); margin-bottom: 1rem; }
.wq-cat-card__title { font-family: var(--wq-display); font-weight: 600; font-size: 1.08rem; margin: 0 0 .4rem; line-height: 1.2; }
.wq-cat-card__desc { font-size: .92rem; line-height: 1.5; color: var(--wq-gray); margin: 0; }
.wq-catalog__foot { margin: 1.75rem 0 0; font-size: .85rem; color: var(--wq-gray); max-width: 80ch; }

/* --------------------------------------------------------------------------
   Members get — tabs + mockups
   -------------------------------------------------------------------------- */
.wq-tabs__nav { display: inline-flex; gap: .3rem; padding: .35rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; margin-bottom: 2rem; flex-wrap: wrap; }
.wq-tabs__btn {
	font-family: var(--wq-display); font-weight: 500; font-size: .98rem;
	color: rgba(247,245,239,.7);
	background: transparent; border: 0; cursor: pointer;
	padding: .6rem 1.2rem; border-radius: 999px;
	transition: background-color .25s var(--wq-ease), color .25s var(--wq-ease);
}
.wq-tabs__btn:hover { color: var(--wq-off-white); }
.wq-tabs__btn.is-active { background: var(--wq-emerald); color: #fff; }
.wq-tabs__panel { display: none; }
.wq-tabs__panel.is-active { display: block; animation: wq-fade .5s var(--wq-ease); }

.wq-mock { border-radius: var(--wq-radius-lg); overflow: hidden; box-shadow: var(--wq-shadow-lift); border: 1px solid rgba(255,255,255,.1); background: var(--wq-white); color: var(--wq-ink); max-width: 1000px; }
.wq-mock--browser .wq-mock__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--wq-off-white-2); border-bottom: 1px solid var(--wq-gray-line); }
.wq-mock__bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--wq-gray-line); }
.wq-mock__bar em { margin-left: 12px; font-style: normal; font-size: .8rem; color: var(--wq-gray); }
.wq-mock__body { display: grid; grid-template-columns: 200px 1fr; min-height: 320px; }
.wq-mock__side { background: var(--wq-ink); color: var(--wq-off-white); padding: 18px 14px; display: flex; flex-direction: column; gap: 6px; }
.wq-mock__logo { display: flex; align-items: center; gap: 8px; font-family: var(--wq-display); font-weight: 600; margin-bottom: 10px; }
.wq-mock__logo i { width: 14px; height: 14px; border-radius: 5px; background: var(--wq-emerald); }
.wq-mock__nav { font-size: .9rem; color: rgba(247,245,239,.6); padding: 8px 10px; border-radius: 8px; }
.wq-mock__nav.is-on { background: rgba(14,135,92,.22); color: var(--wq-off-white); }
.wq-mock__main { padding: 22px; display: flex; flex-direction: column; gap: 18px; }
.wq-mock__main--full { grid-column: 1 / -1; }
.wq-mock__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.wq-mock__c { background: var(--wq-off-white); border: 1px solid var(--wq-gray-line); border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 4px; }
.wq-mock__c span { font-size: .72rem; color: var(--wq-gray); }
.wq-mock__c strong { font-family: var(--wq-display); font-size: 1.2rem; color: var(--wq-ink); }
.wq-mock__chart { display: flex; align-items: flex-end; gap: 12px; height: 130px; padding: 16px; background: var(--wq-off-white); border-radius: 12px; border: 1px solid var(--wq-gray-line); }
.wq-mock__chart i { flex: 1; height: var(--h, 50%); background: linear-gradient(180deg, var(--wq-emerald), var(--wq-emerald-strong)); border-radius: 6px 6px 0 0; }
.wq-mock__table { background: var(--wq-off-white); border: 1px solid var(--wq-gray-line); border-radius: 12px; overflow: hidden; }
.wq-mock__tr { display: grid; grid-template-columns: 1.5fr 1fr 1fr; padding: 11px 14px; font-size: .88rem; border-bottom: 1px solid var(--wq-gray-line); }
.wq-mock__tr:last-child { border-bottom: 0; }
.wq-mock__tr:first-child { background: var(--wq-off-white-2); color: var(--wq-gray); font-family: var(--wq-display); }
.wq-mock__tr em { font-style: normal; color: var(--wq-emerald-strong); font-weight: 600; }

.wq-mock--app { max-width: 360px; margin-inline: auto; background: var(--wq-ink); padding: 22px; }
.wq-mock__phone { background: linear-gradient(180deg, #0f261e, #0b1a15); border-radius: 26px; padding: 20px; color: var(--wq-off-white); border: 1px solid rgba(255,255,255,.08); }
.wq-mock__appbrand { display: flex; align-items: center; gap: 8px; font-family: var(--wq-display); font-weight: 600; }
.wq-mock__appbrand i { width: 14px; height: 14px; border-radius: 5px; background: var(--wq-emerald); }
.wq-mock__hero { font-family: var(--wq-display); font-size: 1.3rem; margin: 14px 0; line-height: 1.2; }
.wq-mock__applist { display: flex; flex-direction: column; gap: 9px; }
.wq-mock__applist span { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 12px 13px; font-size: .9rem; }
.wq-d { width: 9px; height: 9px; border-radius: 3px; background: var(--wq-emerald); flex: none; }
.wq-d--2 { background: #4fd3a0; } .wq-d--3 { background: #2bb588; } .wq-d--4 { background: #8be6c4; }
.wq-mock__appcta { margin-top: 14px; text-align: center; background: var(--wq-emerald); color: #fff; font-family: var(--wq-display); font-weight: 500; padding: 12px; border-radius: 12px; font-size: .92rem; }

/* --------------------------------------------------------------------------
   Zero-margin promise
   -------------------------------------------------------------------------- */
.wq-zero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.wq-zero__lead { font-size: 1.1rem; line-height: 1.62; color: var(--wq-gray); margin: 1.1rem 0 1.75rem; }
.wq-meter { background: var(--wq-ink); border-radius: var(--wq-radius-lg); padding: 2rem; color: var(--wq-off-white); box-shadow: var(--wq-shadow-lift); }
.wq-meter__row { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.wq-meter__row:last-of-type { margin-bottom: 1.5rem; }
.wq-meter__k { font-size: .9rem; color: rgba(247,245,239,.7); }
.wq-meter__track { height: 14px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
/* Default = final width (visible without JS). JS animates it from 0 (below). */
.wq-meter__fill { display: block; height: 100%; width: var(--wq-meter); border-radius: 999px; }
.wq-meter__fill--you { background: linear-gradient(90deg, #16a571, var(--wq-emerald)); }
.wq-meter__fill--us { background: rgba(247,245,239,.35); }
.wq-meter__v { font-family: var(--wq-display); font-weight: 700; font-size: 1.4rem; }
.wq-meter__foot { font-size: .85rem; color: rgba(247,245,239,.68); margin: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1rem; }

/* --------------------------------------------------------------------------
   Credibility
   -------------------------------------------------------------------------- */
.wq-cred__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.wq-cred__card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--wq-radius); padding: 1.5rem; }
.wq-cred__card .wq-icon { color: #4fd3a0; margin-bottom: .9rem; }
.wq-cred__card h3 { font-family: var(--wq-display); font-weight: 600; font-size: 1.08rem; margin: 0 0 .4rem; color: var(--wq-off-white); }
.wq-cred__card p { font-size: .92rem; line-height: 1.5; color: rgba(247,245,239,.66); margin: 0; }
.wq-cred__strip { list-style: none; margin: 2rem 0 0; padding: 1.75rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; background: linear-gradient(110deg, var(--wq-ink-2), var(--wq-ink-3)); border: 1px solid rgba(255,255,255,.1); border-radius: var(--wq-radius); text-align: center; }
.wq-cred__strip strong { display: block; font-family: var(--wq-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: #4fd3a0; line-height: 1; }
.wq-cred__strip span { font-size: .88rem; color: rgba(247,245,239,.66); }

/* --------------------------------------------------------------------------
   Timeline
   -------------------------------------------------------------------------- */
.wq-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.wq-step { position: relative; padding-top: 2.75rem; }
.wq-step__rail { position: absolute; top: 19px; left: 19px; right: -1.25rem; height: 2px; background: var(--wq-gray-line); }
.wq-step:last-child .wq-step__rail { display: none; }
.wq-step__dot { position: absolute; top: 0; left: 0; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-family: var(--wq-display); font-weight: 600; color: #fff; background: var(--wq-emerald); box-shadow: 0 0 0 5px var(--wq-off-white), var(--wq-shadow-emerald); z-index: 1; }
.wq-step__day { font-family: var(--wq-display); font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--wq-emerald-strong); text-transform: uppercase; }
.wq-step__title { font-family: var(--wq-display); font-weight: 600; font-size: 1.15rem; margin: .35rem 0 .4rem; }
.wq-step__desc { font-size: .94rem; line-height: 1.55; color: var(--wq-gray); margin: 0; }
.wq-timeline__note { margin: 2.25rem auto 0; max-width: 62ch; text-align: center; font-size: .9rem; color: var(--wq-gray); }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.wq-pricing__layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; align-items: start; }
.wq-plan { border-radius: var(--wq-radius-lg); padding: 2.25rem; }
.wq-plan--primary { background: var(--wq-ink); color: var(--wq-off-white); box-shadow: var(--wq-shadow-lift); position: relative; overflow: hidden; }
.wq-plan--primary::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 90% at 100% 0%, rgba(14,135,92,.4), transparent 55%); pointer-events: none; }
.wq-plan--primary .wq-pill-tag { position: relative; }
.wq-plan__price { display: flex; align-items: baseline; gap: .5rem; margin: 1.1rem 0 .4rem; }
.wq-plan__amount { font-family: var(--wq-display); font-weight: 700; font-size: clamp(2.8rem, 6vw, 3.8rem); letter-spacing: -.03em; color: var(--wq-off-white); }
.wq-plan__cadence { font-family: var(--wq-display); font-size: 1.1rem; color: rgba(247,245,239,.7); }
.wq-plan__lead { color: rgba(247,245,239,.74); font-size: 1.02rem; margin: 0 0 1.4rem; position: relative; }
.wq-plan__list { list-style: none; margin: 0 0 1.75rem; padding: 0; display: grid; gap: .7rem; position: relative; }
.wq-plan__list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .98rem; color: rgba(247,245,239,.86); }
.wq-plan__list .wq-icon { color: #4fd3a0; margin-top: 2px; }
.wq-plan--primary .wq-btn--primary { position: relative; }
.wq-plan__addons { display: flex; flex-direction: column; gap: 1rem; }
.wq-addons__label { font-family: var(--wq-display); font-weight: 600; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--wq-gray); margin: 0 0 .25rem; }
.wq-addon { background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius); padding: 1.4rem; box-shadow: var(--wq-shadow-soft); }
.wq-addon__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .4rem; }
.wq-addon__title { font-family: var(--wq-display); font-weight: 600; font-size: 1.1rem; margin: 0; }
.wq-addon__price { font-family: var(--wq-display); font-weight: 600; color: var(--wq-emerald-strong); white-space: nowrap; }
.wq-addon__desc { font-size: .92rem; line-height: 1.5; color: var(--wq-gray); margin: 0; }

/* --------------------------------------------------------------------------
   Waitlist
   -------------------------------------------------------------------------- */
.wq-waitlist { background: linear-gradient(160deg, var(--wq-ink), var(--wq-ink-2)); color: var(--wq-off-white); text-align: center; }
/* Waitlist sits on a dark gradient but isn't a .wq-section--dark, so force the
   heading light — otherwise the ink heading is unreadable on the dark panel. */
.wq-waitlist .wq-section__title { color: var(--wq-off-white); }
.wq-waitlist__head { max-width: 600px; margin: 0 auto 2rem; }
.wq-waitlist__sub { font-size: 1.15rem; color: rgba(247,245,239,.74); margin: .9rem 0 0; }
.wq-waitlist__perks { list-style: none; margin: 1.1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.25rem; }
.wq-waitlist__perks li { position: relative; padding-left: 1.35rem; font-size: .95rem; color: rgba(247,245,239,.82); }
.wq-waitlist__perks li::before { content: ""; position: absolute; left: 0; top: .15em; width: 14px; height: 14px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234fd3a0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
.wq-waitlist__form { max-width: 520px; margin: 0 auto; background: var(--wq-off-white); color: var(--wq-ink); border-radius: var(--wq-radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--wq-shadow-lift); text-align: left; }
.wq-waitlist__fineprint { font-size: .85rem; color: rgba(247,245,239,.68); margin: 1.25rem 0 0; }
/* FluentForms inside the styled card */
.wq-waitlist__form .ff-el-input--label label,
.wq-waitlist__form .ff_form_instance label { font-family: var(--wq-display); font-weight: 500; }
.wq-waitlist__form input[type="text"],
.wq-waitlist__form input[type="email"],
.wq-waitlist__form input[type="tel"] { border-radius: 12px; border: 1px solid var(--wq-gray-line); padding: .85rem 1rem; font-family: var(--wq-body); }
.wq-waitlist__form input:focus { outline: 2px solid var(--wq-emerald); outline-offset: 1px; border-color: var(--wq-emerald); }
.wq-waitlist__form .ff-btn-submit,
.wq-waitlist__form button[type="submit"] { background: var(--wq-emerald); border: 0; color: #fff; font-family: var(--wq-display); font-weight: 500; border-radius: 999px; padding: .9rem 1.6rem; cursor: pointer; }
.wq-waitlist__form .ff-btn-submit:hover { background: var(--wq-emerald-strong); }

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.wq-finalcta { background: var(--wq-emerald-strong); color: #fff; overflow: clip; }
.wq-finalcta__inner { position: relative; text-align: center; max-width: 760px; }
.wq-finalcta__glow { position: absolute; inset: -40% -20% auto; height: 380px; background: radial-gradient(50% 60% at 50% 0%, rgba(255,255,255,.3), transparent 70%); pointer-events: none; }
.wq-finalcta__title { position: relative; font-family: var(--wq-display); font-weight: 700; font-size: clamp(2rem, 4.6vw, 3rem); line-height: 1.08; letter-spacing: -.02em; margin: .75rem 0 1rem; color: #fff; }
.wq-finalcta__sub { position: relative; font-size: 1.15rem; color: rgba(255,255,255,.85); margin: 0 auto 1.9rem; max-width: 54ch; }
.wq-finalcta__actions { position: relative; display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }
.wq-finalcta .wq-btn--primary { background: #fff; color: var(--wq-emerald-strong); box-shadow: 0 20px 50px rgba(0,0,0,.2); }
.wq-finalcta .wq-btn--primary:hover { background: var(--wq-off-white); }
.wq-finalcta .wq-btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.wq-faq__list { display: flex; flex-direction: column; gap: .75rem; }
.wq-faq__item { background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius); padding: 0 1.4rem; box-shadow: var(--wq-shadow-soft); }
.wq-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; list-style: none; padding: 1.25rem 0; font-family: var(--wq-display); font-weight: 600; font-size: 1.1rem; }
.wq-faq__q::-webkit-details-marker { display: none; }
.wq-faq__chev { position: relative; width: 16px; height: 16px; flex: none; }
.wq-faq__chev::before, .wq-faq__chev::after { content: ""; position: absolute; top: 50%; width: 11px; height: 2px; border-radius: 2px; background: var(--wq-emerald); transition: transform .3s var(--wq-ease); }
.wq-faq__chev::before { left: 0; transform: translateY(-50%) rotate(45deg); }
.wq-faq__chev::after { right: 0; transform: translateY(-50%) rotate(-45deg); }
.wq-faq__item[open] .wq-faq__chev::before { transform: translateY(-50%) rotate(-45deg); }
.wq-faq__item[open] .wq-faq__chev::after { transform: translateY(-50%) rotate(45deg); }
.wq-faq__a { padding: 0 0 1.3rem; color: var(--wq-gray); line-height: 1.6; max-width: 70ch; }
.wq-faq__a p { margin: 0; }

/* --------------------------------------------------------------------------
   Data engine — own-the-data monetization pathways (light/cream section)
   -------------------------------------------------------------------------- */
.wq-engine { background: var(--wq-off-white-2); }
.wq-engine__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.wq-engine-card { display: flex; flex-direction: column; gap: .6rem; background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius); padding: 1.6rem 1.5rem; box-shadow: var(--wq-shadow-soft); transition: transform .3s var(--wq-ease), box-shadow .3s var(--wq-ease); }
.wq-engine-card:hover { transform: translateY(-4px); box-shadow: var(--wq-shadow-lift); }
.wq-engine-card__badge { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--wq-emerald-soft); color: var(--wq-emerald-strong); margin-bottom: .35rem; }
.wq-engine-card__badge svg { width: 24px; height: 24px; display: block; }
.wq-engine-card__title { font-family: var(--wq-display); font-weight: 600; font-size: 1.15rem; line-height: 1.2; margin: 0; color: var(--wq-ink); }
.wq-engine-card__from { font-size: .9rem; line-height: 1.45; color: var(--wq-gray); margin: 0; flex: 1; }
.wq-engine-card__fromlabel { font-family: var(--wq-display); font-weight: 600; color: var(--wq-ink); }
.wq-engine-card__tag { align-self: flex-start; font-family: var(--wq-display); font-size: .72rem; font-weight: 600; letter-spacing: .02em; color: var(--wq-emerald-strong); background: var(--wq-emerald-soft); padding: .4rem .7rem; border-radius: 999px; }
.wq-engine__note { font-size: .85rem; line-height: 1.55; color: var(--wq-gray); margin: 1.75rem 0 0; max-width: 84ch; }
.wq-engine__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: clamp(2rem, 5vw, 3rem); padding-top: clamp(1.75rem, 4vw, 2.5rem); border-top: 1px solid var(--wq-gray-line); }
.wq-engine__stat { display: flex; flex-direction: column; gap: .25rem; }
.wq-engine__statnum { font-family: var(--wq-display); font-weight: 700; font-size: clamp(1.5rem, 3.5vw, 2rem); line-height: 1.1; letter-spacing: -.01em; color: var(--wq-emerald); }
.wq-engine__statlabel { font-size: .92rem; line-height: 1.45; color: var(--wq-gray); }
.wq-engine__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: clamp(2rem, 5vw, 3rem); }

/* Credibility trust bar (slim band under the hero) */
.wq-trustbar { padding-block: clamp(.9rem, 2.4vw, 1.4rem); background: var(--wq-off-white); border-bottom: 1px solid var(--wq-gray-line); }
.wq-trustbar__list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .35rem 1.1rem; margin: 0; padding: 0; }
.wq-trustbar__item { font-family: var(--wq-display); font-weight: 600; font-size: .85rem; letter-spacing: .01em; color: var(--wq-ink); }
.wq-trustbar__sep { color: var(--wq-gray); user-select: none; }
@media (max-width: 600px) { .wq-trustbar__sep { display: none; } .wq-trustbar__list { gap: .35rem 1rem; } }

/* --------------------------------------------------------------------------
   Cost of going it alone — the detailed wall (dark section)
   -------------------------------------------------------------------------- */
.wq-diy__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.wq-diy__item { display: flex; flex-direction: column; gap: .5rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--wq-radius); padding: 1.4rem; }
.wq-diy__title { font-family: var(--wq-display); font-weight: 600; font-size: 1.05rem; color: var(--wq-off-white); margin: 0; line-height: 1.25; }
.wq-diy__desc { font-size: .9rem; line-height: 1.5; color: rgba(247,245,239,.66); margin: 0; flex: 1; }
.wq-diy__cost { display: inline-flex; align-items: baseline; flex-wrap: wrap; gap: .45rem; margin-top: .4rem; font-family: var(--wq-display); font-weight: 600; font-size: 1rem; color: #4fd3a0; }
.wq-diy__cost-label { font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(247,245,239,.66); font-weight: 600; }
.wq-diy__total { max-width: 64ch; margin: clamp(1.75rem, 4vw, 2.5rem) auto 0; text-align: center; font-family: var(--wq-display); font-weight: 400; font-size: clamp(1.1rem, 2.5vw, 1.35rem); line-height: 1.4; color: var(--wq-off-white); }
.wq-diy__total strong { color: #4fd3a0; font-weight: 600; }
.wq-diy__sumhead { text-align: center; margin: clamp(2rem, 5vw, 3rem) 0 1.25rem; font-family: var(--wq-display); font-weight: 600; font-size: 1.05rem; letter-spacing: .01em; color: rgba(247,245,239,.7); }
/* Dark-section overrides so the reused comparison summary reads on ink. */
.wq-diy__summary .wq-compare__col { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); box-shadow: none; }
.wq-diy__summary .wq-compare__label, .wq-diy__summary .wq-compare__cost { color: var(--wq-off-white); }
.wq-diy__summary .wq-compare__time, .wq-diy__summary .wq-compare__note { color: rgba(247,245,239,.66); }
.wq-diy__summary .wq-bar { background: rgba(255,255,255,.12); }
/* Wellstaq = the no-brainer: a solid emerald card that pops against the dark
   build/direct tiles (no "Recommended" label needed). */
.wq-diy__summary .wq-compare__col.is-featured { background: linear-gradient(160deg, var(--wq-emerald), var(--wq-emerald-strong)); border-color: transparent; box-shadow: var(--wq-shadow-emerald); }
.wq-diy__summary .wq-compare__col.is-featured .wq-compare__label,
.wq-diy__summary .wq-compare__col.is-featured .wq-compare__cost { color: #fff; }
.wq-diy__summary .wq-compare__col.is-featured .wq-compare__time,
.wq-diy__summary .wq-compare__col.is-featured .wq-compare__note { color: rgba(255,255,255,.88); }
.wq-diy__summary .wq-compare__col.is-featured .wq-bar { background: rgba(255,255,255,.28); }
.wq-diy__summary .wq-compare__col.is-featured .wq-bar__fill { background: #fff; }
.wq-diy__foot { text-align: center; font-size: .8rem; line-height: 1.5; color: rgba(247,245,239,.66); margin: 1.5rem auto 0; max-width: 80ch; }
.wq-diy__cta { text-align: center; margin-top: 1.75rem; }

/* --------------------------------------------------------------------------
   Revenue model — monetization cards + illustrative calculator
   -------------------------------------------------------------------------- */
.wq-revmodel { background: var(--wq-off-white-2); }
.wq-revmodel__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.wq-revcard { display: flex; flex-direction: column; gap: .55rem; background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius); padding: 1.5rem 1.4rem; box-shadow: var(--wq-shadow-soft); }
.wq-revcard .wq-pill-tag { align-self: flex-start; }
.wq-pill-tag--once { color: var(--wq-ink); background: var(--wq-off-white-2); border: 1px solid var(--wq-gray-line); }
.wq-revcard__title { font-family: var(--wq-display); font-weight: 600; font-size: 1.1rem; margin: .25rem 0 0; line-height: 1.2; }
.wq-revcard__desc { font-size: .92rem; line-height: 1.5; color: var(--wq-gray); margin: 0; flex: 1; }
.wq-revcard__price { display: flex; flex-direction: column; gap: .15rem; margin-top: .4rem; padding-top: .9rem; border-top: 1px solid var(--wq-gray-line); }
.wq-revcard__ex { font-family: var(--wq-display); font-weight: 600; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--wq-emerald-strong); }
.wq-revcard__amt { font-family: var(--wq-display); font-weight: 700; font-size: 1.35rem; color: var(--wq-ink); letter-spacing: -.01em; }
.wq-revcard__per { font-size: .85rem; font-weight: 500; color: var(--wq-gray); }
.wq-revcard__note { font-size: .8rem; line-height: 1.4; color: var(--wq-gray); }

.wq-calc { background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--wq-shadow-soft); }
.wq-revmodel__subtitle { font-family: var(--wq-display); font-weight: 600; font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 .4rem; }
.wq-calc__lede { color: var(--wq-gray); margin: 0 0 1.5rem; max-width: 62ch; }
.wq-calc__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: start; }
.wq-calc__field { margin-bottom: 1.5rem; }
.wq-calc__field label { display: block; font-family: var(--wq-display); font-weight: 500; margin-bottom: .6rem; }
.wq-calc__field strong { color: var(--wq-emerald-strong); }
.wq-calc input[type="range"] { width: 100%; accent-color: var(--wq-emerald); }
.wq-calc__paths { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .85rem; }
.wq-calc__path { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.wq-calc__toggle { display: flex; align-items: center; gap: .5rem; font-weight: 500; }
.wq-calc__toggle input { width: 18px; height: 18px; accent-color: var(--wq-emerald); flex: none; }
.wq-calc__pricewrap { display: inline-flex; align-items: center; gap: .35rem; font-size: .9rem; color: var(--wq-gray); }
.wq-calc__pricewrap input { width: 84px; padding: .4rem .55rem; border: 1px solid var(--wq-gray-line); border-radius: 8px; font-family: var(--wq-body); font-size: .95rem; color: var(--wq-ink); }
.wq-calc__pricewrap input:focus { outline: 2px solid var(--wq-emerald); outline-offset: 1px; }
.wq-calc__results { background: linear-gradient(160deg, var(--wq-ink), var(--wq-ink-2)); color: var(--wq-off-white); border-radius: var(--wq-radius); padding: 1.6rem; }
.wq-calc__resultlabel { font-family: var(--wq-display); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(247,245,239,.6); margin: 0 0 .5rem; }
.wq-calc__big { font-family: var(--wq-display); font-weight: 700; font-size: clamp(2.4rem, 7vw, 3.2rem); line-height: 1; color: #4fd3a0; }
.wq-calc__bigunit { font-size: 1.1rem; color: rgba(247,245,239,.7); margin-left: .25rem; }
.wq-calc__sub { color: rgba(247,245,239,.82); margin: .55rem 0 0; }
.wq-calc__onetime { color: rgba(247,245,239,.82); margin: .55rem 0 0; font-size: .92rem; }
.wq-calc__fee { margin: 1rem 0 .85rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .92rem; color: rgba(247,245,239,.82); }
.wq-calc__results .wq-pill-tag { background: rgba(79,211,160,.16); color: #4fd3a0; }
.wq-calc__disclaimer { font-size: .8rem; line-height: 1.55; color: var(--wq-gray); margin: 1.5rem 0 0; max-width: 92ch; }
.wq-revmodel__cta { margin-top: 1.5rem; }

/* --------------------------------------------------------------------------
   Generic pages
   -------------------------------------------------------------------------- */
.wq-page { max-width: var(--wq-narrow); margin-inline: auto; }
.wq-page__title { font-family: var(--wq-display); font-size: clamp(2.2rem, 5vw, 3rem); letter-spacing: -.02em; margin-bottom: 1.25rem; }
.wq-page-hero { text-align: center; }
.wq-page-hero__title { font-family: var(--wq-display); font-weight: 700; font-size: clamp(2.3rem, 5vw, 3.4rem); line-height: 1.08; letter-spacing: -.02em; margin: .5rem 0 1rem; }
.wq-page-hero__sub { font-size: 1.15rem; line-height: 1.6; color: var(--wq-gray); max-width: 60ch; margin: 0 auto 1.75rem; }
.wq-legal { max-width: var(--wq-narrow); margin-inline: auto; }
.wq-legal h2 { font-family: var(--wq-display); margin-top: 2rem; }
.wq-legal__note { background: var(--wq-emerald-soft); border-radius: 12px; padding: 1rem 1.25rem; font-size: .95rem; }

/* --------------------------------------------------------------------------
   How it works (3 steps)
   -------------------------------------------------------------------------- */
.wq-howto__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.wq-howto__step { background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius); padding: 1.75rem 1.6rem; box-shadow: var(--wq-shadow-soft); }
.wq-howto__num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--wq-emerald); color: #fff; font-family: var(--wq-display); font-weight: 700; font-size: 1.1rem; margin-bottom: .9rem; }
.wq-howto__title { font-family: var(--wq-display); font-weight: 600; font-size: 1.2rem; margin: 0 0 .4rem; line-height: 1.2; }
.wq-howto__desc { font-size: .95rem; line-height: 1.55; color: var(--wq-gray); margin: 0; }
.wq-howto__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: clamp(1.75rem, 4vw, 2.5rem); }

/* --------------------------------------------------------------------------
   Segment landing hero (dark) + illustrative ROI callout
   -------------------------------------------------------------------------- */
.wq-seg-hero { background: var(--wq-ink); color: var(--wq-off-white); }
.wq-seg-hero .wq-page-hero__title { color: var(--wq-off-white); }
.wq-seg-hero .wq-eyebrow { color: var(--wq-emerald-soft); }
.wq-seg-hero .wq-page-hero__sub { color: rgba(247,245,239,.80); }
.wq-seg-roi { max-width: 62ch; margin: 0 auto 1.75rem; padding: 1rem 1.25rem; border: 1px solid rgba(79,211,160,.3); background: rgba(14,135,92,.12); border-radius: var(--wq-radius); font-size: .95rem; line-height: 1.55; color: rgba(247,245,239,.86); text-align: left; }
.wq-seg-roi__tag { display: inline-block; font-family: var(--wq-display); font-weight: 600; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: #4fd3a0; margin-right: .5rem; }
.wq-seg-hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* Segment "why" — pain/solution cards + illustrative ROI breakdown */
.wq-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.wq-why-card { background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius); padding: 1.6rem 1.5rem; box-shadow: var(--wq-shadow-soft); }
.wq-why-card__title { font-family: var(--wq-display); font-weight: 600; font-size: 1.1rem; line-height: 1.25; margin: 0 0 .5rem; color: var(--wq-ink); }
.wq-why-card__sol { font-size: .95rem; line-height: 1.55; color: var(--wq-gray); margin: 0; }
.wq-roi { margin-top: clamp(1.75rem, 4vw, 2.5rem); background: var(--wq-ink); color: var(--wq-off-white); border-radius: var(--wq-radius-lg); padding: clamp(1.5rem, 4vw, 2.25rem); }
.wq-roi__tag { display: inline-block; font-family: var(--wq-display); font-weight: 600; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: #4fd3a0; margin-bottom: .9rem; }
.wq-roi__rows { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .75rem; }
.wq-roi__rows li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-bottom: .75rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.wq-roi__k { font-size: .95rem; color: rgba(247,245,239,.82); }
.wq-roi__v { font-family: var(--wq-display); font-weight: 700; font-size: 1.15rem; color: #4fd3a0; white-space: nowrap; }
.wq-roi__note { font-size: .8rem; line-height: 1.55; color: rgba(247,245,239,.66); margin: 1rem 0 0; }

/* Segment "go deeper" internal links */
.wq-deeper { background: var(--wq-off-white-2); }
.wq-deeper__title { font-family: var(--wq-display); font-weight: 700; font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 1.1rem; }
.wq-deeper__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .25rem; }
.wq-deeper__list li { border-top: 1px solid var(--wq-gray-line); }
.wq-deeper__list a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem .25rem; font-family: var(--wq-display); font-weight: 500; font-size: 1.05rem; color: var(--wq-ink); text-decoration: none; }
.wq-deeper__list a::after { content: "→"; color: var(--wq-emerald-strong); }
.wq-deeper__list a:hover { color: var(--wq-emerald-strong); }

/* Homepage audiences / segment links */
.wq-audiences__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.wq-audiences__grid--4 { grid-template-columns: repeat(4, 1fr); }

/* "Who it's for" hub — cycling headline + icon-card grids */
.wq-wif--alt { background: var(--wq-off-white-2); }
.wq-wif-hero__title { color: var(--wq-off-white); }
.wq-cycle__word { display: inline-block; color: #4fd3a0; transition: opacity .26s var(--wq-ease); }
.wq-wif__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.wq-wif-card { display: flex; flex-direction: column; gap: .4rem; padding: 1.3rem 1.25rem; background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius); box-shadow: var(--wq-shadow-soft); text-decoration: none; transition: transform .3s var(--wq-ease), box-shadow .3s var(--wq-ease), border-color .3s var(--wq-ease); }
.wq-wif-card:hover { transform: translateY(-4px); box-shadow: var(--wq-shadow-lift); border-color: var(--wq-emerald); }
.wq-wif-card__ico { width: 26px; height: 26px; color: var(--wq-emerald); }
.wq-wif-card__label { font-family: var(--wq-display); font-weight: 600; font-size: 1.02rem; line-height: 1.2; color: var(--wq-ink); }
.wq-wif-card__desc { font-size: .85rem; line-height: 1.45; color: var(--wq-gray); }
.wq-wif__closer { text-align: center; margin-top: clamp(2rem, 5vw, 3rem); background: var(--wq-ink); color: var(--wq-off-white); border-radius: var(--wq-radius-lg); padding: clamp(2rem, 5vw, 3rem); }
.wq-wif__closer-title { color: var(--wq-off-white); margin: 0 0 .5rem; }
.wq-wif__closer-sub { color: rgba(247,245,239,.8); max-width: 52ch; margin: 0 auto 1.4rem; }

/* "How we help" homepage section — program card grid (reuses .wq-wif-card). */
.wq-hwh__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.wq-hwh__note { margin: clamp(1.5rem, 4vw, 2.25rem) auto 0; max-width: 80ch; text-align: center; font-size: .85rem; line-height: 1.6; color: var(--wq-gray); }

/* "How the economics work" — three-card model explainer + brand tie-back. */
.wq-econ__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.wq-econ-card { background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius); box-shadow: var(--wq-shadow-soft); padding: clamp(1.5rem, 3vw, 2rem); border-top: 3px solid var(--wq-emerald); }
.wq-econ-card__title { font-family: var(--wq-display); font-weight: 700; font-size: 1.3rem; line-height: 1.2; margin: 0 0 .6rem; color: var(--wq-ink); }
.wq-econ-card__body { font-size: 1rem; line-height: 1.6; color: var(--wq-gray); margin: 0; }
.wq-econ__tieback { margin: clamp(1.75rem, 4vw, 2.5rem) auto 0; max-width: 64ch; text-align: center; font-family: var(--wq-display); font-weight: 500; font-size: clamp(1.1rem, 2.5vw, 1.4rem); line-height: 1.4; color: var(--wq-ink); }
@media (max-width: 880px) { .wq-econ__grid { grid-template-columns: 1fr; } }

/* FAQ accordion (core <details>) used in the Avatar Page pattern */
.wq-faq-item { border: 1px solid var(--wq-gray-line); border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: .6rem; background: var(--wq-white); }
.wq-faq-item > summary { font-family: var(--wq-display); font-weight: 600; font-size: 1.05rem; cursor: pointer; color: var(--wq-ink); list-style-position: inside; }
.wq-faq-item[open] > summary { color: var(--wq-emerald-strong); margin-bottom: .5rem; }
.wq-faq-item p { margin: 0; color: var(--wq-gray); }

/* Footer social row */
.wq-footer__social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.wq-social { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(247,245,239,.18); color: rgba(247,245,239,.8); }
.wq-social:hover { color: var(--wq-off-white); border-color: rgba(247,245,239,.4); }
.wq-aud-card { display: flex; flex-direction: column; gap: .5rem; background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius); padding: 1.6rem 1.5rem; box-shadow: var(--wq-shadow-soft); text-decoration: none; transition: transform .3s var(--wq-ease), box-shadow .3s var(--wq-ease); }
.wq-aud-card:hover { transform: translateY(-4px); box-shadow: var(--wq-shadow-lift); }
.wq-aud-card__title { font-family: var(--wq-display); font-weight: 600; font-size: 1.2rem; margin: 0; color: var(--wq-ink); }
.wq-aud-card__desc { font-size: .95rem; line-height: 1.5; color: var(--wq-gray); margin: 0; flex: 1; }
.wq-aud-card__link { font-family: var(--wq-display); font-weight: 600; font-size: .95rem; color: var(--wq-emerald-strong); }

/* --------------------------------------------------------------------------
   Accessibility — visible focus + reduced motion
   -------------------------------------------------------------------------- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
select:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
	outline: 3px solid var(--wq-emerald); outline-offset: 2px; border-radius: 4px;
}
/* Brighter ring on dark surfaces so it stays visible. */
.wq-section--dark a:focus-visible, .wq-section--dark button:focus-visible,
.wq-hero a:focus-visible, .wq-seg-hero a:focus-visible,
.wq-header a:focus-visible, .wq-header button:focus-visible,
.wq-footer a:focus-visible { outline-color: #6ee7b7; }

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

/* --------------------------------------------------------------------------
   Motion layer — reveal, parallax, float. Opt-in: only active with JS AND when
   the user has NOT requested reduced motion. Content is fully visible otherwise.
   -------------------------------------------------------------------------- */
@keyframes wq-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: no-preference) {
	/* Default state == final visible state. Reveals are a pure ENHANCEMENT:
	   the entrance plays as a keyframe only once JS adds .is-in. If the motion
	   JS never runs (blocked/failed/old browser), everything is simply shown. */
	.wq-js [data-wq-reveal].is-in {
		animation: wq-reveal-in var(--wq-dur) var(--wq-ease) both;
	}

	/* Revenue stack: layers slide/scale in one after another.
	   Default state == final visible state (no hidden default), so if the
	   IntersectionObserver never fires the stack is simply shown correctly.
	   The entrance is a keyframe animation that only runs once .is-in lands. */
	.wq-js .wq-stack[data-wq-stack].is-in .wq-layer {
		animation: wq-layer-in .6s var(--wq-ease) both;
		animation-delay: calc(var(--wq-i, 1) * .08s);
	}
	.wq-js .wq-stack[data-wq-stack].is-in .wq-stack__lock {
		animation: wq-lock-in .6s var(--wq-ease) .55s both;
	}

	/* Bars & meters: start empty and grow to their final width on reveal.
	   Only when motion JS is active — otherwise the defaults above show them
	   filled. */
	.wq-js .wq-bar__fill { width: 0; transition: width 1.1s var(--wq-ease); }
	.wq-js .is-in .wq-bar__fill { width: var(--wq-bar); }
	.wq-js .wq-meter__fill { width: 0; transition: width 1.2s var(--wq-ease); }
	.wq-js .is-in .wq-meter__fill { width: var(--wq-meter); }

	/* Hero float + parallax */
	.wq-js [data-wq-float] { animation: wq-float 6s ease-in-out infinite; animation-delay: var(--wq-delay, 0s); }
	.wq-js .wq-hero__visual { transform: translateY(var(--wq-parallax, 0px)); transition: transform .1s linear; }
}

@keyframes wq-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes wq-reveal-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Elegant per-card stagger for the card grids: the container just fades as the
   trigger, and its cards rise in sequence (not one heavy block). Cards are
   visible by default, so with JS off / reduced motion nothing is hidden. */
@media (prefers-reduced-motion: no-preference) {
	.wq-js .wq-loop__grid[data-wq-reveal].is-in,
	.wq-js .wq-trust__grid[data-wq-reveal].is-in,
	.wq-js .wq-math__tiers[data-wq-reveal].is-in,
	.wq-js .wq-tl__track[data-wq-reveal].is-in { animation: none; }
	.wq-js .wq-loop__grid.is-in .wq-loop__step,
	.wq-js .wq-trust__grid.is-in .wq-trust__card,
	.wq-js .wq-tl__track.is-in .wq-tl__step { animation: wq-reveal-in .66s var(--wq-ease) both; }
	.wq-js .wq-loop__grid.is-in .wq-loop__step:nth-of-type(2),
	.wq-js .wq-trust__grid.is-in .wq-trust__card:nth-of-type(2),
	.wq-js .wq-tl__track.is-in .wq-tl__step:nth-of-type(2) { animation-delay: .09s; }
	.wq-js .wq-loop__grid.is-in .wq-loop__step:nth-of-type(3),
	.wq-js .wq-trust__grid.is-in .wq-trust__card:nth-of-type(3),
	.wq-js .wq-tl__track.is-in .wq-tl__step:nth-of-type(3) { animation-delay: .18s; }
	.wq-js .wq-loop__grid.is-in .wq-loop__step:nth-of-type(4) { animation-delay: .27s; }
	/* Economics tiers cascade too. */
	.wq-js .wq-math__tiers.is-in .wq-math__tier { animation: wq-reveal-in .66s var(--wq-ease) both; }
	.wq-js .wq-math__tiers.is-in .wq-math__tier--mid { animation-delay: .1s; }
	.wq-js .wq-math__tiers.is-in .wq-math__tier--top { animation-delay: .2s; }
}
@keyframes wq-layer-in { from { opacity: 0; transform: translateY(26px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes wq-lock-in { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
	.wq-hero__inner { grid-template-columns: 1fr; text-align: left; }
	.wq-hero__visual { margin-top: 1rem; }
	.wq-zero__inner { grid-template-columns: 1fr; }
	.wq-pricing__layout { grid-template-columns: 1fr; }
	.wq-catalog__grid { grid-template-columns: repeat(2, 1fr); }
	.wq-cred__grid { grid-template-columns: repeat(2, 1fr); }
	.wq-steps { grid-template-columns: repeat(2, 1fr); }
	.wq-step__rail { display: none; }
	.wq-mock__body { grid-template-columns: 1fr; }
	.wq-mock__side { flex-direction: row; flex-wrap: wrap; gap: 4px; }
	.wq-revmodel__grid { grid-template-columns: repeat(2, 1fr); }
	.wq-calc__grid { grid-template-columns: 1fr; }
	.wq-diy__grid { grid-template-columns: repeat(2, 1fr); }
	.wq-engine__grid { grid-template-columns: repeat(2, 1fr); }
	.wq-why__grid, .wq-audiences__grid { grid-template-columns: repeat(2, 1fr); }
	.wq-wif__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.wq-compare__grid { grid-template-columns: 1fr; }
	.wq-catalog__grid { grid-template-columns: 1fr; }
	.wq-revmodel__grid { grid-template-columns: 1fr; }
	.wq-diy__grid { grid-template-columns: 1fr; }
	.wq-engine__grid { grid-template-columns: 1fr; }
	.wq-howto__grid { grid-template-columns: 1fr; }
	.wq-why__grid { grid-template-columns: 1fr; }
	.wq-audiences__grid { grid-template-columns: 1fr; }
	.wq-wif__grid { grid-template-columns: 1fr; }
	.wq-engine__stats { grid-template-columns: 1fr; gap: 1.25rem; }
	.wq-cred__grid { grid-template-columns: 1fr; }
	.wq-cred__strip { grid-template-columns: repeat(2, 1fr); }
	.wq-steps { grid-template-columns: 1fr; }
	.wq-layer { grid-template-columns: auto 1fr; row-gap: .5rem; }
	.wq-layer__icon { grid-row: span 2; }
	.wq-layer__tag { grid-column: 2; justify-self: start; }
	.wq-meter__row { grid-template-columns: 90px 1fr auto; }
	.wq-device--mini { right: 0; }
	.wq-mock__cards { grid-template-columns: 1fr; }
	.wq-mock__tr { grid-template-columns: 1.4fr 1fr .8fr; font-size: .8rem; padding: 9px 12px; }
	.wq-addon__head { flex-wrap: wrap; }
	.wq-plan { padding: 1.6rem; }
	.wq-section__intro { font-size: 1.02rem; }
}
@media (max-width: 480px) {
	.wq-section { padding-block: clamp(2.5rem, 12vw, 3.5rem); }
	.wq-section__title { font-size: clamp(1.6rem, 7.4vw, 2.05rem); }
	.wq-hero .wq-hero__title { font-size: clamp(2rem, 9vw, 2.6rem); }
	.wq-finalcta__title { font-size: clamp(1.7rem, 7.8vw, 2.1rem); }
	.wq-page-hero__title { font-size: clamp(1.8rem, 8vw, 2.3rem); }
	.wq-cred__strip { grid-template-columns: 1fr 1fr; gap: 1.25rem 1rem; }
	/* Full-width, easy-to-tap CTAs */
	.wq-hero__cta, .wq-finalcta__actions { width: 100%; flex-direction: column; }
	.wq-hero__cta .wq-btn, .wq-finalcta__actions .wq-btn { width: 100%; justify-content: center; }
	/* Tabs stretch to fill the row */
	.wq-tabs__nav { width: 100%; }
	.wq-tabs__btn { flex: 1 1 auto; text-align: center; padding-inline: .6rem; }
	/* Footer: brand spans full width, link columns share two columns. */
	.wq-footer__top { grid-template-columns: 1fr 1fr; gap: 1.75rem 2.5rem; }
	.wq-footer__brandcol { grid-column: 1 / -1; max-width: none; }
	.wq-badge-row { gap: .5rem; }
}

/* --------------------------------------------------------------------------
   Data-driven pages (/programs, /outcomes, /platform, /for, hubs)
   -------------------------------------------------------------------------- */
.wq-main--page { display: block; }
.wq-crumbs { background: var(--wq-ink); }
.wq-crumbs .wq-container { padding-block: .75rem; font-size: .82rem; color: rgba(247,245,239,.6); }
.wq-crumbs a { color: rgba(247,245,239,.75); text-decoration: none; }
.wq-crumbs a:hover { color: var(--wq-off-white); }
.wq-crumbs span { margin: 0 .4rem; }
.wq-crumbs__here { color: rgba(247,245,239,.85); }
.wq-eyebrow__ico { width: 16px; height: 16px; vertical-align: -2px; }

.wq-pp .wq-section__title { margin-top: 0; }
.wq-pp__body, .wq-section__intro { color: var(--wq-gray); }
.wq-pp__body { font-size: 1.05rem; line-height: 1.7; }
.wq-pp__stat { margin-top: 1rem; font-size: 1.05rem; }
.wq-pp__stat strong { font-family: var(--wq-display); color: var(--wq-emerald-strong); font-size: 1.4rem; }

/* How-it-works steps */
.wq-pp-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.wq-pp-step { background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius); padding: 1.5rem; box-shadow: var(--wq-shadow-soft); }
.wq-pp-step__n { font-family: var(--wq-display); font-weight: 700; font-size: .8rem; letter-spacing: .1em; color: var(--wq-emerald); }
.wq-pp-step__t { font-family: var(--wq-display); font-weight: 600; font-size: 1.1rem; margin: .5rem 0 .4rem; color: var(--wq-ink); }
.wq-pp-step__d { font-size: .95rem; line-height: 1.55; color: var(--wq-gray); margin: 0; }

/* Included grid */
.wq-pp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.wq-pp-card { background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius); padding: 1.4rem 1.35rem; box-shadow: var(--wq-shadow-soft); }
.wq-pp-card__t { font-family: var(--wq-display); font-weight: 600; font-size: 1.05rem; margin: 0 0 .4rem; color: var(--wq-ink); }
.wq-pp-card__d { font-size: .92rem; line-height: 1.5; color: var(--wq-gray); margin: 0; }

/* Proof */
.wq-pp--proof { background: var(--wq-off-white-2); text-align: center; }
.wq-pp-proof__stat { font-family: var(--wq-display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--wq-emerald-strong); margin: 0; line-height: 1.05; }
.wq-pp-proof__k { font-family: var(--wq-display); font-weight: 600; color: var(--wq-ink); margin: .3rem 0 1rem; }
.wq-pp-proof__body { color: var(--wq-gray); max-width: 60ch; margin: 0 auto; font-size: 1.05rem; line-height: 1.6; }

/* Shared economics band */
.wq-pp-econ { background: var(--wq-ink); color: var(--wq-off-white); }
.wq-pp-econ .wq-eyebrow { color: var(--wq-emerald-soft); }
.wq-pp-econ .wq-section__title { color: var(--wq-off-white); }
.wq-pp-econ__lead { color: rgba(247,245,239,.82); font-size: 1.1rem; line-height: 1.6; max-width: 70ch; margin: .6rem 0 0; }
.wq-pp-econ__lead strong { color: var(--wq-off-white); }

/* Cross-links */
.wq-pp-cross { background: var(--wq-off-white-2); }
.wq-pp-cross__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .75rem; }
.wq-pp-cross__card { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: 12px; padding: 1rem 1.2rem; text-decoration: none; font-family: var(--wq-display); font-weight: 600; color: var(--wq-ink); transition: transform .25s var(--wq-ease), box-shadow .25s var(--wq-ease), border-color .25s var(--wq-ease); }
.wq-pp-cross__card:hover { transform: translateY(-3px); box-shadow: var(--wq-shadow-lift); border-color: var(--wq-emerald); color: var(--wq-emerald-strong); }

/* FAQ section reuses .wq-faq-item (defined above) */
.wq-pp-faq .wq-faq-item { max-width: none; }

/* Regulatory note */
.wq-pp-reg { padding-block: clamp(1.5rem, 3vw, 2.25rem); }
.wq-pp-reg__note { font-size: .8rem; line-height: 1.6; color: var(--wq-gray); margin: 0; }

@media (max-width: 880px) {
	.wq-pp-steps, .wq-pp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.wq-pp-steps, .wq-pp-grid { grid-template-columns: 1fr; }
}

/* Footer grid reflow on mid screens */
@media (max-width: 860px) {
	.wq-footer__top { grid-template-columns: 1fr 1fr; }
	.wq-footer__brandcol { grid-column: 1 / -1; max-width: none; }
}

/* ==========================================================================
   Homepage rebuild — section modules (Linear/Stripe-caliber, brand tokens)
   ========================================================================== */

/* Hero benefit chips */
.wq-hero__chips { list-style: none; margin: 1.4rem 0 1.75rem; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.wq-hero__chips li { display: flex; align-items: center; gap: .6rem; font-size: 1rem; color: rgba(247,245,239,.92); }
.wq-hero__chips svg { flex: none; width: 20px; height: 20px; padding: 3px; border-radius: 999px; background: rgba(79,211,160,.16); fill: none; stroke: #4fd3a0; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.wq-app__recnote { font-size: .72rem; color: var(--wq-gray); }

/* How it works — value loop */
.wq-loop__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: clamp(2rem, 4vw, 3rem); }
.wq-loop__path { position: absolute; top: 34px; left: 0; width: 100%; height: 40px; color: var(--wq-emerald); pointer-events: none; }
.wq-loop__path path { stroke-dashoffset: 0; }
.wq-js [data-wq-reveal] .wq-loop__path path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.6s var(--wq-ease); }
.wq-js [data-wq-reveal].is-in .wq-loop__path path { stroke-dashoffset: 0; }
.wq-loop__step { position: relative; background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius); padding: 1.6rem 1.4rem; box-shadow: var(--wq-shadow-soft); }
.wq-loop__n { position: absolute; top: -14px; left: 1.4rem; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 999px; background: var(--wq-emerald); color: var(--wq-off-white); font-family: var(--wq-display); font-weight: 700; font-size: .85rem; box-shadow: var(--wq-shadow-emerald); }
.wq-loop__ico { width: 30px; height: 30px; color: var(--wq-emerald); margin: .4rem 0 .6rem; }
.wq-loop__step h3 { font-family: var(--wq-display); font-weight: 600; font-size: 1.2rem; margin: 0 0 .4rem; color: var(--wq-ink); }
.wq-loop__step p { font-size: .92rem; line-height: 1.55; color: var(--wq-gray); margin: 0; }

/* New path vs old path */
.wq-vs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.wq-vs__col { border-radius: var(--wq-radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); border: 1px solid var(--wq-gray-line); }
.wq-vs__col--old { background: var(--wq-off-white-2); }
.wq-vs__col--new { background: var(--wq-ink); border-color: transparent; }
.wq-vs__h { font-family: var(--wq-display); font-weight: 700; font-size: 1.3rem; margin: 0 0 1.1rem; }
.wq-vs__col--old .wq-vs__h { color: var(--wq-ink); }
.wq-vs__col--new .wq-vs__h { color: var(--wq-off-white); }
.wq-vs__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .85rem; }
.wq-vs__list li { position: relative; padding-left: 1.9rem; font-size: .98rem; line-height: 1.5; }
.wq-vs__col--old .wq-vs__list li { color: var(--wq-gray); }
.wq-vs__col--new .wq-vs__list li { color: rgba(247,245,239,.9); }
.wq-vs__list li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.wq-vs__col--old .wq-vs__list li::before { content: "\00d7"; color: #c2603f; font-size: 1.2rem; line-height: 1.2; }
.wq-vs__col--new .wq-vs__list li::before { content: "\2713"; color: #4fd3a0; }

/* Economics card */
.wq-math__card { background: var(--wq-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius-lg); box-shadow: var(--wq-shadow-lift); padding: clamp(1.6rem, 4vw, 2.75rem); }
.wq-math__permember-h { font-family: var(--wq-display); font-weight: 600; color: var(--wq-ink); margin: 0 0 .8rem; }
.wq-math__permember-h span { color: var(--wq-gray); font-weight: 400; font-size: .9rem; }
.wq-math__rows { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .4rem; max-width: 460px; }
.wq-math__rows li { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; color: var(--wq-gray); border-bottom: 1px dashed var(--wq-gray-line); padding-bottom: .4rem; }
.wq-math__perout { font-size: 1.05rem; color: var(--wq-ink); display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.wq-math__perout strong { font-family: var(--wq-display); font-size: 1.5rem; color: var(--wq-emerald-strong); }
.wq-math__perout span { font-size: .82rem; color: var(--wq-gray); }
.wq-math__tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.75rem 0 1.25rem; }
.wq-math__tier { background: var(--wq-off-white); border: 1px solid var(--wq-gray-line); border-radius: var(--wq-radius); padding: 1.5rem 1.25rem; text-align: center; }
.wq-math__tier--top { background: var(--wq-ink); border-color: transparent; }
.wq-math__tierk { display: block; font-family: var(--wq-display); font-weight: 600; font-size: .9rem; color: var(--wq-gray); }
.wq-math__tier--top .wq-math__tierk { color: rgba(247,245,239,.7); }
.wq-math__tierv { display: block; font-family: var(--wq-display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--wq-emerald-strong); margin: .25rem 0; line-height: 1; }
.wq-math__tier--top .wq-math__tierv { color: #4fd3a0; }
.wq-math__per { font-size: .9rem; font-weight: 500; color: var(--wq-gray); }
.wq-math__tier--top .wq-math__per { color: rgba(247,245,239,.6); }
.wq-math__tiernote { font-size: .78rem; color: var(--wq-gray); }
.wq-math__tier--top .wq-math__tiernote { color: rgba(247,245,239,.6); }
.wq-math__upside { font-size: .92rem; color: var(--wq-ink); background: var(--wq-emerald-soft); border-radius: 10px; padding: .8rem 1rem; margin: 0 0 1rem; }
.wq-math__disc { font-size: .78rem; line-height: 1.55; color: var(--wq-gray); margin: 0; }

/* Trust / HIPAA (dark) */
.wq-trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.wq-trust__card { background: rgba(255,255,255,.04); border: 1px solid rgba(247,245,239,.12); border-radius: var(--wq-radius); padding: 1.6rem 1.4rem; }
.wq-trust__ico { width: 28px; height: 28px; color: #4fd3a0; margin-bottom: .7rem; }
.wq-trust__card h3 { font-family: var(--wq-display); font-weight: 600; font-size: 1.1rem; color: var(--wq-off-white); margin: 0 0 .45rem; }
.wq-trust__card p { font-size: .92rem; line-height: 1.55; color: rgba(247,245,239,.72); margin: 0; }
.wq-trust__note { font-size: .8rem; line-height: 1.6; color: rgba(247,245,239,.6); margin: 1.5rem 0 0; max-width: 90ch; }

/* Product mockups */
.wq-surf__grid { display: grid; grid-template-columns: 0.85fr 1.1fr 1.1fr; gap: 1.5rem; align-items: end; }
.wq-surf__grid--two { grid-template-columns: 1fr 1fr; align-items: stretch; max-width: 980px; margin-inline: auto; }
.wq-surf__item { margin: 0; }
.wq-surf__item figcaption { text-align: center; font-family: var(--wq-display); font-weight: 600; font-size: .95rem; color: var(--wq-gray); margin-top: .9rem; }
.wq-surf__device { background: var(--wq-ink); border: 1px solid var(--wq-gray-line); border-radius: 20px; box-shadow: var(--wq-shadow-lift); overflow: hidden; }
.wq-surf__device--phone { max-width: 240px; margin: 0 auto; border-radius: 28px; padding: .5rem; }
.wq-surf__topbar { padding: .6rem .7rem; }
.wq-surf__brand { display: inline-flex; align-items: center; gap: .4rem; color: var(--wq-off-white); font-family: var(--wq-display); font-weight: 600; font-size: .85rem; }
.wq-surf__brand i { width: 9px; height: 9px; border-radius: 999px; background: #4fd3a0; }
.wq-surf__body { background: rgba(255,255,255,.03); border-radius: 18px; padding: .9rem; display: grid; gap: .6rem; }
.wq-surf__hello { color: rgba(247,245,239,.85); font-family: var(--wq-display); font-weight: 600; margin: 0 0 .2rem; }
.wq-surf__tile { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.05); border: 1px solid rgba(247,245,239,.08); border-radius: 12px; padding: .7rem .85rem; }
.wq-surf__tk { color: rgba(247,245,239,.85); font-size: .85rem; }
.wq-surf__pill { font-size: .72rem; font-weight: 600; color: var(--wq-ink); background: #4fd3a0; border-radius: 999px; padding: .2rem .6rem; }
.wq-surf__pill--ok { background: rgba(79,211,160,.25); color: #bff0db; }
.wq-surf__muted { font-size: .72rem; color: rgba(247,245,239,.5); }
.wq-surf__chrome { display: flex; gap: .35rem; padding: .6rem .8rem; border-bottom: 1px solid rgba(247,245,239,.08); }
.wq-surf__chrome span { width: 9px; height: 9px; border-radius: 999px; background: rgba(247,245,239,.25); }
.wq-surf__portal { display: grid; grid-template-columns: 44px 1fr; min-height: 200px; }
.wq-surf__nav { background: rgba(255,255,255,.03); display: flex; flex-direction: column; gap: .6rem; padding: .8rem .5rem; }
.wq-surf__nav i { width: 20px; height: 20px; border-radius: 6px; background: rgba(247,245,239,.12); }
.wq-surf__main { padding: 1rem; }
.wq-surf__cards { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: .7rem; }
.wq-surf__c { background: rgba(255,255,255,.05); border: 1px solid rgba(247,245,239,.08); border-radius: 12px; padding: .8rem; }
.wq-surf__c span { display: block; font-size: .72rem; color: rgba(247,245,239,.55); }
.wq-surf__c b { font-family: var(--wq-display); font-weight: 600; font-size: .9rem; color: var(--wq-off-white); }
.wq-surf__cc { padding: 1rem; min-height: 200px; }
.wq-surf__cc-h { font-family: var(--wq-display); font-weight: 600; color: var(--wq-off-white); margin: 0 0 .8rem; }
.wq-surf__cc-h span { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(247,245,239,.4); margin-left: .4rem; }
.wq-surf__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.wq-surf__stat { background: rgba(255,255,255,.05); border-radius: 10px; padding: .7rem; }
.wq-surf__stat span { display: block; font-size: .68rem; color: rgba(247,245,239,.55); }
.wq-surf__stat b { font-family: var(--wq-display); font-weight: 700; font-size: 1rem; color: #4fd3a0; }
.wq-surf__bars { display: flex; align-items: flex-end; gap: .35rem; height: 56px; margin: 1rem 0; }
.wq-surf__bars i { flex: 1; height: var(--h); background: linear-gradient(180deg, #4fd3a0, var(--wq-emerald-strong)); border-radius: 4px 4px 0 0; }
.wq-surf__rows { display: grid; gap: .4rem; }
.wq-surf__r { display: flex; justify-content: space-between; font-size: .8rem; color: rgba(247,245,239,.75); border-top: 1px solid rgba(247,245,239,.08); padding-top: .4rem; }
.wq-surf__r b { color: #4fd3a0; font-weight: 600; }

/* Timeline (weeks) */
.wq-tl__track { list-style: none; margin: clamp(2rem,4vw,3rem) 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; position: relative; }
.wq-tl__track::before { content: ""; position: absolute; top: 7px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--wq-emerald) 0%, var(--wq-gray-line) 100%); }
.wq-tl__step { position: relative; padding-top: 1.6rem; }
.wq-tl__dot { position: absolute; top: 0; left: 0; width: 16px; height: 16px; border-radius: 999px; background: var(--wq-emerald); box-shadow: 0 0 0 5px var(--wq-emerald-soft); }
.wq-tl__wk { font-family: var(--wq-display); font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--wq-emerald-strong); }
.wq-tl__step h3 { font-family: var(--wq-display); font-weight: 600; font-size: 1.2rem; margin: .3rem 0 .35rem; color: var(--wq-ink); }
.wq-tl__step p { font-size: .95rem; line-height: 1.5; color: var(--wq-gray); margin: 0; }

@media (max-width: 900px) {
	.wq-loop__grid { grid-template-columns: 1fr 1fr; }
	.wq-loop__path { display: none; }
	.wq-surf__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 680px) {
	.wq-vs__grid { grid-template-columns: 1fr; }
	.wq-math__tiers { grid-template-columns: 1fr; }
	.wq-trust__grid { grid-template-columns: 1fr; }
	.wq-tl__track { grid-template-columns: 1fr; }
	.wq-tl__track::before { display: none; }
}
@media (max-width: 480px) {
	.wq-loop__grid { grid-template-columns: 1fr; }
}

/* Mobile: render content statically — scroll-reveal entrances + stagger + float
   read janky on phones (replay flash, one-by-one pop). Desktop keeps the motion.
   Count-ups still run (JS). Fully fail-safe: everything visible. */
@media (max-width: 768px) {
	.wq-js [data-wq-reveal],
	.wq-js [data-wq-reveal].is-in,
	.wq-js .wq-loop__grid.is-in .wq-loop__step,
	.wq-js .wq-trust__grid.is-in .wq-trust__card,
	.wq-js .wq-tl__track.is-in .wq-tl__step,
	.wq-js .wq-math__tiers.is-in .wq-math__tier {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
	.wq-js [data-wq-float] { animation: none !important; }
	.wq-js .wq-loop__path path { stroke-dashoffset: 0 !important; }
}
