/* --- Start: Lead viewer --- */
.leads-section {
	padding: 40px 0 80px;
}

.leads-section--wide .leads-wrap {
	width: min(100% - 32px, 1880px);
	max-width: none;
}

.leads-title {
	font-family: var(--ff-display);
	font-size: var(--fs-medium);
	letter-spacing: var(--ls-heading-tight);
	margin: var(--space-2xl) 0 var(--space-md);
}

.leads-title:first-child {
	margin-top: 0;
}

.leads-scroll {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--surface);
}

.leads-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 920px;
}

.leads-table--orders {
	min-width: 1480px;
}

.leads-table--payment-links {
	min-width: 1120px;
}

.leads-table thead {
	background: var(--paper);
}

.leads-table th,
.leads-table td {
	padding: 12px 14px;
	text-align: left;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
	font-size: var(--fs-xsmall);
	line-height: 1.45;
}

.leads-table th {
	font-family: var(--ff-mono);
	font-size: var(--fs-xsmall);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.leads-table tbody tr:last-child td {
	border-bottom: none;
}

.leads-table tbody tr:hover {
	background: var(--paper);
}

.leads-table time,
.lead-id {
	font-family: var(--ff-mono);
	font-size: var(--fs-xsmall);
	color: var(--muted);
}

.leads-table a {
	color: var(--ink);
	border-bottom: 1px solid var(--line);
}

.lead-sub {
	display: inline-block;
	margin-top: 2px;
	color: var(--muted);
}

.order-token {
	display: inline-flex;
	flex-direction: column;
	margin-top: 2px;
	font-family: var(--ff-mono);
	line-height: 1.25;
}

.order-token span {
	display: block;
}

.status-pills {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xs);
}

.status-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 3px 7px;
	font-family: var(--ff-mono);
	font-size: var(--fs-xsmall);
	line-height: 1.2;
	color: var(--muted);
	background: var(--paper);
}

.status-pill.is-complete {
	border-color: rgba(24, 128, 76, 0.24);
	color: var(--ink);
	background: rgba(24, 128, 76, 0.08);
}

.leads-empty {
	text-align: center;
	color: var(--muted);
}

.leads-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
	font-family: var(--ff-mono);
	font-size: var(--fs-xsmall);
	color: var(--muted);
}

.leads-pagination a {
	color: var(--ink);
	border-bottom: 1px solid currentColor;
}

.backoffice-nav {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-bottom: var(--space-xl);
}

.backoffice-nav a {
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: var(--space-xs) var(--space-md);
	font-family: var(--ff-mono);
	font-size: var(--fs-xsmall);
	color: var(--ink);
	background: var(--surface);
}

.backoffice-nav a[aria-current="page"] {
	background: var(--ink);
	color: var(--paper);
	border-color: var(--ink);
}
/* --- End: Lead viewer --- */
/* --- Start: FAQ page --- */
.faq-hero {
	background: var(--yellow);
	padding: 96px 0 72px;
}

.faq-hero h1 {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: var(--fs-huge);
	letter-spacing: var(--ls-heading-hero);
	line-height: 0.95;
	color: var(--ink);
	margin: 0;
}

.faq-hero p {
	font-size: var(--fs-normal);
	line-height: 1.5;
	color: var(--ink);
	margin: 28px 0 0;
	max-width: 62ch;
}

.faq {
	padding: var(--space-7xl) 0;
	background: var(--paper);
}

.faq .wrap {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 80px;
	align-items: start;
	max-width: 1240px;
}

.faq nav.tocf {
	position: sticky;
	top: calc(var(--header-height) + 20px);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.faq nav.tocf h6 {
	font-family: var(--ff-mono);
	font-size: var(--fs-xsmall);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 14px;
}

.faq nav.tocf a {
	display: flex;
	gap: 10px;
	align-items: baseline;
	padding: 12px 14px;
	border-radius: var(--radius-sm);
	font-size: var(--fs-xsmall);
	font-weight: 500;
	line-height: 1.3;
	transition: background var(--motion-fast);
}

.faq nav.tocf a:hover {
	background: var(--paper);
}

.faq-cards {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.qa {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 36px 40px 32px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.qa h2 {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: var(--fs-large);
	letter-spacing: var(--ls-heading-tight);
	line-height: 1.05;
	margin: 0;
}

.qa ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.qa ul li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	font-size: var(--fs-small);
	line-height: 1.55;
	color: var(--ink);
}

.qa ul li .dot {
	flex: none;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--yellow);
	color: var(--ink);
	display: grid;
	place-items: center;
	font-size: var(--fs-xsmall);
	font-weight: 700;
	margin-top: 2px;
}

.qa ul li strong {
	font-weight: 600;
}

.qa p {
	font-size: var(--fs-small);
	line-height: 1.6;
	color: var(--ink);
	margin: 0;
}

.qa p + p {
	margin-top: 14px;
}

.qa .ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.faq-bottom {
	padding: var(--space-6xl) 0;
	background: var(--paper);
	border-top: 1px solid var(--line);
	text-align: center;
}

.faq-bottom h3 {
	font-family: var(--ff-display);
	font-size: var(--fs-large);
	font-weight: 700;
	letter-spacing: var(--ls-heading-tight);
	margin: 0 0 14px;
}

.faq-bottom p {
	color: var(--ink);
	font-size: var(--fs-small);
	line-height: 1.55;
	max-width: 560px;
	margin: 0 auto 28px;
}

.faq-bottom-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

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

	.faq nav.tocf {
	  position: static;
	  flex-direction: row;
	  flex-wrap: wrap;
	  gap: 8px;
	}

	.faq nav.tocf h6 {
	  width: 100%;
	}
}

@media (max-width: 820px) {
	.qa {
	  padding: 30px 24px 28px;
	}
}
/* --- End: FAQ page --- */
/* --- Start: Story --- */
.story-hero {
	padding: 120px 0 64px;
	background: var(--paper);
}

.story-hero h1 {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: var(--fs-huge);
	line-height: 0.95;
	letter-spacing: var(--ls-heading-hero);
	margin: 0;
	color: var(--ink);
	max-width: 18ch;
}

.story-hero .sub {
	font-family: var(--ff-display);
	font-size: var(--fs-medium);
	font-weight: 500;
	color: var(--muted);
	letter-spacing: 0;
	line-height: 1.35;
	max-width: 680px;
	margin: 28px 0 0;
}

.story {
	padding: var(--space-7xl) 0;
}

.story .wrap {
	max-width: 880px;
}

.story-body {
	font-size: var(--fs-medium);
	line-height: 1.75;
	color: var(--ink);
}

.story-body p {
	margin: 0 0 26px;
}

.story-body p:first-of-type::first-letter {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: var(--fs-dropcap);
	float: left;
	line-height: 0.85;
	margin: 6px 16px 0 0;
	color: var(--ink);
}

.story-body p strong {
	font-weight: 600;
}

.story-body .pull {
	margin: 48px -40px;
	padding: 36px 40px;
	background: var(--yellow);
	border-radius: var(--radius-lg);
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: var(--fs-medium);
	line-height: 1.25;
	letter-spacing: 0;
	color: var(--ink);
}

.story-body .pull cite {
	display: block;
	margin-top: 16px;
	font-family: var(--ff-mono);
	font-size: var(--fs-xsmall);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink);
	font-style: normal;
}

.story-body h3 {
	font-family: var(--ff-display);
	font-size: var(--fs-large);
	font-weight: 700;
	letter-spacing: var(--ls-heading-tight);
	margin: 48px 0 18px;
	line-height: 1.1;
}

.biz-model {
	margin: var(--space-3xl) 0;
	padding: 36px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}

.biz-model h4 {
	font-family: var(--ff-display);
	font-size: var(--fs-medium);
	margin: 0 0 18px;
	letter-spacing: var(--ls-heading-tight);
}

.biz-model ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.biz-model ul li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	font-size: var(--fs-small);
	line-height: 1.5;
	color: var(--ink);
}

.biz-model ul li .dot {
	flex: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--yellow);
	display: grid;
	place-items: center;
	font-size: var(--fs-xsmall);
	font-weight: 700;
	margin-top: 1px;
}

.biz-model ul li strong {
	font-weight: 600;
}

.sign {
	margin-top: 64px;
	padding-top: 36px;
	border-top: 1px solid var(--line);
	display: flex;
	align-items: center;
	gap: 18px;
}

.sign .av {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--yellow);
	display: grid;
	place-items: center;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: var(--fs-normal);
}

.sign .who {
	font-family: var(--ff-display);
}

.sign .who .name {
	font-weight: 700;
	font-size: var(--fs-normal);
	letter-spacing: 0;
}

.sign .who .role {
	font-size: var(--fs-xsmall);
	color: var(--muted);
	font-weight: 500;
	margin-top: 2px;
}

@media (max-width: 980px) {
	.story-body .pull { margin-inline: 0; }
	.biz-model ul { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.story-hero { padding: 80px 0 48px; }
	.story { padding: 64px 0; }
	.story-body { font-size: var(--fs-normal); }
	.biz-model { padding: var(--space-lg); }
}
/* --- End: Story --- */
/* --- Start: Checkout --- */
.checkout {
	padding: var(--space-7xl) 0;
	background: var(--paper);
}

.checkout-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.8fr) minmax(0, 2fr);
	gap: var(--space-4xl);
	align-items: start;
}

.checkout-intro h1,
.checkout-thanks h1 {
	font-family: var(--ff-display);
	font-size: var(--fs-medium);
	line-height: 0.95;
	letter-spacing: var(--ls-heading-hero);
	margin: 0;
}

.checkout-intro p,
.checkout-thanks p {
	font-size: var(--fs-normal);
	line-height: 1.6;
	color: var(--ink);
	margin: var(--space-lg) 0 0;
}

.checkout-panel {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: var(--space-2xl);
}

.checkout-main {
	display: grid;
	gap: var(--space-xl);
	align-items: start;
}

.checkout-intro .checkout-summary {
	margin-top: var(--space-2xl);
}

.checkout-summary h2,
.checkout-form h2 {
	font-family: var(--ff-display);
	font-size: var(--fs-medium);
	letter-spacing: var(--ls-heading-tight);
	margin: 0 0 var(--space-lg);
}

.checkout-summary dl {
	display: grid;
	gap: var(--space-sm);
	margin: 0 0 var(--space-lg);
}

.checkout-summary dl div {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: var(--space-md);
}

.checkout-summary dt {
	font-family: var(--ff-mono);
	font-size: var(--fs-xsmall);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
}

.checkout-summary dd {
	margin: 0;
	font-size: var(--fs-small);
	line-height: 1.45;
}

.checkout-summary .price strong {
	font-size: var(--fs-medium);
}

.checkout-status {
	display: grid;
	gap: var(--space-xs);
	margin: 0;
}

.checkout-status span,
.checkout-alert {
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: var(--space-sm) var(--space-md);
	background: var(--paper);
	font-size: var(--fs-small);
	line-height: 1.45;
}

.checkout-status .is-complete,
.checkout-alert-ok {
	border-color: rgba(24, 128, 76, 0.24);
	background: rgba(24, 128, 76, 0.08);
}

.checkout-alert {
	margin-bottom: var(--space-lg);
}

.checkout-alert p {
	margin: 0;
}

.checkout-alert p + p {
	margin-top: var(--space-xs);
}

.checkout-form {
	display: grid;
	gap: var(--space-md);
	margin-top: 0;
}

.checkout-form-accept .checkout-terms-box {
	margin: calc(-1 * var(--space-2xl)) calc(-1 * var(--space-2xl)) 0;
	border-top: 0;
	border-right: 0;
	border-left: 0;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.checkout-terms-title {
	font-family: var(--ff-display);
	font-size: var(--fs-small);
	letter-spacing: 0;
	margin: 0;
}

.checkout-terms-box {
	max-height: 240px;
	overflow-y: auto;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: var(--space-lg);
}

.checkout-terms-box section + section {
	margin-top: var(--space-lg);
}

.checkout-terms-box h3 {
	font-family: var(--ff-display);
	font-size: var(--fs-small);
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 var(--space-xs);
}

.checkout-terms-box .checkout-terms-title {
	margin-bottom: var(--space-lg);
}

.checkout-terms-box p,
.checkout-terms-box li {
	font-size: var(--fs-xsmall);
	line-height: 1.6;
}

.checkout-terms-box p + p {
	margin-top: var(--space-xs);
}

.checkout-terms-box ul {
	list-style: disc;
	padding-left: var(--space-lg);
	margin: var(--space-xs) 0 0;
}

.checkout-terms-box a,
.checkout-renewal-notice a,
.checkout-check a {
	color: inherit;
	border-bottom: 1px solid currentColor;
	padding-bottom: 1px;
}

.checkout-renewal-notice {
	background: rgb(var(--yellow-rgb) / .16);
	border: 1px solid rgb(var(--yellow-rgb) / .42);
	border-radius: var(--radius-md);
	padding: var(--space-md);
	font-size: var(--fs-small);
	line-height: 1.55;
}

.checkout-legal-summary {
	font-size: var(--fs-xsmall);
	line-height: 1.55;
	margin-bottom: var(--space-md);
}

.checkout-legal-summary p {
	margin: 0;
}

.checkout-legal-summary a {
	color: inherit;
	border-bottom: 1px solid currentColor;
	padding-bottom: 1px;
}

.checkout-check {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: var(--space-sm);
	align-items: start;
	font-size: var(--fs-xsmall);
	line-height: 1.5;
}

.checkout-check input {
	margin-top: 10px;
}

.checkout-hint {
	font-size: var(--fs-small);
	line-height: 1.5;
	color: var(--muted);
	margin: var(--space-xs) 0;
}

.checkout-email-step {
	display: grid;
	justify-items: center;
	gap: var(--space-md);
	text-align: center;
	padding: var(--space-xl) 0;
}

.checkout-email-step h2 {
	font-family: var(--ff-display);
	font-size: var(--fs-medium);
	letter-spacing: var(--ls-heading-tight);
	line-height: 1.1;
	margin: 0;
}

.checkout-email-step p {
	font-size: var(--fs-small);
	line-height: 1.55;
	max-width: 520px;
	margin: 0;
}

.checkout-email-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-sm);
}

.checkout-email-note {
	color: var(--muted);
}

.checkout-form .btn,
.checkout-thanks .btn {
	width: fit-content;
}

@media (max-width: 820px) {
	.checkout-grid {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}

	.checkout-main {
		grid-template-columns: 1fr;
	}

	.checkout-summary dl div {
		grid-template-columns: 1fr;
		gap: var(--space-xs);
	}
}
/* --- End: Checkout --- */
/* --- Start: Privacy / Legal --- */
.legal-content {
	padding: 80px 0 120px;
	max-width: 760px;
}

.legal-content h1 {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: var(--fs-large);
	letter-spacing: var(--ls-heading);
	margin-bottom: 48px;
}

.legal-content h2 {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: var(--fs-medium);
	letter-spacing: var(--ls-heading-tight);
	margin: 40px 0 12px;
}

.legal-content p, .legal-content li {
	font-size: var(--fs-normal);
	line-height: 1.7;
	color: var(--ink);
}

.legal-content p:not(:last-child) {
	margin-bottom: var(--space-md);
}

.legal-content ul {
	list-style: disc;
	padding-left: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: var(--space-sm) 0;
}

.legal-content a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.legal-content table {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: var(--space-lg) 0;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	border-spacing: 0;
	border-collapse: separate;
	overflow-x: auto;
	font-size: var(--fs-small);
	line-height: 1.55;
}

.legal-content thead {
	background: var(--paper);
}

.legal-content th,
.legal-content td {
	min-width: 180px;
	padding: 14px 16px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	vertical-align: top;
	text-align: left;
}

.legal-content th {
	font-weight: 700;
	color: var(--ink);
}

.legal-content td {
	color: var(--ink);
}

.legal-content th:last-child,
.legal-content td:last-child {
	border-right: 0;
}

.legal-content tbody tr:last-child td {
	border-bottom: 0;
}
/* --- End: Privacy / Legal --- */
/* --- Start: Not found --- */
.not-found {
	padding: var(--space-8xl) 0;
	text-align: center;
}

.not-found h1 {
	font-family: var(--ff-display);
	font-size: var(--fs-huge);
	font-weight: 700;
	letter-spacing: -0.04em;
	color: var(--line);
	line-height: 1;
}

.not-found p {
	font-size: var(--fs-normal);
	color: var(--muted);
	margin: 16px 0 32px;
}
/* --- End: Not found --- */
