/* Hero */
.hero {
	padding: 84px 0 48px;
	position: relative;
	background: linear-gradient(180deg, rgba(20, 158, 216, 0.08) 0%, rgba(255, 255, 255, 0) 42%),
		linear-gradient(90deg, rgba(237, 75, 151, 0.07) 0%, rgba(255, 255, 255, 0) 55%);
}
.hero .wrap {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 40px;
	align-items: center;
}
.hero .subhead {
	color: var(--muted);
	max-width: 620px;
	font-size: 19px;
}
.hero-facts {
	display: flex;
	gap: 0;
	flex-wrap: wrap;
	margin-top: 30px;
}
.hero-facts div {
	padding-right: 22px;
	margin-right: 22px;
	border-right: 1px solid var(--line);
}
.hero-facts div:last-child {
	padding-right: 0;
	margin-right: 0;
	border-right: 0;
}
.hero-facts div strong {
	display: block;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 30px;
	line-height: 1;
	letter-spacing: -0.04em;
}
.hero-facts div span {
	display: block;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 4px;
}

/* Dashboard mock */
.dash {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px;
	box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
}
.dash-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	font-family: var(--font-mono);
	color: var(--muted);
	margin-bottom: 14px;
}
.dash-bar .dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mint);
	margin-right: 6px;
	box-shadow: 0 0 10px rgba(31, 122, 90, 0.45);
}
.dash .chart {
	margin-top: 12px;
	height: 110px;
	display: flex;
	align-items: flex-end;
	gap: 6px;
	padding: 10px 12px;
	background: var(--soft);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-sm);
}
.dash .chart i {
	flex: 1;
	display: block;
	border-radius: 4px 4px 0 0;
	background: linear-gradient(180deg, var(--accent), var(--accent-dark));
	opacity: 0.9;
}
.dash .baskets {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 12px;
	font-size: 11px;
	font-family: var(--font-mono);
	color: var(--muted);
}
.dash .baskets div {
	padding: 8px 10px;
	border-radius: 10px;
	border: 1px solid var(--panel-border);
	background: var(--soft);
}
.dash .baskets strong {
	display: block;
	font-size: 16px;
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--ink);
}

/* Rent */
.rent-tools-block {
	margin-top: 0;
	padding: 20px 8px 8px;
	background: var(--paper);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.rent-tools-caption {
	margin: 0 16px 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--faint);
}
.rent-tools {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
.rent-tool {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding: 16px 12px 18px;
	text-align: center;
	border-right: 1px solid var(--line);
}
.rent-tool:last-child {
	border-right: 0;
}
.rent-tool-logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border-radius: 10px;
}
.rent-tool-name {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--ink);
}
.rent-tool-cost {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--ink);
}
.callout {
	margin-top: 22px;
	padding: 18px 22px;
	border-left: 4px solid var(--accent);
	background: var(--soft);
	border-radius: 12px;
	font-size: 19px;
	line-height: 1.45;
}

/* Stack */
.layer {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 100%;
}
.layer .stack-icon {
	position: absolute;
	top: 22px;
	right: 20px;
	width: 48px;
	height: 48px;
	object-fit: contain;
}
.layer h3 {
	font-family: var(--font-display);
	font-size: 22px;
	letter-spacing: -0.03em;
	padding-right: 60px;
}
.layer ul {
	margin: auto 0 0;
	padding-left: 18px;
}
.layer li {
	margin-bottom: 6px;
	color: var(--muted);
}

/* Always on */
.host-options .panel h3 {
	font-family: var(--font-display);
	font-size: 22px;
	letter-spacing: -0.03em;
}
.host-options .price {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 40px;
	line-height: 1;
	letter-spacing: -0.04em;
	margin: 6px 0 10px;
}
.host-options .price small {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 500;
	color: var(--muted);
}
.host-options {
	align-items: stretch;
}
.host-options .panel {
	height: 100%;
}
.host-options .recommended {
	border-color: rgba(237, 75, 151, 0.45);
	box-shadow: 0 0 0 1px rgba(237, 75, 151, 0.16), var(--shadow);
}

/* Pricing */
.price-card {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 32px;
	align-items: center;
}
.price-card .amount {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(56px, 8vw, 96px);
	line-height: 1;
	letter-spacing: 0;
	font-variant-numeric: lining-nums;
	overflow: visible;
}
.price-card .amount-figure {
	display: block;
	padding-bottom: 0.06em;
}
.price-card .amount-comma {
	display: inline-block;
	letter-spacing: 0;
	margin: 0 -0.12em 0 0.02em;
}
.price-card .amount small {
	display: block;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 20px;
}
.includes {
	list-style: none;
	padding: 0;
	margin: 0;
}
.includes li {
	padding: 10px 0;
	border-bottom: 1px solid var(--line);
	display: flex;
	gap: 12px;
}
.includes li::before {
	content: "";
	flex: 0 0 10px;
	height: 10px;
	margin-top: 8px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.price-note {
	margin-top: 18px;
}
.price-footnote {
	margin-top: 14px;
	font-size: 14px;
}

/* Testimonials */
.quote-grid {
	align-items: stretch;
}
.quote-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	height: 100%;
	min-height: 260px;
}
.quote-card blockquote {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font-size: 16px;
	line-height: 1.5;
	font-style: italic;
}
.quote-stars {
	color: var(--amber);
	letter-spacing: 2px;
	font-size: 14px;
}
.quote-card figcaption {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 8px;
}
.quote-card figcaption strong {
	display: block;
	font-size: 15px;
}
.quote-card figcaption .muted {
	display: block;
	font-size: 13px;
}
.avatar {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.4px;
	background: linear-gradient(135deg, var(--accent-dark), var(--accent));
	color: #fff;
}

/* About */
.proof-grid .panel {
	text-align: left;
}
.proof-grid .panel strong {
	display: block;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 44px;
	line-height: 1;
	letter-spacing: -0.04em;
	margin-bottom: 6px;
}

/* Contact / footer */
.foot {
	background: var(--soft);
	border-top: 1px solid var(--line);
	padding: 40px 0 36px;
	color: var(--muted);
	font-size: 14px;
}
.foot-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.brand-logo-foot {
	height: 26px;
}
.foot-copy {
	display: grid;
	gap: 4px;
	text-align: right;
}

/* Alpha */
.alpha-wrap {
	max-width: 820px;
}
.alpha-page .section-head {
	margin-bottom: 32px;
}
.alpha-page h1 {
	margin: 16px 0 10px;
}
.alpha-page h2,
.alpha-terms h3 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.03em;
}
.alpha-terms > section {
	padding: 0;
	margin: 0 0 28px;
	border: 0;
	background: transparent;
	box-shadow: none;
	height: auto;
}
.alpha-terms > section:last-child {
	margin-bottom: 0;
}
.alpha-terms h3 {
	font-size: 22px;
	margin: 0 0 10px;
}
.alpha-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin: 12px 0 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
}
.alpha-meta span + span {
	padding-left: 18px;
	border-left: 1px solid var(--line);
}
.alpha-grid {
	margin-top: 0;
}
.alpha-steps {
	margin: 0;
	padding-left: 20px;
	color: var(--muted);
}
.alpha-steps li {
	margin-bottom: 8px;
}
.alpha-end {
	margin-top: 32px;
	margin-bottom: 32px;
}
.alpha-end + .risk {
	margin-top: 0;
}
.alpha-terms {
	height: auto;
}
.alpha-terms p {
	color: var(--muted);
}
.alpha-data-table th {
	width: 22%;
}
.risk {
	margin-top: 18px;
	padding: 18px 20px;
	border: 1px solid var(--line);
	border-left: 4px solid var(--ink);
	border-radius: 12px;
	background: var(--paper);
}
.risk p:last-child {
	margin-bottom: 0;
}
#alphaForm {
	gap: 18px;
	margin-top: 0;
}
.alpha-fields {
	gap: 18px;
}
.signature-block {
	display: grid;
	gap: 8px;
}
.signature-pad {
	display: flex;
	align-items: center;
	min-height: 104px;
	padding: 8px 16px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background:
		linear-gradient(var(--paper), var(--paper)) padding-box,
		repeating-linear-gradient(transparent, transparent 78px, #d7dde6 78px, #d7dde6 80px);
}
.signature-input {
	height: 88px;
	padding: 12px 4px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	font-family: var(--font-signature);
	font-size: 42px;
	line-height: 1.1;
	color: var(--ink);
}
.signature-input:focus {
	border: 0;
	box-shadow: none;
}
.signature-input::placeholder {
	color: transparent;
}
.consent-block {
	display: grid;
	gap: 10px;
	text-align: left;
}
.consent {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.3;
	color: var(--ink);
	text-align: left;
}
.consent input[type="checkbox"] {
	width: 22px;
	height: 22px;
	flex: none;
	margin: 0;
	padding: 0;
	accent-color: var(--accent-dark);
}
.consent-detail {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--muted);
	text-align: left;
}
.fine {
	font-size: 13px;
	color: var(--faint);
}
.alpha-foot-note {
	margin-top: 40px;
}

/* Responsive */
@media (max-width: 1100px) {
	.quote-grid.four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 980px) {
	.hero .wrap {
		grid-template-columns: 1fr;
	}
	.dash {
		transform: none;
	}
	.price-card {
		grid-template-columns: 1fr;
	}
	.nav-links {
		display: none;
	}
}
@media (max-width: 640px) {
	.hero {
		padding: 44px 0 28px;
	}
	.panel {
		padding: 22px;
	}
	.cta-row {
		gap: 10px;
		margin-top: 20px;
	}
	.cta-row .btn {
		width: 100%;
	}
	.hero-facts div {
		border-right: 0;
		margin-right: 0;
		padding-right: 0;
		min-width: 30%;
	}
	.quote-grid.four {
		grid-template-columns: 1fr;
	}
	.steps li {
		grid-template-columns: 1fr;
	}
	.compare-table th,
	.compare-table td {
		padding: 10px 8px;
		font-size: 14px;
	}
	nav.cta-nav {
		display: none;
	}
	.brand-logo {
		height: 32px;
	}
	.alpha-meta span + span {
		padding-left: 0;
		border-left: 0;
	}
	.alpha-fields {
		grid-template-columns: 1fr;
	}
}
