/*
 * Programmer Virtual - component layer.
 *
 * Direction: "Editorial Studio". Solid surfaces separated by 1px borders,
 * large tight display type, generous whitespace, numbered section labels.
 * The brand gradient is an accent only - buttons, the highlighted keyword,
 * hairline rules. No glassmorphism, no backdrop-filter anywhere.
 *
 * Every colour comes from tokens.css. No hex / rgb() / hsl() literal here.
 */

/* ===========================================================================
 * 1. Reset-lite and base
 * ======================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.65;
	background-color: var(--surface);
	color: var(--text-primary);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

img,
svg,
video,
iframe {
	display: block;
	max-width: 100%;
}

img,
video {
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

button {
	cursor: pointer;
}

a {
	color: var(--text-link);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	transition: color var(--transition), opacity var(--transition);
}

a:hover {
	color: color-mix(in srgb, var(--text-link) 78%, var(--text-primary));
}

hr {
	height: 1px;
	margin: 0;
	border: 0;
	background-color: var(--border);
}

::selection {
	background-color: color-mix(in srgb, var(--brand-primary) 20%, transparent);
	color: var(--text-primary);
}

/* Baseline focus ring. Interactive components restate it with their own
   offset so the ring never collides with a border or gradient fill. */
:focus-visible {
	outline: 2px solid var(--text-link);
	outline-offset: 2px;
	border-radius: 2px;
}

#main {
	display: block;
	scroll-margin-top: var(--header-height);
}

/* ===========================================================================
 * 2. Typography scale
 * ======================================================================== */

h1,
h2,
h3,
h4 {
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.125rem, 1.45rem + 3vw, 3.5rem);
	line-height: 1.06;
	letter-spacing: -0.032em;
	margin-bottom: 0.55em;
}

h2 {
	font-size: clamp(1.625rem, 1.25rem + 1.7vw, 2.375rem);
	letter-spacing: -0.026em;
	margin-bottom: 0.6em;
}

h3 {
	font-size: clamp(1.125rem, 1.02rem + 0.45vw, 1.375rem);
	font-weight: 700;
	letter-spacing: -0.015em;
	margin-bottom: 0.5em;
}

h4 {
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-bottom: 0.5em;
}

p {
	margin-bottom: 1rem;
	color: var(--text-secondary);
}

p:last-child {
	margin-bottom: 0;
}

strong,
b {
	font-weight: 700;
	color: var(--text-primary);
}

small {
	font-size: 0.8125rem;
}

/* Intro paragraph directly under a section heading. */
.pv-lead {
	max-width: 60ch;
	font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
	color: var(--text-secondary);
}

/* ===========================================================================
 * 3. Layout primitives
 * ======================================================================== */

.pv-container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 32px);
}

.pv-container--narrow {
	max-width: 820px;
}

.pv-section {
	padding-block: clamp(56px, 9vw, 110px);
}

.pv-section--tight {
	padding-block: clamp(40px, 6vw, 72px);
}

.pv-section--raised {
	background-color: var(--surface-raised);
	border-block: 1px solid var(--border);
}

/* Two raised sections in a row keep a hairline between them. */
.pv-section--raised + .pv-section--raised {
	border-top-width: 1px;
}

.pv-grid {
	display: grid;
	gap: 24px;
	margin-top: clamp(30px, 4vw, 46px);
}

/*
 * A lone result in a grid built for three columns would otherwise stretch
 * one card across the full section width. Capping it to a single column's
 * share of the 3-up grid keeps it at the same card scale as its siblings
 * elsewhere on the site instead of blowing it up to fill the row.
 */
.pv-grid--1 {
	grid-template-columns: minmax(0, 1fr);
	max-width: calc((var(--container) - 48px) / 3);
	margin-inline: auto;
}

.pv-grid--2,
.pv-grid--3,
.pv-grid--4 {
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.pv-grid--2,
	.pv-grid--3,
	.pv-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/*
 * The 3-up grid carries a title plus one or two sentences. Below this width a
 * third column leaves roughly 160px of measure and the copy shatters into
 * ragged lines, so the grid stays 2-up through the tablet range.
 */
@media (min-width: 960px) {
	.pv-grid--3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.pv-grid--4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* ===========================================================================
 * 4. Editorial devices - eyebrow, numbered label, gradient highlight, rule
 * ======================================================================== */

.pv-eyebrow {
	margin-bottom: 14px;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-link);
}

.pv-section-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.pv-section-label__number {
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	color: var(--text-link);
}

.pv-section-label__rule {
	flex: 0 0 auto;
	width: 24px;
	height: 1px;
	background-color: var(--border-strong);
}

/* Gradient keyword inside a display heading. Large type only - the gradient
   is tuned for >= 3:1 against the page surface, not for body copy. */
.pv-highlight {
	color: var(--text-link);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
	.pv-highlight {
		background-image: var(--brand-gradient-text);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}
}

/* Thin brand rule. The one place the full-chroma gradient is used flat. */
.pv-rule {
	width: 56px;
	height: 2px;
	border: 0;
	border-radius: var(--radius-pill);
	background-image: var(--brand-gradient);
}

/* ===========================================================================
 * 5. Buttons
 * ======================================================================== */

.pv-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 14px 26px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.005em;
	text-align: center;
	text-decoration: none;
	transition: transform var(--transition), box-shadow var(--transition),
		opacity var(--transition), border-color var(--transition),
		background-color var(--transition), color var(--transition);
}

.pv-btn:focus-visible {
	outline: 2px solid var(--text-link);
	outline-offset: 3px;
}

.pv-btn:active {
	transform: translateY(0);
}

.pv-btn--primary {
	background-image: var(--brand-gradient-cta);
	color: var(--on-brand);
}

.pv-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	color: var(--on-brand);
}

/* The border is what identifies a ghost button as a control, so it uses the
   3:1 input border rather than the lighter decorative one. */
.pv-btn--ghost {
	background-color: transparent;
	border-color: var(--border-input);
	color: var(--text-primary);
}

.pv-btn--ghost:hover {
	transform: translateY(-2px);
	border-color: var(--text-link);
	color: var(--text-primary);
	box-shadow: var(--shadow-sm);
}

.pv-btn--sm {
	min-height: 42px;
	padding: 10px 18px;
	font-size: 0.9375rem;
}

.pv-btn--block {
	display: flex;
	width: 100%;
}

.pv-btn[disabled],
.pv-btn[aria-disabled='true'] {
	cursor: not-allowed;
}

/*
 * Loading state. The label is faded out rather than removed and the spinner
 * is absolutely centred, so the button keeps its exact box - no layout shift.
 */
.pv-btn.is-loading {
	pointer-events: none;
	opacity: 0.85;
	color: transparent;
}

.pv-btn.is-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid transparent;
	border-radius: 50%;
	border-top-color: var(--on-brand);
	border-right-color: var(--on-brand);
	animation: pv-spin 700ms linear infinite;
}

.pv-btn--ghost.is-loading::after {
	border-top-color: var(--text-primary);
	border-right-color: var(--text-primary);
}

@keyframes pv-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Button group used by the hero, the 404 page and page heroes. */
.pv-actions,
.pv-hero__actions,
.pv-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

/* ===========================================================================
 * 6. Cards
 * ======================================================================== */

.pv-card {
	display: flex;
	flex-direction: column;
	padding: 28px;
	background-color: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: transform var(--transition), box-shadow var(--transition),
		border-color var(--transition);
}

.pv-section--raised .pv-card {
	background-color: var(--surface);
}

.pv-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: color-mix(in srgb, var(--text-link) 30%, var(--border));
}

.pv-card:focus-within {
	border-color: color-mix(in srgb, var(--text-link) 45%, var(--border));
}

/* Wraps the media, badges and title of a populated card so the whole
 * block opens the project detail page. "Lihat Demo" stays a separate,
 * sibling link to the external URL - an <a> may not contain another <a>. */
.pv-card__cover-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.pv-card__cover-link:focus-visible {
	outline-offset: -3px;
}

.pv-card__cover-link:hover .pv-card__title,
.pv-card__cover-link:focus-visible .pv-card__title {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.pv-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 20px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--text-link);
}

.pv-card__icon svg {
	width: 22px;
	height: 22px;
}

.pv-card__title {
	margin-bottom: 10px;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.012em;
	color: var(--text-primary);
}

.pv-card__text {
	color: var(--text-secondary);
}

.pv-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.pv-card__media {
	margin: -28px -28px 22px;
	border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
	overflow: hidden;
}

.pv-card__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

/*
 * A portfolio preview brings its own frame. Left alone it would draw a second
 * hairline directly against the card border and round its corners to a radius
 * the media box does not share, so inside a card the frame gives up the three
 * edges the card already provides and adopts the media box's own top radius.
 */
.pv-card__media > .pv-browser {
	border-top: 0;
	border-inline: 0;
	border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}

/* Arrow link that closes a card. The arrow glyph lives in CSS so markup
   stays clean; it nudges right on hover using transform only. */
.pv-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 20px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-link);
	text-decoration: none;
}

.pv-card__link::after {
	content: '\2192';
	display: inline-block;
	transition: transform var(--transition);
}

.pv-card__link:hover::after,
.pv-card:hover .pv-card__link::after {
	transform: translateX(4px);
}

.pv-card > :last-child {
	margin-bottom: 0;
}

/*
 * A meta row that closes a card stands in for the arrow link, so it takes the
 * same bottom placement: cards ending in a status badge keep their baseline
 * aligned with cards ending in a link.
 */
.pv-card > .pv-card__meta:last-child {
	margin-top: auto;
	padding-top: 20px;
}

/* --- Feature row ----------------------------------------------------------
 * The borderless counterpart to the card grid, for a set of statements that
 * are read rather than clicked. Card chrome would promise an affordance that
 * is not there, so the entries sit straight on the section surface: a single
 * hairline sets the column rhythm and the icon carries the weight the border
 * used to. Column behaviour is inherited from .pv-grid--3.
 */

.pv-features {
	--pv-feature-icon: clamp(28px, 2.4vw, 32px);
	gap: clamp(30px, 3.4vw, 44px) clamp(26px, 3vw, 40px);
}

.pv-feature {
	padding-top: clamp(20px, 1.8vw, 26px);
	border-top: 1px solid var(--border-strong);
}

/* No tile, no fill: at this size the stroked glyph reads on its own and the
   brand-blue keeps it clearly informational rather than decorative. */
.pv-feature__icon {
	display: block;
	margin-bottom: 18px;
	color: var(--text-link);
}

.pv-feature__icon svg {
	width: var(--pv-feature-icon);
	height: var(--pv-feature-icon);
}

.pv-feature__title {
	margin-bottom: 8px;
	font-size: clamp(1.0625rem, 0.99rem + 0.32vw, 1.1875rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.014em;
	color: var(--text-primary);
}

.pv-feature__text {
	color: var(--text-secondary);
}

/* ===========================================================================
 * 7. Badges
 * ======================================================================== */

.pv-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	background-color: var(--surface-raised);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.01em;
	color: var(--text-muted);
	text-transform: none;
	white-space: nowrap;
}

.pv-badge--demo {
	background-color: var(--status-warning-surface);
	border-color: color-mix(in srgb, var(--status-warning) 30%, var(--border));
	color: var(--status-warning);
}

.pv-badge--brand {
	background-color: color-mix(in srgb, var(--brand-primary) 8%, var(--surface));
	border-color: color-mix(in srgb, var(--brand-primary) 30%, var(--border));
	color: var(--text-link);
}

/* ===========================================================================
 * 8. Browser mockup - the portfolio stands in for screenshots, so this frame
 *    is the signature visual. Typographic preview, no imagery required.
 * ======================================================================== */

.pv-browser {
	margin: 0;
	background-color: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition),
		border-color var(--transition);
}

.pv-browser__bar {
	display: flex;
	align-items: center;
	gap: 7px;
	height: 36px;
	padding-inline: 14px;
	background-color: var(--surface-raised);
	border-bottom: 1px solid var(--border);
}

.pv-browser__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--border-strong);
}

.pv-browser__url {
	flex: 1 1 auto;
	min-width: 0;
	margin-left: 10px;
	padding: 3px 12px;
	background-color: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: var(--text-muted);
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pv-browser__body {
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 10px;
	min-height: 220px;
	padding: 40px 24px;
	text-align: center;
}

.pv-browser--brand .pv-browser__body {
	background-color: color-mix(in srgb, var(--brand-primary) 6%, var(--surface));
}

.pv-browser__initial {
	font-size: clamp(3.25rem, 2rem + 6vw, 5.5rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.05em;
	color: var(--text-link);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
	.pv-browser__initial {
		background-image: var(--brand-gradient-text);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}
}

.pv-browser__name {
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: -0.018em;
	color: var(--text-primary);
}

/* Hairline that echoes .pv-section-label__rule - the same device, reused. */
.pv-browser__name + .pv-browser__industry::before {
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	margin: 4px auto 12px;
	background-image: var(--brand-gradient);
}

.pv-browser__industry {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-muted);
}

/* ===========================================================================
 * 9. Hero and page hero
 * ======================================================================== */

.pv-hero {
	padding-block: clamp(48px, 7vw, 96px);
}

.pv-hero__grid {
	display: grid;
	gap: clamp(36px, 5vw, 64px);
	align-items: center;
}

@media (min-width: 900px) {
	.pv-hero__grid {
		grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	}
}

.pv-hero__text > h1 {
	margin-bottom: 20px;
}

.pv-hero__sub {
	max-width: 54ch;
	font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
	line-height: 1.6;
	color: var(--text-secondary);
}

.pv-hero__note {
	margin-top: 20px;
	margin-bottom: 0;
	font-size: 0.875rem;
	color: var(--text-muted);
}

.pv-hero__visual {
	position: relative;
}

.pv-hero__visual .pv-browser {
	box-shadow: var(--shadow-lg);
}

/* Compact hero used by the inner page templates. */
.pv-page-hero {
	padding-block: clamp(44px, 6vw, 80px);
	border-bottom: 1px solid var(--border);
}

.pv-page-hero h1 {
	max-width: 20ch;
	margin-bottom: 18px;
}

.pv-page-hero p {
	max-width: 62ch;
	font-size: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
}

/* ===========================================================================
 * 10. Pricing
 * ======================================================================== */

.pv-pricing {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 32px 28px;
	background-color: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: transform var(--transition), box-shadow var(--transition),
		border-color var(--transition);
}

.pv-pricing:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: color-mix(in srgb, var(--text-link) 30%, var(--border));
}

.pv-pricing__name {
	margin-bottom: 6px;
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: -0.012em;
	color: var(--text-primary);
}

.pv-pricing__price {
	display: block;
	font-size: clamp(1.75rem, 1.5rem + 1vw, 2.125rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: var(--text-primary);
	font-variant-numeric: tabular-nums;
}

.pv-pricing__period {
	display: block;
	margin-top: 6px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--text-muted);
}

.pv-pricing__list {
	display: grid;
	gap: 10px;
	margin: 24px 0 28px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}

/*
 * Container rule for the check list. Written with :where() so it carries no
 * specificity: the call sites that compose the list with .pv-grid keep the
 * grid's columns and 24px gap, while a bare <ul class="pv-check"> still
 * stacks on the same 10px rhythm as .pv-pricing__list instead of collapsing
 * flush (ul margin and padding are reset to 0 and li carries no margin).
 */
:where(.pv-check) {
	display: grid;
	gap: 10px;
}

.pv-pricing__list li,
.pv-check li {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 10px;
	align-items: start;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.pv-pricing__list svg,
.pv-check svg {
	width: 18px;
	height: 18px;
	margin-top: 3px;
	color: var(--status-success);
	stroke: currentColor;
	fill: none;
}

.pv-pricing__cta {
	margin-top: auto;
}

.pv-pricing__cta .pv-btn {
	width: 100%;
}

.pv-pricing__note {
	margin: 14px 0 0;
	font-size: 0.8125rem;
	color: var(--text-muted);
}

/* Featured plan: a second hairline drawn inside the border so the card reads
   as 2px without changing its box. */
.pv-pricing--featured {
	border-color: var(--brand-primary);
	box-shadow: inset 0 0 0 1px var(--brand-primary);
}

.pv-pricing--featured:hover {
	border-color: var(--brand-primary);
	box-shadow: inset 0 0 0 1px var(--brand-primary), var(--shadow-md);
}

.pv-pricing__flag {
	position: absolute;
	top: 0;
	right: 24px;
	transform: translateY(-50%);
	padding: 5px 12px;
	border-radius: var(--radius-pill);
	background-image: var(--brand-gradient-cta);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--on-brand);
	white-space: nowrap;
}

/* ===========================================================================
 * 11. Process steps - the content really is a sequence, so the numbering
 *     carries information rather than decoration.
 * ======================================================================== */

.pv-steps {
	display: grid;
	gap: 0;
	margin-top: clamp(30px, 4vw, 46px);
	--pv-step-size: clamp(2rem, 1.6rem + 1.4vw, 2.75rem);
	--pv-step-pad: 22px;
	--pv-step-rail: 19px;
}

.pv-steps > li {
	position: relative;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 20px;
	padding-block: var(--pv-step-pad);
}

/*
 * One connector idiom only: a hairline running down the numeral column,
 * interrupted where each numeral sits on it. There is no horizontal rule
 * between steps - a full-width rule crossed by a stub read as a table.
 * Each segment starts just below its own numeral and stops just above the
 * next one, so the numerals read as nodes on a single spine.
 */
.pv-steps > li:not(:last-child)::before {
	content: '';
	position: absolute;
	top: calc(var(--pv-step-pad) + var(--pv-step-size) + 12px);
	bottom: calc(12px - var(--pv-step-pad));
	left: var(--pv-step-rail);
	width: 1px;
	background-color: var(--border);
}

@media (min-width: 760px) {
	.pv-steps {
		--pv-step-pad: 28px;
		--pv-step-rail: 26px;
	}

	.pv-steps > li {
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 32px;
	}
}

.pv-steps__number {
	font-size: var(--pv-step-size);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	font-variant-numeric: tabular-nums;
	color: var(--text-link);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
	.pv-steps__number {
		background-image: var(--brand-gradient-text);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}
}

.pv-steps__title {
	margin-bottom: 6px;
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: -0.012em;
	color: var(--text-primary);
}

.pv-steps__text {
	margin: 0;
	color: var(--text-secondary);
}

/* ===========================================================================
 * 12. FAQ
 * ======================================================================== */

.pv-faq {
	max-width: 820px;
	margin-top: clamp(30px, 4vw, 46px);
	border-top: 1px solid var(--border);
}

.pv-faq details {
	border-bottom: 1px solid var(--border);
}

.pv-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-block: 20px;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: -0.012em;
	color: var(--text-primary);
	cursor: pointer;
	list-style: none;
	transition: color var(--transition);
}

.pv-faq summary::-webkit-details-marker {
	display: none;
}

.pv-faq summary:hover {
	color: var(--text-link);
}

.pv-faq summary:focus-visible {
	outline: 2px solid var(--text-link);
	outline-offset: -2px;
}

/* Chevron drawn from two borders so no colour literal or SVG asset is needed. */
.pv-faq summary::after {
	content: '';
	flex: 0 0 auto;
	width: 9px;
	height: 9px;
	margin-right: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform var(--transition);
}

.pv-faq details[open] summary::after {
	transform: rotate(225deg) translate(-2px, -2px);
}

.pv-faq details > :not(summary) {
	max-width: 68ch;
	margin-bottom: 0;
	padding-bottom: 22px;
	color: var(--text-secondary);
}

/* ===========================================================================
 * 13. Forms
 * ======================================================================== */

.pv-form {
	max-width: 620px;
}

.pv-form p {
	margin-bottom: 18px;
	color: inherit;
}

:is(.pv-form, .pv-searchform) label {
	display: block;
	margin-bottom: 7px;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: -0.005em;
	color: var(--text-primary);
}

:is(.pv-form, .pv-searchform) label span[aria-hidden] {
	color: var(--status-error);
}

/*
 * Control appearance is bound to both form roots, so a standalone
 * <form class="pv-searchform" role="search"> is fully styled without also
 * having to carry .pv-form. :is(.pv-form, .pv-searchform) has exactly the
 * specificity of .pv-form, so every override below still resolves on source
 * order the way it did before.
 */
:is(.pv-form, .pv-searchform) input[type='text'],
:is(.pv-form, .pv-searchform) input[type='email'],
:is(.pv-form, .pv-searchform) input[type='tel'],
:is(.pv-form, .pv-searchform) input[type='url'],
:is(.pv-form, .pv-searchform) input[type='search'],
:is(.pv-form, .pv-searchform) select,
:is(.pv-form, .pv-searchform) textarea {
	display: block;
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	background-color: var(--surface);
	border: 1px solid var(--border-input);
	border-radius: var(--radius);
	color: var(--text-primary);
	font-size: 1rem;
	line-height: 1.5;
	transition: border-color var(--transition), box-shadow var(--transition);
	appearance: none;
}

:is(.pv-form, .pv-searchform) textarea {
	min-height: 132px;
	resize: vertical;
}

:is(.pv-form, .pv-searchform) select {
	background-image: none;
	cursor: pointer;
}

:is(.pv-form, .pv-searchform) ::placeholder {
	color: var(--text-muted);
	opacity: 1;
}

:is(.pv-form, .pv-searchform) input:hover,
:is(.pv-form, .pv-searchform) select:hover,
:is(.pv-form, .pv-searchform) textarea:hover {
	border-color: color-mix(in srgb, var(--text-link) 40%, var(--border-input));
}

:is(.pv-form, .pv-searchform) input:focus,
:is(.pv-form, .pv-searchform) select:focus,
:is(.pv-form, .pv-searchform) textarea:focus {
	outline: none;
	border-color: var(--text-link);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--text-link) 22%, transparent);
}

:is(.pv-form, .pv-searchform) input:focus-visible,
:is(.pv-form, .pv-searchform) select:focus-visible,
:is(.pv-form, .pv-searchform) textarea:focus-visible {
	outline: 2px solid transparent;
	outline-offset: 0;
}

:is(.pv-form, .pv-searchform) input[aria-invalid='true'],
:is(.pv-form, .pv-searchform) textarea[aria-invalid='true'] {
	border-color: var(--status-error);
}

.pv-form__hint {
	display: block;
	margin-top: 6px;
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.pv-form__error {
	display: block;
	margin-top: 6px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--status-error);
}

.pv-form__notice {
	margin-bottom: 24px;
	padding: 14px 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background-color: var(--surface-raised);
	font-size: 0.9375rem;
	color: var(--text-primary);
}

.pv-form__notice--success {
	background-color: var(--status-success-surface);
	border-color: color-mix(in srgb, var(--status-success) 35%, var(--border));
	color: var(--status-success);
}

.pv-form__notice--error {
	background-color: var(--status-error-surface);
	border-color: color-mix(in srgb, var(--status-error) 35%, var(--border));
	color: var(--status-error);
}

/*
 * Honeypot. Moved off-screen rather than display:none so automated
 * submitters still find and fill it.
 */
.pv-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.pv-searchform {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 520px;
}

.pv-searchform input[type='search'] {
	flex: 1 1 220px;
	width: auto;
}

.pv-searchform .pv-btn {
	flex: 0 0 auto;
}

/* Google Maps embed on the contact page. */
.pv-maps {
	margin-top: clamp(32px, 4vw, 52px);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	line-height: 0;
}

.pv-maps iframe {
	width: 100%;
	min-height: 340px;
	border: 0;
}

/* ===========================================================================
 * 14. Header and navigation
 * ======================================================================== */

.pv-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: var(--surface);
	border-bottom: 1px solid transparent;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.pv-header.is-scrolled {
	border-bottom-color: var(--border);
	box-shadow: var(--shadow-sm);
}

.pv-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: var(--header-height);
}

.pv-header__logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	line-height: 0;
	border-radius: 4px;
}

.pv-header__logo img {
	width: clamp(140px, 38vw, 180px);
	height: auto;
	aspect-ratio: 560 / 137;
}

/* Logo variants. The white lockup is for dark mode only. */
.pv-logo--dark {
	display: none;
}

@media (prefers-color-scheme: dark) {
	.pv-logo--light {
		display: none;
	}

	.pv-logo--dark {
		display: block;
	}
}

.pv-nav__list a,
.pv-footer__list a {
	text-decoration: none;
}

.pv-nav__list > li > a {
	position: relative;
	display: block;
	padding-block: 6px;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: -0.005em;
	color: var(--text-primary);
}

.pv-nav__list > li > a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background-color: currentColor;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform var(--transition);
}

.pv-nav__list > li > a:hover,
.pv-nav__list > li.current-menu-item > a,
.pv-nav__list > li.current-menu-ancestor > a {
	color: var(--text-link);
}

.pv-nav__list > li > a:hover::after,
.pv-nav__list > li > a:focus-visible::after,
.pv-nav__list > li.current-menu-item > a::after {
	transform: scaleX(1);
}

.pv-nav__list .sub-menu a,
.pv-nav__dropdown a {
	display: block;
	padding: 9px 12px;
	border-radius: 6px;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--text-secondary);
	transition: background-color var(--transition), color var(--transition);
}

.pv-nav__list .sub-menu a:hover,
.pv-nav__dropdown a:hover {
	background-color: var(--surface-raised);
	color: var(--text-link);
}

/* Hamburger. Three bars that fold into a cross using transform only. */
.pv-nav-toggle {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	margin-right: -8px;
	padding: 0;
	background: none;
	border: 0;
	border-radius: var(--radius);
}

.pv-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: var(--radius-pill);
	background-color: var(--ink);
	transition: transform var(--transition), opacity var(--transition);
}

.pv-nav-toggle[aria-expanded='true'] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.pv-nav-toggle[aria-expanded='true'] span:nth-child(2) {
	opacity: 0;
}

.pv-nav-toggle[aria-expanded='true'] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile navigation ---------------------------------------------------- */

@media (max-width: 1023.98px) {
	/*
	 * The panel spans the full viewport width. Below the desktop breakpoint
	 * the container is never narrower than the viewport, so its padding box
	 * is already full width - offsetting by the gutter would push the panel
	 * past the document edge and create horizontal overflow.
	 */
	.pv-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		max-height: 0;
		padding-inline: clamp(20px, 4vw, 32px);
		background-color: var(--surface);
		border-bottom: 1px solid transparent;
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
		transition: max-height var(--transition-slow), opacity var(--transition),
			visibility var(--transition);
	}

	.pv-nav.is-open {
		max-height: calc(100dvh - var(--header-height));
		border-bottom-color: var(--border);
		opacity: 1;
		visibility: visible;
		overflow-y: auto;
		overscroll-behavior: contain;
		box-shadow: var(--shadow-md);
	}

	.pv-nav__list > li {
		border-bottom: 1px solid var(--border);
	}

	.pv-nav__list > li > a {
		padding-block: 15px;
		font-size: 1rem;
	}

	.pv-nav__list > li > a::after {
		display: none;
	}

	.pv-nav__list .sub-menu,
	.pv-nav__dropdown {
		padding: 0 0 12px 12px;
	}

	.pv-nav__list .sub-menu a,
	.pv-nav__dropdown a {
		padding: 9px 0;
	}

	.pv-nav__cta {
		padding-block: 18px 22px;
	}

	.pv-nav__cta .pv-btn {
		display: flex;
		width: 100%;
	}

	body.pv-nav-open {
		overflow: hidden;
	}
}

/* --- Desktop navigation --------------------------------------------------- */

@media (min-width: 1024px) {
	.pv-nav-toggle {
		display: none;
	}

	.pv-nav {
		display: flex;
		align-items: center;
		gap: 28px;
	}

	.pv-nav__list {
		display: flex;
		align-items: center;
		gap: 26px;
	}

	.pv-nav__list > li {
		position: relative;
	}

	.pv-nav__list .sub-menu,
	.pv-nav__dropdown {
		position: absolute;
		top: 100%;
		left: -12px;
		z-index: 10;
		display: grid;
		gap: 2px;
		min-width: 240px;
		margin-top: 12px;
		padding: 8px;
		background-color: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--radius);
		box-shadow: var(--shadow-md);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-6px);
		transition: opacity var(--transition), transform var(--transition),
			visibility var(--transition);
	}

	/* Keeps hover alive across the 12px gap under the trigger. */
	.pv-nav__list .sub-menu::before,
	.pv-nav__dropdown::before {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		top: -12px;
		height: 12px;
	}

	.pv-nav__list > li:hover > .sub-menu,
	.pv-nav__list > li:focus-within > .sub-menu,
	.pv-nav__list > li:hover > .pv-nav__dropdown,
	.pv-nav__list > li:focus-within > .pv-nav__dropdown {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.pv-nav__cta .pv-btn {
		min-height: 42px;
		padding: 10px 20px;
		font-size: 0.9375rem;
	}
}

/* ===========================================================================
 * 15. Footer
 * ======================================================================== */

/* The footer markup also carries .pv-section--raised; the hairline belongs on
   the top edge only, so the inherited bottom border is cleared here. */
.pv-footer {
	padding-top: clamp(48px, 6vw, 76px);
	padding-bottom: 28px;
	background-color: var(--surface-raised);
	border-top: 1px solid var(--border);
	border-bottom: 0;
}

.pv-footer__grid {
	display: grid;
	gap: 36px;
}

@media (min-width: 640px) {
	.pv-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 960px) {
	.pv-footer__grid {
		grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
		gap: 40px;
	}
}

.pv-footer__brand img {
	width: 160px;
	height: auto;
	aspect-ratio: 560 / 137;
	margin-bottom: 18px;
}

.pv-footer__brand p {
	max-width: 34ch;
	margin-bottom: 20px;
	font-size: 0.9375rem;
	color: var(--text-secondary);
}

.pv-footer__title {
	margin-bottom: 16px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.pv-footer__list {
	display: grid;
	gap: 10px;
}

.pv-footer__list a,
.pv-footer__col a {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	text-decoration: none;
}

.pv-footer__list a:hover,
.pv-footer__col a:hover {
	color: var(--text-link);
}

.pv-footer__col p {
	margin-bottom: 10px;
	font-size: 0.9375rem;
}

.pv-footer__bottom {
	margin-top: clamp(36px, 5vw, 56px);
	padding-top: 22px;
	border-top: 1px solid var(--border);
}

.pv-footer__bottom p {
	margin-bottom: 0;
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.pv-footer__bottom a {
	color: var(--text-muted);
	text-decoration: underline;
}

.pv-footer__bottom a:hover {
	color: var(--text-link);
}

/* ===========================================================================
 * 16. Floating WhatsApp button
 * ======================================================================== */

.pv-wa-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-image: var(--brand-gradient-cta);
	color: var(--on-brand);
	box-shadow: var(--shadow-md);
	transition: transform var(--transition), box-shadow var(--transition);
}

.pv-wa-float:hover {
	transform: scale(1.06);
	box-shadow: var(--shadow-lg);
	color: var(--on-brand);
}

.pv-wa-float:focus-visible {
	outline: 2px solid var(--text-link);
	outline-offset: 3px;
}

.pv-wa-float svg {
	width: 26px;
	height: 26px;
}

/*
 * The float is fixed 20px above the viewport edge and 56px tall, so at the
 * end of a document it parks on whatever the page finishes with. On the
 * contact page at phone width that is the footer legal line, the one piece of
 * copy a visitor cannot scroll out from under it, so the page reserves the
 * button's height plus its offset after that line.
 */
@media (max-width: 639.98px) {
	.page-template-contact .pv-footer__bottom {
		padding-bottom: 92px;
	}
}

/* ===========================================================================
 * 17. Long-form prose (blog posts, privacy policy)
 * ======================================================================== */

.pv-prose {
	max-width: 68ch;
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--text-secondary);
}

.pv-prose > * + * {
	margin-top: 1.15em;
}

.pv-prose h2 {
	margin-top: 1.9em;
	margin-bottom: 0.5em;
	font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem);
	color: var(--text-primary);
}

.pv-prose h3 {
	margin-top: 1.6em;
	margin-bottom: 0.45em;
	font-size: clamp(1.125rem, 1.05rem + 0.4vw, 1.3125rem);
	color: var(--text-primary);
}

.pv-prose p {
	margin-bottom: 0;
}

.pv-prose a {
	color: var(--text-link);
	text-decoration: underline;
}

.pv-prose ul,
.pv-prose ol {
	padding-left: 1.35em;
}

.pv-prose li {
	list-style: disc;
	margin-bottom: 0.5em;
}

.pv-prose ol li {
	list-style: decimal;
}

.pv-prose blockquote {
	padding-left: 22px;
	border-left: 2px solid var(--border-strong);
	font-size: 1.125rem;
	color: var(--text-primary);
}

.pv-prose img {
	border-radius: var(--radius);
}

.pv-prose figcaption {
	margin-top: 8px;
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.pv-prose code {
	padding: 2px 6px;
	border: 1px solid var(--border);
	border-radius: 5px;
	background-color: var(--surface-raised);
	font-size: 0.9em;
}

.pv-prose pre {
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background-color: var(--surface-raised);
	overflow-x: auto;
}

.pv-prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9375rem;
}

.pv-prose th,
.pv-prose td {
	padding: 10px 12px;
	border: 1px solid var(--border);
	text-align: left;
}

.pv-prose th {
	background-color: var(--surface-raised);
	color: var(--text-primary);
}

/* ===========================================================================
 * 18. Editorial content blocks - article, testimonial, portfolio, CTA band
 * ======================================================================== */

.pv-article__header {
	padding-bottom: clamp(26px, 3vw, 38px);
	margin-bottom: clamp(26px, 3vw, 38px);
	border-bottom: 1px solid var(--border);
}

.pv-article__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--text-muted);
}

.pv-article__meta > * + *::before {
	content: '';
	display: inline-block;
	width: 3px;
	height: 3px;
	margin-right: 16px;
	border-radius: 50%;
	background-color: var(--border-strong);
	vertical-align: middle;
}

.pv-testimonial {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 28px;
	background-color: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

.pv-testimonial__quote {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	letter-spacing: -0.01em;
	color: var(--text-primary);
}

.pv-testimonial__author {
	margin-top: auto;
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--text-primary);
}

.pv-testimonial__role {
	display: block;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--text-muted);
}

/* Industry filter on the portfolio archive. */
.pv-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: clamp(24px, 3vw, 34px);
}

.pv-filter__link {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	background-color: var(--surface);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-decoration: none;
	transition: border-color var(--transition), color var(--transition),
		transform var(--transition);
}

.pv-filter__link:hover {
	transform: translateY(-2px);
	border-color: var(--text-link);
	color: var(--text-link);
}

.pv-filter__link.is-active {
	border-color: var(--brand-primary);
	color: var(--text-link);
	box-shadow: inset 0 0 0 1px var(--brand-primary);
}

/* Key/value row used on a single project. */
.pv-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid var(--border);
}

.pv-meta__item {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

.pv-meta__label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
}

/* Closing conversion band. */
.pv-cta-band {
	text-align: center;
}

.pv-cta-band h2 {
	max-width: 20ch;
	margin-inline: auto;
}

.pv-cta-band p {
	max-width: 58ch;
	margin-inline: auto;
	font-size: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
}

.pv-cta-band .pv-actions,
.pv-cta-band .pv-hero__actions {
	justify-content: center;
}

/* Empty state shown when a query returns nothing. */
.pv-empty {
	margin-top: clamp(30px, 4vw, 46px);
	padding: 36px 28px;
	border: 1px dashed var(--border-strong);
	border-radius: var(--radius);
	background-color: var(--surface-raised);
	text-align: center;
}

.pv-empty p {
	max-width: 46ch;
	margin-inline: auto;
}

/* 404 */
.pv-404 {
	max-width: 640px;
}

.pv-404 p {
	font-size: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
}

/* Pagination */
.pv-pagination {
	margin-top: clamp(36px, 5vw, 56px);
}

.pv-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pv-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 8px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background-color: var(--surface);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-decoration: none;
	transition: border-color var(--transition), color var(--transition),
		transform var(--transition);
}

.pv-pagination a.page-numbers:hover {
	transform: translateY(-2px);
	border-color: var(--text-link);
	color: var(--text-link);
}

.pv-pagination .page-numbers.current {
	border-color: var(--brand-primary);
	color: var(--text-link);
	box-shadow: inset 0 0 0 1px var(--brand-primary);
}

.pv-pagination .page-numbers.dots {
	border-color: transparent;
	background: none;
}

/* ===========================================================================
 * 19. Utilities - skip link, screen reader text, custom scroll areas
 * ======================================================================== */

.pv-skip-link {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 200;
	padding: 12px 18px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background-color: var(--surface);
	box-shadow: var(--shadow-md);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-link);
	text-decoration: none;
	transform: translateY(calc(-100% - 16px));
	transition: transform var(--transition);
}

.pv-skip-link:focus {
	transform: translateY(0);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	overflow: hidden;
	white-space: nowrap;
	word-wrap: normal;
}

.screen-reader-text:focus {
	position: static !important;
	width: auto;
	height: auto;
	margin: 0;
	clip: auto;
	clip-path: none;
	overflow: visible;
	white-space: normal;
}

/* Thin custom scrollbars for every scrollable region we own. */
.pv-scroll,
.pv-nav,
.pv-prose pre,
.pv-maps {
	scrollbar-width: thin;
	scrollbar-color: var(--border-strong) transparent;
}

.pv-scroll {
	overflow: auto;
	overscroll-behavior: contain;
}

.pv-scroll::-webkit-scrollbar,
.pv-nav::-webkit-scrollbar,
.pv-prose pre::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

.pv-scroll::-webkit-scrollbar-track,
.pv-nav::-webkit-scrollbar-track,
.pv-prose pre::-webkit-scrollbar-track {
	background: transparent;
}

.pv-scroll::-webkit-scrollbar-thumb,
.pv-nav::-webkit-scrollbar-thumb,
.pv-prose pre::-webkit-scrollbar-thumb {
	border-radius: var(--radius-pill);
	background-color: var(--border-strong);
}

.pv-scroll::-webkit-scrollbar-thumb:hover,
.pv-nav::-webkit-scrollbar-thumb:hover,
.pv-prose pre::-webkit-scrollbar-thumb:hover {
	background-color: var(--text-muted);
}

/* ===========================================================================
 * 20. Motion and forced-colors preferences
 * ======================================================================== */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.pv-btn:hover,
	.pv-card:hover,
	.pv-pricing:hover,
	.pv-filter__link:hover,
	.pv-pagination a.page-numbers:hover,
	.pv-wa-float:hover {
		transform: none;
	}

	.pv-card__link:hover::after,
	.pv-card:hover .pv-card__link::after {
		transform: none;
	}
}

@media (forced-colors: active) {
	.pv-highlight,
	.pv-browser__initial,
	.pv-steps__number {
		background-image: none;
		color: CanvasText;
		forced-color-adjust: none;
	}

	.pv-btn--primary,
	.pv-wa-float {
		border-color: ButtonText;
	}

	.pv-card,
	.pv-pricing,
	.pv-browser {
		border-color: CanvasText;
	}
}
