/* ==========================================================================
   Pingvero — main stylesheet
   Light, device-inspired UI: white sheet on a cool grey ground, soft
   bordered cards, black pill buttons, cyan eyebrows, gradient highlights.
   ========================================================================== */

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope.woff2") format("woff2");
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
}

:root {
	--pv-sheet: #ffffff;
	--pv-ink: #0d1015;
	--pv-ink-2: #3a404c;
	--pv-muted: #5f6573;
	--pv-line: #e5e7ec;
	--pv-line-2: #eef0f3;
	--pv-soft: #f5f6f8;
	--pv-soft-2: #fafbfc;

	--pv-cyan: #086e82;
	--pv-orange: #ff8a1f;
	--pv-amber: #ffc23d;
	--pv-violet: #7c5cff;
	--pv-blue: #3d8bff;
	--pv-green: #12b76a;

	--pv-grad: linear-gradient(120deg, #7c5cff 0%, #3d8bff 38%, #22c1d6 62%, #ff9a3c 100%);
	--pv-grad-warm: linear-gradient(135deg, #ffbe3d 0%, #ff6a1f 100%);

	--pv-r-lg: 28px;
	--pv-r: 22px;
	--pv-r-sm: 14px;

	--pv-shadow: 0 1px 2px rgba(13, 16, 21, .04), 0 12px 28px -20px rgba(13, 16, 21, .22);
	--pv-shadow-lg: 0 2px 4px rgba(13, 16, 21, .04), 0 28px 50px -28px rgba(13, 16, 21, .32);
	--pv-shadow-pill: 0 1px 0 rgba(255, 255, 255, .9) inset, 0 6px 14px -8px rgba(13, 16, 21, .28);

	--pv-font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--pv-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}

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

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
	margin: 0;
	background: var(--pv-sheet);
	color: var(--pv-ink);
	font-family: var(--pv-font);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

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

/* The [hidden] attribute must win over any class that sets its own
   `display` (buttons, flex/grid containers, etc.) — otherwise an element
   like `<button class="pv-btn" hidden>` stays visible. */
[hidden] { display: none !important; }

a { color: var(--pv-ink); text-underline-offset: 3px; }

p { margin: 0 0 1em; }

h1, h2, h3 {
	margin: 0;
	text-wrap: balance;
	color: var(--pv-ink);
	font-weight: 600;
	line-height: 1.14;
	letter-spacing: -.022em;
}

:focus-visible { outline: 2px solid var(--pv-cyan); outline-offset: 3px; border-radius: 6px; }

.pv-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pv-skip {
	position: absolute;
	left: 12px;
	top: -60px;
	z-index: 100;
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--pv-ink);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}
.pv-skip:focus { top: 12px; }

.pv-sheet {
	width: 100%;
	min-height: 100vh;
	background: var(--pv-sheet);
	overflow-x: clip;
}

.pv-wrap {
	width: 100%;
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: clamp(18px, 4vw, 40px);
}

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

.pv-ico { width: 22px; height: 22px; flex: none; }
.pv-ico--sm { width: 18px; height: 18px; }
.pv-ico--xs { width: 15px; height: 15px; }
.pv-ico--xxs { width: 12px; height: 12px; }

/* ---------- Type helpers ---------- */

.pv-eyebrow {
	margin: 0 0 12px;
	color: var(--pv-cyan);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .01em;
}

.pv-h1 {
	font-size: clamp(2.3rem, 5.4vw, 4rem);
	font-weight: 600;
	letter-spacing: -.035em;
	line-height: 1.06;
}

.pv-h2 {
	font-size: clamp(1.7rem, 3.4vw, 2.55rem);
	letter-spacing: -.03em;
}

.pv-lead {
	max-width: 640px;
	margin: 16px 0 0;
	color: var(--pv-muted);
	font-size: clamp(15px, 1.35vw, 16.5px);
	line-height: 1.65;
	text-wrap: pretty;
}

.pv-head {
	max-width: 720px;
	margin: 0 auto clamp(34px, 5vw, 54px);
	text-align: center;
}
.pv-head .pv-lead { margin-inline: auto; }
.pv-head--wide { margin-bottom: 26px; }

.pv-center { text-align: center; }

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

.pv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	height: 48px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: inherit;
	font-size: 14.5px;
	font-weight: 600;
	letter-spacing: -.005em;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.pv-btn:hover { transform: translateY(-1px); }
.pv-btn:active { transform: translateY(0); }

.pv-btn--dark {
	background: var(--pv-ink);
	color: #fff;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .16) inset, 0 10px 22px -12px rgba(13, 16, 21, .7);
}
.pv-btn--dark:hover { background: #22262e; box-shadow: 0 1px 0 rgba(255, 255, 255, .16) inset, 0 14px 26px -12px rgba(13, 16, 21, .7); }

.pv-btn--light {
	background: #fff;
	color: var(--pv-ink);
	border-color: var(--pv-line);
	box-shadow: var(--pv-shadow-pill);
}
.pv-btn--light:hover { border-color: #d7dae1; }

.pv-btn--sm { height: 40px; padding: 0 17px; font-size: 13.5px; }

.pv-round {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--pv-ink);
	color: #fff;
	flex: none;
	transition: transform .2s ease;
}
.pv-round--sm { width: 26px; height: 26px; }
.pv-round--sm .pv-ico { width: 13px; height: 13px; }

.pv-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--pv-ink);
	font-size: 13.5px;
	font-weight: 600;
}

.pv-tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 11px;
	border: 1px solid var(--pv-line-2);
	border-radius: 999px;
	background: var(--pv-soft);
	color: var(--pv-ink-2);
	font-size: 11.5px;
	font-weight: 600;
	line-height: 1.4;
}

.pv-result {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--pv-ink-2);
	font-size: 12.5px;
	font-weight: 500;
}
.pv-result span {
	padding: 2px 8px;
	border-radius: 6px;
	background: var(--pv-ink);
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

/* Icon tiles, tinted per tool */
.pv-tile {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	flex: none;
	border: 1px solid var(--pv-line);
	border-radius: 14px;
	background: linear-gradient(180deg, #fff, var(--pv-soft));
	box-shadow: var(--pv-shadow-pill);
	color: var(--pv-tone, var(--pv-ink));
}
.pv-tone--violet { --pv-tone: var(--pv-violet); }
.pv-tone--blue { --pv-tone: var(--pv-blue); }
.pv-tone--cyan { --pv-tone: var(--pv-cyan); }
.pv-tone--orange { --pv-tone: var(--pv-orange); }
.pv-tone--green { --pv-tone: var(--pv-green); }

/* Rating/status badge shell shared by every test tool's result badge
   (jitter-test.css, latency-test.css, ping-test.css, packet-loss-test.css,
   port-checker.css set only their own margin and color variants on top of
   this). */
.pv-jt-badge, .pv-lt-badge, .pv-pt-badge, .pv-plt-badge, .pv-pc-badge {
	display: inline-flex;
	align-items: center;
	padding: 7px 18px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: -.005em;
}

/* ==========================================================================
   Header
   ========================================================================== */

.pv-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .86);
	-webkit-backdrop-filter: saturate(1.5) blur(14px);
	backdrop-filter: saturate(1.5) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.pv-header.is-scrolled { border-bottom-color: var(--pv-line); box-shadow: 0 10px 30px -26px rgba(13, 16, 21, .4); }

.admin-bar .pv-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .pv-header { top: 46px; } }

.pv-header__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 20px;
	height: 76px;
}

.pv-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--pv-ink);
	text-decoration: none;
	justify-self: start;
}
.pv-logo__mark { width: 30px; height: 30px; flex: none; filter: drop-shadow(0 4px 8px rgba(255, 122, 31, .35)); }
.pv-logo__word { font-size: 16.5px; font-weight: 800; letter-spacing: .09em; }
.pv-logo--lg .pv-logo__mark { width: 36px; height: 36px; }
.pv-logo--lg .pv-logo__word { font-size: 20px; }

.pv-nav { display: flex; align-items: center; gap: 16px; }

.pv-nav__links {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 0;
	padding: 4px;
	list-style: none;
	border: 1px solid var(--pv-line);
	border-radius: 999px;
	background: var(--pv-soft-2);
}
.pv-nav__links a {
	display: block;
	padding: 7px 14px;
	border-radius: 999px;
	color: var(--pv-ink-2);
	font-size: 13.5px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.pv-nav__links a:hover { background: #fff; color: var(--pv-ink); box-shadow: 0 4px 10px -6px rgba(13, 16, 21, .25); }

.pv-nav__links a[aria-current="page"] {
	background: #fff;
	color: var(--pv-ink);
	font-weight: 700;
	box-shadow: 0 4px 10px -6px rgba(13, 16, 21, .25);
}

.pv-nav__item--has-sub { position: relative; }

.pv-nav__group summary {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 7px 14px;
	border-radius: 999px;
	color: var(--pv-ink-2);
	font-size: 13.5px;
	font-weight: 500;
	cursor: pointer;
	list-style: none;
	white-space: nowrap;
	transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.pv-nav__group summary::-webkit-details-marker { display: none; }
.pv-nav__group summary:hover { background: #fff; color: var(--pv-ink); box-shadow: 0 4px 10px -6px rgba(13, 16, 21, .25); }
.pv-nav__group summary[aria-current="page"] {
	background: #fff;
	color: var(--pv-ink);
	font-weight: 700;
	box-shadow: 0 4px 10px -6px rgba(13, 16, 21, .25);
}
.pv-nav__caret { transition: transform .15s ease; }
.pv-nav__group[open] .pv-nav__caret { transform: rotate(90deg); }

.pv-nav__sub { list-style: none; margin: 0; padding: 6px; }
.pv-nav__sub a {
	display: block;
	padding: 9px 14px;
	border-radius: 10px;
	color: var(--pv-ink-2);
	font-size: 13.5px;
	text-decoration: none;
	white-space: nowrap;
}
.pv-nav__sub a:hover { background: var(--pv-soft-2); color: var(--pv-ink); }
.pv-nav__sub a[aria-current="page"] { background: var(--pv-soft-2); color: var(--pv-ink); font-weight: 700; }

@media (min-width: 1001px) {
	.pv-nav__sub {
		position: absolute;
		top: calc(100% + 8px);
		left: 0;
		min-width: 200px;
		background: #fff;
		border: 1px solid var(--pv-line);
		border-radius: 14px;
		box-shadow: 0 24px 40px -30px rgba(13, 16, 21, .45);
	}
}

.pv-burger {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--pv-line);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	justify-self: end;
}
.pv-burger span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	border-radius: 2px;
	background: var(--pv-ink);
	transition: transform .2s ease, opacity .2s ease;
}

@media (min-width: 1001px) {
	.pv-header__inner { grid-template-columns: 1fr auto 1fr; }
	.pv-nav { display: contents; }
	.pv-nav__cta { justify-self: end; }
}

@media (max-width: 1000px) {
	.pv-burger { display: block; }
	.pv-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		padding: 14px clamp(18px, 4vw, 40px) 22px;
		background: #fff;
		border-bottom: 1px solid var(--pv-line);
		box-shadow: 0 24px 40px -30px rgba(13, 16, 21, .45);
	}
	.pv-header.is-open .pv-nav { display: flex; }
	.pv-nav__links { flex-direction: column; align-items: stretch; border-radius: 18px; padding: 6px; }
	.pv-nav__links a { padding: 12px 14px; border-radius: 12px; font-size: 15px; }
	.pv-nav__group summary { padding: 12px 14px; border-radius: 12px; font-size: 15px; }
	.pv-nav__sub { padding-left: 14px; }
	.pv-nav__sub a { padding: 10px 14px; font-size: 14px; }
	.pv-nav__cta { height: 48px; }
	.pv-header.is-open .pv-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
	.pv-header.is-open .pv-burger span:nth-child(2) { opacity: 0; }
	.pv-header.is-open .pv-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.pv-crumbs { padding: 14px 0 0; }
.pv-crumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.pv-crumbs li {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--pv-muted);
	font-size: 12.5px;
	font-weight: 600;
}
.pv-crumbs a { color: var(--pv-muted); text-decoration: none; }
.pv-crumbs a:hover { color: var(--pv-ink); }
.pv-crumbs li[aria-current] { color: var(--pv-ink-2); }
.pv-crumbs__sep { color: var(--pv-line); }

/* ==========================================================================
   Sections
   ========================================================================== */

.pv-section { padding-block: clamp(52px, 7vw, 88px); }
.pv-section--tight-top { padding-top: clamp(16px, 3vw, 32px); }
.pv-section--last { padding-bottom: clamp(40px, 6vw, 64px); }
.pv-section--soft {
	background:
		radial-gradient(60% 60% at 0% 0%, rgba(124, 92, 255, .06), transparent 70%),
		radial-gradient(50% 60% at 100% 100%, rgba(255, 154, 60, .07), transparent 70%),
		var(--pv-soft-2);
	border-block: 1px solid var(--pv-line-2);
}

.pv-grid { display: grid; gap: 18px; }
.pv-grid > * { min-width: 0; }
.pv-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pv-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pv-grid--narrow { max-width: 900px; margin-inline: auto; margin-top: clamp(32px, 4vw, 44px); text-align: left; }

@media (max-width: 960px) {
	.pv-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	.pv-grid--3,
	.pv-grid--2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.pv-btn {
		height: auto;
		min-height: 48px;
		padding-block: 12px;
		white-space: normal;
		text-align: center;
	}
}

/* ==========================================================================
   Hero
   ========================================================================== */

.pv-hero {
	position: relative;
	padding-top: clamp(44px, 7vw, 86px);
	padding-bottom: clamp(24px, 4vw, 40px);
	text-align: center;
	overflow: hidden;
}
.pv-hero::before {
	content: "";
	position: absolute;
	inset: 0 6% auto;
	height: 620px;
	background:
		radial-gradient(34% 34% at 28% 52%, rgba(34, 193, 214, .10), transparent 100%),
		radial-gradient(34% 34% at 74% 46%, rgba(124, 92, 255, .09), transparent 100%);
	pointer-events: none;
}
.pv-hero > .pv-wrap { position: relative; }

.pv-hero .pv-h1 { max-width: 880px; margin-inline: auto; }
.pv-hero__lead { max-width: 660px; margin-inline: auto; }

.pv-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
}

.pv-checks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 22px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
	color: var(--pv-ink-2);
	font-size: 13.5px;
	font-weight: 600;
}
.pv-checks li { display: inline-flex; align-items: center; gap: 8px; }
.pv-checks__ico {
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(18, 183, 106, .12);
	color: var(--pv-green);
}
.pv-checks__ico .pv-ico { width: 12px; height: 12px; stroke-width: 2.6; }

/* ---------- Device stage ---------- */

.pv-stage {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: clamp(18px, 4vw, 64px);
	height: clamp(330px, 34vw, 420px);
	margin-top: clamp(44px, 6vw, 68px);
	padding-inline: 20px;
	border: 1px solid var(--pv-line);
	border-radius: var(--pv-r-lg);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, #fff 100%),
		linear-gradient(180deg, #f7f8fa 0%, #eff1f4 100%);
	overflow: hidden;
	text-align: left;
}
.pv-stage::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 70px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
	pointer-events: none;
	z-index: 3;
}

.pv-phone {
	position: relative;
	flex: none;
	width: 250px;
	padding: 12px 14px 0;
	border: 6px solid #111318;
	border-bottom: 0;
	border-radius: 40px 40px 0 0;
	background: #fff;
	box-shadow: 0 30px 60px -30px rgba(13, 16, 21, .45), 0 0 0 1px rgba(13, 16, 21, .05);
	color: var(--pv-ink);
	font-size: 11px;
	line-height: 1.4;
	overflow: hidden;
}
.pv-phone--center { width: 278px; height: calc(100% - 22px); z-index: 2; }
.pv-phone--side { height: calc(100% - 64px); }
.pv-phone--mint { background: linear-gradient(180deg, #dff7f3 0%, #eefbf9 38%, #fff 70%); }

.pv-phone__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2px 8px 14px;
	font-size: 11.5px;
	font-weight: 700;
}
.pv-island { width: 78px; height: 23px; border-radius: 14px; background: #111318; }
.pv-phone__sys { display: inline-flex; align-items: center; gap: 5px; }
.pv-phone__sys svg { fill: var(--pv-ink); color: var(--pv-ink); }

.pv-mock-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.pv-mock-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 10.5px;
	font-weight: 700;
}
.pv-mock-chip--soft { background: rgba(255, 255, 255, .8); border: 1px solid rgba(13, 16, 21, .06); }
.pv-mock-chip--cyan { background: var(--pv-cyan); color: #fff; }
.pv-mock-chip--grad { background: var(--pv-grad); color: #fff; }

.pv-mock-label { margin: 0; text-align: center; color: var(--pv-muted); font-size: 11.5px; font-weight: 600; }
.pv-mock-big { margin: 2px 0 16px; text-align: center; font-size: 40px; font-weight: 700; letter-spacing: -.03em; line-height: 1.1; }
.pv-mock-big small { margin-left: 4px; color: var(--pv-muted); font-size: 14px; font-weight: 600; letter-spacing: 0; }

.pv-mock-start {
	display: grid;
	place-items: center;
	width: 108px;
	height: 108px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: conic-gradient(from 200deg, #22c1d6, #12b76a, #22c1d6 55%, rgba(34, 193, 214, .15) 56%, rgba(34, 193, 214, .15));
	padding: 5px;
}
.pv-mock-start span {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	border: 6px solid #fff;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #2d3440, #0d1015 70%);
	color: #7ff0dd;
	box-shadow: 0 12px 22px -10px rgba(13, 16, 21, .6);
}
.pv-mock-start .pv-ico { width: 30px; height: 30px; stroke-width: 2.2; }

.pv-mock-spark { display: block; width: 100%; height: 36px; }
.pv-mock-spark path { fill: none; stroke: rgba(14, 165, 196, .35); stroke-width: 2; stroke-dasharray: 4 4; }

.pv-mock-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 4px; }
.pv-mock-stats > div {
	padding: 8px 10px;
	border: 1px solid var(--pv-line-2);
	border-radius: 12px;
	background: var(--pv-soft-2);
}
.pv-mock-k { display: flex; align-items: center; gap: 4px; color: var(--pv-muted); font-size: 10px; font-weight: 600; }
.pv-mock-stats strong { display: block; margin-top: 2px; font-size: 16px; font-weight: 700; }
.pv-mock-stats small { margin-left: 3px; color: var(--pv-muted); font-size: 9.5px; font-weight: 600; }

.pv-gauge { display: block; width: 100%; height: auto; margin-top: 4px; }
.pv-gauge__labels { fill: #9aa0ab; font-family: var(--pv-font); font-weight: 600; }
.pv-gauge__unit { fill: #9aa0ab; font-family: var(--pv-font); font-weight: 600; }
.pv-gauge text { font-family: var(--pv-font); }
.pv-gauge__pulse { transform-origin: 100px 100px; animation: pv-pulse 2.4s ease-out infinite; }
@keyframes pv-pulse {
	0% { transform: scale(.85); opacity: .9; }
	100% { transform: scale(1.5); opacity: 0; }
}

.pv-mock-ping {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 6px;
}
.pv-mock-ping span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--pv-soft);
	color: var(--pv-ink-2);
	font-size: 10px;
	font-weight: 600;
}

.pv-mock-ipcard {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border: 1px solid var(--pv-line-2);
	border-radius: 14px;
	background: linear-gradient(180deg, #fff, var(--pv-soft-2));
	box-shadow: 0 8px 18px -14px rgba(13, 16, 21, .4);
}
.pv-mock-avatar {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #111318;
	color: #8fe9ff;
	flex: none;
}
.pv-mock-ipcard strong { display: block; font-size: 13px; letter-spacing: .02em; }
.pv-mock-chips { display: flex; gap: 6px; margin: 10px 0 14px; }
.pv-mock-chips span {
	padding: 3px 9px;
	border: 1px solid var(--pv-line);
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
}
.pv-mock-chips .is-accent { border-color: transparent; background: rgba(18, 183, 106, .12); color: var(--pv-green); }
.pv-mock-sub { margin: 0 0 6px; color: var(--pv-muted); font-size: 10px; font-weight: 600; }
.pv-mock-list { margin: 0; padding: 0; list-style: none; }
.pv-mock-list li {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 8px 0;
	border-bottom: 1px solid var(--pv-line-2);
}
.pv-mock-list li > span:nth-child(2) { flex: 1; }
.pv-mock-list b { display: block; font-size: 11px; }
.pv-mock-list em { display: block; color: var(--pv-muted); font-size: 9.5px; font-style: normal; }
.pv-mock-li-ico {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: var(--pv-soft);
	flex: none;
}

.pv-float {
	position: absolute;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--pv-line);
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--pv-shadow-lg);
	color: var(--pv-ink);
	animation: pv-float 5s ease-in-out infinite;
}
.pv-float--l { left: calc(50% - 192px); top: 46%; color: var(--pv-blue); }
.pv-float--r { right: calc(50% - 192px); top: 30%; color: var(--pv-green); animation-delay: -2.5s; }
@keyframes pv-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.pv-hero__note { margin: 22px 0 0; color: var(--pv-muted); font-size: 13px; }

@media (max-width: 900px) {
	.pv-phone--side { display: none; }
	.pv-float--l { left: calc(50% - 178px); }
	.pv-float--r { right: calc(50% - 178px); }
}
@media (max-width: 420px) {
	.pv-float { display: none; }
	.pv-phone--center { width: 262px; }
}

/* ==========================================================================
   Cards
   ========================================================================== */

.pv-card,
.pv-big,
.pv-guide,
.pv-calc {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 24px;
	border: 1px solid var(--pv-line);
	border-radius: var(--pv-r);
	background: linear-gradient(180deg, #fff 0%, var(--pv-soft-2) 100%);
	box-shadow: var(--pv-shadow);
	text-align: left;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pv-card:hover,
.pv-big:hover,
.pv-guide:hover,
.pv-calc:hover {
	transform: translateY(-3px);
	border-color: #d9dce3;
	box-shadow: var(--pv-shadow-lg);
}
.pv-card:hover .pv-round,
.pv-guide:hover .pv-round,
.pv-calc:hover .pv-round,
.pv-row:hover .pv-round { transform: translateX(3px); }

.pv-card:focus-within,
.pv-guide:focus-within,
.pv-calc:focus-within,
.pv-row:focus-within,
.pv-tab:focus-within { outline: 2px solid var(--pv-cyan); outline-offset: 3px; }
.pv-card a:focus-visible,
.pv-guide a:focus-visible,
.pv-calc a:focus-visible,
.pv-row a:focus-visible,
.pv-tab a:focus-visible { outline: none; }

.pv-card--feature {
	border: 1.5px solid transparent;
	background:
		linear-gradient(180deg, #fff 0%, var(--pv-soft-2) 100%) padding-box,
		var(--pv-grad) border-box;
}
.pv-card--feature:hover { border-color: transparent; }

.pv-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.pv-card h3,
.pv-guide h3,
.pv-calc h3 { font-size: 19px; letter-spacing: -.02em; }

.pv-card h3 a,
.pv-guide h3 a,
.pv-calc h3 a,
.pv-row h3 a,
.pv-tab__title a {
	color: inherit;
	text-decoration: none;
}
.pv-card h3 a::after,
.pv-guide h3 a::after,
.pv-calc h3 a::after,
.pv-row h3 a::after,
.pv-tab__title a::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	z-index: 1;
}

.pv-card p,
.pv-guide p,
.pv-calc p {
	margin: 8px 0 0;
	color: var(--pv-muted);
	font-size: 14.5px;
	line-height: 1.6;
}
.pv-card .pv-result,
.pv-big .pv-result { margin-top: 16px; }

.pv-card .pv-cta,
.pv-guide .pv-cta,
.pv-calc .pv-cta { margin-top: auto; padding-top: 22px; }

/* ---------- Diagnostics split ---------- */

.pv-split {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
	align-items: center;
	gap: clamp(28px, 5vw, 64px);
}
.pv-split .pv-lead { margin-bottom: 26px; }

.pv-rows { display: grid; gap: 10px; }

.pv-row {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	padding: 14px 16px;
	border: 1px solid var(--pv-line);
	border-radius: 18px;
	background: linear-gradient(180deg, #fff, var(--pv-soft-2));
	box-shadow: 0 1px 0 #fff inset, 0 8px 20px -18px rgba(13, 16, 21, .35);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pv-row:hover { border-color: #d9dce3; box-shadow: var(--pv-shadow-lg); transform: translateY(-2px); }
.pv-row .pv-tile { width: 42px; height: 42px; border-radius: 12px; }
.pv-row .pv-tile .pv-ico { width: 20px; height: 20px; }
.pv-row h3 { font-size: 16px; letter-spacing: -.015em; }
.pv-row p { margin: 3px 0 0; color: var(--pv-muted); font-size: 13.5px; line-height: 1.5; }
.pv-row .pv-result { margin-top: 8px; font-size: 12px; }
.pv-row__cta { display: inline-flex; align-items: center; gap: 10px; }
.pv-row__cta-label { font-size: 12.5px; font-weight: 600; white-space: nowrap; }

.pv-split__hint {
	margin: 20px 0 0;
	padding-left: 14px;
	border-left: 3px solid var(--pv-amber);
	color: var(--pv-ink-2);
	font-size: 14px;
}

@media (max-width: 1080px) {
	.pv-row__cta-label { display: none; }
}

.pv-visual {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 580px;
	padding-top: 48px;
	border: 1px solid var(--pv-line);
	border-radius: var(--pv-r-lg);
	background: linear-gradient(180deg, #f7f8fa, #eef0f3);
	overflow: hidden;
	isolation: isolate;
}
.pv-visual::before,
.pv-visual::after {
	content: "";
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(40px);
}
.pv-visual::before {
	left: -60px;
	top: 10%;
	width: 160px;
	height: 80%;
	background: linear-gradient(180deg, #7c5cff, #3d8bff 50%, #22c1d6);
	opacity: .55;
}
.pv-visual::after {
	right: -50px;
	bottom: -40px;
	width: 200px;
	height: 240px;
	background: linear-gradient(180deg, #ffbe3d, #ff7a1f);
	opacity: .6;
}

.pv-phone--diag { width: 310px; height: 100%; padding: 12px 18px 0; }
.pv-visual .pv-phone--diag::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 60px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}
.pv-mock-back {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid var(--pv-line);
	border-radius: 50%;
}
.pv-mock-title { margin: 0 0 6px; font-size: 20px; font-weight: 600; letter-spacing: -.02em; line-height: 1.2; }
.pv-mock-desc { margin: 0 0 14px; color: var(--pv-muted); font-size: 10.5px; }
.pv-mock-steps {
	position: relative;
	margin: 0;
	padding: 6px 10px;
	list-style: none;
	border: 1px solid var(--pv-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 16px 30px -24px rgba(13, 16, 21, .5);
}
.pv-mock-steps li {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 10px;
	padding: 9px 0;
	border-bottom: 1px dashed var(--pv-line);
}
.pv-mock-steps li:last-child { border-bottom: 0; }
.pv-mock-steps b { display: block; font-size: 12px; }
.pv-mock-steps em { display: block; color: var(--pv-muted); font-size: 10px; font-style: normal; }
.pv-mock-n {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--pv-ink);
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
}
.pv-mock-u {
	padding: 3px 8px;
	border-radius: 999px;
	background: var(--pv-soft);
	color: var(--pv-ink-2);
	font-size: 10px;
	font-weight: 700;
}
.pv-mock-foot {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 14px 0 0;
	font-size: 10.5px;
	font-weight: 600;
}
.pv-mock-foot .pv-ico {
	width: 16px;
	height: 16px;
	padding: 3px;
	border-radius: 50%;
	background: var(--pv-green);
	color: #fff;
	stroke-width: 3;
}

@media (max-width: 900px) {
	.pv-split { grid-template-columns: 1fr; }
	.pv-visual { height: 560px; }
}

/* ---------- Speed & WiFi ---------- */

.pv-prose {
	max-width: 800px;
	margin-inline: auto;
	color: var(--pv-ink-2);
	font-size: 16px;
	line-height: 1.75;
}
.pv-prose p { margin: 0 0 1.1em; }
.pv-prose p:last-child { margin-bottom: 0; }
.pv-prose strong { color: var(--pv-ink); font-weight: 700; }
.pv-prose a { font-weight: 600; text-decoration-color: rgba(14, 165, 196, .5); text-decoration-thickness: 2px; }
.pv-prose a:hover { color: var(--pv-cyan); }

.pv-big h3 { font-size: 22px; }

/* ---------- IP & DNS tabs ---------- */

.pv-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding: 14px;
	border: 1px solid var(--pv-line);
	border-radius: var(--pv-r-lg);
	background: var(--pv-soft);
}
.pv-tab {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 10px 20px;
	border: 1px solid var(--pv-line);
	border-radius: 22px;
	background: linear-gradient(180deg, #fafbfc, #eff1f4);
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease;
}
.pv-tab:hover { transform: translateY(-3px); box-shadow: var(--pv-shadow-lg); }
.pv-tab__title {
	align-self: stretch;
	padding: 18px 12px;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 10px 20px -14px rgba(13, 16, 21, .45), 0 0 0 1px rgba(13, 16, 21, .04);
	font-size: 18px;
	letter-spacing: -.02em;
}
.pv-tab__desc { flex: 1; margin: 16px 8px 12px; color: var(--pv-muted); font-size: 13.5px; line-height: 1.55; }
.pv-tab .pv-result { justify-content: center; margin-bottom: 16px; font-size: 12px; }
.pv-tab .pv-cta { margin-top: auto; }

.pv-tab.is-active {
	border: 2px solid transparent;
	background:
		linear-gradient(180deg, #fdfdfe, #f3f4f7) padding-box,
		var(--pv-grad) border-box;
	box-shadow: -14px 0 30px -16px rgba(124, 92, 255, .55), 14px 12px 30px -16px rgba(255, 154, 60, .55);
}

@media (max-width: 960px) {
	.pv-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
	.pv-tabs { grid-template-columns: 1fr; }
}

/* ---------- Calculators ---------- */

.pv-calc {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
	gap: 22px;
	align-items: stretch;
}
.pv-calc__text { display: flex; flex-direction: column; }

.pv-screen {
	position: relative;
	z-index: 0;
	padding: 16px 16px 12px;
	border-radius: 18px;
	background: radial-gradient(120% 90% at 100% 0%, #1c2230 0%, #0d1015 60%);
	color: #e6eaf0;
	font-family: var(--pv-mono);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .08) inset, 0 20px 36px -24px rgba(13, 16, 21, .8);
}
.pv-screen__cap {
	margin: 0 0 8px !important;
	color: #7f8797 !important;
	font-family: var(--pv-font);
	font-size: 10.5px !important;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.pv-screen__in {
	margin: 0 0 10px !important;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 600;
}
.pv-screen__in span { color: #5fe0f5; }
.pv-screen dl { margin: 0; }
.pv-screen dl div {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 5px 0;
	font-size: 12px;
}
.pv-screen dt { color: #8a93a3; }
.pv-screen dd { margin: 0; color: #f1f4f8; text-align: right; }

@media (max-width: 1080px) {
	.pv-calc { grid-template-columns: 1fr; }
}

/* ---------- Understanding (bento) ---------- */

.pv-bento {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	align-items: start;
	gap: 16px;
}
.pv-term {
	grid-column: span 2;
	display: flex;
	flex-direction: column;
	padding: 24px;
	border: 1px solid var(--pv-line);
	border-radius: var(--pv-r);
	background: #fff;
	box-shadow: var(--pv-shadow);
}
.pv-term--wide { grid-column: span 3; }
.pv-term--full { grid-column: span 6; }
.pv-term__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.pv-term__unit {
	color: var(--pv-line);
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1;
	-webkit-text-stroke: 1px #d6d9e0;
}
.pv-term h3 { font-size: 19px; }
.pv-term p { margin: 10px 0 18px; color: var(--pv-muted); font-size: 14.5px; line-height: 1.65; }

.pv-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--pv-ink);
	font-size: 13.5px;
	font-weight: 700;
	text-decoration: none;
}
.pv-more:hover { color: var(--pv-cyan); }
.pv-more .pv-ico { transition: transform .2s ease; }
.pv-more:hover .pv-ico { transform: translateX(3px); }
.pv-more--muted { margin-top: 8px; color: var(--pv-muted); font-weight: 600; }

@media (max-width: 960px) {
	.pv-term, .pv-term--wide, .pv-term--full { grid-column: span 6; }
}
@media (max-width: 640px) {
	.pv-bento { grid-template-columns: 1fr; }
	.pv-term, .pv-term--wide, .pv-term--full { grid-column: auto; }
}

/* ---------- Guides ---------- */

.pv-guide__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.pv-guide__num {
	font-size: 38px;
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1;
	background: var(--pv-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.pv-guide--all {
	border-color: var(--pv-ink);
	background: radial-gradient(120% 100% at 100% 0%, #262c38 0%, var(--pv-ink) 55%);
	color: #fff;
}
.pv-guide--all:hover { border-color: var(--pv-ink); }
.pv-guide--all .pv-tile { margin-bottom: 26px; border-color: rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .06); box-shadow: none; color: #fff; }
.pv-guide--all h3 { color: #fff; }
.pv-guide--all p { color: #a7aebb; }
.pv-guide--all .pv-cta { color: #fff; }
.pv-guide--all .pv-round { background: #fff; color: var(--pv-ink); }

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

.pv-why {
	padding: clamp(36px, 5vw, 64px) clamp(20px, 4vw, 48px);
	border: 1px solid var(--pv-line);
	border-radius: 32px;
	background:
		radial-gradient(50% 80% at 0% 0%, rgba(34, 193, 214, .08), transparent 70%),
		radial-gradient(50% 80% at 100% 100%, rgba(255, 154, 60, .08), transparent 70%),
		var(--pv-soft);
}
.pv-why .pv-head { margin-bottom: 36px; }

.pv-benefit {
	padding: 26px 24px;
	border: 1px solid var(--pv-line);
	border-radius: var(--pv-r);
	background: #fff;
	box-shadow: var(--pv-shadow);
	text-align: center;
}
.pv-benefit__ico {
	display: inline-grid;
	place-items: center;
	width: 60px;
	height: 60px;
	margin-bottom: 16px;
	border-radius: 50%;
	background: linear-gradient(180deg, #fff, var(--pv-soft));
	border: 1px solid var(--pv-line);
	box-shadow: 0 1px 0 #fff inset, 0 12px 22px -12px rgba(13, 16, 21, .35);
	color: var(--pv-ink);
}
.pv-benefit:nth-child(1) .pv-benefit__ico { color: var(--pv-green); }
.pv-benefit:nth-child(2) .pv-benefit__ico { color: var(--pv-violet); }
.pv-benefit:nth-child(3) .pv-benefit__ico { color: var(--pv-orange); }
.pv-benefit h3 { font-size: 18px; }
.pv-benefit p { margin: 8px 0 0; color: var(--pv-muted); font-size: 14.5px; }

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

.pv-faq {
	display: grid;
	gap: 12px;
	max-width: 780px;
	margin-inline: auto;
}
.pv-q {
	position: relative;
	border: 1px solid var(--pv-line);
	border-radius: 18px;
	background: linear-gradient(180deg, var(--pv-soft-2), var(--pv-soft));
	box-shadow: 0 1px 0 #fff inset;
	transition: box-shadow .2s ease, background-color .2s ease;
}
.pv-q[open] { background: #fff; box-shadow: var(--pv-shadow); }
.pv-q[open]::before {
	content: "";
	position: absolute;
	left: -12px;
	top: 14px;
	width: 4px;
	height: 34px;
	border-radius: 4px;
	background: var(--pv-amber);
}
.pv-q summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 12px 12px 20px;
	cursor: pointer;
	list-style: none;
	border-radius: 18px;
}
.pv-q summary::-webkit-details-marker { display: none; }
.pv-q summary h3 { font-size: 15.5px; font-weight: 600; letter-spacing: -.01em; line-height: 1.4; }
.pv-q[open] summary { background: var(--pv-soft); border-radius: 17px 17px 0 0; }
.pv-q__btn {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	flex: none;
	border: 1px solid var(--pv-line);
	border-radius: 10px;
	background: #fff;
	box-shadow: var(--pv-shadow-pill);
	transition: background-color .2s ease, color .2s ease;
}
.pv-q__btn .pv-ico { stroke-width: 2.2; }
.pv-q__btn .pv-ico__v { transition: opacity .2s ease; }
.pv-q[open] .pv-q__btn { border-color: var(--pv-ink); background: var(--pv-ink); color: #fff; }
.pv-q[open] .pv-q__btn .pv-ico__v { opacity: 0; }
.pv-q__a { padding: 16px 20px 18px; border-top: 1px solid var(--pv-line-2); }
.pv-q__a p { margin: 0; color: var(--pv-muted); font-size: 14.5px; line-height: 1.7; }
.pv-q__a a { color: var(--pv-ink); font-weight: 600; text-decoration-color: rgba(14, 165, 196, .5); text-decoration-thickness: 2px; }
.pv-q__a a:hover { color: var(--pv-cyan); }

/* ---------- Final CTA ---------- */

.pv-final {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: clamp(28px, 4vw, 48px);
	border: 1px solid var(--pv-line);
	border-radius: 32px;
	background: var(--pv-soft);
	overflow: hidden;
	isolation: isolate;
}
.pv-final::before {
	content: "";
	position: absolute;
	z-index: -1;
	right: -80px;
	top: -120px;
	width: 380px;
	height: 300px;
	border-radius: 50%;
	background: var(--pv-grad);
	filter: blur(70px);
	opacity: .22;
}
.pv-final__text { max-width: 560px; }
.pv-final .pv-h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.pv-final .pv-lead { margin-top: 12px; }
.pv-final__side { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.pv-devices { display: flex; gap: 10px; }
.pv-devices span {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border: 1px solid var(--pv-line);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 0 #fff inset, 0 12px 20px -12px rgba(13, 16, 21, .4);
}
.pv-devices span:nth-child(1) { color: var(--pv-violet); }
.pv-devices span:nth-child(2) { color: var(--pv-blue); }
.pv-devices span:nth-child(3) { color: var(--pv-cyan); }
.pv-devices span:nth-child(4) { color: var(--pv-orange); }

@media (max-width: 760px) {
	.pv-final__side { align-items: flex-start; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.pv-footer { padding-bottom: 28px; }

.pv-footer__panel {
	padding: 10px;
	border: 1px solid var(--pv-line);
	border-radius: 32px;
	background: var(--pv-soft);
}
.pv-footer__card {
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid var(--pv-line);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 10px 30px -26px rgba(13, 16, 21, .4);
}
.pv-footer__brand {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 28px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--pv-line-2);
}
.pv-footer__about { max-width: 480px; margin: 14px 0 0; color: var(--pv-muted); font-size: 14px; }

.pv-footer__cols {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 28px;
}
.pv-footer__title { margin: 0 0 10px; font-size: 14px; font-weight: 700; }
.pv-footer__col ul { margin: 0; padding: 0; list-style: none; }
.pv-footer__col li { border-bottom: 1px solid var(--pv-line-2); }
.pv-footer__col a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 44px;
	padding: 9px 0;
	color: var(--pv-ink-2);
	font-size: 13.5px;
	text-decoration: none;
	transition: color .15s ease;
}
.pv-footer__col a .pv-ico { width: 12px; height: 12px; color: #a3a8b3; transition: transform .15s ease, color .15s ease; }
.pv-footer__col a:hover { color: var(--pv-ink); }
.pv-footer__col a:hover .pv-ico { color: var(--pv-ink); transform: translate(2px, -2px); }

.pv-footer__bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 20px;
	padding: 16px 18px 8px;
	color: var(--pv-muted);
	font-size: 12.5px;
}
.pv-footer__bar p { margin: 0; }

@media (max-width: 1000px) {
	.pv-footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	.pv-footer__cols { grid-template-columns: 1fr; gap: 0; }
	.pv-footer__col { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--pv-line-2); }
	.pv-footer__col:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
}

/* ==========================================================================
   Generic pages (fallback template)
   ========================================================================== */

.pv-page__wrap { max-width: 820px; }
.pv-page__content { margin-top: 24px; color: var(--pv-ink-2); font-size: 16px; line-height: 1.75; }
.pv-page__content h2 { margin: 1.6em 0 .5em; font-size: 1.5rem; }
.pv-page__content h3 { margin: 1.4em 0 .4em; font-size: 1.2rem; }
