/*
	Chameleon Lighting — site design system (2026-09-23).

	Replaces the HTML5 UP "Spectral" template (main.css) on every sales page.
	main.css stays in the repo for the utility pages that still use it
	(privacy-policy, delete-account, Request_for_a_Quote); nothing here
	depends on it and nothing here should be copied back into it.

	Dark by design: the product is light at night, and every photo on the
	site is a house after dark. One accent (teal, the brand's), one warm
	secondary for "free", and the logo's spectrum used sparingly as a
	gradient — never as body color.

	No web fonts from third parties: the brand wordmark uses the two faces
	already in assets/css; everything else is the system UI stack, which is
	what keeps the "nothing tracked" claim on american-made.html true.
*/

@font-face { font-family: "Fredoka"; src: url("Fredoka-Medium.ttf"); font-display: swap; }
@font-face { font-family: "July-it"; src: url("July-it.ttf"); font-display: swap; }

:root {
	--bg: #0a0e16;
	--bg-2: #0f1520;
	--surface: #151d2b;
	--surface-2: #1b2536;
	--line: rgba(255, 255, 255, 0.09);
	--line-strong: rgba(255, 255, 255, 0.18);
	--text: #eef2f8;
	--muted: #a3aec0;
	--faint: #6f7b8f;
	--brand: #2ec4b6;
	--brand-ink: #03201d;
	--brand-soft: rgba(46, 196, 182, 0.14);
	--free: #f5b73b;
	--free-soft: rgba(245, 183, 59, 0.14);
	--danger: #f07a86;
	--spectrum: linear-gradient(90deg, #ff5a6e 0%, #ffb23f 22%, #f4e04d 38%, #3fd3a6 56%, #37a7ff 74%, #9b6bff 100%);
	--radius: 14px;
	--radius-sm: 9px;
	--shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
	--max: 1180px;
	--font: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font: 400 17px/1.6 var(--font);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; letter-spacing: -0.015em; font-weight: 750; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.9rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -0.025em; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
strong { color: #fff; font-weight: 650; }
code { font: 0.92em ui-monospace, SFMono-Regular, Menlo, monospace; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(10, 14, 22, 0.78);
	-webkit-backdrop-filter: saturate(1.4) blur(14px);
	backdrop-filter: saturate(1.4) blur(14px);
	border-bottom: 1px solid var(--line);
}
.site-header::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: -1px;
	height: 1px;
	background: var(--spectrum);
	opacity: 0.35;
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand img { width: 40px; height: auto; }
.brand-word { display: flex; align-items: baseline; gap: 4px; line-height: 1; }
.brand-word .c { font-family: "Fredoka", var(--font); font-size: 1.45rem; text-transform: lowercase; letter-spacing: 0.01em; }
.brand-word .l { font-family: "July-it", var(--font); font-size: 1.15rem; color: var(--muted); }
.nav-panel { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
	color: var(--muted);
	font-size: 0.95rem;
	font-weight: 550;
	padding: 8px 12px;
	border-radius: 8px;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, 0.06); text-decoration: none; }
.header-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle {
	display: none;
	margin-left: auto;
	background: none;
	border: 1px solid var(--line-strong);
	color: #fff;
	border-radius: 9px;
	width: 44px; height: 40px;
	font-size: 1.1rem;
	cursor: pointer;
}
@media (max-width: 1100px) {
	.main-nav a { padding: 8px 8px; font-size: 0.9rem; }
	.header-cta .btn-ghost { display: none; }
}
@media (max-width: 940px) {
	.nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
	.nav-panel {
		display: none;
		position: absolute;
		left: 0; right: 0; top: 68px;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--bg-2);
		border-bottom: 1px solid var(--line);
		padding: 6px 24px 22px;
		max-height: calc(100vh - 68px);
		overflow-y: auto;
	}
	.site-header.open .nav-panel { display: flex; }
	.main-nav { flex-direction: column; align-items: stretch; }
	.main-nav a { padding: 14px 2px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
	.header-cta { flex-direction: column; align-items: stretch; margin-top: 18px; }
	.header-cta .btn, .header-cta .btn-ghost { display: flex; width: 100%; }
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 10px;
	font: 650 0.98rem/1.2 var(--font);
	border: 1px solid transparent;
	cursor: pointer;
	text-align: center;
	transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
	white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: var(--brand-ink); }
.btn-primary:hover { background: #45d6c8; }
.btn-free { background: var(--free); color: #2a1a00; }
.btn-free:hover { background: #ffc85c; }
.btn-ghost { background: rgba(255, 255, 255, 0.04); color: #fff; border-color: var(--line-strong); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); }
.btn-sm { padding: 8px 14px; font-size: 0.9rem; border-radius: 8px; }
.btn-lg { padding: 15px 26px; font-size: 1.05rem; }
.btn-block { width: 100%; white-space: normal; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.center .btn-row, .btn-row.center { justify-content: center; }

/* ---------------------------------------------------------------- sections */

.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: var(--muted); font-size: 1.12rem; margin: 0; }
.eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--brand);
	margin-bottom: 14px;
}
.eyebrow.free { color: var(--free); }
.lead { font-size: 1.2rem; color: var(--muted); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); } .section { padding: 68px 0; } }

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.split > * { min-width: 0; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } .split.reverse > :first-child { order: 0; } }

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

.card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; }
.card p + p { margin-top: 0.8em; }
.card .icon {
	width: 46px; height: 46px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 12px;
	background: var(--brand-soft);
	color: var(--brand);
	font-size: 1.15rem;
	margin-bottom: 18px;
}
.card.free .icon { background: var(--free-soft); color: var(--free); }
.card-link { display: block; color: inherit; transition: border-color 0.15s ease, transform 0.15s ease; }
.card-link:hover { text-decoration: none; border-color: var(--line-strong); transform: translateY(-2px); }

/* Photo cards: an image on top, text under. */
.photo-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.photo-card .photo { aspect-ratio: 4 / 3; overflow: hidden; background: #000; }
.photo-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-card:hover .photo img { transform: scale(1.04); }
.photo-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.photo-card .body p { flex: 1; }
.photo-card .more { margin-top: 16px; font-weight: 650; color: var(--brand); }

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

.hero { padding: 72px 0 88px; position: relative; overflow: hidden; }
.hero::before {
	content: "";
	position: absolute;
	inset: -30% -10% auto -10%;
	height: 90%;
	background:
		radial-gradient(40% 50% at 78% 30%, rgba(155, 107, 255, 0.22), transparent 70%),
		radial-gradient(35% 45% at 60% 70%, rgba(46, 196, 182, 0.18), transparent 70%),
		radial-gradient(30% 40% at 95% 80%, rgba(255, 90, 110, 0.14), transparent 70%);
	pointer-events: none;
}
.hero .container { position: relative; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .glow {
	background: var(--spectrum);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero .lead { max-width: 34em; margin-bottom: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; color: var(--muted); font-size: 0.93rem; list-style: none; padding: 0; }
.trust-row li { display: flex; align-items: center; gap: 8px; }
.trust-row i { color: var(--brand); }

.collage { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: 520px; }
.collage figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); position: relative; }
.collage figure:first-child { grid-row: span 2; }
.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage figcaption {
	position: absolute; left: 12px; bottom: 12px;
	font-size: 0.78rem; font-weight: 650; letter-spacing: 0.04em;
	background: rgba(0, 0, 0, 0.55); padding: 5px 10px; border-radius: 20px;
}
@media (max-width: 900px) { .collage { height: 380px; } }
@media (max-width: 520px) { .collage { height: 300px; grid-template-columns: 1fr 1fr; } }

.page-hero { padding: 80px 0 64px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before {
	content: "";
	position: absolute; inset: 0;
	background:
		radial-gradient(50% 80% at 85% 0%, rgba(46, 196, 182, 0.16), transparent 70%),
		radial-gradient(40% 70% at 10% 100%, rgba(155, 107, 255, 0.12), transparent 70%);
	pointer-events: none;
}
.page-hero.free::before {
	background:
		radial-gradient(50% 80% at 85% 0%, rgba(245, 183, 59, 0.16), transparent 70%),
		radial-gradient(40% 70% at 10% 100%, rgba(46, 196, 182, 0.12), transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); max-width: 16em; }
.page-hero .lead { max-width: 40em; }
.page-hero.center h1, .page-hero.center .lead { margin-left: auto; margin-right: auto; }
.page-hero.center .btn-row { justify-content: center; }
.page-hero .btn-row { margin-top: 28px; }

/* ---------------------------------------------------------------- stat band */

.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stats > div { background: var(--surface); padding: 26px 22px; text-align: center; }
.stats .num { display: block; font-size: 2.3rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.stats .num.brand { color: var(--brand); }
.stats .num.free { color: var(--free); }
.stats .lbl { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

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

.plans { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
@media (max-width: 1080px) { .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .plans { grid-template-columns: minmax(0, 1fr); } }
.plan {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 24px 24px;
	display: flex;
	flex-direction: column;
	position: relative;
}
.plan.free-plan { border-top: 3px solid var(--free); }
.plan.featured { border: 1px solid var(--brand); box-shadow: 0 0 0 1px var(--brand), var(--shadow); }
.plan .badge {
	position: absolute; top: -12px; left: 24px;
	background: var(--brand); color: var(--brand-ink);
	font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
	padding: 4px 10px; border-radius: 20px;
}
.plan .badge.free { background: var(--free); color: #2a1a00; }
.plan .tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.plan h3 { font-size: 1.35rem; margin: 6px 0 14px; }
.plan .price { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.plan .price small { font-size: 0.95rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.plan .price-sub { color: var(--muted); font-size: 0.92rem; margin: 8px 0 20px; min-height: 2.9em; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan li { position: relative; padding: 6px 0 6px 26px; font-size: 0.95rem; color: #d7deea; line-height: 1.45; }
.plan li::before { content: "\f00c"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; left: 0; top: 7px; font-size: 0.8rem; color: var(--brand); }
.plan.free-plan li::before { color: var(--free); }
.plan .btn-row { flex-direction: column; gap: 10px; }
.plan .btn { width: 100%; white-space: normal; }

/* ---------------------------------------------------------------- compare table */

.compare-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.compare { width: 100%; border-collapse: collapse; font-size: 0.97rem; table-layout: fixed; }
.compare th, .compare td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare thead th { background: var(--surface-2); font-size: 0.9rem; }
.compare thead th .t { display: block; font-size: 1.15rem; color: #fff; }
.compare thead th .p { display: block; font-weight: 600; color: var(--muted); font-size: 0.88rem; margin-top: 2px; }
.compare th.col-free .t { color: var(--free); }
.compare th.col-conn .t { color: var(--brand); }
.compare td.c { text-align: center; width: 150px; }
.compare th.col-free, .compare th.col-conn { text-align: center; width: 150px; }
.compare .group td { background: var(--bg-2); color: var(--muted); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding-top: 12px; padding-bottom: 12px; }
.compare .feat { color: #fff; font-weight: 550; }
.compare .feat small { display: block; color: var(--muted); font-weight: 400; font-size: 0.86rem; margin-top: 2px; }
.yes { color: var(--brand); }
.yes.free { color: var(--free); }
.no { color: var(--faint); }
.compare tfoot td { background: var(--surface-2); border-top: 1px solid var(--line); }
@media (max-width: 640px) {
	.compare th, .compare td { padding: 12px 10px; }
	.compare td.c, .compare th.col-free, .compare th.col-conn { width: 78px; padding-left: 4px; padding-right: 4px; }
	.compare tfoot .btn { padding: 7px 8px; font-size: 0.8rem; }
	.compare thead th .p { display: none; }
	.compare .feat small { display: none; }
}

/* ---------------------------------------------------------------- feature list */

.checks { list-style: none; padding: 0; margin: 0; }
.checks li { position: relative; padding: 7px 0 7px 30px; color: #d7deea; }
.checks li::before { content: "\f00c"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; left: 0; top: 8px; color: var(--brand); font-size: 0.9rem; }
.checks.free li::before { color: var(--free); }
.checks.x li::before { content: "\f00d"; color: var(--danger); }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; list-style: none; padding: 0; margin: 0; }
.pill-row li {
	border: 1px solid var(--line-strong);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 40px;
	padding: 9px 16px;
	font-weight: 600;
	font-size: 0.95rem;
}
.pill-row li i { color: var(--danger); margin-right: 8px; }
.pill-row.good li i { color: var(--brand); }

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

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.steps.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 980px) { .steps, .steps.three { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .steps, .steps.three { grid-template-columns: minmax(0, 1fr); } }
.steps > li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.steps > li::before {
	counter-increment: step;
	content: counter(step);
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--brand-soft); color: var(--brand);
	font-weight: 800; margin-bottom: 16px;
}
.steps h3 { font-size: 1.08rem; }
.steps p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ---------------------------------------------------------------- two-up choice (who pays / them vs us) */

.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .versus { grid-template-columns: 1fr; } }
.versus > div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.versus .them { border-top: 3px solid rgba(240, 122, 134, 0.7); }
.versus .us { border-top: 3px solid var(--brand); }
.versus .a { border-top: 3px solid var(--brand); }
.versus .b { border-top: 3px solid var(--free); }
.versus h3 { margin-bottom: 14px; }
.versus .btn-row { margin-top: 20px; }

/* ---------------------------------------------------------------- strip demo */

.demo {
	background: linear-gradient(180deg, #06080d, #0b1019);
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 28px;
	box-shadow: var(--shadow);
}
.demo-stage { position: relative; border-radius: 14px; overflow: hidden; background: #05070b; border: 1px solid var(--line); }
.demo-stage canvas { display: block; width: 100%; height: 190px; }
@media (max-width: 600px) { .demo-stage canvas { height: 140px; } }
.demo-label {
	position: absolute; top: 10px; right: 12px;
	font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--faint);
}
.demo-controls { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; margin-top: 24px; }
@media (max-width: 820px) { .demo-controls { grid-template-columns: 1fr; } }
.demo-controls h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
	border: 1px solid var(--line-strong);
	background: rgba(255, 255, 255, 0.03);
	color: #dfe6f1;
	border-radius: 30px;
	padding: 7px 14px;
	font: 600 0.88rem var(--font);
	cursor: pointer;
}
.chip:hover { background: rgba(255, 255, 255, 0.08); }
.chip[aria-pressed="true"] { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.swatch-chip { display: inline-flex; align-items: center; gap: 8px; }
.swatch-chip .sw { width: 38px; height: 12px; border-radius: 6px; }
.demo-slider { display: flex; align-items: center; gap: 12px; margin-top: 16px; color: var(--muted); font-size: 0.9rem; }
.demo-slider input { flex: 1; accent-color: var(--brand); }
.demo-note { color: var(--faint); font-size: 0.85rem; margin: 16px 0 0; }

/* ---------------------------------------------------------------- media / app shots */

.shot { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.shot img { width: 100%; }
.store-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.store {
	display: inline-flex; align-items: center; gap: 12px;
	border: 1px solid var(--line-strong); border-radius: 12px;
	padding: 10px 18px; color: #fff; background: rgba(255, 255, 255, 0.03);
}
.store:hover { text-decoration: none; background: rgba(255, 255, 255, 0.08); }
.store i { font-size: 1.5rem; }
.store span { display: flex; flex-direction: column; line-height: 1.15; }
.store small { font-size: 0.72rem; color: var(--muted); }
.store b { font-size: 1.02rem; }

.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 900px) { .video-grid { grid-template-columns: 1fr; } }
.video { aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #000; }
.video iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------------------------------------------------------------- callout / notes */

.callout {
	border: 1px solid var(--line);
	border-left: 3px solid var(--brand);
	background: var(--surface);
	border-radius: var(--radius-sm);
	padding: 18px 22px;
}
.callout.free { border-left-color: var(--free); }
.callout.warn { border-left-color: var(--danger); }
.callout p:last-child { margin-bottom: 0; }
.prose { max-width: 760px; }
.prose p, .prose li { color: #d3dae6; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.5em; }

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

.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
	list-style: none;
	cursor: pointer;
	padding: 22px 40px 22px 0;
	font-weight: 650;
	font-size: 1.08rem;
	position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "\f067"; font-family: "Font Awesome 5 Free"; font-weight: 900;
	position: absolute; right: 4px; top: 24px; font-size: 0.85rem; color: var(--muted);
	transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin: -4px 0 22px; }

/* ---------------------------------------------------------------- CTA band */

.cta-band {
	position: relative;
	border-radius: 24px;
	padding: 64px 48px;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(135deg, #10302f 0%, #141a33 60%, #2a1633 100%);
	border: 1px solid var(--line);
}
.cta-band::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--spectrum); }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: #c8d1df; max-width: 40em; margin: 0 auto 28px; font-size: 1.1rem; }
@media (max-width: 600px) { .cta-band { padding: 44px 22px; } }

/* ---------------------------------------------------------------- forms (checkout, contact) */

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.93rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
	width: 100%;
	background: var(--bg-2);
	border: 1px solid var(--line-strong);
	color: #fff;
	border-radius: 10px;
	padding: 12px 14px;
	font: 400 1rem var(--font);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-error { display: none; border-left: 3px solid var(--danger); background: rgba(240, 122, 134, 0.08); padding: 12px 16px; border-radius: 8px; margin-bottom: 18px; }
input[type="submit"].btn, button.btn { font-family: var(--font); }
button.btn:disabled, input.btn:disabled { opacity: 0.6; cursor: wait; transform: none; }
.code {
	display: block;
	font: 600 1.25rem ui-monospace, SFMono-Regular, Menlo, monospace;
	letter-spacing: 0.08em;
	background: var(--bg-2);
	border: 1px dashed var(--brand);
	border-radius: 10px;
	padding: 14px 18px;
	margin: 10px 0;
	color: #fff;
}

/* ---------------------------------------------------------------- installer list */

.installer {
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 28px; border-top: 3px solid var(--brand);
}
.installer .where { color: var(--muted); font-size: 0.85rem; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; }
.installer h3 { font-size: 1.4rem; margin: 8px 0 4px; }
.installer .area { color: var(--muted); font-style: italic; margin-bottom: 14px; }

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

.site-footer { border-top: 1px solid var(--line); background: #070a10; padding: 64px 0 36px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: span 2; } }
.footer-brand p { color: var(--muted); font-size: 0.93rem; max-width: 22em; margin-top: 14px; }
.site-footer h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer li a { color: #cfd7e4; font-size: 0.95rem; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
	width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-strong);
	display: inline-flex; align-items: center; justify-content: center; color: #fff;
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.07); text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--faint); font-size: 0.88rem; }
.footer-bottom a { color: var(--faint); }

/* ---------------------------------------------------------------- misc */

.divider-spectrum { height: 3px; border: 0; background: var(--spectrum); border-radius: 3px; width: 72px; margin: 0 0 22px; }
.center .divider-spectrum { margin-left: auto; margin-right: auto; }
.kicker-list { display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--muted); font-size: 0.93rem; list-style: none; padding: 0; margin: 18px 0 0; }
.kicker-list li::before { content: "•"; color: var(--brand); margin-right: 8px; }
.boards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 800px) { .boards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.boards > div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; }
.boards h4 { margin: 0 0 4px; }
.boards span { color: var(--muted); font-size: 0.9rem; }
.legal { font-size: 0.93rem; }
.legal p { color: var(--muted); }
.tick-note { color: var(--muted); font-size: 0.92rem; margin-top: 18px; }
.anchor-offset { scroll-margin-top: 90px; }
