/**
 * Solis & Luna — layout and components.
 * Design tokens live in style.css.
 */

/* -------------------------------------------------------------------------
 * Base
 * ---------------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
	margin: 0;
	font-family: var(--sl-font);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--sl-text);
	background: var(--sl-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
	font-family: var(--sl-font-head);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -.02em;
	color: var(--sl-ink);
	margin: 0 0 .5em;
	text-wrap: balance;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--sl-brand-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--sl-ink); }

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

:focus-visible {
	outline: 3px solid var(--sl-brand);
	outline-offset: 2px;
	border-radius: 4px;
}

.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:focus {
	position: fixed;
	top: 1rem; left: 1rem;
	z-index: 999;
	width: auto; height: auto;
	clip: auto;
	padding: .75rem 1.25rem;
	background: var(--sl-ink);
	color: #fff;
	border-radius: var(--sl-radius-sm);
	text-decoration: none;
}

/* -------------------------------------------------------------------------
 * Layout primitives
 * ---------------------------------------------------------------------- */

.wrap {
	width: 100%;
	max-width: var(--sl-wrap);
	margin-inline: auto;
	padding-inline: var(--sl-gutter);
}

.wrap--tight { max-width: var(--sl-wrap-tight); }

.section { padding-block: var(--sl-section); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }

.section-head--row {
	max-width: none;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.section-kicker {
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--sl-brand-deep);
	margin-bottom: .6rem;
}

.section-kicker--light { color: var(--sl-brand-deep); }

.section-title { font-size: clamp(1.65rem, 3.4vw, 2.4rem); margin-bottom: .5rem; }
.section-title--light { color: var(--sl-ink); }
.section-title--spaced { margin-top: clamp(3rem, 6vw, 4.5rem); }

.section-lede {
	font-size: 1.075rem;
	color: var(--sl-text-soft);
	max-width: 42rem;
}

.section-link {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.layout { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
.layout--sidebar { grid-template-columns: minmax(0, 1fr); }

@media (min-width: 60rem) {
	.layout--sidebar { grid-template-columns: minmax(0, 1fr) 19rem; }
}

/* -------------------------------------------------------------------------
 * Icons
 * ---------------------------------------------------------------------- */

.icon { width: 1.35rem; height: 1.35rem; flex: 0 0 auto; }
.icon--sm { width: 1.05rem; height: 1.05rem; }
.icon--xs { width: .85rem; height: .85rem; }

/* -------------------------------------------------------------------------
 * Buttons
 * ---------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .7rem 1.3rem;
	font-family: var(--sl-font-head);
	font-size: .95rem;
	font-weight: 600;
	line-height: 1.2;
	border: 1px solid transparent;
	border-radius: 999px;
	text-decoration: none;
	cursor: pointer;
	transition: transform .12s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
	white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--lg { padding: .95rem 1.75rem; font-size: 1rem; }

.btn--primary { background: var(--sl-brand-deep); color: #fff; box-shadow: var(--sl-shadow-blue); }
.btn--primary:hover { background: var(--sl-brand-dark); color: #fff; }

.btn--solis { background: var(--sl-brand); color: #fff; }
.btn--solis:hover { background: var(--sl-brand-deep); color: #fff; }

.btn--outline { background: transparent; border-color: var(--sl-line); color: var(--sl-ink); }
.btn--outline:hover { border-color: var(--sl-ink); background: var(--sl-surface); color: var(--sl-ink); }

.btn--ghost { background: var(--sl-surface); color: var(--sl-ink); }
.btn--ghost:hover { background: var(--sl-surface-2); color: var(--sl-ink); }

.btn--ghost-light {
	background: transparent;
	border-color: rgba(255,255,255,.32);
	color: #fff;
}
.btn--ghost-light:hover { background: rgba(255,255,255,.1); color: #fff; }

.pill {
	display: inline-block;
	padding: .28rem .7rem;
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	border-radius: 999px;
	background: var(--sl-surface-2);
	color: var(--sl-text-soft);
}

.pill--solis { background: var(--sl-brand); color: var(--sl-ink); }
.pill--live  { background: rgba(18,133,95,.12); color: var(--sl-ok); }

/* -------------------------------------------------------------------------
 * Header
 * ---------------------------------------------------------------------- */

.masthead {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255,255,255,.9);
	backdrop-filter: saturate(1.6) blur(10px);
	border-bottom: 1px solid var(--sl-line-soft);
}

.masthead__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 4.5rem;
}

.brand { display: flex; align-items: center; }
.custom-logo-link { display: block; line-height: 0; }
.custom-logo { height: 2.35rem; width: auto; }

.brand__link {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	text-decoration: none;
}

.brand__logo { height: 2.5rem; width: auto; display: block; }

@media (min-width: 62rem) {
	.brand__logo { height: 2.9rem; }
}

.nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem; height: 2.75rem;
	padding: 0;
	background: transparent;
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-sm);
	cursor: pointer;
}

.nav-toggle__bars { display: grid; gap: 4px; }
.nav-toggle__bars span {
	display: block;
	width: 18px; height: 2px;
	background: var(--sl-ink);
	border-radius: 2px;
	transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav { display: none; }
.nav.is-open {
	display: block;
	position: absolute;
	inset: 100% 0 auto 0;
	background: var(--sl-bg);
	border-bottom: 1px solid var(--sl-line);
	padding: 1rem var(--sl-gutter) 1.5rem;
	box-shadow: var(--sl-shadow-lg);
}

.nav__list, .nav ul {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	gap: .25rem;
}

/*
 * Scoped to the menu list, not to .nav as a whole. `.nav a` would also match the
 * CTA button sitting in .nav__cta — and at specificity (0,1,1) it beats
 * .btn--primary (0,1,0), which repainted the button's text in the nav link
 * colour and left it dark-on-dark.
 */
.nav__list a, .nav ul a {
	display: block;
	padding: .6rem .25rem;
	font-weight: 500;
	color: var(--sl-text);
	text-decoration: none;
	border-radius: var(--sl-radius-sm);
}

.nav__list a:hover, .nav ul a:hover,
.nav .current-menu-item > a, .nav .current_page_item > a {
	color: var(--sl-ink);
	text-decoration: underline;
	text-decoration-color: var(--sl-brand);
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.nav__cta {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--sl-line-soft);
	flex-wrap: wrap;
}

.nav__phone {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-weight: 600;
	font-size: .92rem;
	color: var(--sl-ink);
	text-decoration: none;
}

@media (min-width: 62rem) {
	.nav-toggle { display: none; }

	.nav {
		display: flex !important;
		align-items: center;
		gap: 1.5rem;
		position: static;
		padding: 0;
		border: 0;
		box-shadow: none;
		background: transparent;
	}

	.nav__list { grid-auto-flow: column; gap: .35rem; align-items: center; }
	.nav__list a, .nav ul a { padding: .5rem .7rem; font-size: .93rem; }

	.nav__cta { margin: 0; padding: 0; border: 0; }
}

/* -------------------------------------------------------------------------
 * Hero
 * ---------------------------------------------------------------------- */

.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, var(--sl-brand-tint) 0%, #FFFFFF 78%);
	color: var(--sl-text);
	padding-block: clamp(3rem, 8vw, 5.5rem);
	border-bottom: 1px solid var(--sl-line-soft);
}

.hero__glow {
	position: absolute;
	top: -34%; right: -12%;
	width: 55rem; height: 55rem;
	background: radial-gradient(circle, rgba(32,168,248,.16) 0%, rgba(32,168,248,.06) 42%, transparent 68%);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

@media (min-width: 62rem) {
	.hero__inner { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); align-items: center; }
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .4rem .9rem .4rem .7rem;
	margin-bottom: 1.4rem;
	font-size: .82rem;
	font-weight: 600;
	color: var(--sl-brand-dark);
	background: #fff;
	border: 1px solid var(--sl-brand-tint2);
	border-radius: 999px;
	text-decoration: none;
	box-shadow: var(--sl-shadow);
}

.hero__badge:hover { border-color: var(--sl-brand); color: var(--sl-brand-dark); }

.hero__title {
	font-size: clamp(2.1rem, 5.4vw, 3.5rem);
	color: var(--sl-ink);
	margin-bottom: 1rem;
}

.hero__title em {
	font-style: normal;
	color: var(--sl-brand-deep);
	display: block;
}

.hero__lede {
	font-size: clamp(1.02rem, 1.7vw, 1.16rem);
	color: var(--sl-text-soft);
	max-width: 40rem;
	margin-bottom: 1.75rem;
}

.hero__prices {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
	gap: .7rem;
}

.hero__price a {
	display: block;
	padding: .85rem 1rem;
	background: #fff;
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius);
	text-decoration: none;
	transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.hero__price a:hover {
	border-color: var(--sl-brand);
	box-shadow: var(--sl-shadow-blue);
	transform: translateY(-1px);
}

.hero__price-name {
	display: block;
	font-size: .8rem;
	color: var(--sl-text-mute);
	margin-bottom: .2rem;
}

.hero__price-value {
	display: block;
	font-family: var(--sl-font-head);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--sl-ink);
	letter-spacing: -.02em;
}

.hero__price-note { font-size: .72rem; color: var(--sl-text-mute); }

.hero__payjustnow {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	font-size: .88rem;
	color: var(--sl-text-soft);
	margin-bottom: 1.75rem;
}

.hero__payjustnow .icon { color: var(--sl-brand-deep); margin-top: .18rem; }

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

.hero__card {
	padding: clamp(1.4rem, 3vw, 1.9rem);
	background: #fff;
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-lg);
	box-shadow: var(--sl-shadow-lg);
	position: relative;
	overflow: hidden;
}

/* A thin nod to the rainbow dots in the logo's heart mark. */
.hero__card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: var(--sl-spectrum);
}

.hero__card-title {
	font-size: 1.05rem;
	color: var(--sl-ink);
	margin-bottom: 1rem;
}

.hero__card-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .95rem; }

.hero__card-list li {
	display: flex;
	gap: .6rem;
	font-size: .92rem;
	line-height: 1.55;
	color: var(--sl-text-soft);
}

.hero__card-list .icon { color: var(--sl-brand); margin-top: .22rem; }
.hero__card-list strong { color: var(--sl-ink); font-weight: 600; }

/* -------------------------------------------------------------------------
 * Trust band
 * ---------------------------------------------------------------------- */

.trust { padding-block: var(--sl-section); background: var(--sl-surface); }

.trust__heading {
	font-size: clamp(1.4rem, 3vw, 2rem);
	text-align: center;
	max-width: 34rem;
	margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.trust__grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.trust__item {
	padding: 1.5rem;
	background: var(--sl-bg);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-lg);
	display: flex;
	flex-direction: column;
}

.trust__item--award { border-color: var(--sl-brand-tint2); box-shadow: var(--sl-shadow); }

.trust__kicker {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--sl-brand-deep);
	margin-bottom: .7rem;
}

.trust__title { font-size: 1.02rem; line-height: 1.35; margin-bottom: .5rem; }

.trust__blurb {
	font-size: .9rem;
	color: var(--sl-text-soft);
	margin-bottom: 1rem;
	flex: 1;
}

.ext {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .88rem;
	font-weight: 600;
	text-decoration: none;
}

.ext:hover { text-decoration: underline; }

.trust__clients { margin-top: clamp(2rem, 4vw, 3rem); text-align: center; }

.trust__clients-label {
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--sl-text-mute);
	margin-bottom: 1rem;
}

.trust__logos {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1.25rem 2.5rem;
}

.trust__logo { display: flex; align-items: center; }

/*
 * Client logos arrive in five different colourways. Desaturating them at rest
 * stops the strip becoming a rainbow that competes with the brand, and full
 * colour returns on hover.
 */
.trust__logo img {
	height: 2.6rem;
	width: auto;
	max-width: 9rem;
	object-fit: contain;
	filter: grayscale(1) contrast(1.15);
	opacity: .78;
	transition: filter .2s ease, opacity .2s ease;
}

.trust__logo img:hover { filter: grayscale(0); opacity: 1; }

.trust__logo-text {
	font-family: var(--sl-font-head);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: .04em;
	color: var(--sl-text-mute);
}

.trust__logos--large .trust__logo img { height: 3.4rem; max-width: 11rem; }
.trust__logos--large .trust__logo-text { font-size: 1.35rem; }

/* The award badge, floated into the corner of its card. */
.trust__item--award { position: relative; }

.trust__badge {
	position: absolute;
	top: .9rem; right: .9rem;
	width: 3.4rem; height: 3.4rem;
	opacity: .95;
}

.trust__item--award .trust__title { padding-right: 3.4rem; }

/* -------------------------------------------------------------------------
 * Cards
 * ---------------------------------------------------------------------- */

.cards { display: grid; gap: 1.5rem; }
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr)); }

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 1.6rem;
	background: var(--sl-bg);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-lg);
	transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}

.card:hover { box-shadow: var(--sl-shadow); transform: translateY(-2px); }

.card--featured { border-color: var(--sl-ink); box-shadow: var(--sl-shadow); }

.card__flag {
	position: absolute;
	top: -.7rem; left: 1.5rem;
	padding: .25rem .7rem;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	background: var(--sl-brand);
	color: var(--sl-ink);
	border-radius: 999px;
}

.card__head { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }

.card__title { font-size: 1.2rem; margin-bottom: .35rem; }
.card__title a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.card__title a:hover { color: var(--sl-brand-deep); }

.card__price { margin-bottom: .15rem; display: flex; align-items: baseline; gap: .45rem; flex-wrap: wrap; }

.card__price-value {
	font-family: var(--sl-font-head);
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -.03em;
	color: var(--sl-ink);
}

.card__price-note, .card__price-incl { font-size: .82rem; color: var(--sl-text-mute); }
.card__price-incl { margin-bottom: .15rem; }

.card__pjn {
	font-size: .84rem;
	font-weight: 600;
	color: var(--sl-brand-deep);
	margin-bottom: .9rem;
}

.card__tagline { font-size: .92rem; font-weight: 600; color: var(--sl-brand-deep); margin-bottom: .6rem; }

.card__summary { font-size: .93rem; color: var(--sl-text-soft); margin-bottom: 1.1rem; }

.card__stack {
	font-size: .82rem;
	color: var(--sl-text-mute);
	padding-top: .9rem;
	border-top: 1px solid var(--sl-line-soft);
}

.card__patent { font-size: .8rem; color: var(--sl-text-mute); margin-top: .4rem; }

.card__list { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: .55rem; flex: 1; }

.card__list li { display: flex; gap: .5rem; font-size: .89rem; line-height: 1.5; color: var(--sl-text-soft); }
.card__list .icon { color: var(--sl-ok); margin-top: .2rem; }

.card__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: auto; }

.card__more {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .88rem;
	font-weight: 600;
	text-decoration: none;
}

.card__more:hover { text-decoration: underline; }

/* Post cards */
.card--post { padding: 0; overflow: hidden; }
.card--post .card__inner { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card__media { display: block; line-height: 0; }
.card__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }

.card__meta {
	display: flex;
	gap: .75rem;
	font-size: .78rem;
	color: var(--sl-text-mute);
	margin-bottom: .5rem;
}

.card__cat { color: var(--sl-brand-deep); font-weight: 600; }
.card__excerpt { font-size: .9rem; color: var(--sl-text-soft); flex: 1; margin-bottom: 1rem; }
.card__more-link { margin: 0; }
.card__more-link a { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; font-size: .88rem; text-decoration: none; }

/* -------------------------------------------------------------------------
 * Why grid
 * ---------------------------------------------------------------------- */

.why { padding-block: var(--sl-section); }

.why__grid {
	display: grid;
	gap: 1.75rem 2rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.why__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem; height: 2.6rem;
	margin-bottom: .85rem;
	border-radius: var(--sl-radius-sm);
	background: var(--sl-surface);
	color: var(--sl-brand-deep);
}

.why__title { font-size: 1.05rem; margin-bottom: .45rem; }
.why__body { font-size: .93rem; color: var(--sl-text-soft); }

/* -------------------------------------------------------------------------
 * Proof / work
 * ---------------------------------------------------------------------- */

.proof { padding-block: var(--sl-section); background: var(--sl-surface); }
.proof__client { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.proof__client-heading { font-size: 1.3rem; margin-bottom: 1.25rem; }
.proof__more { margin-top: 2rem; }

.case {
	display: grid;
	gap: 1.5rem;
	padding: clamp(1.4rem, 3vw, 2rem);
	background: var(--sl-bg);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-lg);
}

@media (min-width: 48rem) {
	.case { grid-template-columns: 14rem minmax(0, 1fr); }
}

.case__client { font-size: 1.35rem; margin-bottom: .3rem; }
.case__client a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.case__client a:hover { color: var(--sl-brand-deep); }
.case__sector { font-size: .85rem; color: var(--sl-text-mute); }
.case__headline { font-size: 1.05rem; margin-bottom: .5rem; }
.case__blurb { font-size: .93rem; color: var(--sl-text-soft); margin-bottom: 1rem; }
.case__points { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.case__points li { display: flex; gap: .5rem; font-size: .89rem; color: var(--sl-text-soft); }
.case__points .icon { color: var(--sl-ok); margin-top: .2rem; }

.work { display: grid; gap: 1.5rem; }

.work__item {
	padding: clamp(1.4rem, 3vw, 2rem);
	background: var(--sl-bg);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-lg);
}

.work__head { margin-bottom: 1rem; }
.work__title { font-size: 1.45rem; margin-bottom: .25rem; }
.work__title a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.work__title a:hover { color: var(--sl-brand-deep); }
.work__tagline { font-size: .93rem; font-weight: 600; color: var(--sl-brand-deep); }
.work__headline { font-size: 1.05rem; margin-bottom: .5rem; }
.work__blurb { color: var(--sl-text-soft); margin-bottom: 1.25rem; }

.work__meta {
	display: grid;
	gap: 1rem;
	margin: 0;
	padding-top: 1.25rem;
	border-top: 1px solid var(--sl-line-soft);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
}

.work__meta dt {
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--sl-text-mute);
	margin-bottom: .25rem;
}

.work__meta dd { margin: 0; font-size: .9rem; color: var(--sl-text-soft); }

.work__points { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: .55rem; }
.work__points li { display: flex; gap: .5rem; font-size: .9rem; color: var(--sl-text-soft); }
.work__points .icon { color: var(--sl-ok); margin-top: .2rem; }

.work__clients { margin-top: 1rem; }

/* -------------------------------------------------------------------------
 * AI band
 * ---------------------------------------------------------------------- */

.ai-band {
	position: relative;
	overflow: hidden;
	padding-block: var(--sl-section);
	background: linear-gradient(135deg, var(--sl-brand-tint) 0%, #FFFFFF 60%, var(--sl-brand-tint) 100%);
	color: var(--sl-text);
	border-block: 1px solid var(--sl-line-soft);
}

.ai-band__inner { display: grid; gap: 2.5rem; align-items: center; }

@media (min-width: 62rem) {
	.ai-band__inner { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); }
}

.ai-band__lede { font-size: 1.05rem; color: var(--sl-text-soft); margin-bottom: 1.5rem; max-width: 40rem; }

.ai-band__list { list-style: none; margin: 0 0 1.75rem; padding: 0; display: grid; gap: .75rem; }
.ai-band__list li { display: flex; gap: .6rem; font-size: .95rem; color: var(--sl-text-soft); }
.ai-band__list .icon { color: var(--sl-brand); margin-top: .22rem; }

.ai-band__aside { display: none; }

@media (min-width: 62rem) {
	.ai-band__aside { display: grid; place-items: center; }
}

.ai-band__orb {
	width: min(22rem, 100%);
	aspect-ratio: 1;
	border-radius: 50%;
	background:
		radial-gradient(circle at 34% 30%, rgba(32,168,248,.45) 0%, transparent 55%),
		radial-gradient(circle at 68% 72%, rgba(108,108,229,.28) 0%, transparent 58%),
		radial-gradient(circle at 50% 50%, rgba(76,201,122,.16) 0%, transparent 62%),
		#fff;
	border: 1px solid var(--sl-brand-tint2);
	box-shadow: var(--sl-shadow-blue);
}

/* -------------------------------------------------------------------------
 * Process
 * ---------------------------------------------------------------------- */

.process { padding-block: var(--sl-section); }

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: step; }

.steps__item {
	display: grid;
	grid-template-columns: 3.5rem minmax(0, 1fr);
	gap: 1.25rem;
	padding: 1.4rem 0;
	border-top: 1px solid var(--sl-line-soft);
}

.steps__item:last-child { border-bottom: 1px solid var(--sl-line-soft); }

.steps__num {
	font-family: var(--sl-font-head);
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--sl-brand-deep);
	letter-spacing: -.02em;
}

.steps__title { font-size: 1.08rem; margin-bottom: .3rem; }
.steps__desc { font-size: .94rem; color: var(--sl-text-soft); }

/* -------------------------------------------------------------------------
 * ITSM grid
 * ---------------------------------------------------------------------- */

.itsm { padding-block: var(--sl-section); background: var(--sl-surface); }

.itsm__grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.itsm__item {
	padding: 1.5rem;
	background: var(--sl-bg);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-lg);
}

.itsm__grid--page .itsm__item { background: var(--sl-surface); }

.itsm__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem; height: 2.5rem;
	margin-bottom: .8rem;
	border-radius: var(--sl-radius-sm);
	background: var(--sl-surface-2);
	color: var(--sl-ink);
}

.itsm__grid--page .itsm__icon { background: var(--sl-bg); }

.itsm__title { font-size: 1.05rem; margin-bottom: .4rem; }
.itsm__desc { font-size: .91rem; color: var(--sl-text-soft); margin-bottom: .9rem; }
.itsm__more { margin-top: 2rem; }

/* -------------------------------------------------------------------------
 * Insights
 * ---------------------------------------------------------------------- */

.insights { padding-block: var(--sl-section); }

/* -------------------------------------------------------------------------
 * FAQ
 * ---------------------------------------------------------------------- */

.faq-section { padding-block: var(--sl-section); background: var(--sl-surface); }
.faq { margin-block: 2rem; }
.faq__title { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 1.5rem; }
.faq__list { display: grid; gap: .6rem; }

.faq__item {
	background: var(--sl-bg);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius);
	overflow: hidden;
}

.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.05rem 1.25rem;
	font-family: var(--sl-font-head);
	font-size: 1rem;
	font-weight: 600;
	color: var(--sl-ink);
	cursor: pointer;
	list-style: none;
}

.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { background: var(--sl-surface); }

.faq__chev { width: 1.15rem; height: 1.15rem; flex: 0 0 auto; transition: transform .2s ease; color: var(--sl-text-mute); }
.faq__item[open] .faq__chev { transform: rotate(180deg); }

.faq__a { padding: 0 1.25rem 1.25rem; color: var(--sl-text-soft); font-size: .95rem; }
.faq__a p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------------------
 * CTA band
 * ---------------------------------------------------------------------- */

/*
 * The one strong colour moment on the page. Everything else stays light, so a
 * single saturated band is enough to anchor the layout without weighing it down.
 */
.cta-band {
	background: linear-gradient(135deg, var(--sl-brand) 0%, var(--sl-brand-deep) 100%);
	color: var(--sl-on-brand);
	padding-block: clamp(3rem, 6vw, 4.5rem);
}

.cta-band__inner {
	display: grid;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 55rem) {
	.cta-band__inner { grid-template-columns: minmax(0, 1.6fr) auto; }
}

.cta-band__title { font-size: clamp(1.5rem, 3.2vw, 2.15rem); color: #fff; margin-bottom: .6rem; }
.cta-band__lede { color: var(--sl-on-brand-soft); max-width: 38rem; }
.cta-band .btn--solis { background: #fff; color: var(--sl-brand-dark); }
.cta-band .btn--solis:hover { background: var(--sl-brand-tint); color: var(--sl-brand-dark); }
.cta-band__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* -------------------------------------------------------------------------
 * Page head
 * ---------------------------------------------------------------------- */

.page-head {
	padding-block: clamp(2rem, 5vw, 3.25rem);
	background: var(--sl-surface);
	border-bottom: 1px solid var(--sl-line-soft);
}

.page-head__title { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: .5rem; }
.page-head__lede { font-size: 1.08rem; color: var(--sl-text-soft); max-width: 45rem; }
.page-head__lede .lede { font-size: inherit; }
.page-head__search { margin-top: 1.25rem; max-width: 30rem; }

.crumbs { margin-bottom: .85rem; }
.crumbs__list {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	font-size: .82rem;
	color: var(--sl-text-mute);
}
.crumbs__item + .crumbs__item::before { content: "/"; margin-right: .4rem; color: var(--sl-line); }
.crumbs a { color: var(--sl-text-soft); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* -------------------------------------------------------------------------
 * Prose
 * ---------------------------------------------------------------------- */

.prose { font-size: 1.03rem; color: var(--sl-text-soft); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.35rem, 2.8vw, 1.75rem); margin-top: 2em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose strong { color: var(--sl-ink); }
.prose blockquote {
	margin: 1.5em 0;
	padding: .25em 0 .25em 1.25em;
	border-left: 3px solid var(--sl-brand);
	color: var(--sl-text);
	font-size: 1.08em;
}
.prose img { border-radius: var(--sl-radius); }
.prose code {
	font-family: var(--sl-font-mono);
	font-size: .88em;
	background: var(--sl-surface);
	padding: .15em .4em;
	border-radius: 4px;
}
.prose pre {
	background: var(--sl-ink);
	color: var(--sl-text);
	padding: 1.1rem 1.25rem;
	border-radius: var(--sl-radius);
	overflow-x: auto;
}
.prose pre code { background: none; padding: 0; color: inherit; }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.prose th, .prose td { padding: .7rem .6rem; border-bottom: 1px solid var(--sl-line); text-align: left; }
.prose th { font-family: var(--sl-font-head); color: var(--sl-ink); }

.lede { font-size: 1.12rem; color: var(--sl-text-soft); }

/* -------------------------------------------------------------------------
 * Services page
 * ---------------------------------------------------------------------- */

.services { display: grid; gap: 1.5rem; }

.service {
	display: grid;
	gap: 1.5rem;
	padding: clamp(1.4rem, 3vw, 2.1rem);
	background: var(--sl-surface);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-lg);
	scroll-margin-top: 6rem;
}

@media (min-width: 48rem) {
	.service { grid-template-columns: 11rem minmax(0, 1fr); }
}

.service__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem; height: 3rem;
	margin-bottom: .9rem;
	border-radius: var(--sl-radius-sm);
	background: var(--sl-bg);
	color: var(--sl-brand-deep);
}

.service__price {
	font-family: var(--sl-font-head);
	font-size: 1.6rem;
	font-weight: 800;
	letter-spacing: -.03em;
	color: var(--sl-ink);
	margin-bottom: .1rem;
}

.service__price span { display: block; font-size: .75rem; font-weight: 500; color: var(--sl-text-mute); letter-spacing: 0; }
.service__pjn { font-size: .8rem; font-weight: 600; color: var(--sl-brand-deep); }

.service__title { font-size: 1.5rem; margin-bottom: .5rem; }
.service__summary { color: var(--sl-text-soft); margin-bottom: .75rem; }
.service__for { font-size: .92rem; color: var(--sl-text-soft); margin-bottom: 1.1rem; }
.service__for strong { color: var(--sl-ink); }

.service__list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .55rem; }
.service__list li { display: flex; gap: .5rem; font-size: .92rem; color: var(--sl-text-soft); }
.service__list .icon { color: var(--sl-ok); margin-top: .2rem; }

.service__actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin: 0; }

/* -------------------------------------------------------------------------
 * Pricing page
 * ---------------------------------------------------------------------- */

.pricing { display: grid; gap: 1.75rem; }

.pricing__item {
	padding: clamp(1.5rem, 3.5vw, 2.4rem);
	background: var(--sl-bg);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-lg);
	scroll-margin-top: 6rem;
}

.pricing__item--featured { border-color: var(--sl-ink); box-shadow: var(--sl-shadow); }

.pricing__head {
	display: grid;
	gap: 1.25rem;
	padding-bottom: 1.4rem;
	margin-bottom: 1.4rem;
	border-bottom: 1px solid var(--sl-line-soft);
}

@media (min-width: 48rem) {
	.pricing__head { grid-template-columns: minmax(0, 1fr) auto; align-items: start; }
	.pricing__cost { text-align: right; }
}

.pricing__title { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: .5rem 0 .4rem; }
.pricing__summary { color: var(--sl-text-soft); max-width: 34rem; }

.pricing__amount {
	font-family: var(--sl-font-head);
	font-size: clamp(2rem, 5vw, 2.9rem);
	font-weight: 800;
	letter-spacing: -.035em;
	color: var(--sl-ink);
	margin-bottom: 0;
	white-space: nowrap;
}

.pricing__vat, .pricing__incl { font-size: .84rem; color: var(--sl-text-mute); margin-bottom: .1rem; }

.pricing__pjn {
	margin-top: .5rem;
	font-size: .88rem;
	font-weight: 600;
	color: var(--sl-brand-deep);
}

.pricing__pjn span { display: block; font-weight: 400; font-size: .78rem; color: var(--sl-text-mute); }

.pricing__for { font-size: .95rem; color: var(--sl-text-soft); margin-bottom: 1.5rem; }
.pricing__for strong { color: var(--sl-ink); }

.pricing__cols { display: grid; gap: 1.75rem; margin-bottom: 1.75rem; }

@media (min-width: 48rem) {
	.pricing__cols { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
}

.pricing__col-title { font-size: .82rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--sl-text-mute); margin-bottom: .9rem; }

.pricing__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.pricing__list li { display: flex; gap: .5rem; font-size: .92rem; color: var(--sl-text-soft); }
.pricing__list .icon { color: var(--sl-ok); margin-top: .2rem; }

.pricing__list--muted li { padding-left: 1rem; position: relative; }
.pricing__list--muted li::before { content: "—"; position: absolute; left: 0; color: var(--sl-line); }

.pricing__note { font-size: .84rem; color: var(--sl-text-mute); margin-top: .9rem; }

.pricing__cta { margin: 0; }

.pricing__extras { margin-top: clamp(3rem, 6vw, 4.5rem); }

.notes {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
	margin-top: 1.75rem;
}

.note {
	padding: 1.4rem;
	background: var(--sl-surface);
	border-radius: var(--sl-radius-lg);
}

.note h3 { font-size: 1rem; margin-bottom: .5rem; }
.note p { font-size: .91rem; color: var(--sl-text-soft); }

/* -------------------------------------------------------------------------
 * About / credentials
 * ---------------------------------------------------------------------- */

.about__credentials { margin-block: clamp(2.5rem, 5vw, 3.5rem); }

.creds { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: 1rem; }

.creds__item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 1rem;
	padding: 1.35rem;
	background: var(--sl-surface);
	border-radius: var(--sl-radius-lg);
}

.creds__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem; height: 2.5rem;
	border-radius: var(--sl-radius-sm);
	background: var(--sl-bg);
	color: var(--sl-brand-deep);
}

.creds__title { font-size: 1rem; margin-bottom: .35rem; }
.creds__sep { color: var(--sl-text-mute); font-weight: 400; }
.creds__blurb { font-size: .9rem; color: var(--sl-text-soft); margin-bottom: .6rem; }

/* -------------------------------------------------------------------------
 * Split (AI page)
 * ---------------------------------------------------------------------- */

.split {
	display: grid;
	gap: 1.5rem;
	margin-block: clamp(2rem, 4vw, 3rem);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.split__col { padding: 1.6rem; border-radius: var(--sl-radius-lg); background: var(--sl-surface); }
.split__title { font-size: 1.1rem; margin-bottom: 1rem; }
.split__title--yes { color: var(--sl-ok); }
.split__title--no { color: var(--sl-warn); }

.split__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.split__list li { display: flex; gap: .5rem; font-size: .93rem; color: var(--sl-text-soft); }
.split__list .icon { color: var(--sl-ok); margin-top: .2rem; }
.split__list--no li { padding-left: 1.1rem; position: relative; }
.split__list--no li::before { content: "×"; position: absolute; left: 0; color: var(--sl-warn); font-weight: 700; }

/* -------------------------------------------------------------------------
 * Contact
 * ---------------------------------------------------------------------- */

.contact { display: grid; gap: 2rem; }

@media (min-width: 60rem) {
	.contact { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: start; }
}

.contact__block {
	padding: 1.5rem;
	background: var(--sl-surface);
	border-radius: var(--sl-radius-lg);
	margin-bottom: 1.25rem;
}

.contact__title { font-size: 1.05rem; margin-bottom: .9rem; }

.contact__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.contact__list li { display: flex; align-items: center; gap: .6rem; font-size: .93rem; color: var(--sl-text-soft); }
.contact__list .icon { color: var(--sl-brand-deep); }
.contact__list a { color: var(--sl-ink); text-decoration: none; font-weight: 500; }
.contact__list a:hover { text-decoration: underline; }

.contact__prices { list-style: none; margin: 0 0 .75rem; padding: 0; display: grid; gap: .5rem; }
.contact__prices li { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; color: var(--sl-text-soft); }
.contact__prices strong { color: var(--sl-ink); white-space: nowrap; }
.contact__prices-note { font-size: .8rem; color: var(--sl-text-mute); margin-bottom: .75rem; }

.contact__steps { margin: 0; padding-left: 1.2rem; display: grid; gap: .5rem; font-size: .91rem; color: var(--sl-text-soft); }
.contact__promise-note { font-size: .82rem; color: var(--sl-text-mute); margin-top: .9rem; }

/* -------------------------------------------------------------------------
 * Forms
 * ---------------------------------------------------------------------- */

.enquiry {
	padding: clamp(1.4rem, 3vw, 2rem);
	background: var(--sl-bg);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-lg);
}

.enquiry__title { font-size: 1.4rem; margin-bottom: .5rem; }
.enquiry__intro { color: var(--sl-text-soft); margin-bottom: 1.5rem; }

.enquiry__grid { display: grid; gap: 1rem; }

@media (min-width: 40rem) {
	.enquiry__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.field--full { grid-column: 1 / -1; }
}

.field { margin: 0; display: grid; gap: .35rem; }

.field label {
	font-size: .85rem;
	font-weight: 600;
	color: var(--sl-ink);
}

.req { color: var(--sl-warn); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea,
.searchform__input {
	width: 100%;
	padding: .7rem .85rem;
	font-family: inherit;
	font-size: .95rem;
	color: var(--sl-text);
	background: var(--sl-bg);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-sm);
	transition: border-color .16s ease, box-shadow .16s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.searchform__input:focus {
	outline: none;
	border-color: var(--sl-brand);
	box-shadow: 0 0 0 3px rgba(108,140,255,.18);
}

.field textarea { resize: vertical; min-height: 7rem; }

.field--consent { margin-top: 1.25rem; }

.consent {
	display: flex;
	align-items: flex-start;
	gap: .6rem;
	font-size: .87rem;
	font-weight: 400 !important;
	color: var(--sl-text-soft);
	cursor: pointer;
}

.consent input { margin-top: .28rem; flex: 0 0 auto; width: 1rem; height: 1rem; accent-color: var(--sl-ink); }

/* Honeypot — hidden from people, reachable by bots. */
.sl-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.enquiry__actions { margin-top: 1.5rem; margin-bottom: 0; }

.enquiry__status {
	margin-top: 1rem;
	font-size: .92rem;
	font-weight: 500;
}

.enquiry__status:empty { display: none; }
.enquiry__status.is-ok { color: var(--sl-ok); }
.enquiry__status.is-error { color: var(--sl-warn); }

.searchform { display: flex; gap: .5rem; }
.searchform__submit { flex: 0 0 auto; }

/* -------------------------------------------------------------------------
 * Post extras
 * ---------------------------------------------------------------------- */

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: .3rem 1rem;
	font-size: .87rem;
	color: var(--sl-text-mute);
}

.post-meta__updated { color: var(--sl-brand-deep); font-weight: 500; }

.post-hero { margin-block: 2rem 0; }
.post-hero img { width: 100%; border-radius: var(--sl-radius-lg); }

.post-tags { list-style: none; margin: 2rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.post-tags a {
	display: inline-block;
	padding: .3rem .75rem;
	font-size: .82rem;
	background: var(--sl-surface);
	border-radius: 999px;
	text-decoration: none;
	color: var(--sl-text-soft);
}

.post-nav {
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--sl-line-soft);
	font-size: .92rem;
}

.post-nav a { font-weight: 600; text-decoration: none; }
.post-nav a:hover { text-decoration: underline; }

.pagination { margin-top: 2.5rem; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: .4rem; }
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.4rem; height: 2.4rem;
	padding: 0 .7rem;
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-sm);
	text-decoration: none;
	font-size: .9rem;
	color: var(--sl-text-soft);
}
.pagination .page-numbers.current { background: var(--sl-ink); border-color: var(--sl-ink); color: #fff; }

.widget { margin-bottom: 2rem; }
.widget__title { font-size: 1rem; margin-bottom: .75rem; }
.widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: .92rem; }
.widget a { text-decoration: none; color: var(--sl-text-soft); }
.widget a:hover { color: var(--sl-ink); text-decoration: underline; }

/* -------------------------------------------------------------------------
 * Empty states
 * ---------------------------------------------------------------------- */

.empty { text-align: center; max-width: 34rem; margin-inline: auto; padding-block: clamp(2rem, 6vw, 4rem); }
.empty__code { font-family: var(--sl-font-head); font-size: 4rem; font-weight: 800; color: var(--sl-brand); margin-bottom: .25rem; }
.empty__title { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.empty__lede { color: var(--sl-text-soft); margin-bottom: 1.5rem; }
.empty__links { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; }
.empty__links a { font-weight: 600; text-decoration: none; }
.empty__search { max-width: 26rem; margin-inline: auto; }

/* -------------------------------------------------------------------------
 * Footer
 * ---------------------------------------------------------------------- */

.footer {
	background: var(--sl-surface);
	color: var(--sl-text-soft);
	border-top: 1px solid var(--sl-line);
	padding-block: clamp(2.5rem, 5vw, 4rem) 2rem;
	font-size: .93rem;
}

.footer__top {
	display: grid;
	gap: 2.25rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
	padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--sl-line);
}

@media (min-width: 62rem) {
	.footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer__logo { margin-bottom: 1rem; }
.footer__logo-img { height: 2.5rem; width: auto; display: block; }
.footer__blurb { color: var(--sl-text-soft); max-width: 24rem; margin-bottom: 1rem; }

.footer__award { display: flex; align-items: center; gap: .45rem; font-size: .87rem; }
.footer__award .icon { color: var(--sl-brand-deep); }
.footer__award a { color: var(--sl-brand-deep); text-decoration: none; font-weight: 600; }
.footer__award a:hover { text-decoration: underline; }

.footer__heading {
	font-family: var(--sl-font-head);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--sl-ink);
	margin-bottom: .9rem;
}

.footer__heading--spaced { margin-top: 1.5rem; }

.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer__list a {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	color: var(--sl-text-soft);
	text-decoration: none;
}
.footer__list a:hover { color: var(--sl-brand-deep); text-decoration: underline; }
.footer__price { color: var(--sl-brand-deep); font-weight: 600; font-size: .85rem; }

.footer__list--contact li { display: flex; align-items: center; gap: .5rem; }
.footer__list--contact .icon { color: var(--sl-brand-deep); }

.footer__social { list-style: none; margin: 1.25rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1rem; }
.footer__social a { color: var(--sl-text-soft); font-size: .87rem; text-decoration: none; }
.footer__social a:hover { color: var(--sl-brand-deep); text-decoration: underline; }

.footer__widgets { padding-block: 2rem; border-bottom: 1px solid var(--sl-line); }

.footer__bottom { padding-top: 1.75rem; display: grid; gap: 1rem; }

.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; }

.footer__copy { font-size: .85rem; color: var(--sl-text-mute); margin: 0; }
.footer__reg { margin-left: .75rem; }

.footer__legal-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; font-size: .85rem; }
.footer__legal-menu a { color: var(--sl-text-soft); text-decoration: none; }
.footer__legal-menu a:hover { color: var(--sl-brand-deep); text-decoration: underline; }

.footer__built { font-size: .84rem; color: var(--sl-text-mute); margin: 0; }
.footer__built a { color: var(--sl-brand-deep); text-decoration: none; }
.footer__built a:hover { text-decoration: underline; }

/* -------------------------------------------------------------------------
 * Print
 * ---------------------------------------------------------------------- */

@media print {
	.masthead, .footer, .cta-band, .nav, .enquiry__actions { display: none !important; }
	body { color: #000; background: #fff; }
	a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}

/* -------------------------------------------------------------------------
 * Toolkits (paid downloads)
 * ---------------------------------------------------------------------- */

.kits { display: grid; gap: 1.75rem; }

.kit {
	display: grid;
	gap: 1.75rem;
	padding: clamp(1.5rem, 3.5vw, 2.25rem);
	background: var(--sl-bg);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-lg);
	scroll-margin-top: 6rem;
}

@media (min-width: 52rem) {
	.kit { grid-template-columns: minmax(0, 1fr) 17rem; }
}

.kit__title { font-size: clamp(1.3rem, 2.8vw, 1.7rem); margin-bottom: .5rem; }
.kit__summary { color: var(--sl-text-soft); margin-bottom: .75rem; }
.kit__for { font-size: .92rem; color: var(--sl-text-soft); margin-bottom: 1.25rem; }
.kit__for strong { color: var(--sl-ink); }

.kit__contents-title {
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--sl-text-mute);
	margin-bottom: .75rem;
}

.kit__contents { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }

@media (min-width: 40rem) {
	.kit__contents { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem 1.5rem; }
}

.kit__contents li { display: flex; gap: .5rem; font-size: .89rem; color: var(--sl-text-soft); }
.kit__contents .icon { color: var(--sl-ok); margin-top: .2rem; }

.kit__buy {
	padding: 1.35rem;
	background: var(--sl-surface);
	border-radius: var(--sl-radius);
	align-self: start;
	text-align: center;
}

.kit__price { margin-bottom: 1rem; }

.kit__price-value {
	display: block;
	font-family: var(--sl-font-head);
	font-size: 2.1rem;
	font-weight: 800;
	letter-spacing: -.03em;
	color: var(--sl-ink);
}

.kit__price-note { font-size: .8rem; color: var(--sl-text-mute); }
.kit__cta { width: 100%; margin-bottom: .75rem; }

.kit__meta {
	list-style: none;
	margin: 1.25rem 0 0;
	padding-top: 1rem;
	border-top: 1px solid var(--sl-line);
	display: grid;
	gap: .5rem;
	text-align: left;
}

.kit__meta li { display: flex; gap: .45rem; font-size: .8rem; color: var(--sl-text-mute); }
.kit__meta .icon { color: var(--sl-ok); margin-top: .15rem; }

.kits__notes { margin-top: clamp(2.5rem, 5vw, 3.5rem); }

.notice-box {
	padding: 1rem 1.25rem;
	margin-bottom: 1.75rem;
	background: var(--sl-brand-tint);
	border: 1px solid var(--sl-brand-tint2);
	border-radius: var(--sl-radius);
	font-size: .93rem;
}

/* Policy links at checkout — payment providers check these are reachable. */
.sl-checkout-policies {
	font-size: .84rem;
	color: var(--sl-text-mute);
	margin-bottom: 1rem;
}

/* Toolkit bundle band */

.kit-bundle {
	display: grid;
	gap: 1.75rem;
	align-items: center;
	margin-top: 1.75rem;
	padding: clamp(1.5rem, 3.5vw, 2.25rem);
	border-radius: var(--sl-radius-lg);
	background: linear-gradient(135deg, var(--sl-brand) 0%, var(--sl-brand-deep) 100%);
	color: var(--sl-on-brand);
}

@media (min-width: 52rem) {
	.kit-bundle { grid-template-columns: minmax(0, 1fr) 15rem; }
}

.kit-bundle .section-kicker { color: #fff; opacity: .85; }
.kit-bundle__title { font-size: clamp(1.35rem, 2.8vw, 1.8rem); color: #fff; margin-bottom: .5rem; }
.kit-bundle__body { color: var(--sl-on-brand-soft); margin: 0; }

.kit-bundle__buy { text-align: center; }
.kit-bundle__price { margin-bottom: 1rem; }

.kit-bundle__was {
	display: block;
	font-size: 1rem;
	color: var(--sl-on-brand-soft);
	text-decoration: line-through;
}

.kit-bundle__now {
	display: block;
	font-family: var(--sl-font-head);
	font-size: 2.4rem;
	font-weight: 800;
	letter-spacing: -.03em;
	color: #fff;
}

.kit-bundle .kit__price-note { color: var(--sl-on-brand-soft); }
.kit-bundle .btn--solis { background: #fff; color: var(--sl-brand-dark); }
.kit-bundle .btn--solis:hover { background: var(--sl-brand-tint); color: var(--sl-brand-dark); }

/* -------------------------------------------------------------------------
 * Narrow-screen guards
 *
 * Grid and flex children default to min-width:auto, which means a single
 * unbreakable child — a nowrap button, a long word — can push its whole card
 * wider than the column and give the page a horizontal scrollbar. Measured on a
 * 320px viewport, where the toolkit card overflowed by 17px.
 * ---------------------------------------------------------------------- */

.kit,
.kit > *,
.kit-bundle > *,
.case > *,
.service > *,
.pricing__head > *,
.hero__inner > *,
.ai-band__inner > *,
.cta-band__inner > *,
.layout > * { min-width: 0; }

/*
 * Buttons stretched to the full width of their container must be allowed to
 * wrap. Their nowrap default is right for inline buttons sitting in a row, and
 * wrong the moment one is the width of a narrow card.
 */
.kit__cta,
.btn--block { white-space: normal; }

@media (max-width: 24rem) {
	/* Below ~384px the large button padding is most of the available width. */
	.btn--lg { padding: .85rem 1.15rem; font-size: .95rem; }
	.kit__buy { padding: 1.1rem; }
	.kit { padding: 1.25rem; }
}

/* -------------------------------------------------------------------------
 * Homepage toolkits band
 * ---------------------------------------------------------------------- */

.kits-band { padding-block: var(--sl-section); background: var(--sl-surface); }

.card--kit .card__price { margin-bottom: .9rem; }
.card--kit .card__price-value { font-size: 1.75rem; }

.kits-band__more {
	display: flex;
	align-items: center;
	gap: 1rem 1.5rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.kits-band__note { font-size: .87rem; color: var(--sl-text-mute); }

/* Template-terms acceptance */

.notice-box--warn { background: #FFF9F3; border-color: #F0DFCD; }

.sl-accept {
	padding: 1.1rem 1.25rem;
	margin-bottom: 1.25rem;
	background: #FFF9F3;
	border: 1px solid #F0DFCD;
	border-radius: var(--sl-radius);
	font-size: .9rem;
}

.sl-accept__title { font-weight: 700; color: var(--sl-ink); margin-bottom: .4rem; }
.sl-accept__body { color: var(--sl-text-soft); margin-bottom: .9rem; }

.sl-accept__check {
	display: flex;
	align-items: flex-start;
	gap: .6rem;
	cursor: pointer;
	color: var(--sl-text);
}

.sl-accept__check input { margin-top: .28rem; flex: 0 0 auto; width: 1rem; height: 1rem; accent-color: var(--sl-brand-deep); }
.sl-accept__note { margin-top: .9rem; font-size: .82rem; color: var(--sl-text-mute); }

/* -------------------------------------------------------------------------
 * Founders
 * ---------------------------------------------------------------------- */

.founders { margin-block: clamp(2.5rem, 5vw, 3.5rem); }

.founders__grid {
	display: grid;
	gap: 1.25rem;
	margin-top: 1.75rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.founders__grid > * { min-width: 0; }

.founder {
	padding: 1.5rem;
	background: var(--sl-surface);
	border-radius: var(--sl-radius-lg);
	position: relative;
	overflow: hidden;
}

/* The same spectrum rule as the hero card — a nod to the logo's heart mark. */
.founder::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: var(--sl-spectrum);
}

.founder__name { font-size: 1.15rem; margin-bottom: .2rem; }

.founder__role {
	font-size: .88rem;
	font-weight: 600;
	color: var(--sl-brand-deep);
	margin-bottom: .75rem;
}

.founder__expertise {
	display: block;
	font-weight: 400;
	color: var(--sl-text-mute);
	font-size: .82rem;
}

.founder__bio { font-size: .92rem; color: var(--sl-text-soft); margin-bottom: .9rem; }

.founders__bbbee {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	margin-top: 1.5rem;
	padding: .9rem 1.1rem;
	background: var(--sl-brand-tint);
	border-radius: var(--sl-radius);
	font-size: .92rem;
	color: var(--sl-text-soft);
}

.founders__bbbee .icon { color: var(--sl-brand-deep); margin-top: .2rem; }

/* -------------------------------------------------------------------------
 * Positioning band
 * ---------------------------------------------------------------------- */

.stance { background: var(--sl-surface); }

.stance__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }

.stance__title {
	font-size: clamp(1.6rem, 3.4vw, 2.4rem);
	line-height: 1.2;
	letter-spacing: -.02em;
	margin: .5rem 0 .9rem;
}

.stance__lede { color: var(--sl-text-soft); font-size: 1.02rem; }

.stance__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.25rem;
	/* 26rem rather than 21rem deliberately: at 21rem four items land three
	   across with one orphan on a second row, which reads as a mistake. This
	   forces a balanced 2x2 on desktop and stacks cleanly below ~840px. */
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr));
}

.stance__list > * { min-width: 0; }

.stance__item {
	display: flex;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--sl-bg);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius-lg);
}

.stance__num {
	font-family: var(--sl-font-head);
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--sl-brand);
	line-height: 1.3;
	flex: none;
}

.stance__item-title { font-size: 1.08rem; margin-bottom: .5rem; }
.stance__item p { color: var(--sl-text-soft); font-size: .94rem; margin-bottom: .75rem; }

.stance__proof {
	display: flex;
	align-items: flex-start;
	gap: .4rem;
	font-size: .86rem;
	color: var(--sl-brand-dark);
	background: var(--sl-brand-tint);
	padding: .5rem .7rem;
	border-radius: var(--sl-radius-sm);
	margin-bottom: 0;
}

.stance__proof .icon { margin-top: .25rem; flex: none; }

.stance__link {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .9rem;
	font-weight: 600;
	color: var(--sl-brand-deep);
	text-decoration: none;
}

.stance__link:hover { color: var(--sl-brand-dark); text-decoration: underline; }

/* -------------------------------------------------------------------------
 * Touch target sizing
 *
 * Measured on the live site at 375px: 33 links rendered under 32px tall, most
 * of them the stacked footer menus at 23px. Text links inside a paragraph are
 * judged in context and are fine, but a standalone link in a vertical list is a
 * navigation control — Google's mobile-usability guidance wants roughly 48px,
 * and anything near 23px is a genuine mis-tap risk on a phone.
 *
 * Scoped to touch pointers and small screens so the desktop rhythm of the
 * footer is unchanged.
 * ---------------------------------------------------------------------- */

@media (max-width: 860px), (hover: none) and (pointer: coarse) {

	.footer__list a,
	.footer__legal-menu a,
	.footer__contact a {
		display: inline-flex;
		align-items: center;
		min-height: 44px;
	}

	/* Standalone calls to action — "Read the coverage", "Full detail", the
	   card links. Inline-flex rather than block so they do not stretch to the
	   full column width and become an oversized hit area. */
	.ext,
	.card__more,
	.card__more-link a,
	.card__title a,
	.section-link,
	.creds__link,
	.stance__link,
	.founder__link,
	.case__client a {
		display: inline-flex;
		align-items: center;
		min-height: 44px;
	}

	/* The list items themselves no longer need their own vertical rhythm once
	   the anchors carry it, or the footer doubles in height. */
	.footer__list li,
	.footer__legal-menu li {
		margin-bottom: 0;
	}
}
