/* EDEP theme styles. No build step, plain CSS.
   Mobile-first, app-like: sticky condensing header, off-canvas drawer,
   bottom tab bar, safe-area aware, generous tap targets. */

:root {
	/* e-dependence brand: teal primary, deep teal ink, orange accent. */
	--ink: #26302e;
	--ink-soft: #50605c;
	--ink-mute: #7d8b87;
	--bg: #ffffff;
	--bg-soft: #f2f8f6;
	--bg-elevated: #ffffff;
	--line: #dde9e6;
	--brand: #2bb3a1;
	--brand-ink: #16433d;
	--accent: #f0883c;
	--deep: #16322d;

	--radius: 14px;
	--radius-sm: 10px;
	--radius-pill: 999px;

	--space: 1.25rem;
	--container: 1140px;
	--measure: 70ch;

	--header-h: 64px;
	--tabbar-h: 64px;

	--shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.06), 0 1px 3px rgba(11, 18, 32, 0.08);
	--shadow-md: 0 8px 24px rgba(11, 18, 32, 0.10);
	--shadow-lg: 0 18px 50px rgba(11, 18, 32, 0.18);

	--font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-display: "IBM Plex Mono", ui-monospace, "SF Mono", "Cascadia Mono", Menlo, monospace;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);

	--tint-mint: #e6f6f2;
	--tint-blue: #eef6f3;
	--paper: #fbfbf8;

	--safe-bottom: env(safe-area-inset-bottom, 0px);
	--safe-top: env(safe-area-inset-top, 0px);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* The hidden attribute must win over component display rules (e.g. .btn). */
[hidden] {
	display: none !important;
}

html {
	font-size: 100%;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	color: var(--ink);
	background: var(--bg);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	/* Room for the fixed mobile tab bar. */
	padding-bottom: calc(var(--tabbar-h) + var(--safe-bottom));
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--brand-ink);
	text-underline-offset: 0.15em;
}

h1, h2, h3 {
	font-weight: 700;
	line-height: 1.08;
	color: var(--ink);
}

h1 {
	font-family: var(--font-display);
	letter-spacing: -0.03em;
}

h2 {
	font-family: var(--font-body);
	letter-spacing: -0.02em;
}

h3 {
	font-family: var(--font-body);
	font-weight: 600;
	letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5vw + 1rem, 3.5rem); margin: 0 0 0.5em; }
h2 { font-size: clamp(1.6rem, 3vw + 0.7rem, 2.4rem); margin: 1.4em 0 0.5em; }
h3 { font-size: clamp(1.15rem, 1.2vw + 0.6rem, 1.4rem); margin: 1.2em 0 0.4em; }

p, ul, ol { margin: 0 0 1em; }

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--space);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 48px;
	padding: 0.7rem 1.25rem;
	border: 1px solid transparent;
	border-radius: var(--radius-pill);
	background: var(--brand);
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.12s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
	box-shadow: var(--shadow-sm);
}

.btn:hover { background: var(--brand-ink); }
.btn:active { transform: scale(0.97); }

.btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
	box-shadow: none;
}
.btn--ghost:hover { background: var(--bg-soft); }

.btn--sm { min-height: 40px; padding: 0.45rem 0.9rem; font-size: 0.95rem; }

/* Skip link / a11y */
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
}
.skip-link:focus {
	left: var(--space);
	top: calc(var(--safe-top) + 0.5rem);
	background: var(--bg);
	padding: 0.6rem 1rem;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
}

:where(a, button, [tabindex]):focus-visible {
	outline: 3px solid var(--brand);
	outline-offset: 2px;
	border-radius: 4px;
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	padding-top: var(--safe-top);
	background: var(--bg);
	background: color-mix(in srgb, var(--bg) 86%, transparent);
	-webkit-backdrop-filter: saturate(1.4) blur(12px);
	backdrop-filter: saturate(1.4) blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
	border-bottom-color: var(--line);
	box-shadow: var(--shadow-sm);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: var(--space);
	min-height: var(--header-h);
	transition: min-height 0.25s var(--ease);
}
.site-header.is-scrolled .site-header__inner { min-height: 56px; }

.site-branding { margin-right: auto; }

.site-title {
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	text-decoration: none;
	color: var(--ink);
}
.custom-logo { max-height: 36px; width: auto; }

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

/* Desktop nav */
.site-nav--desktop { display: none; }
.site-nav--desktop .nav-menu {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-nav--desktop .nav-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 0.85rem;
	border-radius: var(--radius-sm);
	color: var(--ink-soft);
	text-decoration: none;
	font-weight: 500;
	transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}
.site-nav--desktop .nav-menu a:hover { background: var(--bg-soft); color: var(--ink); }
.site-nav--desktop .nav-menu .current-menu-item > a { color: var(--brand-ink); }

/* Submenu (desktop) */
.site-nav--desktop .sub-menu {
	position: absolute;
	margin-top: 0.4rem;
	min-width: 220px;
	list-style: none;
	padding: 0.4rem;
	background: var(--bg-elevated);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.site-nav--desktop .menu-item-has-children { position: relative; }
.site-nav--desktop .menu-item-has-children:hover > .sub-menu,
.site-nav--desktop .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Hamburger */
.nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--bg);
	color: var(--ink);
	cursor: pointer;
	transition: transform 0.12s var(--ease), background-color 0.18s var(--ease);
}
.nav-toggle:active { transform: scale(0.94); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Off-canvas drawer ---------- */
.drawer {
	position: fixed;
	inset: 0;
	z-index: 200;
}
.drawer[hidden] { display: none; }

.drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(11, 18, 32, 0.45);
	opacity: 0;
	transition: opacity 0.28s var(--ease);
}
.drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: min(86vw, 360px);
	padding: calc(var(--safe-top) + 1rem) 1.25rem calc(var(--safe-bottom) + 1.25rem);
	background: var(--bg);
	box-shadow: var(--shadow-lg);
	transform: translateX(100%);
	transition: transform 0.32s var(--ease);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	overflow-y: auto;
	overscroll-behavior: contain;
}

html.is-menu-open { overflow: hidden; }
html.is-menu-open .drawer__overlay { opacity: 1; }
html.is-menu-open .drawer__panel { transform: translateX(0); }

.drawer__close {
	align-self: flex-end;
	width: 44px; height: 44px;
	display: inline-flex; align-items: center; justify-content: center;
	border: none; background: var(--bg-soft); color: var(--ink);
	border-radius: var(--radius-sm); cursor: pointer;
}
.drawer__close svg { width: 22px; height: 22px; }

.drawer .nav-menu {
	list-style: none;
	margin: 0.5rem 0 1rem;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.drawer .nav-menu a {
	display: block;
	padding: 0.85rem 0.5rem;
	min-height: 48px;
	border-radius: var(--radius-sm);
	color: var(--ink);
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
}
.drawer .nav-menu a:active { background: var(--bg-soft); }
.drawer .sub-menu {
	list-style: none;
	margin: 0 0 0 0.5rem;
	padding: 0;
	border-left: 2px solid var(--line);
}
.drawer .sub-menu a { font-size: 1rem; font-weight: 500; color: var(--ink-soft); }
.drawer__cta { margin-top: auto; }

/* ---------- Main / content ---------- */
.site-main {
	padding-block: 0;
}
/* Readable content wrapper used by the non-landing templates. The homepage
   sections are full-bleed and manage their own inner .container. */
.site-content { padding-block: clamp(2rem, 5vw, 3.5rem); }
.site-content > * { max-width: var(--measure); }
.site-content > .alignwide,
.site-content > .alignfull,
.site-content > figure { max-width: none; }

/* ---------- Blog archive ---------- */
.blog-archive { padding-block: clamp(2.5rem, 5vw, 4rem); }
.post-grid {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 640px) {
	.post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.post-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow 0.18s, transform 0.18s;
}
.post-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.09); transform: translateY(-2px); }
.post-card__img-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; }
.post-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card__body { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.4rem; flex: 1; }
.post-card__cat {
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--brand);
}
.post-card__title { font-size: 1.05rem; margin: 0; line-height: 1.3; }
.post-card__title a { color: var(--ink); text-decoration: none; }
.post-card__title a:hover { color: var(--brand); }
.post-card__excerpt { color: var(--ink-soft); font-size: 0.9rem; margin: 0; flex: 1; }
.post-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 0.75rem; }
.post-card__date { font-size: 0.82rem; color: var(--ink-mute); }
.post-card__more { font-size: 0.85rem; font-weight: 600; color: var(--brand); text-decoration: none; }
.post-card__more:hover { text-decoration: underline; }
.blog-empty { color: var(--ink-soft); padding-block: 2rem; }
.blog-pagination { margin-top: 3rem; }

/* ---------- Single post ---------- */
.post-hero {
	background: var(--deep);
	color: #fff;
	padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.post-hero .crumbs a,
.post-hero .crumbs__sep,
.post-hero .crumbs__current { color: rgba(255,255,255,0.55); }
.post-hero .crumbs a:hover { color: #fff; }
.post-hero__cat {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--brand);
	text-decoration: none;
	margin-bottom: 0.75rem;
}
.post-hero__title {
	color: #fff;
	font-size: clamp(1.6rem, 4vw, 2.75rem);
	max-width: 22ch;
	line-height: 1.2;
	margin: 0 0 1rem;
}
.post-hero__meta { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.post-hero__sep { opacity: 0.4; }

.post-featured-img { margin: 0 0 2.5rem; border-radius: var(--radius); overflow: hidden; }
.post-featured-img__img { width: 100%; height: auto; display: block; max-height: 480px; object-fit: cover; }
.post-featured-img figcaption { font-size: 0.82rem; color: var(--ink-mute); padding: 0.5rem 0 0; }

.post-wrap { padding-block: clamp(2rem, 5vw, 3.5rem); }
.post-layout { display: grid; gap: 3rem; }
@media (min-width: 860px) {
	.post-layout { grid-template-columns: 1fr 260px; align-items: start; }
}

/* Post body typography */
.post-content { min-width: 0; }
.post-content h2 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-top: 2rem; }
.post-content h3 { font-size: 1.1rem; margin-top: 1.5rem; }
.post-content p { max-width: 68ch; line-height: 1.75; margin-bottom: 1.25rem; }
.post-content ul, .post-content ol { max-width: 64ch; padding-left: 1.4rem; margin-bottom: 1.25rem; }
.post-content li { line-height: 1.7; margin-bottom: 0.3rem; }
.post-content a { color: var(--brand); }
.post-content blockquote { border-left: 3px solid var(--brand); margin: 1.5rem 0; padding: 0.5rem 1.25rem; color: var(--ink-soft); font-style: italic; }
.post-content code { font-family: var(--font-display); background: var(--bg-soft); padding: 0.15em 0.4em; border-radius: 3px; font-size: 0.88em; }
.post-content pre { background: var(--deep); color: #e2e8f0; padding: 1.25rem; border-radius: var(--radius); overflow-x: auto; font-size: 0.88rem; margin-bottom: 1.25rem; }

.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.post-tag {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border: 1px solid var(--line);
	border-radius: 99px;
	font-size: 0.82rem;
	color: var(--ink-soft);
	text-decoration: none;
	transition: border-color 0.15s, color 0.15s;
}
.post-tag:hover { border-color: var(--brand); color: var(--brand); }

/* Post aside */
.post-aside { min-width: 0; }
.post-aside__sticky { position: sticky; top: 1.5rem; display: grid; gap: 1.5rem; }
.post-author { display: flex; align-items: center; gap: 0.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.post-author__img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: top center; background: var(--brand); }
.post-author__name { display: block; font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.post-author__role { display: block; font-size: 0.8rem; color: var(--ink-soft); }
.post-aside__label {
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-mute);
	margin: 0 0 0.5rem;
}
.post-aside__cats { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.3rem; }
.post-aside__cats a { font-size: 0.9rem; color: var(--brand); text-decoration: none; }
.post-aside__cats a:hover { text-decoration: underline; }
.post-aside__cta { background: var(--bg-soft); padding: 1.25rem; border-radius: var(--radius); }
.post-aside__cta p { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 1rem; }

/* Post navigation */
.post-nav { border-top: 1px solid var(--line); padding-block: 2rem; }
.post-nav__inner { display: flex; justify-content: space-between; gap: 2rem; }
.post-nav__link { display: flex; flex-direction: column; gap: 0.25rem; text-decoration: none; max-width: 40%; }
.post-nav__link--next { align-items: flex-end; text-align: right; }
.post-nav__dir { font-size: 0.82rem; color: var(--ink-mute); }
.post-nav__ttl { font-weight: 600; color: var(--ink); font-size: 0.95rem; line-height: 1.3; }
.post-nav__link:hover .post-nav__ttl { color: var(--brand); }

/* Legacy fallback — keep old .entry styles from being broken by removes */
.entry--page .entry__header { margin-bottom: 1rem; }
.entry__meta { color: var(--ink-mute); font-size: 0.9rem; margin-top: 0.25rem; }
.entry__title { margin: 0 0 0.35rem; }
.entry__title a { color: inherit; text-decoration: none; }

.error-404 { text-align: center; padding-block: 2rem; }

/* Pagination */
.pagination, .page-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 2rem;
}
.pagination .page-numbers, .page-links a, .page-links > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px; min-height: 44px;
	padding: 0 0.6rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	text-decoration: none;
	color: var(--ink);
}
.pagination .current { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ---------- Brand logo ---------- */
.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	text-decoration: none;
	color: var(--ink);
}
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__word {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: -0.03em;
}
.brand__dot { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
	background: var(--deep);
	color: #b7c6c1;
	padding-block: clamp(2.5rem, 5vw, 3.75rem);
	font-size: 0.95rem;
}
.site-footer__top { display: grid; gap: 2rem; }
.site-footer__brand .brand { color: #fff; }
.site-footer__tagline { margin: 0.85rem 0 0; color: rgba(255, 255, 255, 0.6); font-family: var(--font-display); font-size: 0.85rem; }
.site-footer__nap {
	display: grid;
	gap: 0.4rem;
	margin: 1.25rem 0 0;
	padding: 0;
	font-style: normal;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.5;
}
.site-footer__nap a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.site-footer__nap a:hover { color: #fff; }
.site-footer__heading {
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 1rem;
}
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.site-footer__col a { color: #cdd9d5; text-decoration: none; }
.site-footer__col a:hover { color: #fff; }
.site-footer__cta-text { margin: 0 0 1.1rem; color: rgba(255, 255, 255, 0.8); }
.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__copy { margin: 0; color: rgba(255, 255, 255, 0.55); }
.site-footer__legal .footer-menu { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.site-footer__legal a { color: rgba(255, 255, 255, 0.55); text-decoration: none; }
.site-footer__legal a:hover { color: #fff; }

@media (min-width: 720px) {
	.site-footer__top { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
}
@media (min-width: 860px) {
	/* No fixed tab bar on desktop, so drop the reserved space. */
	body { padding-bottom: 0; }
}

/* ---------- Mobile bottom tab bar ---------- */
.mobile-tabbar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 150;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 1fr;
	height: calc(var(--tabbar-h) + var(--safe-bottom));
	padding-bottom: var(--safe-bottom);
	background: var(--bg);
	background: color-mix(in srgb, var(--bg) 88%, transparent);
	-webkit-backdrop-filter: saturate(1.4) blur(14px);
	backdrop-filter: saturate(1.4) blur(14px);
	border-top: 1px solid var(--line);
}
.mobile-tabbar__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	text-decoration: none;
	color: var(--ink-mute);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: color 0.16s var(--ease), transform 0.12s var(--ease);
}
.mobile-tabbar__link svg { width: 24px; height: 24px; }
.mobile-tabbar__link:active { transform: scale(0.92); }
.mobile-tabbar__link[aria-current="page"] { color: var(--brand); }

/* ---------- Responsive: desktop ---------- */
@media (min-width: 860px) {
	:root { --header-h: 72px; }
	body { padding-bottom: 0; }
	.site-nav--desktop { display: block; }
	.nav-toggle { display: none; }
	.mobile-tabbar { display: none; }
	.site-header__cta { display: inline-flex; }
}

@media (max-width: 859px) {
	/* Keep a primary CTA reachable in the header on mobile too. */
	.site-header__cta { display: none; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}

/* The site always uses the light brand design, also when the OS is in dark
   mode. (No prefers-color-scheme: dark override on purpose.) */

/* =====================================================================
   Homepage / landing
   Tinted sections lock their own light-theme variables so the
   art-directed design is unaffected by OS dark mode.
   ===================================================================== */

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1.1rem;
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
}
.kicker__dot {
	width: 9px;
	height: 9px;
	border-radius: 3px;
	background: var(--accent);
	transform: rotate(45deg);
}

.section-head { max-width: 38ch; margin-bottom: 2rem; }
.section-head h2 { margin: 0; }

/* Hand-drawn marks on keywords */
.mark { position: relative; white-space: nowrap; }
.mark svg {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	overflow: visible;
	pointer-events: none;
}
.mark--circle { padding: 0 0.15em; }
.mark--circle svg {
	top: 50%;
	width: 118%;
	height: 150%;
	transform: translate(-50%, -50%);
	color: var(--accent);
}
.mark--underline svg {
	bottom: -0.28em;
	width: 100%;
	height: 0.5em;
	color: var(--brand);
}

/* Offset-shadow button */
.btn-shadow { position: relative; display: inline-flex; justify-self: start; }
.btn-shadow::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: var(--radius-pill);
	background: var(--accent);
	transform: translate(7px, 7px);
	z-index: 0;
	transition: transform 0.18s var(--ease);
}
.btn-shadow .btn { position: relative; z-index: 1; }
.btn-shadow:hover::before { transform: translate(3px, 3px); }
.btn-shadow--light::before { background: rgba(255, 255, 255, 0.4); }

.btn--lg { min-height: 56px; padding: 0.9rem 1.6rem; font-size: 1.05rem; }
.btn--invert { background: #fff; color: var(--ink); }
.btn--invert:hover { background: #eef2ff; }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--ink);
}
.link-arrow span { transition: transform 0.18s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow--light { color: #fff; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	overflow: hidden;
	background: #fff;
	padding-block: clamp(2.5rem, 6vw, 5rem);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
/* Teal circle on the right — two-colour split effect */
.hero__bg::after {
	content: '';
	display: none;
	position: absolute;
	top: 50%;
	right: -12%;
	transform: translateY(-50%);
	width: 52%;
	aspect-ratio: 1 / 1;
	background: var(--brand);
	border-radius: 50%;
}
.hero__inner { position: relative; display: grid; gap: 2.5rem; }
.hero__copy { max-width: 38ch; }
.hero__title { margin: 0 0 1rem; }
.hero__lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; }
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem 1.5rem;
	margin-top: 1.75rem;
}
.hero__note {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: .75rem;
	font-family: var(--font-display);
	font-size: 0.85rem;
	color: var(--ink-soft);
}
.hero__note-arrow { width: 46px; height: 38px; color: var(--brand); flex: none; }

/* Hero analytics dashboard visual */
.hero__visual { display: none; position: relative; }

.hero-dash {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: calc(var(--radius) * 1.5);
	padding: 1.4rem 1.6rem;
	display: grid;
	gap: 1rem;
	max-width: 420px;
	margin-left: auto;
}

.hero-dash__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.hero-dash__title {
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: 0.02em;
}
.hero-dash__period {
	font-size: 0.75rem;
	color: var(--ink-mute);
}

.hero-dash__kpis { display: flex; gap: 1.25rem; }
.hero-dash__kpi { display: flex; flex-direction: column; gap: 0.1rem; }
.hero-dash__kpi-num {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--ink);
	line-height: 1;
}
.hero-dash__kpi-num--up { color: var(--brand); }
.hero-dash__kpi-label { font-size: 0.72rem; color: var(--ink-mute); }

.hero-dash__chart { height: 52px; }
.hero-dash__chart svg { width: 100%; height: 100%; display: block; }

.hero-dash__channels { display: grid; gap: 0.55rem; }
.hero-dash__ch { display: flex; align-items: center; gap: 0.6rem; }
.hero-dash__ch-name {
	font-family: var(--font-display);
	font-size: 0.75rem;
	color: var(--ink-soft);
	width: 70px;
	flex-shrink: 0;
}
.hero-dash__ch-track {
	flex: 1;
	height: 6px;
	background: var(--bg-soft);
	border-radius: 99px;
	overflow: hidden;
}
.hero-dash__ch-bar {
	height: 100%;
	border-radius: 99px;
	background: var(--brand);
	transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-dash__ch-bar--seo { background: var(--deep); opacity: 0.6; }
.hero-dash__ch-bar--dir { background: var(--ink-mute); opacity: 0.5; }
.hero-dash__ch-val {
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--ink);
	width: 28px;
	text-align: right;
	flex-shrink: 0;
}

.hero-dash__signal {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-top: 0.6rem;
	border-top: 1px solid var(--line);
	font-size: 0.78rem;
	color: var(--ink-soft);
}
.hero-dash__signal-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--brand);
	flex-shrink: 0;
	animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

/* Floating loop badge */
.hero-loop-badge {
	position: absolute;
	bottom: -1rem;
	right: 0;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--deep);
	color: #fff;
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 0.45rem 0.85rem;
	border-radius: 99px;
}
.hero-loop-badge__arr { color: rgba(255,255,255,0.45); }
.hero-loop-badge__act { color: var(--brand); }

/* ---------- Proof ---------- */
.proof {
	--ink: #fff;
	background: var(--deep);
	color: #fff;
	padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.proof__intro {
	font-family: var(--font-display);
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8d99b5;
	margin: 0 0 1.5rem;
}
.proof__grid { display: grid; gap: 1.75rem; }
.stat { display: grid; gap: 0.35rem; }
.stat__num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #fff;
	letter-spacing: -0.03em;
}
.stat__label { color: #b9c3da; max-width: 30ch; }

/* ---------- Services ---------- */
.services { padding-block: clamp(3rem, 6vw, 5rem); }
.card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
.card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.5rem;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-decoration: none;
	color: var(--ink);
	transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}
.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--brand);
}
.card__num {
	font-family: var(--font-display);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--accent);
	letter-spacing: 0.08em;
}
.card__title { margin: 0; }
.card__desc { margin: 0; color: var(--ink-soft); flex: 1; }
.card__cta { display: inline-flex; gap: 0.4rem; font-weight: 600; color: var(--brand-ink); }
.card__cta span { transition: transform 0.18s var(--ease); }
.card:hover .card__cta span { transform: translateX(4px); }

/* ---------- Approach ---------- */
.approach {
	--ink: #0b1220;
	--ink-soft: #46506a;
	background: var(--tint-blue);
	padding-block: clamp(3rem, 6vw, 5rem);
}
.steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.5rem;
	counter-reset: step;
}
.step {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
}
.step__num {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 0.75rem;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.2rem;
}
.step__title { margin: 0 0 0.35rem; }
.step p { margin: 0; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
	background: var(--brand);
	color: #fff;
	padding-block: clamp(2.75rem, 5vw, 4rem);
}
.cta-band__inner { display: grid; gap: 1.75rem; }
.cta-band__title { color: #fff; margin: 0 0 0.5rem; max-width: 20ch; }
.cta-band__lead { color: rgba(255, 255, 255, 0.85); margin: 0; max-width: 44ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 1.5rem; }

/* ---------- Homepage responsive ---------- */
@media (min-width: 860px) {
	.hero__bg::after { display: block; }
	.hero__inner { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 3rem; }
	.hero__visual { display: block; }
	.hero__title { font-size: clamp(3rem, 4vw + 1.5rem, 4.25rem); }
	.proof__grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
	.card-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
	.steps { grid-template-columns: repeat(3, 1fr); }
	.cta-band__inner {
		grid-template-columns: 1.2fr 0.8fr;
		align-items: center;
	}
	.cta-band__actions { justify-content: flex-end; }
}

@media (min-width: 1080px) {
	.card-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Value trio ---------- */
.value {
	--ink: #26302e;
	--ink-soft: #50605c;
	background: var(--tint-mint);
	padding-block: clamp(3rem, 6vw, 5rem);
}
.value__grid { display: grid; gap: 1.25rem; }
.value-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.75rem;
}
.value-card h3 { margin: 0 0 0.4rem; }
.value-card p { margin: 0; color: var(--ink-soft); }
.value-icon {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1rem;
	border-radius: 14px;
	background: var(--tint-mint);
	color: var(--brand-ink);
}
.value-icon svg { width: 26px; height: 26px; }

@media (min-width: 860px) {
	.value__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
	--ink: #26302e;
	--ink-soft: #50605c;
	background: var(--tint-mint);
	padding-block: clamp(2.25rem, 5vw, 3.75rem);
}
.page-hero__title { margin: 0.6rem 0 0; }
.page-hero__lead { margin: 1rem 0 0; max-width: 54ch; font-size: 1.12rem; color: var(--ink-soft); }
.crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	color: var(--ink-mute);
}
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--brand-ink); }
.crumbs__current { color: var(--ink); }

/* ---------- Service detail ---------- */
.service-intro { padding-block: clamp(2.5rem, 5vw, 4rem); }
.service-lead {
	font-family: var(--font-body);
	font-size: clamp(1.25rem, 2vw + 0.5rem, 1.6rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin: 0 0 1.75rem;
	max-width: 28ch;
}
.service-grid { display: grid; gap: 2rem; }
.service-main > * { max-width: var(--measure); }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.feature-list li {
	position: relative;
	padding-left: 2rem;
	color: var(--ink-soft);
}
.feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.15em;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background: var(--brand);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E") center / 80% no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E") center / 80% no-repeat;
}

.service-aside {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.75rem;
	align-self: start;
}
.service-aside__title { margin-top: 0; }
.mini-steps { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 1rem; }
.mini-step { display: flex; gap: 0.85rem; }
.mini-step__num {
	flex: none;
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.9rem;
}
.mini-step strong { display: block; }
.mini-step__desc { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq { padding-block: clamp(2.5rem, 5vw, 4rem); background: var(--tint-blue); }
.faq-list { display: grid; gap: 0.75rem; max-width: 760px; }
.faq-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 0 1.25rem;
}
.faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 1.1rem 2rem 1.1rem 0;
	font-family: var(--font-display);
	font-weight: 600;
	position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	color: var(--brand);
	transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 0; padding: 0 0 1.2rem; color: var(--ink-soft); max-width: 64ch; }

/* ---------- Related services ---------- */
.related-services { padding-block: clamp(2.5rem, 5vw, 3.5rem); background: var(--bg-soft); }
.related-services__heading {
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin: 0 0 1.5rem;
}
.related-services__grid { display: grid; gap: 1rem; }
.related-card {
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 0.4rem;
	padding: 1.5rem;
	background: #fff;
	border-radius: var(--radius);
	text-decoration: none;
	color: inherit;
	border: 1px solid transparent;
	transition: border-color 0.18s, box-shadow 0.18s;
}
.related-card:hover { border-color: var(--brand); box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.related-card__title { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.related-card__lead { color: var(--ink-soft); font-size: 0.9rem; }
.related-card__cta { font-size: 0.85rem; color: var(--brand); font-weight: 600; margin-top: 0.25rem; }
@media (min-width: 600px) {
	.related-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
	.service-grid { grid-template-columns: 1.6fr 0.9fr; gap: 3rem; align-items: start; }
}

/* ---------- Forms / leads ---------- */
.contact,
.scan { padding-block: clamp(2.5rem, 5vw, 4rem); }
.contact__grid,
.scan__inner { display: grid; gap: 2.5rem; }
.contact__details { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact__details a { color: var(--brand-ink); }

.lead-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.lead-form { display: grid; gap: 1.1rem; max-width: 560px; }
.field { display: grid; gap: 0.4rem; margin: 0; }
.field label { font-weight: 600; font-size: 0.95rem; }
.field__opt { color: var(--ink-mute); font-weight: 400; }
.lead-form input,
.lead-form textarea {
	width: 100%;
	font: inherit;
	color: var(--ink);
	padding: 0.8rem 0.9rem;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.lead-form input:focus,
.lead-form textarea:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(43, 179, 161, 0.18);
}
.lead-form button { cursor: pointer; border: 0; }

.lead-notice {
	margin: 0 0 1.25rem;
	padding: 0.9rem 1.1rem;
	border-radius: var(--radius-sm);
	font-weight: 500;
}
.lead-notice--ok { background: var(--tint-mint); color: var(--brand-ink); border: 1px solid var(--brand); }
.lead-notice--err { background: #fdeee4; color: #9a4a14; border: 1px solid var(--accent); }

/* Zelfscan questions */
.scan-form { max-width: 720px; }
.scan-q { border: 0; margin: 0; padding: 0; }
.scan-q legend {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.05rem;
	margin-bottom: 0.85rem;
	padding: 0;
}
.scan-options { display: grid; gap: 0.6rem; }
.scan-option {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.8rem 1rem;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease);
}
.scan-option:hover { border-color: var(--brand); }
.scan-option input { accent-color: var(--brand); width: 1.15rem; height: 1.15rem; flex: none; }
.scan-option:has(input:checked) { border-color: var(--brand); background: var(--tint-mint); }
.scan-contact { display: grid; gap: 1.1rem; }

@media (min-width: 860px) {
	.contact__grid { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: start; }
	.scan-options { grid-template-columns: repeat(2, 1fr); }
	.scan-contact { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Zelfscan questions + outcome ---------- */
.scan-q + .scan-q { margin-top: 1.75rem; }
.scan-q legend { display: flex; align-items: center; gap: 0.6rem; }
.scan-q__n {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	flex: none;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 700;
}

.scan-actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.scan-actions__hint { margin: 0; color: var(--accent); font-weight: 600; }

/* Wizard progress + navigation */
.scan-progress { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; }
.scan-progress__label { font-family: var(--font-display); font-size: 0.85rem; color: var(--ink-soft); white-space: nowrap; }
.scan-progress__label b { color: var(--ink); }
.scan-progress__track { flex: 1; height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; }
.scan-progress__fill { display: block; height: 100%; width: 20%; background: var(--brand); border-radius: 999px; transition: width 0.3s var(--ease); }
.scan-nav { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; margin-top: 1.75rem; }
#edep-prev { margin-right: auto; }
.scan-step { border: 0; margin: 0; padding: 0; }
.scan-step legend { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 1rem; }

/* Answer summary on the locked result */
.scan-summary { margin: 0 0 1.75rem; padding: 1.25rem 1.5rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.scan-summary__title { margin: 0 0 0.85rem; }
.scan-summary dl { margin: 0; display: grid; gap: 0.5rem; }
.scan-summary dt { font-weight: 600; }
.scan-summary dd { margin: 0 0 0.4rem; color: var(--ink-soft); }
.scan-summary__note { margin: 0.85rem 0 0; font-size: 0.9rem; color: var(--ink-mute); }
.scan-result .scan-contact { margin-bottom: 0.5rem; }
.scan-result .btn-shadow { margin-top: 2rem; }

.scan-result {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--line);
}

.result-card {
	border-radius: var(--radius);
	padding: 1.75rem;
	margin-bottom: 1.75rem;
	border: 1px solid var(--line);
	background: var(--bg-soft);
}
.result-card--sterk { background: var(--tint-mint); border-color: var(--brand); }
.result-card--mogelijk { background: var(--tint-blue); }
.result-card--geen { background: #fdf1e8; border-color: var(--accent); }
.result-card__badge {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	background: var(--brand-ink);
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
}
.result-card--geen .result-card__badge { background: var(--accent); }
.result-card__title { margin: 0.85rem 0 0.5rem; }
.result-card__body { margin: 0 0 0.75rem; max-width: 60ch; }
.result-card__lead { margin: 0; color: var(--ink-soft); font-weight: 500; }

/* ---------- Hero portrait (when a real photo is used) ---------- */
.hero-portrait { margin: 0 auto; max-width: 320px; position: relative; }
@media (min-width: 860px) {
	.hero-portrait { max-width: 460px; margin-left: auto; }
}
.hero-portrait__img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	background: var(--tint-mint);
}
.hero-portrait__cap {
	position: absolute;
	left: 50%;
	bottom: -1rem;
	transform: translateX(-50%);
	white-space: nowrap;
}
.hero-portrait__loop {
	display: inline-block;
	background: #fff;
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.85rem;
	padding: 0.5rem 0.9rem;
	border-radius: var(--radius-pill);
	box-shadow: var(--shadow-md);
}
.hero-portrait__loop span { color: var(--brand); margin: 0 0.15em; }

/* ---------- Tools band (home) ---------- */
.tools-band { padding-block: clamp(3rem, 6vw, 5rem); }
.tools-logobar {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
.tools-logobar__item {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.85rem 1rem;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}
.tools-logobar__mark { display: inline-flex; color: var(--brand-ink); flex: none; }
.tools-logobar__name { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; }
.tools-band__more { margin: 1.5rem 0 0; }
.tool-mark { width: 28px; height: 28px; }

@media (min-width: 640px) {
	.tools-logobar { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1080px) {
	.tools-logobar { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Tools page ---------- */
.tools-page { padding-block: clamp(2rem, 5vw, 3.5rem); }
.tools-group { margin-bottom: clamp(2rem, 4vw, 3rem); }
.tools-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.tool-card {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
}
.tool-card__mark {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1rem;
	border-radius: 14px;
	background: var(--tint-mint);
	color: var(--brand-ink);
}
.tool-card__mark .tool-mark { width: 26px; height: 26px; }
.tool-card__name { margin: 0 0 0.4rem; }
.tool-card__desc { margin: 0; color: var(--ink-soft); }

@media (min-width: 720px) {
	.tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
	.tools-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Tools on service aside ---------- */
.service-tools { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.service-tools__title { margin: 0 0 0.85rem; font-size: 1rem; }
.service-tools__list { list-style: none; margin: 0 0 0.85rem; padding: 0; display: grid; gap: 0.5rem; }
.service-tools__item { display: flex; align-items: center; gap: 0.55rem; }
.service-tools__mark { display: inline-flex; color: var(--brand-ink); flex: none; }
.service-tools__mark .tool-mark { width: 22px; height: 22px; }
.service-tools__name { font-size: 0.92rem; font-weight: 500; }

/* ---------- Sectoren (voor wie) ---------- */
.sectoren {
	background: var(--tint-blue);
	padding-block: clamp(3rem, 6vw, 5rem);
}
.sectoren__grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.sector-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
}
.sector-card__title { margin: 0 0 0.4rem; }
.sector-card__desc { margin: 0; color: var(--ink-soft); }

@media (min-width: 640px) {
	.sectoren__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
	.sectoren__grid { grid-template-columns: repeat(5, 1fr); }
	.sectoren__grid .sector-card { padding: 1.25rem; }
}

/* ---------- About (Zo werk ik personal intro) ---------- */
.about {
	background: var(--bg-soft);
	padding-block: clamp(3rem, 6vw, 5rem);
}
.about__inner {
	display: grid;
	gap: 2rem;
	align-items: center;
}
.about__portrait {
	margin: 0 auto;
	max-width: 220px;
}
.about__img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: top center;
	border-radius: var(--radius);
	background: var(--tint-mint);
}
.about__role {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--brand-ink);
	margin: 0 0 0.75rem;
}
.about__bio { margin: 0; color: var(--ink-soft); max-width: 60ch; font-size: 1.05rem; }

@media (min-width: 720px) {
	.about__inner {
		grid-template-columns: 360px 1fr;
		gap: 0;
		align-items: stretch;
		border-radius: var(--radius);
		overflow: hidden;
		padding-inline: 0; /* flush columns — overrides .container side padding */
	}
	/* Teal left column: portrait fills edge-to-edge, no inner frame */
	.about__portrait {
		background: var(--brand);
		margin: 0;
		max-width: none;
		padding: 0;
		overflow: hidden;
	}
	.about__img {
		display: block;
		width: 100%;
		height: 100%;
		min-height: 340px;
		aspect-ratio: unset;
		object-fit: cover;
		object-position: top center;
		border-radius: 0; /* card corners handle rounding */
		background: var(--brand); /* teal shows through transparent areas */
	}
	/* White right column */
	.about__copy {
		background: #fff;
		padding: 3rem 3.5rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

/* ═══════════════════════════════════════════════════════
   Server-side tagging section  (tag-management page)
   ═══════════════════════════════════════════════════════ */
.sst-section {
	padding-block: clamp(3rem, 6vw, 5rem);
	background: var(--ink);
	color: var(--bg);
}
.sst-section .section-head { margin-bottom: 1.25rem; }
.sst-section .section-head h2 { color: var(--bg); }
.sst-section .kicker { color: var(--brand); opacity: 1; }
.sst-section .kicker__dot { background: var(--brand); }
.sst-intro {
	max-width: 64ch;
	color: rgba(255,255,255,.72);
	margin-bottom: 2.5rem;
	font-size: 1.0625rem;
	line-height: 1.65;
}

/* Comparison grid: before / after */
.sst-compare {
	display: grid;
	gap: 1px;
	background: rgba(255,255,255,.1);
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 2.5rem;
}
@media (min-width: 680px) {
	.sst-compare { grid-template-columns: 1fr 1fr; }
}
.sst-compare__col {
	padding: 1.75rem 2rem;
	background: var(--ink);
}
.sst-compare__col h3 {
	font-family: var(--font-display);
	font-size: 0.8rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	margin: 0 0 1.25rem;
	color: rgba(255,255,255,.45);
}
.sst-compare__col--after { background: rgba(43,179,161,.07); }
.sst-compare__col--after h3 { color: var(--brand); }
.sst-compare__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.sst-compare__col li {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	font-size: 0.95rem;
	line-height: 1.5;
}
.sst-compare__col li::before {
	content: '';
	flex-shrink: 0;
	width: 1.1rem;
	height: 1.1rem;
	border-radius: 50%;
	margin-top: 0.175rem;
	background-size: 0.58rem;
	background-position: center;
	background-repeat: no-repeat;
}
.sst-compare__bad { color: rgba(255,255,255,.6); }
.sst-compare__bad::before {
	background-color: rgba(220,60,50,.18);
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2l8 8M10 2L2 10' stroke='%23e85c50' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E");
}
.sst-compare__good { color: rgba(255,255,255,.88); }
.sst-compare__good::before {
	background-color: rgba(43,179,161,.22);
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 6l3.5 3.5 5.5-7' stroke='%232bb3a1' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Data-flow diagram */
.sst-flow {
	display: flex;
	align-items: stretch;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
	overflow-x: auto;
	padding-bottom: 0.25rem;
}
.sst-flow__step {
	flex: 1;
	min-width: 150px;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.09);
	border-radius: var(--radius);
	padding: 1.25rem 1.4rem;
}
.sst-flow__label {
	display: block;
	font-family: var(--font-display);
	font-size: 0.88rem;
	color: var(--brand);
	font-weight: 600;
}
.sst-flow__desc {
	font-size: 0.84rem;
	color: rgba(255,255,255,.55);
	line-height: 1.45;
}
.sst-flow__arr {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	color: rgba(255,255,255,.25);
	width: 2rem;
	padding-top: 0.5rem;
}
.sst-flow__arr svg { width: 100%; height: auto; }

/* For-whom list */
.sst-for-whom { max-width: 54ch; }
.sst-for-whom h3 {
	font-size: 0.95rem;
	font-weight: 600;
	margin: 0 0 1rem;
	color: rgba(255,255,255,.85);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: var(--font-display);
}
.sst-for-whom ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.sst-for-whom li {
	padding-left: 1.6rem;
	position: relative;
	font-size: 0.95rem;
	color: rgba(255,255,255,.65);
	line-height: 1.5;
}
.sst-for-whom li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--brand);
	font-size: 0.85rem;
	top: 0.1em;
}


/* ════════════════════════════════════════════════════
   LANDING PAGE — SERVER-SIDE TAGGING
   ════════════════════════════════════════════════════ */

/* ── Hero ── */
.lp-hero {
	background: var(--deep);
	color: #fff;
	padding: 4rem 0 0;
	position: relative;
}
.lp-hero__inner {
	padding-bottom: 3.5rem;
}
.lp-hero .kicker { color: rgba(255,255,255,.5); }
.lp-hero .kicker__dot { background: var(--brand); }

.lp-hero__title {
	font-size: clamp(2rem, 5vw + 0.8rem, 3.4rem);
	color: #fff;
	margin: 0 0 1rem;
	max-width: 18ch;
}

.lp-hero__lead {
	font-size: clamp(1rem, 1.2vw + 0.5rem, 1.15rem);
	color: rgba(255,255,255,.75);
	max-width: 52ch;
	line-height: 1.65;
	margin-bottom: 2rem;
}

.lp-hero__actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.btn--ghost-light {
	background: transparent;
	border: 1.5px solid rgba(255,255,255,.35);
	color: rgba(255,255,255,.85);
}
.btn--ghost-light:hover {
	border-color: rgba(255,255,255,.7);
	color: #fff;
}

.lp-hero__wave {
	line-height: 0;
}
.lp-hero__wave svg {
	display: block;
	width: 100%;
	height: 48px;
}

/* ── Qualifying check ── */
.lp-check {
	padding: 4rem 0;
	background: #fff;
}
.lp-check__inner {
	max-width: 760px;
}
.lp-check__title {
	font-size: clamp(1.5rem, 3vw + 0.5rem, 2.2rem);
	margin-bottom: 0.5rem;
}
.lp-check__intro {
	color: var(--ink-soft);
	margin-bottom: 2rem;
}

.lp-checklist {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.lp-check__item {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: 0.85rem;
	align-items: start;
	padding: 1rem 1.25rem;
	border: 1.5px solid #dde8e5;
	border-radius: 8px;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s;
}
.lp-check__item:hover {
	border-color: var(--brand);
	background: #f4fbfa;
}
.lp-check__item:has(.lp-check__cb:checked) {
	border-color: var(--brand);
	background: #eef9f7;
}

.lp-check__cb {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.lp-check__box {
	width: 22px;
	height: 22px;
	border: 2px solid #ccd9d6;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 0.1em;
	transition: background 0.15s, border-color 0.15s;
}
.lp-check__item:has(.lp-check__cb:checked) .lp-check__box {
	background: var(--brand);
	border-color: var(--brand);
}
.lp-check__item:has(.lp-check__cb:checked) .lp-check__box::after {
	content: '';
	display: block;
	width: 5px;
	height: 9px;
	border: 2px solid #fff;
	border-top: none;
	border-left: none;
	transform: rotate(45deg) translateY(-1px);
}

.lp-check__text {
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--ink);
}
.lp-check__text strong { color: var(--ink); }

.lp-check__result {
	margin-top: 0.5rem;
}
.lp-check__result-inner {
	padding: 1.25rem 1.5rem;
	border-radius: 8px;
	border: 1.5px solid #dde8e5;
}
.lp-check__result--neutral {
	background: var(--bg-soft);
	color: var(--ink-soft);
	font-size: 0.95rem;
}
.lp-check__result--warn {
	background: #fff8f0;
	border-color: var(--accent);
}
.lp-check__result--warn p { margin-bottom: 1rem; }

.lp-check__result--yes {
	background: #eef9f7;
	border-color: var(--brand);
}
.lp-check__result--yes p { margin-bottom: 1rem; }

/* ── Vergelijking Gateway vs SST ── */
.lp-compare {
	background: var(--bg-soft);
	padding: 4rem 0;
}
.lp-compare__intro {
	color: var(--ink-soft);
	font-size: 1rem;
	max-width: 56ch;
	margin-bottom: 2.5rem;
	line-height: 1.65;
}
.lp-compare__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}
@media (max-width: 680px) {
	.lp-compare__grid { grid-template-columns: 1fr; }
}

.lp-compare__card {
	background: #fff;
	border: 1.5px solid #dde8e5;
	border-radius: 10px;
	padding: 1.75rem;
}
.lp-compare__card--featured {
	border-color: var(--brand);
	box-shadow: 0 4px 20px rgba(43,179,161,.12);
}

.lp-compare__card-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.35rem;
}
.lp-compare__card-head h3 {
	margin: 0;
	font-size: 1.15rem;
}

.lp-compare__badge {
	font-family: var(--font-display);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.2rem 0.55rem;
	border-radius: 4px;
	flex-shrink: 0;
}
.lp-compare__badge--basic {
	background: #f0f4f3;
	color: var(--ink-soft);
}
.lp-compare__badge--pro {
	background: var(--brand);
	color: #fff;
}

.lp-compare__tagline {
	font-size: 0.9rem;
	color: var(--ink-soft);
	margin-bottom: 1.25rem;
	font-style: italic;
}

.lp-compare__list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem;
	display: grid;
	gap: 0.5rem;
}
.lp-compare__list li {
	font-size: 0.9rem;
	color: var(--ink);
	padding-left: 1.4rem;
	position: relative;
	line-height: 1.5;
}
.lp-compare__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--brand);
	font-weight: 700;
	font-size: 0.85rem;
}

.lp-compare__verdict {
	font-size: 0.88rem;
	line-height: 1.55;
	padding: 0.85rem 1rem;
	border-radius: 6px;
	margin-bottom: 0;
}
.lp-compare__verdict--basic {
	background: #f4f8f7;
	color: var(--ink-soft);
}
.lp-compare__verdict--pro {
	background: rgba(43,179,161,.08);
	color: var(--ink);
	margin-bottom: 1.25rem;
}

.lp-compare__cta { width: 100%; justify-content: center; }

.lp-compare__footnote {
	font-size: 0.9rem;
	color: var(--ink-soft);
	max-width: 64ch;
	line-height: 1.65;
	border-left: 3px solid var(--brand);
	padding-left: 1rem;
	margin: 0;
}

/* ── Hoe het werkt ── */
.lp-how {
	padding: 4rem 0;
	background: #fff;
}
.lp-how__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2.5rem;
}
@media (max-width: 700px) {
	.lp-how__steps { grid-template-columns: 1fr; gap: 1.5rem; }
}

.lp-how__step {
	position: relative;
	padding-top: 1rem;
}
.lp-how__num {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--brand);
	display: block;
	margin-bottom: 0.6rem;
}
.lp-how__step h3 {
	font-size: 1.1rem;
	margin: 0 0 0.5rem;
}
.lp-how__step p {
	font-size: 0.92rem;
	color: var(--ink-soft);
	line-height: 1.6;
	margin: 0;
}

/* ── Lead form ── */
.lp-form {
	background: var(--deep);
	padding: 4rem 0;
	color: #fff;
}
.lp-form .kicker { color: rgba(255,255,255,.5); }
.lp-form .kicker__dot { background: var(--brand); }

.lp-form__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}
@media (max-width: 780px) {
	.lp-form__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.lp-form__title {
	color: #fff;
	font-size: clamp(1.5rem, 3vw + 0.5rem, 2.2rem);
	margin-bottom: 1rem;
}
.lp-form__intro p {
	color: rgba(255,255,255,.75);
	line-height: 1.65;
}

.lp-form__trust {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0;
	display: grid;
	gap: 0.4rem;
}
.lp-form__trust li {
	font-size: 0.9rem;
	color: rgba(255,255,255,.7);
	display: flex;
	gap: 0.6rem;
	align-items: center;
}
.lp-form__check {
	color: var(--brand);
	font-weight: 700;
	flex-shrink: 0;
}

.lp-form__contact-alt {
	font-size: 0.88rem;
	color: rgba(255,255,255,.5);
	margin-top: 1.5rem;
	border-top: 1px solid rgba(255,255,255,.1);
	padding-top: 1.25rem;
}
.lp-form__contact-alt a {
	color: var(--brand);
}

.lp-form__form {
	background: #fff;
	border-radius: 10px;
	padding: 2rem;
}
.lp-form__form .field label { color: var(--ink); }
.lp-form__form .field input,
.lp-form__form .field textarea {
	background: #fff;
}

.btn--full { width: 100%; justify-content: center; }

/* ── Interne link vanuit services.php ── */
.sst-lp-link {
	margin-top: 1.5rem;
	font-size: 0.92rem;
	color: var(--ink-soft);
	padding: 0.85rem 1rem;
	background: rgba(43,179,161,.06);
	border-radius: 6px;
	border-left: 3px solid var(--brand);
}
.sst-lp-link a {
	color: var(--brand);
	font-weight: 600;
	white-space: nowrap;
}

/* ── Contact Guard (Turnstile-beschermd) ── */
.cg {
	display: inline-flex;
	flex-direction: column;
	gap: .35rem;
}
.cg__placeholder {
	display: flex;
	flex-direction: column;
	gap: .2rem;
	filter: blur(3px);
	user-select: none;
	pointer-events: none;
	color: inherit;
	opacity: .7;
	font-size: .95em;
	line-height: 1.4;
}
.cg__trigger {
	align-self: flex-start;
}
.cg__widget {
	min-height: 2rem;
}
.cg__revealed {
	display: flex;
	flex-direction: column;
	gap: .2rem;
}
.cg__revealed a {
	color: inherit;
	text-decoration: none;
}
.cg__revealed a:hover {
	color: var(--brand);
}
.cg--plain a { display: block; color: inherit; text-decoration: none; }
.cg--plain a:hover { color: var(--brand); }

/* ── Client gate ─────────────────────────────────────────── */
.client-gate-wrap {
	display: grid;
}

.client-gate-blur,
.client-gate-wrap > .client-gate {
	grid-area: 1 / 1;
}

.client-gate-blur {
	filter: blur(7px);
	pointer-events: none;
	user-select: none;
	opacity: 0.7;
	overflow: hidden;
	max-height: 520px;
	mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
	-webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.client-gate {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-block: 3rem;
}

.client-gate__modal {
	background: var(--bg-elevated);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 2.5rem 2rem;
	width: 100%;
	max-width: 420px;
	text-align: center;
}

.client-gate__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--tint-mint);
	color: var(--brand);
	margin-bottom: 1rem;
}

.client-gate__kicker {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin: 0 0 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
}

.client-gate__title {
	font-size: clamp(1.4rem, 3vw, 1.8rem);
	margin: 0 0 0.5rem;
}

.client-gate__lead {
	color: var(--ink-soft);
	font-size: 0.95rem;
	margin: 0 0 1.5rem;
}

.client-gate__modal #client-login-form p { margin: 0 0 0.75rem; text-align: left; }
.client-gate__modal #client-login-form label { font-size: 0.875rem; font-weight: 500; color: var(--ink); display: block; margin-bottom: 0.3rem; }
.client-gate__modal #client-login-form input[type="text"],
.client-gate__modal #client-login-form input[type="password"] {
	width: 100%;
	padding: 0.65rem 0.9rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	font-size: 1rem;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--bg);
	box-sizing: border-box;
	transition: border-color 0.15s;
}
.client-gate__modal #client-login-form input:focus { outline: none; border-color: var(--brand); }
.client-gate__modal #client-login-form .login-remember { display: flex; align-items: center; gap: 0.4rem; }
.client-gate__modal #client-login-form .login-remember label { font-weight: 400; margin: 0; }
.client-gate__modal #client-login-form input[type="submit"] {
	width: 100%;
	margin-top: 0.5rem;
	padding: 0.7rem 1.25rem;
	background: var(--brand);
	color: #fff;
	border: none;
	border-radius: var(--radius-pill);
	font-size: 1rem;
	font-weight: 600;
	font-family: var(--font-body);
	cursor: pointer;
	transition: background 0.2s;
}
.client-gate__modal #client-login-form input[type="submit"]:hover { background: var(--brand-ink); }

.client-gate__divider {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 1.5rem 0 1rem;
	color: var(--ink-mute);
	font-size: 0.85rem;
}
.client-gate__divider::before,
.client-gate__divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--line);
}

.client-gate__request-intro {
	font-size: 0.9rem;
	color: var(--ink-soft);
	margin: 0 0 0.75rem;
}

.client-gate__row {
	display: flex;
	gap: 0.5rem;
}

.client-gate__email {
	flex: 1;
	padding: 0.65rem 0.9rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--bg);
	min-width: 0;
	transition: border-color 0.15s;
}
.client-gate__email:focus { outline: none; border-color: var(--brand); }

.client-gate__submit {
	white-space: nowrap;
	font-size: 0.9rem;
	padding: 0.65rem 1rem;
}

.client-gate__confirm {
	background: var(--tint-mint);
	color: var(--brand-ink);
	border-radius: var(--radius-sm);
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	margin: 0;
}
