/**
 * SquidSpark Product — the visual system.
 *
 * Every value here resolves through a design token declared in inc/tokens.php.
 * There are no literal brand colours below: swapping the product seed re-tints
 * the whole stylesheet, neutrals included.
 */

/* ------------------------------------------------------------------ base -- */

.sqp {
	margin: 0;
	background: var(--sqp-surface);
	color: var(--sqp-text);
	font-family: var(--sqp-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

/*
 * Element defaults are wrapped in :where() so they carry zero specificity. A
 * component rule like .sqp-nav-link is then always stronger, without every
 * component having to out-specify the base layer.
 */
:where(.sqp) :where(img) {
	max-width: 100%;
	height: auto;
}

:where(.sqp) :where(a) {
	color: var(--sqp-primary);
	text-decoration: none;
}

:where(.sqp) :where(a:hover) {
	color: var(--sqp-deep);
}

.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;
}

/* ------------------------------------------------------- layout scaffold -- */

.sqp-wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 32px;
}

.sqp-wrap.is-narrow {
	max-width: 964px;
}

.sqp-wrap.is-centred {
	max-width: 844px;
	text-align: center;
}

.sqp-section {
	position: relative;

	/*
	 * flow-root, not block: a section that opens with zero padding would
	 * otherwise let its first child's top margin collapse out through the top
	 * edge. The gap then lands between the sections and is painted by the page
	 * behind them — a white stripe across an otherwise continuous tinted band.
	 * Establishing a block formatting context keeps that margin inside, where
	 * the section's own background covers it.
	 */
	display: flow-root;
}

/*
 * WordPress' flow layout puts a block gap between every top-level child, which
 * on a page of full-bleed sections shows up as a white stripe between each
 * coloured band. Our sections carry their own vertical rhythm in padding, so
 * the gap has to go. theme.json sets it to zero as well; this is the guard that
 * survives a stale global-styles cache.
 */
.sqp-section,
.sqp-header,
.sqp-footer,
.sqp-drawer {
	margin-block: 0;
}

.sqp-section.is-space-section {
	padding-block: var(--sqp-sec);
}

.sqp-section.is-space-top {
	padding-block: var(--sqp-sec) 0;
}

.sqp-section.is-space-bottom {
	padding-block: 0 var(--sqp-sec);
}

.sqp-section.is-space-none {
	padding-block: 0;
}

/*
 * Spacing reads as a sentence: `top` opens a section, `none` continues it and
 * `bottom` closes it. So a section followed by a continuation or a close is
 * mid-sentence and must not add its own closing padding — otherwise a group
 * split across two blocks (pricing table, then the licence cards) gets a full
 * section break where the design has a single step.
 */
.sqp-section:has(+ .sqp-section.is-space-bottom),
.sqp-section:has(+ .sqp-section.is-space-none) {
	padding-bottom: 0;
}

.sqp-section.is-tone-surface {
	background: var(--sqp-surface);
}

.sqp-section.is-tone-alt {
	background: var(--sqp-surface-alt);
	border-block: 1px solid var(--sqp-line-soft);
}

.sqp-section.is-tone-ink {
	background: var(--sqp-ink);
	color: #fff;
}

.sqp-section.is-tone-hero {
	background: var(--sqp-hero-bg);
	color: var(--sqp-hero-fg);
}

/*
 * A run of sections sharing a tone reads as one band, so the hairline between
 * them has to go from both sides of the seam — the first section's bottom rule
 * and the second's top rule.
 */
.sqp-section.is-tone-alt:has(+ .sqp-section.is-tone-alt) {
	border-bottom: 0;
}

.sqp-section.is-tone-alt + .sqp-section.is-tone-alt {
	border-top: 0;
}

/* ------------------------------------------------------------ typography -- */

.sqp-h1 {
	margin: 28px 0 0;
	max-width: 15ch;
	font-family: var(--sqp-font-head);
	font-size: 76px;
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -2.6px;
	text-wrap: balance;
}

.sqp-h1.is-page {
	max-width: 20ch;
	font-size: 62px;
	line-height: 1.05;
	letter-spacing: -2.2px;
}

.sqp-h1 em {
	font-style: normal;
	color: var(--sqp-accent);
}

.sqp-h2 {
	margin: 14px 0 0;
	font-family: var(--sqp-font-head);
	font-size: 46px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -1.6px;
	color: inherit;
	text-wrap: balance;
}

.sqp-h3 {
	margin: 0;
	font-family: var(--sqp-font-head);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.8px;
}

.sqp-h4 {
	margin: 0;
	font-family: var(--sqp-font-head);
	font-size: 18.5px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.4px;
}

.sqp-eyebrow {
	margin: 0;
	font-family: var(--sqp-font-head);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--sqp-primary);
}

.sqp-eyebrow.is-accent {
	color: var(--sqp-accent);
}

.sqp-lead {
	margin: 20px 0 0;
	max-width: 58ch;
	font-size: 19px;
	line-height: 1.55;
	color: var(--sqp-text-muted);
}

.is-tone-ink .sqp-lead,
.is-tone-hero .sqp-lead,
.sqp-security .sqp-lead {
	color: var(--sqp-hero-dim);
}

.sqp-wrap.is-centred .sqp-lead {
	margin-inline: auto;
}

/* --------------------------------------------------------------- buttons -- */

.sqp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 54px;
	padding: 0 28px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-family: var(--sqp-font-head);
	font-size: 16.5px;
	font-weight: 600;
	letter-spacing: -0.1px;
	white-space: nowrap;
	transition: background-color 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.sqp-btn.is-small {
	height: 40px;
	padding: 0 20px;
	border-radius: 8px;
	font-size: 14.5px;
}

.sqp-btn.is-block {
	display: flex;
	width: 100%;
	height: 50px;
	font-size: 16px;
}

.sqp-btn.is-accent {
	background: var(--sqp-accent);
	color: var(--sqp-on-accent);
}

.sqp-btn.is-accent:hover {
	color: var(--sqp-on-accent);
	filter: brightness(1.08);
}

.sqp-btn.is-ink {
	background: var(--sqp-ink);
	color: #fff;
}

.sqp-btn.is-ink:hover {
	background: var(--sqp-primary);
	color: #fff;
}

.sqp-btn.is-outline {
	border-color: var(--sqp-hero-line);
	color: var(--sqp-hero-fg);
	font-weight: 500;
}

.sqp-btn.is-outline:hover {
	border-color: var(--sqp-accent);
	color: var(--sqp-hero-fg);
}

/* On a light field an outline button needs the ink palette, not the hero one. */
.is-tone-surface .sqp-btn.is-outline,
.is-tone-alt .sqp-btn.is-outline,
.sqp-suggest .sqp-btn.is-outline,
.sqp-pricing .sqp-btn.is-outline {
	border-color: var(--sqp-ink);
	color: var(--sqp-ink);
}

.is-tone-surface .sqp-btn.is-outline:hover,
.is-tone-alt .sqp-btn.is-outline:hover,
.sqp-suggest .sqp-btn.is-outline:hover,
.sqp-pricing .sqp-btn.is-outline:hover {
	background: var(--sqp-surface-alt);
	color: var(--sqp-ink);
}

.sqp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 38px;
}

.sqp-actions.is-centred,
.sqp-wrap.is-centred .sqp-actions {
	justify-content: center;
}

/* ---------------------------------------------------------------- header -- */

/*
 * WordPress wraps a template part in its own <div>. A sticky element can only
 * travel inside its containing block, and that wrapper is exactly as tall as
 * the header — so the header would stick for zero pixels and scroll straight
 * away. display:contents drops the wrapper out of the box tree, making the
 * header a direct child of the page flow with the whole document to stick over.
 */
.wp-block-template-part:has(> .sqp-header) {
	display: contents;
}

.sqp-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: color-mix(in oklab, var(--sqp-surface) 88%, transparent);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--sqp-line-soft);
}

.admin-bar .sqp-header {
	top: 32px;
}

.sqp-header-inner {
	display: flex;
	align-items: center;
	gap: 32px;
	height: 72px;
	padding-block: 0;
}

.sqp-logo {
	display: flex;
	align-items: center;
	flex: none;
}

/* An SVG logo has no useful intrinsic size — pin the height and let it scale. */
.sqp-logo-img {
	display: block;
	height: var(--sqp-logo-height, 32px);
	width: auto;
	max-width: 320px;
	object-fit: contain;
	object-position: left center;
}

/* Footer lockup: the square mark plus the product name in the display face. */
.sqp-logo.is-lockup {
	display: flex;
	align-items: center;
	gap: 11px;
}

.sqp-logo-mark {
	display: block;
	width: 30px;
	height: 30px;
	flex: none;
	object-fit: contain;
}

.sqp-logo-name {
	font-family: var(--sqp-font-head);
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -0.5px;
	line-height: 1;
	color: #fff;
}

.sqp-logo-text {
	font-family: var(--sqp-font-head);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.6px;
	color: var(--sqp-ink);
}

.sqp-nav {
	display: flex;
	gap: 26px;
	margin-left: 8px;
	flex: none;
	font-size: 14.5px;
	font-weight: 500;
	white-space: nowrap;
}

/* Inactive nav items are quiet ink; only the current page takes brand colour. */
.sqp-nav-link {
	color: var(--sqp-text-body);
}

.sqp-nav-link:hover {
	color: var(--sqp-primary);
}

.sqp-nav-link.is-current {
	color: var(--sqp-primary);
	font-weight: 600;
}

.sqp-header-spacer {
	flex: 1;
}

.sqp-header-note {
	flex: none;
	font-size: 13.5px;
	color: var(--sqp-text-dim);
	white-space: nowrap;
}

.sqp-header-note:hover {
	color: var(--sqp-ink);
}

.sqp-header-note.is-account {
	font-weight: 500;
	color: var(--sqp-primary);
}

.sqp-nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--sqp-line);
	border-radius: 8px;
	background: transparent;
	cursor: pointer;
}

.sqp-burger,
.sqp-burger::before,
.sqp-burger::after {
	display: block;
	width: 16px;
	height: 1.5px;
	margin: 0 auto;
	background: var(--sqp-ink);
	transition: transform 160ms ease;
}

.sqp-burger::before,
.sqp-burger::after {
	content: "";
	position: relative;
}

.sqp-burger::before {
	top: -5px;
}

.sqp-burger::after {
	top: 3.5px;
}

.sqp-drawer {
	position: sticky;
	top: 72px;
	z-index: 49;
	padding: 12px 32px 20px;
	background: var(--sqp-surface);
	border-bottom: 1px solid var(--sqp-line);
}

.sqp-drawer nav {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sqp-drawer-link {
	padding: 12px 4px;
	font-size: 16px;
	font-weight: 500;
	color: var(--sqp-text);
	border-bottom: 1px solid var(--sqp-line-soft);
}

/* ------------------------------------------------------------------ hero -- */

.sqp-hero {
	overflow: hidden;
	background: var(--sqp-hero-bg);
	color: var(--sqp-hero-fg);
}

.sqp-hero-photo {
	position: absolute;
	inset: 0 0 auto;
	height: 680px;
}

.sqp-hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sqp-hero-veil {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

/*
 * The left of this gradient protects the headline and stays at full strength
 * whatever --sqp-hero-veil says; only the right-hand stops, where there is no
 * text, are scaled. That is what lets a dark hero photo still read without
 * costing any contrast behind the copy.
 */
.sqp-hero-veil-x {
	background: linear-gradient(
		100deg,
		var(--sqp-hero-bg) 6%,
		color-mix(in oklab, var(--sqp-hero-bg) 90%, transparent) 42%,
		color-mix(in oklab, var(--sqp-hero-bg) calc(62% * var(--sqp-hero-veil, 1)), transparent) 74%,
		color-mix(in oklab, var(--sqp-hero-bg) calc(45% * var(--sqp-hero-veil, 1)), transparent) 100%
	);
}

.sqp-hero-veil-y {
	background: linear-gradient(
		to bottom,
		transparent 52%,
		color-mix(in oklab, var(--sqp-hero-bg) 70%, transparent) 82%,
		var(--sqp-hero-bg) 100%
	);
}

.sqp-hero-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(
		900px 460px at 78% -8%,
		color-mix(in oklab, var(--sqp-primary) 34%, transparent),
		transparent 70%
	);
}

.sqp-hero-inner {
	position: relative;
	padding-block: 96px 84px;
}

.sqp-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 7px 14px 7px 11px;
	border: 1px solid var(--sqp-hero-line);
	border-radius: 999px;
	font-size: 13px;
	letter-spacing: 0.2px;
	color: var(--sqp-hero-dim);
}

.sqp-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sqp-accent);
}

.sqp-hero-lead {
	margin: 24px 0 0;
	max-width: 52ch;
	font-size: 21px;
	line-height: 1.5;
	color: var(--sqp-hero-dim);
}

.sqp-hero-note {
	margin: 18px 0 0;
	font-size: 14px;
	color: var(--sqp-hero-dim);
}

.sqp-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	margin-top: 72px;
	background: var(--sqp-hero-line);
	border: 1px solid var(--sqp-hero-line);
}

.sqp-stat {
	padding: 22px 24px;
	background: var(--sqp-hero-bg);
}

.sqp-stat-value {
	font-family: var(--sqp-font-head);
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -1px;
}

.sqp-stat-label {
	margin-top: 4px;
	font-size: 13px;
	color: var(--sqp-hero-dim);
}

/* ------------------------------------------------------ hero screenshots -- */

.sqp-shots {
	margin-top: 44px;
}

.sqp-shots-stage {
	position: relative;
	height: 470px;
	overflow: hidden;
	border: 1px solid var(--sqp-hero-line);
	border-radius: 14px;
	background: color-mix(in oklab, var(--sqp-hero-bg) 92%, #000);
}

.sqp-shot {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 260ms ease;
}

.sqp-shot.is-active {
	opacity: 1;
	pointer-events: auto;
}

.sqp-shot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.sqp-shot-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 14px;
	letter-spacing: 0.4px;
	color: var(--sqp-hero-dim);
}

.sqp-shots-bar {
	display: flex;
	align-items: flex-start;
	gap: 32px;
	padding: 22px 4px 0;
}

.sqp-shots-meta {
	flex: 1;
}

.sqp-shots-title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--sqp-font-head);
	font-size: 19px;
	font-weight: 600;
	letter-spacing: -0.4px;
}

.sqp-chip {
	font-family: var(--sqp-font-head);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 4px 8px;
	border-radius: 4px;
	background: var(--sqp-hero-chip);
	color: var(--sqp-hero-dim);
}

.sqp-chip:empty {
	display: none;
}

.sqp-shots-caption {
	margin: 8px 0 0;
	max-width: 68ch;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--sqp-hero-dim);
}

.sqp-shots-nav {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 2px;
}

.sqp-dots {
	display: flex;
	gap: 7px;
}

.sqp-dot-btn {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--sqp-hero-line);
	cursor: pointer;
	transition: background-color 200ms ease;
}

.sqp-dot-btn.is-active {
	background: var(--sqp-accent);
}

.sqp-shots-steps {
	display: flex;
	gap: 8px;
}

.sqp-shot-step {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--sqp-hero-line);
	border-radius: 8px;
	background: transparent;
	color: var(--sqp-hero-fg);
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	transition: border-color 160ms ease;
}

.sqp-shot-step:hover {
	border-color: var(--sqp-accent);
}

.sqp-shots-counter {
	min-width: 42px;
	text-align: right;
	font-family: var(--sqp-font-head);
	font-size: 13.5px;
	color: var(--sqp-hero-dim);
	font-variant-numeric: tabular-nums;
}

/* ----------------------------------------------------------------- cards -- */

.sqp-grid {
	display: grid;
	gap: 22px;
	margin-top: 44px;
}

.sqp-grid.is-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.sqp-grid.is-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sqp-grid.is-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

.sqp-card {
	padding: 28px;
	border: 1px solid var(--sqp-line);
	border-radius: 12px;
	background: var(--sqp-surface);
}

.sqp-card.is-plain {
	border-color: var(--sqp-line);
}

.sqp-card.is-filled {
	border-color: transparent;
	background: var(--sqp-surface-alt);
}

.sqp-card-title {
	margin: 20px 0 0;
	font-family: var(--sqp-font-head);
	font-size: 19px;
	font-weight: 600;
	letter-spacing: -0.5px;
	color: var(--sqp-ink);
}

.sqp-card.is-plain .sqp-card-title,
.sqp-card.is-filled .sqp-card-title {
	margin-top: 0;
}

.sqp-card-text {
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--sqp-text-body);
}

.sqp-rule {
	display: block;
	width: 30px;
	height: 3px;
	border-radius: 2px;
	background: var(--sqp-accent);
}

.sqp-bullets {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin: 18px 0 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--sqp-text-muted);
}

.sqp-bullets li {
	padding-left: 16px;
	border-left: 2px solid var(--sqp-line-soft);
}

/* ----------------------------------------------------- before and after -- */

.sqp-card.is-contrast {
	padding: 34px;
	border-radius: 14px;
}

.sqp-card.is-contrast.is-highlight {
	border-color: var(--sqp-primary);
	background: var(--sqp-tint);
}

.sqp-kicker {
	margin: 0;
	font-family: var(--sqp-font-head);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--sqp-text-dim);
}

.is-highlight .sqp-kicker {
	color: var(--sqp-primary);
}

.sqp-claim {
	margin: 16px 0 0;
	font-family: var(--sqp-font-head);
	font-size: 26px;
	line-height: 1.28;
	letter-spacing: -0.8px;
	color: var(--sqp-text-dim);
}

.is-highlight .sqp-claim {
	color: var(--sqp-ink);
}

.sqp-note {
	margin: 18px 0 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--sqp-text-body);
}

/* --------------------------------------------------------- feature group -- */

.sqp-group-head {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin-top: 64px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--sqp-ink);
}

.sqp-group-note {
	font-size: 15px;
	color: var(--sqp-text-dim);
}

.sqp-modules-grid {
	margin-top: 28px;
}

.sqp-card.is-feature {
	padding: 26px;
}

.sqp-feature-head {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.sqp-badge {
	font-family: var(--sqp-font-head);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 4px 8px;
	border-radius: 4px;
	background: var(--sqp-tint-strong);
	color: var(--sqp-deep);
}

.sqp-card.is-feature .sqp-card-text {
	margin-top: 12px;
}

/* ------------------------------------------------------- assurance band -- */

.sqp-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.sqp-security .sqp-h2 {
	font-size: 42px;
	letter-spacing: -1.5px;
}

.sqp-stack {
	display: grid;
	gap: 1px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.sqp-stack-item {
	padding: 22px 26px;
	background: var(--sqp-ink);
}

.sqp-stack-title {
	font-family: var(--sqp-font-head);
	font-size: 17px;
	font-weight: 600;
}

.sqp-stack-text {
	margin-top: 6px;
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.66);
}

/* --------------------------------------------------------------- pricing -- */

.sqp-notice {
	display: inline-block;
	margin: 20px 0 0;
	padding: 10px 14px;
	border: 1px dashed color-mix(in oklab, var(--sqp-accent) 60%, var(--sqp-ink));
	border-radius: 8px;
	background: color-mix(in oklab, var(--sqp-accent) 12%, #fff);
	font-size: 14px;
	line-height: 1.5;
	color: color-mix(in oklab, var(--sqp-accent) 30%, #000);
}

.sqp-plans {
	display: grid;
	gap: 24px;
	margin-top: 48px;
}

.sqp-plans.is-cols-1 { grid-template-columns: minmax(0, 520px); }
.sqp-plans.is-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sqp-plans.is-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.sqp-plan {
	position: relative;
	padding: 36px;
	border: 1px solid var(--sqp-line);
	border-radius: 16px;
	background: var(--sqp-surface);
}

.sqp-plan.is-featured {
	padding: 35px;
	border: 2px solid var(--sqp-primary);
	background: color-mix(in oklab, var(--sqp-primary) 4%, #fff);
}

.sqp-plan-badge {
	position: absolute;
	top: -13px;
	left: 35px;
	padding: 6px 12px;
	border-radius: 5px;
	background: var(--sqp-accent);
	color: var(--sqp-on-accent);
	font-family: var(--sqp-font-head);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 1.2px;
}

.sqp-plan-kicker {
	margin: 0;
	font-family: var(--sqp-font-head);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--sqp-text-dim);
}

.sqp-plan.is-featured .sqp-plan-kicker {
	color: var(--sqp-primary);
}

.sqp-plan-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 18px 0 0;
}

.sqp-plan-figure {
	font-family: var(--sqp-font-head);
	font-size: 56px;
	font-weight: 700;
	letter-spacing: -2px;
	color: var(--sqp-ink);
}

.sqp-plan-unit {
	font-size: 16px;
	color: var(--sqp-text-dim);
}

.sqp-plan-text {
	margin: 16px 0 0;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--sqp-text-body);
}

.sqp-plan .sqp-btn {
	margin-top: 28px;
}

.sqp-plan-note {
	margin: 12px 0 0;
	text-align: center;
	font-size: 13.5px;
	color: var(--sqp-text-dim);
}

.sqp-matrix-wrap {
	margin-top: 72px;
	overflow-x: auto;
	border: 1px solid var(--sqp-line);
	border-radius: 14px;
}

.sqp-matrix {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.sqp-matrix thead tr {
	background: var(--sqp-surface-alt);
}

.sqp-matrix th {
	font-family: var(--sqp-font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--sqp-text-dim);
	text-align: left;
	padding: 16px 24px;
	border-bottom: 1px solid var(--sqp-line);
}

.sqp-matrix thead th + th {
	width: 150px;
	padding: 16px 20px;
	text-align: center;
}

.sqp-matrix thead th.is-lead {
	color: var(--sqp-primary);
	background: color-mix(in oklab, var(--sqp-primary) 6%, var(--sqp-surface-alt));
}

.sqp-matrix tbody th {
	font-family: var(--sqp-font-body);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	color: var(--sqp-text);
	padding: 14px 24px;
	border-bottom: 1px solid var(--sqp-line-soft);
}

.sqp-matrix td {
	padding: 14px 20px;
	text-align: center;
	border-bottom: 1px solid var(--sqp-line-soft);
	color: var(--sqp-text);
}

.sqp-matrix td.is-off {
	color: var(--sqp-text-dim);
}

.sqp-matrix td.is-lead {
	background: color-mix(in oklab, var(--sqp-primary) 4%, #fff);
}

.sqp-matrix tbody tr:last-child th,
.sqp-matrix tbody tr:last-child td {
	border-bottom: 0;
}

/* ------------------------------------------------------------------ specs -- */

.sqp-specs {
	margin: 40px 0 0;
	overflow: hidden;
	border: 1px solid var(--sqp-line);
	border-radius: 14px;
	background: var(--sqp-surface);
}

.sqp-spec-row {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 32px;
	padding: 20px 28px;
	border-bottom: 1px solid var(--sqp-line-soft);
}

.sqp-spec-row:last-child {
	border-bottom: 0;
}

.sqp-specs dt {
	font-family: var(--sqp-font-head);
	font-size: 15px;
	font-weight: 600;
	color: var(--sqp-ink);
}

.sqp-specs dd {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--sqp-text-muted);
}

/* -------------------------------------------------------------------- faq -- */

.sqp-faq .sqp-h2 {
	margin-bottom: 36px;
}

.sqp-faq-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sqp-card.is-faq {
	padding: 26px 28px;
}

.sqp-card.is-faq .sqp-card-text {
	font-size: 15.5px;
	line-height: 1.65;
}

/* -------------------------------------------------------------------- cta -- */

.sqp-cta {
	padding-block: 96px;
	text-align: center;
}

.sqp-cta.is-tone-hero {
	background: var(--sqp-hero-bg);
	color: var(--sqp-hero-fg);
}

.sqp-cta .sqp-h2 {
	margin: 0;
	letter-spacing: -1.8px;
}

.sqp-cta .sqp-lead {
	margin-top: 18px;
	font-size: 18.5px;
}

.sqp-cta .sqp-actions {
	margin-top: 34px;
}

/* ------------------------------------------------------------ page intro -- */

.sqp-page-intro {
	padding-block: 88px 96px;
}

.sqp-back {
	display: inline-block;
	margin-bottom: 20px;
	font-size: 14.5px;
	color: var(--sqp-hero-dim);
}

.sqp-page-intro.is-tone-surface .sqp-back {
	color: var(--sqp-text-dim);
}

.sqp-back:hover {
	color: var(--sqp-hero-fg);
}

.sqp-page-intro .sqp-h1 {
	margin-top: 16px;
}

.sqp-page-intro .sqp-lead {
	margin-top: 22px;
	font-size: 20px;
}

.sqp-page-intro .sqp-actions {
	margin-top: 36px;
}

/*
 * A page intro on a white field runs straight into the section below it. Left
 * alone that seam carries the intro's bottom padding AND the next section's
 * top padding — roughly double what the design allows between a page headline
 * and the first card.
 */
.sqp-page-intro.is-tone-surface {
	padding-block: 60px 0;
}

.sqp-page-intro.is-tone-surface + .sqp-section {
	padding-top: 48px;
}

/* ------------------------------------------------------------------ steps -- */

.sqp-steps-grid {
	list-style: none;
	padding: 0;
	margin-top: 40px;
}

.sqp-card.is-step {
	padding: 30px;
}

.sqp-step-num {
	font-family: var(--sqp-font-head);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.4px;
	color: var(--sqp-primary);
}

.sqp-step-title {
	margin: 14px 0 0;
	font-family: var(--sqp-font-head);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: -0.6px;
	color: var(--sqp-ink);
}

.sqp-card.is-step .sqp-card-text {
	font-size: 15.5px;
}

/* ------------------------------------------------------------------ board -- */

.sqp-board-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.sqp-board-head .sqp-h2 {
	margin: 0;
	font-size: 40px;
	letter-spacing: -1.4px;
}

.sqp-board-submit {
	font-size: 15px;
	font-weight: 600;
}

.sqp-board {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 36px 0 0;
	padding: 0;
}

.sqp-board-item {
	display: grid;
	grid-template-columns: 84px 1fr auto;
	gap: 24px;
	align-items: center;
	padding: 20px 24px;
	border: 1px solid var(--sqp-line);
	border-radius: 12px;
	background: var(--sqp-surface);
}

.sqp-vote {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	width: 60px;
	padding: 8px 0;
	border: 1px solid var(--sqp-line);
	border-radius: 10px;
	background: var(--sqp-surface);
	color: var(--sqp-ink);
	cursor: pointer;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.sqp-vote:hover {
	border-color: var(--sqp-primary);
}

.sqp-vote.is-voted {
	border-color: var(--sqp-primary);
	background: var(--sqp-primary);
	color: #fff;
}

.sqp-vote[disabled] {
	opacity: 0.6;
	cursor: progress;
}

.sqp-vote-arrow {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 6px solid currentColor;
}

.sqp-vote-count {
	font-family: var(--sqp-font-head);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
}

.sqp-board-title {
	margin: 0;
	font-family: var(--sqp-font-head);
	font-size: 18.5px;
	font-weight: 600;
	letter-spacing: -0.4px;
	color: var(--sqp-ink);
}

.sqp-board-detail {
	margin: 5px 0 0;
	font-size: 15px;
	line-height: 1.55;
	color: var(--sqp-text-body);
}

.sqp-board-empty,
.sqp-board-note {
	margin: 24px 0 0;
	font-size: 14px;
	color: var(--sqp-text-dim);
}

.sqp-pill {
	padding: 6px 10px;
	border-radius: 5px;
	font-family: var(--sqp-font-head);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	white-space: nowrap;
}

.sqp-pill-in-progress {
	background: color-mix(in oklab, var(--sqp-primary) 12%, #fff);
	color: var(--sqp-deep);
}

.sqp-pill-next-up {
	background: color-mix(in oklab, var(--sqp-primary) 8%, #fff);
	color: var(--sqp-primary);
}

.sqp-pill-under-consideration {
	background: var(--sqp-surface-alt);
	color: var(--sqp-text-dim);
}

.sqp-pill-shipped {
	background: color-mix(in oklab, var(--sqp-accent) 20%, #fff);
	color: color-mix(in oklab, var(--sqp-accent) 34%, #000);
}

/* ------------------------------------------------------------- vote gate -- */

.sqp-gate {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: color-mix(in oklab, var(--sqp-ink) 62%, transparent);
}

.sqp-gate[hidden] {
	display: none;
}

.sqp-gate-panel {
	width: 100%;
	max-width: 440px;
	padding: 34px;
	border-radius: 16px;
	background: var(--sqp-surface);
	box-shadow: 0 24px 64px color-mix(in oklab, var(--sqp-ink) 35%, transparent);
}

.sqp-gate-panel .sqp-h3 {
	margin: 12px 0 0;
	color: var(--sqp-ink);
}

.sqp-gate-item {
	margin: 18px 0 0;
	padding: 14px 16px;
	border-radius: 10px;
	background: var(--sqp-surface-alt);
	font-size: 14.5px;
	color: var(--sqp-text-muted);
}

.sqp-gate-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 24px;
}

.sqp-gate-dismiss {
	height: 40px;
	border: 0;
	background: transparent;
	font-size: 14.5px;
	color: var(--sqp-text-dim);
	cursor: pointer;
}

.sqp-gate-dismiss:hover {
	color: var(--sqp-ink);
}

/* ---------------------------------------------------------- suggest form -- */

.sqp-suggest-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

.sqp-card.is-form {
	padding: 36px;
	border-radius: 16px;
}

.sqp-card.is-aside {
	padding: 26px;
	border-radius: 14px;
}

.sqp-card.is-aside.is-filled {
	background: var(--sqp-surface-alt);
}

.sqp-suggest-aside {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.sqp-aside-link {
	display: inline-block;
	margin-top: 14px;
	font-size: 14.5px;
	font-weight: 600;
}

.sqp-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.sqp-field label {
	display: block;
	font-family: var(--sqp-font-head);
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: 0.2px;
	color: var(--sqp-ink);
}

.sqp-field-help {
	margin: 5px 0 10px;
	font-size: 13.5px;
	color: var(--sqp-text-dim);
}

.sqp-field input[type="text"],
.sqp-field input[type="email"],
.sqp-field select,
.sqp-field textarea {
	width: 100%;
	padding: 0 14px;
	height: 46px;
	border: 1px solid var(--sqp-line);
	border-radius: 9px;
	background: var(--sqp-surface);
	font-family: inherit;
	font-size: 15.5px;
	color: var(--sqp-text);
}

.sqp-field select {
	margin-top: 10px;
	padding: 0 12px;
}

.sqp-field textarea {
	height: auto;
	padding: 12px 14px;
	line-height: 1.55;
	resize: vertical;
}

.sqp-field input:focus,
.sqp-field select:focus,
.sqp-field textarea:focus {
	outline: 2px solid var(--sqp-primary);
	outline-offset: 1px;
	border-color: transparent;
}

.sqp-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.sqp-form-submit {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 4px;
}

.sqp-form-submit .sqp-btn {
	height: 50px;
	font-size: 16px;
}

.sqp-form-submit .sqp-field-help {
	margin: 0;
}

.sqp-form-feedback {
	margin: 0 0 20px;
	padding: 12px 16px;
	border-radius: 9px;
	font-size: 14.5px;
}

.sqp-form-feedback.is-warn {
	background: color-mix(in oklab, var(--sqp-accent) 16%, #fff);
	color: color-mix(in oklab, var(--sqp-accent) 34%, #000);
}

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

.sqp-success {
	padding: 28px 8px;
	text-align: center;
}

.sqp-success-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0 auto;
	border-radius: 50%;
	background: var(--sqp-tint-strong);
}

.sqp-success-mark::after {
	content: "";
	width: 16px;
	height: 9px;
	margin-top: -4px;
	border-left: 2.5px solid var(--sqp-primary);
	border-bottom: 2.5px solid var(--sqp-primary);
	transform: rotate(-45deg);
}

.sqp-success .sqp-h3 {
	margin: 20px 0 0;
	color: var(--sqp-ink);
}

.sqp-signin .sqp-h3 {
	margin: 12px 0 0;
	color: var(--sqp-ink);
}

/* ------------------------------------------------------------------ prose -- */

.sqp-prose h3 {
	margin: 40px 0 0;
	font-family: var(--sqp-font-head);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.6px;
	color: var(--sqp-ink);
}

.sqp-prose p {
	margin: 16px 0 0;
	font-size: 17px;
	line-height: 1.65;
	color: var(--sqp-text-body);
	max-width: 68ch;
}

.sqp-prose ul {
	margin: 16px 0 0;
	padding-left: 20px;
	max-width: 68ch;
	font-size: 17px;
	line-height: 1.65;
	color: var(--sqp-text-body);
}

.sqp-prose li + li {
	margin-top: 8px;
}

/* ---------------------------------------------------------------- footer -- */

.sqp-footer {
	padding: 64px 0 40px;
	background: var(--sqp-footer);
	color: rgba(255, 255, 255, 0.66);
}

.sqp-footer.is-compact {
	padding-top: 56px;
}

.sqp-footer a {
	color: inherit;
}

.sqp-footer a:hover {
	color: #fff;
}

.sqp-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
}


.sqp-footer-blurb {
	margin: 16px 0 0;
	max-width: 34ch;
	font-size: 14.5px;
	line-height: 1.65;
}

.sqp-footer-byline {
	margin: 20px 0 0;
	font-size: 14.5px;
}

.sqp-footer-byline a {
	color: var(--sqp-accent);
	font-weight: 500;
}

.sqp-footer-col-title {
	margin: 0;
	font-family: var(--sqp-font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

.sqp-footer-col nav {
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-top: 16px;
	font-size: 14.5px;
}

.sqp-footer-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 26px;
	font-size: 14.5px;
}

.sqp-footer-legal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.42);
}

.sqp-footer.is-compact .sqp-footer-legal {
	margin-top: 36px;
}

.sqp-footer-legal-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 22px;
}

/* ----------------------------------------------------------- responsive -- */

@media (max-width: 1080px) {
	.sqp-h1 { font-size: 60px; letter-spacing: -2px; }
	.sqp-h1.is-page { font-size: 50px; letter-spacing: -1.7px; }
	.sqp-h2 { font-size: 38px; letter-spacing: -1.3px; }
	.sqp-split { grid-template-columns: 1fr; gap: 40px; }
	.sqp-grid.is-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sqp-suggest-grid { grid-template-columns: 1fr; }
	.sqp-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
	.sqp-nav { display: none; }
	.sqp-nav-toggle { display: block; }
	.sqp-header-note { display: none; }
}

@media (max-width: 780px) {
	.sqp-wrap { padding-inline: 20px; }
	.sqp-h1 { font-size: 44px; letter-spacing: -1.4px; max-width: none; }
	.sqp-h1.is-page { font-size: 38px; letter-spacing: -1.2px; }
	.sqp-h2 { font-size: 30px; letter-spacing: -1px; }
	.sqp-hero-inner { padding-block: 56px 56px; }
	.sqp-hero-lead { font-size: 18px; }
	.sqp-lead { font-size: 17px; }
	.sqp-stats { grid-template-columns: repeat(2, 1fr); margin-top: 44px; }
	.sqp-shots-stage { height: 260px; }
	.sqp-shots-bar { flex-direction: column; gap: 16px; }
	.sqp-grid.is-cols-2,
	.sqp-grid.is-cols-3,
	.sqp-grid.is-cols-4 { grid-template-columns: 1fr; }
	.sqp-plans.is-cols-2,
	.sqp-plans.is-cols-3 { grid-template-columns: 1fr; }
	.sqp-plan-figure { font-size: 44px; }
	.sqp-spec-row { grid-template-columns: 1fr; gap: 6px; }
	.sqp-field-row { grid-template-columns: 1fr; }
	.sqp-board-item { grid-template-columns: 60px 1fr; row-gap: 14px; }
	.sqp-board-item .sqp-pill { grid-column: 2; justify-self: start; }
	.sqp-footer-grid { grid-template-columns: 1fr; }
	.sqp-card.is-form { padding: 24px; }
	.sqp-cta { padding-block: 64px; }
	.sqp-page-intro { padding-block: 56px 64px; }
	.sqp-btn { height: 48px; font-size: 15.5px; }
	.admin-bar .sqp-header { top: 46px; }
}
