/* Supportivo marketing site — base + components + sections */

:root {
	--accent: #7A44A1;
	--accent-dark: #662D91;
	--ink: #0B0B0C;
	--ink-2: #1a1a1c;
	--paper: #F5F3EE;
	--paper-2: #ffffff;
	--grey: #CECEC9;
	--grey-2: #e8e6e0;
	--muted: #6b6b70;
	--danger: #a63730;
	--success: #2f6a34;
	--panel: #faf8f4;
	--font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--maxw: 1200px;
	--pad-signature: 130px;
	--pad-standard: 96px;
	--pad-faq: 72px;
	--radius: 14px;
	--radius-lg: 20px;
	--shadow: 0 10px 30px -12px rgba(11, 11, 12, 0.12);
	--shadow-lg: 0 30px 60px -20px rgba(122, 68, 161, 0.25), 0 10px 20px -10px rgba(11, 11, 12, 0.15);
}

* {
	box-sizing: border-box; 
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	font-weight: 400;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	line-height: 1.55;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	cursor: pointer;
}

/* -------- Layout primitives -------- */
.container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding-top: var(--pad-standard);
	padding-bottom: var(--pad-standard);
}

.section--signature {
	padding-top: var(--pad-signature);
	padding-bottom: var(--pad-signature);
}

.section--faq {
	padding-top: var(--pad-faq);
	padding-bottom: var(--pad-faq);
}

.section--dark {
	background: var(--ink);
	color: var(--paper);
}

.section--paper {
	background: var(--paper-2);
}

@media (max-width: 720px) {
	:root {
		--pad-signature: 88px;
		--pad-standard: 64px;
		--pad-faq: 52px;
	}
}

/* -------- Typography -------- */
.eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 14px;
}

.h-signature {
	font-size: clamp(40px, 5.4vw, 68px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
	margin: 0 0 20px;
}

.h-section {
	font-size: clamp(28px, 3.4vw, 44px);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.1;
	margin: 0 0 16px;
}

.h-faq {
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 0 0 24px;
}

.lede {
	font-size: clamp(16px, 1.15vw, 18px);
	color: var(--muted);
	max-width: 62ch;
	margin: 0 0 32px;
}

.h-hero {
	font-size: clamp(38px, 5.2vw, 64px);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.02;
	margin: 0 0 22px;
}

/* -------- Buttons -------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid transparent;
	transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
	white-space: nowrap;
}

.btn i {
	font-size: 16px;
}

.btn--primary {
	background: var(--accent);
	color: #fff;
}

.btn--primary:hover {
	background: var(--accent-dark);
}

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

.btn--outline:hover {
	background: var(--ink);
	color: var(--paper);
}

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

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

/* -------- Header (floating pill) -------- */
.site-header {
	position: sticky;
	top: 16px;
	z-index: 40;
	max-width: var(--maxw);
	margin: 16px 20px 0;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: saturate(140%) blur(16px);
	border: 1px solid rgba(11, 11, 12, .08);
	border-radius: 999px;
	box-shadow: 0 20px 40px -22px rgba(11, 11, 12, .2), 0 4px 14px -6px rgba(11, 11, 12, .08);
}

@media (min-width: 1160px) {
	.site-header {
		margin-left: auto;
		margin-right: auto;
	}
}

.site-header__inner {
	width: auto;
	max-width: none;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 12px 10px 22px;
	gap: 24px;
	position: relative;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.brand__logo {
	height: 28px;
	width: auto;
}

.brand__tag {
	font-size: 11px;
	color: var(--muted);
	letter-spacing: 0.02em;
	display: none;
}

@media (min-width: 900px) {
	.brand__tag {
		display: inline;
	}
}

.nav {
	display: none;
	gap: 28px;
	align-items: center;
}

.nav a {
	font-size: 14px;
	font-weight: 500;
	color: var(--ink);
	opacity: .78;
}

.nav a:hover {
	opacity: 1;
	color: var(--accent);
}

.nav a.is-active {
	opacity: 1;
	color: var(--accent);
}

@media (min-width: 840px) {
	.nav {
		display: inline-flex;
	}
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	border: none;
	background: transparent;
	color: var(--ink);
	font-size: 20px;
	cursor: pointer;
	flex-shrink: 0;
	margin-left: 10px;
}

.nav-toggle:hover {
	background: rgba(11, 11, 12, .06);
}

@media (max-width: 839px) {
	.nav-toggle {
		display: inline-flex;
	}

	.nav {
		display: none;
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		right: 0;
		background: var(--paper-2);
		border: 1px solid rgba(11, 11, 12, .08);
		border-radius: 20px;
		box-shadow: 0 20px 40px -22px rgba(11, 11, 12, .2), 0 4px 14px -6px rgba(11, 11, 12, .08);
		padding: 10px;
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		z-index: 50;
	}

	.nav.is-open {
		display: flex;
	}

	.nav a {
		padding: 12px 16px;
		border-radius: 12px;
		opacity: 1;
	}

	.nav a:hover,
	.nav a.is-active {
		background: rgba(122, 68, 161, .08);
		color: var(--accent);
	}
}

.header-actions {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.lang-switch {
	font-size: 13px;
	font-weight: 600;
	color: var(--muted);
}

.lang-switch a {
	color: var(--muted);
	padding: 0 4px;
}

.lang-switch a.is-active {
	color: var(--ink);
}

.lang-switch span {
	opacity: .35;
}

.header-cta {
	display: none;
}

@media (min-width: 720px) {
	.header-cta {
		display: inline-flex;
	}
}

/* -------- Hero -------- */
.hero {
	padding-top: 72px;
	padding-bottom: 40px;
	position: relative;
	overflow: hidden;
}

.hero__grid {
	display: grid;
	gap: 48px;
	grid-template-columns: 1fr;
	align-items: center;
}

@media (min-width: 960px) {
	.hero__grid {
		grid-template-columns: 1.05fr 1fr;
		gap: 64px;
	}
}

.hero__cta-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.hero__trust {
	display: flex;
	gap: 22px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 32px;
	color: var(--muted);
	font-size: 13px;
}

.hero__trust-stars {
	display: inline-flex;
	gap: 2px;
	color: #d3a53f;
	font-size: 13px;
}

.hero__mock-wrap {
	position: relative;
}

.hero__floater {
	position: absolute;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	top: -14px;
	right: 12%;
	box-shadow: 0 14px 30px -10px rgba(122, 68, 161, .55);
}

.hero__stat-card {
	position: absolute;
	left: -18px;
	bottom: -26px;
	background: var(--paper-2);
	border-radius: 16px;
	padding: 16px 20px;
	box-shadow: var(--shadow-lg);
	min-width: 190px;
	background-image: linear-gradient(180deg, rgba(122, 68, 161, .05), transparent);
}

.hero__stat-num {
	font-size: 34px;
	font-weight: 800;
	color: var(--accent);
	letter-spacing: -0.02em;
	line-height: 1;
}

.hero__stat-label {
	font-size: 12px;
	color: var(--muted);
	margin-top: 6px;
	font-weight: 500;
}

/* -------- Browser-frame mockup -------- */
.browser {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	border: 1px solid var(--grey-2);
}

.browser__bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px;
	background: #f3efe8;
	border-bottom: 1px solid var(--grey-2);
}

.browser__dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #d9d6d0;
}

.browser__dot:nth-child(1) {
	background: #ff6058;
}

.browser__dot:nth-child(2) {
	background: #ffbd2d;
}

.browser__dot:nth-child(3) {
	background: #29ca41;
}

.browser__url {
	margin-left: 14px;
	font-size: 11px;
	color: var(--muted);
	background: #fff;
	padding: 4px 10px;
	border-radius: 6px;
	border: 1px solid var(--grey-2);
	flex: 1;
	max-width: 320px;
}

.browser__body {
	padding: 18px;
}

/* Fake ticket dashboard */
.tdash {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 16px;
}

.tdash__side {
	background: var(--panel);
	border-radius: 10px;
	padding: 14px;
}

.tdash__side h5 {
	margin: 0 0 10px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--muted);
	font-weight: 700;
}

.tdash__side ul {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	font-size: 12px;
}

.tdash__side li {
	display: flex;
	justify-content: space-between;
	padding: 6px 8px;
	border-radius: 6px;
	color: #333;
}

.tdash__side li.is-active {
	background: rgba(122, 68, 161, .1);
	color: var(--accent);
	font-weight: 600;
}

.tdash__side li b {
	font-weight: 700;
}

.tdash__main {
	min-width: 0;
}

.tdash__main h4 {
	font-size: 13px;
	margin: 0 0 12px;
	font-weight: 700;
}

.tdash__row {
	display: grid;
	grid-template-columns: 1fr 90px 80px 60px;
	gap: 10px;
	align-items: center;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 12px;
	border-bottom: 1px solid #f0ede7;
}

.tdash__row:hover {
	background: var(--panel);
}

.tdash__row-title {
	font-weight: 600;
	color: var(--ink);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tdash__row-sub {
	color: var(--muted);
	font-size: 11px;
	font-weight: 400;
	margin-top: 2px;
}

.chip {
	display: inline-block;
	font-size: 10px;
	padding: 3px 8px;
	border-radius: 999px;
	font-weight: 600;
	letter-spacing: .02em;
}

.chip--open {
	background: #ffe8d1;
	color: #8a4e10;
}

.chip--pending {
	background: #e6dbf3;
	color: var(--accent-dark);
}

.chip--closed {
	background: #d7ecd8;
	color: var(--success);
}

.chip--sla-ok {
	background: #d7ecd8;
	color: var(--success);
}

.chip--sla-risk {
	background: #ffe0dc;
	color: var(--danger);
}

.chip i {
	margin-right: 4px;
	font-size: 11px;
	vertical-align: -1px;
}

.chip--lg {
	font-size: 13px;
	padding: 7px 16px 7px 14px;
}

.chip--lg i {
	font-size: 14px;
	margin-right: 6px;
}

/* -------- Roadmap -------- */
.roadmap-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 640px;
	margin: 0 auto;
}

.roadmap-stat {
	text-align: center;
	padding: 22px 12px;
	background: var(--paper-2);
	border: 1px solid var(--grey-2);
	border-radius: var(--radius);
}

.roadmap-stat__num {
	display: block;
	font-size: 34px;
	font-weight: 800;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 6px;
}

.roadmap-stat__label {
	font-size: 13px;
	color: var(--muted);
	font-weight: 600;
}

.roadmap-legend {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.roadmap-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 40px;
}

@media (min-width: 640px) {
	.roadmap-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.roadmap-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.roadmap-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.roadmap-card .chip {
	margin-bottom: 14px;
}

.roadmap-card .feat-card__icon {
	margin-bottom: 16px;
}

.roadmap-released {
	margin-top: 8px;
	padding: 36px;
	background: linear-gradient(155deg, var(--accent) 0%, var(--accent-dark) 100%);
	border-radius: var(--radius);
	color: #fff;
}

.roadmap-released__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, .16);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 16px;
}

.roadmap-released h3 {
	color: #fff;
	font-size: 22px;
	margin: 0 0 10px;
}

.roadmap-released p {
	color: rgba(255, 255, 255, .85);
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 16px;
	max-width: 72ch;
}

.roadmap-released a {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 640px) {
	.tdash {
		grid-template-columns: 1fr;
	}

	.tdash__side {
		display: none;
	}

	.tdash__row {
		grid-template-columns: 1fr 80px;
	}

	.tdash__row .chip:nth-of-type(2),
	.tdash__row .tdash__row-priority {
		display: none;
	}
}

/* -------- Trust bar -------- */
.trust {
	padding: 44px 0;
	border-top: 1px solid rgba(11, 11, 12, .08);
	border-bottom: 1px solid rgba(11, 11, 12, .08);
	background: var(--paper);
}

.trust__row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-items: center;
	gap: 24px;
}

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

.trust__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
}

.trust__item i {
	color: var(--accent);
	font-size: 20px;
}

/* -------- Feature grid -------- */
.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin-top: 40px;
}

@media (min-width: 640px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

.feat-card {
	display: block;
	background: var(--paper-2);
	border: 1px solid var(--grey-2);
	border-radius: var(--radius);
	padding: 26px 22px;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	color: inherit;
}

.feat-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(122, 68, 161, .1);
	color: var(--accent);
	font-size: 22px;
	margin-bottom: 18px;
}

.feat-card h3 {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.005em;
}

.feat-card p {
	margin: 0;
	font-size: 14px;
	color: var(--muted);
	line-height: 1.5;
}

/* -------- How it works -------- */
.how {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	margin-top: 44px;
	position: relative;
}

@media (min-width: 820px) {
	.how {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}

	.how::before {
		content: "";
		position: absolute;
		top: 34px;
		left: 12%;
		right: 12%;
		height: 2px;
		background: linear-gradient(90deg, transparent, var(--grey), transparent);
		z-index: 0;
	}
}

.how__step {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 0 12px;
}

.how__num {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: var(--paper-2);
	border: 2px solid var(--accent);
	color: var(--accent);
	font-weight: 800;
	font-size: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.how__step h4 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
}

.how__step p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

/* -------- Without/With signature -------- */
.wowr {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-top: 44px;
}

@media (min-width: 820px) {
	.wowr {
		grid-template-columns: 1fr 1fr;
	}
}

.wowr__col {
	padding: 44px 36px;
}

.wowr__col--without {
	background: var(--ink);
	color: #d5d5d7;
}

.wowr__col--with {
	background: linear-gradient(155deg, var(--accent) 0%, var(--accent-dark) 100%);
	color: #fff;
	position: relative;
}

.wowr__col h4 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .15em;
	margin: 0 0 20px;
	opacity: .8;
}

.wowr__col--with h4 {
	color: #f0e5ff;
	opacity: 1;
}

.wowr__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.wowr__col li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	font-size: 16px;
	line-height: 1.45;
}

.wowr__col li i {
	font-size: 20px;
	flex-shrink: 0;
	margin-top: 2px;
}

.wowr__col--without li i {
	color: #d68a86;
}

.wowr__col--with li i {
	color: #fff;
}

.wowr__col--with li {
	color: #fff;
	font-weight: 500;
}

/* -------- Pricing -------- */
.pricing-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	margin-top: 44px;
	align-items: stretch;
}

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

@media (min-width: 1060px) {
	.pricing-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 18px;
	}
}

.plan {
	background: var(--paper-2);
	border: 1px solid var(--grey-2);
	border-radius: var(--radius);
	padding: 30px 22px;
	display: flex;
	flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	position: relative;
}

.plan h3 {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 700;
}

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

.plan__price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 6px;
}

.plan__price-num {
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.plan__price-cycle {
	font-size: 13px;
	color: var(--muted);
}

.plan__price-alt {
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 22px;
	min-height: 18px;
}

.plan__features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: grid;
	gap: 10px;
	font-size: 14px;
}

.plan__features li {
	position: relative;
	padding-left: 22px;
}

.plan__features li > i:first-child {
	position: absolute;
	left: 0;
	top: 3px;
	color: var(--accent);
	font-size: 16px;
}

.plan__features li i.plan__info {
	color: var(--muted);
	font-size: 12px;
	margin-left: 3px;
	cursor: help;
	vertical-align: 1px;
}

.plan__features li i.plan__info:hover {
	color: var(--accent);
}

.plan .btn {
	width: 100%;
	justify-content: center;
	margin-top: auto;
}

.plan--pop {
	border: 2px solid var(--accent);
	box-shadow: var(--shadow-lg);
	z-index: 2;
}

@media (min-width: 1060px) {
	.plan--pop {
		transform: scale(1.06) translateY(-16px);
	}
}

.plan__ribbon {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 999px;
	letter-spacing: .08em;
	text-transform: uppercase;
	white-space: nowrap;
}

/* Comparison table (pricing page) */
.compare {
	margin-top: 48px;
	border: 1px solid var(--grey-2);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--paper-2);
}

.compare__row {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	border-bottom: 1px solid var(--grey-2);
}

.compare__row:last-child {
	border-bottom: 0;
}

.compare__row>* {
	padding: 14px 16px;
	font-size: 14px;
}

.compare__row--head>* {
	background: var(--panel);
	font-weight: 700;
	font-size: 13px;
}

.compare__row--head .compare__cell--pop {
	background: rgba(122, 68, 161, .12);
	color: var(--accent-dark);
}

.compare__cell--pop {
	background: rgba(122, 68, 161, .04);
}

.compare__row i {
	color: var(--accent);
	font-size: 18px;
}

.compare__row .no i {
	color: #64748B;
	font-size: 18px;
}

.compare__label {
	font-weight: 500;
}

@media (max-width: 820px) {
	.compare__row {
		grid-template-columns: 1.3fr 1fr 1fr;
	}

	.compare__row>* {
		padding: 12px 10px;
		font-size: 13px;
	}
}

/* -------- FAQ -------- */
.faq {
	margin: 0 auto;
	margin-top: 24px;
}

.faq details {
	border-bottom: 1px solid var(--grey-2);
	padding: 20px 0;
}

.faq summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
	gap: 20px;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::after {
	content: "";
	width: 12px;
	height: 12px;
	border-right: 2px solid var(--ink);
	border-bottom: 2px solid var(--ink);
	transform: rotate(45deg);
	transition: transform .2s ease;
	flex-shrink: 0;
}

.faq details[open] summary::after {
	transform: rotate(-135deg);
}

.faq p {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.6;
}

/* -------- CTA band -------- */
.cta-band {
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	color: #fff;
	padding: 80px 0;
	text-align: center;
}

.cta-band h2 {
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 24px;
}

.cta-band .btn--primary {
	background: #fff;
	color: var(--accent-dark);
}

.cta-band .btn--primary:hover {
	background: var(--paper);
}

/* -------- Footer -------- */
.site-footer {
	background: var(--ink);
	color: #b8b8bc;
	padding: 60px 0 28px;
}

.footer-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
}

@media (min-width: 720px) {
	.footer-grid {
		grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
	}
}

.footer-col h5 {
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin: 0 0 14px;
	font-weight: 700;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
	font-size: 14px;
}

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

.footer-brand p {
	font-size: 13px;
	margin: 12px 0 0;
	max-width: 32ch;
	opacity: .8;
}

.footer-brand__logo {
	height: 26px;
	filter: brightness(0) invert(1);
}

.footer-bottom {
	margin-top: 44px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: space-between;
	font-size: 13px;
	opacity: .75;
}

.footer-bottom a {
	color: #fff;
}

.footer-bottom a:hover {
	text-decoration: underline;
}

/* -------- Feature pages (alt rows) -------- */
.feat-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
	padding: 64px 0;
	border-bottom: 1px solid var(--grey-2);
}

@media (min-width: 900px) {
	.feat-row {
		grid-template-columns: 1fr 1.1fr;
		gap: 72px;
	}

	.feat-row--flip .feat-row__media {
		order: -1;
	}
}

.feat-row__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 12px;
}

.feat-row h2 {
	font-size: clamp(24px, 2.6vw, 34px);
	margin: 0 0 12px;
	font-weight: 700;
	letter-spacing: -0.015em;
}

.feat-row p {
	color: var(--muted);
	font-size: 15px;
	margin: 0 0 12px;
}

.feat-row ul {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.feat-row ul li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 14px;
}

.feat-row ul li i {
	color: var(--accent);
	font-size: 16px;
	margin-top: 3px;
}

/* -------- Contact -------- */
.contact-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 48px;
	align-items: start;
}

@media (max-width: 820px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

.contact-form {
	display: grid;
	gap: 16px;
	margin-top: 32px;
}

.contact-form label {
	font-size: 13px;
	font-weight: 600;
	display: block;
	margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--grey-2);
	border-radius: 10px;
	font: inherit;
	background: var(--paper-2);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(122, 68, 161, .15);
}

.contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

.contact-form .hp {
	position: absolute;
	left: -9999px;
}

.form-status {
	display: none;
	margin-bottom: 20px;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
}

.form-status:not(:empty) {
	display: block;
}

.form-status--ok {
	background: rgba(47, 106, 52, .1);
	color: var(--success);
}

.form-status--error {
	background: rgba(176, 65, 62, .1);
	color: var(--danger);
}

.contact-fallback {
	margin-top: 22px;
	font-size: 13px;
	color: var(--muted);
	text-align: center;
}

.contact-fallback a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* -------- Changelog -------- */
.changelog-list {
	max-width: 780px;
	margin: 0 auto;
	margin-top: 32px;
	display: grid;
	gap: 32px;
}

.changelog-entry {
	padding: 24px 26px;
	background: var(--paper-2);
	border: 1px solid var(--grey-2);
	border-radius: var(--radius);
}

.changelog-entry__head {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.changelog-entry__ver {
	font-size: 20px;
	font-weight: 800;
	color: var(--accent);
}

.changelog-entry__date {
	font-size: 12px;
	color: var(--muted);
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.changelog-entry ul {
	margin: 0;
	padding-left: 20px;
	font-size: 14px;
	color: var(--ink);
}

.changelog-entry li {
	margin-bottom: 6px;
}

/* -------- Page head (intro banner) -------- */
.page-head {
	padding-top: 88px;
	padding-bottom: 40px;
	text-align: center;
}

.page-head h1 {
	font-size: clamp(36px, 4.6vw, 56px);
	font-weight: 800;
	letter-spacing: -0.025em;
	margin: 0 0 16px;
	line-height: 1.05;
}

.page-head p {
	font-size: 17px;
	color: var(--muted);
	max-width: 60ch;
	margin: 0 auto;
}

/* -------- Legal pages -------- */
.legal-copy {
	max-width: 720px;
	margin: 0 auto;
	padding-bottom: 96px;
}

.legal-copy__updated {
	color: var(--muted);
	font-size: 13px;
	margin-bottom: 40px;
}

.legal-copy section {
	margin-bottom: 36px;
}

.legal-copy h2 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 10px;
	letter-spacing: -0.01em;
}

.legal-copy p,
.legal-copy li {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.7;
}

.legal-copy ul {
	margin: 8px 0 0;
	padding-left: 20px;
}

.legal-copy a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}