/* ==========================================================================
   RAW CGI — styles.css
   Dark, cinematic, technical. No frameworks, no build step.
   Sections: 1 Tokens · 2 Base · 3 Layout · 4 Type · 5 Buttons · 6 Nav
             7 Hero · 8 Media frames · 9 Statement · 10 Products
             11 Features · 12 Roadmap · 13 About · 14 Pricing · 15 Contact
             16 Footer · 17 Motion · 18 Responsive
   ========================================================================== */

/* 1 — TOKENS ------------------------------------------------------------- */
:root {
	--black: #08080a;
	--graphite: #0e0e11;
	--surface: #131316;
	--raised: #1a1a1e;
	--line: rgba(255, 255, 255, 0.1);
	--line-strong: rgba(255, 255, 255, 0.18);
	--text: #ffffff;
	--muted: rgba(255, 255, 255, 0.58);
	--faint: rgba(255, 255, 255, 0.36);
	--accent: #4da3ff;
	--accent-dim: rgba(77, 163, 255, 0.14);

	--sans:
		-apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial,
		sans-serif;
	--mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono",
		monospace;

	--gutter: 40px;
	--maxw: 1240px;
	--nav-h: 68px;
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 2 — BASE -------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--nav-h) + 16px);
}

html.is-locked {
	overflow: hidden;
}

body {
	margin: 0;
	background: var(--black);
	color: var(--text);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
	margin: 0;
}

ul {
	padding: 0;
	list-style: none;
}

:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

::selection {
	background: rgba(77, 163, 255, 0.3);
}

.skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: #fff;
	color: #000;
	padding: 10px 16px;
	z-index: 200;
	font-size: 14px;
}

.skip:focus {
	left: 12px;
	top: 12px;
}

/* 3 — LAYOUT ------------------------------------------------------------ */
.container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.section {
	padding: 128px 0;
	position: relative;
}

.section--tight {
	padding: 96px 0;
}

.section--edge {
	border-top: 1px solid var(--line);
}

.section--graphite {
	background: var(--graphite);
}

.section__head {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 32px;
	align-items: start;
	margin-bottom: 64px;
}

.rule {
	height: 1px;
	background: var(--line);
	border: 0;
	margin: 0;
}

/* 4 — TYPE -------------------------------------------------------------- */
.mono {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--faint);
}

.mono--accent {
	color: var(--accent);
}

.eyebrow {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--accent);
}

.display {
	font-size: clamp(2.75rem, 7.4vw, 6.5rem);
	line-height: 0.94;
	letter-spacing: -0.035em;
	font-weight: 600;
	text-transform: uppercase;
}

.display span {
	display: block;
}

.display--sm {
	font-size: clamp(2.25rem, 4.6vw, 3.75rem);
	line-height: 1;
	letter-spacing: -0.03em;
}

.h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	font-weight: 600;
}

.h3 {
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.lede {
	font-size: clamp(1rem, 1.35vw, 1.1875rem);
	line-height: 1.6;
	color: var(--muted);
	max-width: 46ch;
}

.body {
	color: var(--muted);
	max-width: 60ch;
}

.accent-text {
	color: var(--accent);
}

/* 5 — BUTTONS ----------------------------------------------------------- */
.btn {
	--btn-bg: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 26px;
	border: 1px solid var(--line-strong);
	border-radius: 6px;
	background: var(--btn-bg);
	color: var(--text);
	font: inherit;
	font-size: 14px;
	font-weight: 550;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition:
		background 0.25s var(--ease),
		border-color 0.25s var(--ease),
		color 0.25s var(--ease),
		transform 0.25s var(--ease);
}

.btn:hover {
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-1px);
}

.btn--primary {
	background: #fff;
	border-color: #fff;
	color: #08080a;
}

.btn--primary:hover {
	background: #e9eef5;
	border-color: #e9eef5;
	color: #08080a;
}

.btn--accent {
	background: var(--accent);
	border-color: var(--accent);
	color: #04121f;
}

.btn--accent:hover {
	background: #6fb6ff;
	border-color: #6fb6ff;
	color: #04121f;
}

.btn--sm {
	min-height: 40px;
	padding: 0 18px;
	font-size: 13px;
}

.btn--block {
	width: 100%;
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 550;
	color: var(--text);
	border-bottom: 1px solid var(--line-strong);
	padding-bottom: 3px;
	transition:
		border-color 0.25s var(--ease),
		color 0.25s var(--ease),
		gap 0.25s var(--ease);
}

.link:hover {
	color: var(--accent);
	border-color: var(--accent);
	gap: 12px;
}

/* 6 — NAV --------------------------------------------------------------- */
.nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(8, 8, 10, 0.55);
	border-bottom: 1px solid transparent;
	backdrop-filter: saturate(140%) blur(14px);
	-webkit-backdrop-filter: saturate(140%) blur(14px);
	transition:
		background 0.3s var(--ease),
		border-color 0.3s var(--ease);
}

.nav.is-scrolled {
	background: rgba(8, 8, 10, 0.9);
	border-bottom-color: var(--line);
}

.nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: var(--nav-h);
}

.brand {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.brand em {
	font-style: normal;
	font-weight: 400;
	color: var(--muted);
	transition: color 0.25s var(--ease);
}

.brand:hover em {
	color: var(--accent);
}

.nav__links {
	display: flex;
	align-items: center;
	gap: 34px;
	margin-left: auto;
}

.nav__links a {
	font-size: 13.5px;
	color: var(--muted);
	letter-spacing: 0.01em;
	transition: color 0.2s var(--ease);
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
	color: var(--text);
}

.nav__cta {
	margin-left: 34px;
}

.nav__toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: transparent;
	cursor: pointer;
	position: relative;
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
	position: absolute;
	left: 50%;
	width: 18px;
	height: 1.5px;
	background: #fff;
	transform: translateX(-50%);
	transition: transform 0.25s var(--ease);
	content: "";
}

.nav__toggle span {
	top: 50%;
	margin-top: -0.75px;
}

.nav__toggle span::before {
	top: -6px;
}

.nav__toggle span::after {
	top: 6px;
}

.nav__toggle.is-active span {
	background: transparent;
}

.nav__toggle.is-active span::before {
	transform: translateX(-50%) translateY(6px) rotate(45deg);
}

.nav__toggle.is-active span::after {
	transform: translateX(-50%) translateY(-6px) rotate(-45deg);
}

.nav__panel {
	display: none;
}

/* 7 — HERO -------------------------------------------------------------- */
.hero {
	position: relative;
	padding: 132px 0 88px;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			900px 480px at 18% 6%,
			rgba(77, 163, 255, 0.09),
			transparent 70%
		),
		linear-gradient(180deg, #0b0b0e 0%, var(--black) 100%);
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size: 25% 100%;
	opacity: 0.5;
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 1;
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
	gap: 56px;
	align-items: end;
}

.hero h1 {
	margin: 26px 0 0;
}

.hero__aside {
	display: flex;
	flex-direction: column;
	gap: 26px;
	padding-bottom: 6px;
}

.hero .btn-row {
	margin-top: 4px;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	margin-top: 56px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}

/* 8 — MEDIA FRAMES ------------------------------------------------------ */
.media {
	position: relative;
	background: var(--graphite);
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden;
}

.media__bar,
.media__timeline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.02);
}

.media__bar {
	border-bottom: 1px solid var(--line);
}

.media__dots {
	display: inline-flex;
	gap: 6px;
}

.media__dots i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
}

.media__dots i:first-child {
	background: var(--accent);
}

.media__stage {
	position: relative;
	aspect-ratio: 16 / 9;
	background:
		repeating-linear-gradient(
				45deg,
				rgba(255, 255, 255, 0.014) 0 12px,
				transparent 12px 24px
			),
		#0b0b0d;
}

.media__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 2;
}

.media.is-empty .media__img {
	display: none;
}

/* Failed images simply leave an empty dark frame. There is deliberately no
   visible placeholder plate or filename anywhere in production markup.      */
.media.is-empty .media__stage {
	background: #0b0b0d;
}

.media__timeline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.02);
}

.media__bar {
	border-bottom: 1px solid var(--line);
}

.media__dots {
	display: inline-flex;
	gap: 6px;
}

.media__dots i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
}

.media__dots i:first-child {
	background: var(--accent);
}

.media__stage {
	position: relative;
	aspect-ratio: 16 / 9;
	background:
		repeating-linear-gradient(
				45deg,
				rgba(255, 255, 255, 0.014) 0 12px,
				transparent 12px 24px
			),
		#0b0b0d;
}

.media__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 2;
}

.media.is-empty .media__img {
	display: none;
}

.media__timeline {
	border-top: 1px solid var(--line);
	padding: 0;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.media__track {
	position: relative;
	height: 26px;
	background-image:
		linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
	background-size: 3.3333% 100%;
}

.media__track::after {
	content: "";
	position: absolute;
	left: 34%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: var(--accent);
	box-shadow: 0 0 10px rgba(77, 163, 255, 0.6);
}

.media__frames {
	display: flex;
	justify-content: space-between;
	padding: 8px 16px 10px;
	border-top: 1px solid var(--line);
}

.media--hero {
	margin-top: 56px;
	box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.media--sm .media__stage {
	aspect-ratio: 4 / 3;
}

.media-note {
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 20px;
}

/* 9 — STATEMENT --------------------------------------------------------- */
.statement {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 56px;
	align-items: end;
}

.statement p {
	color: var(--muted);
	font-size: 1.0625rem;
	line-height: 1.65;
	max-width: 44ch;
}

/* 10 — PRODUCTS --------------------------------------------------------- */
.product {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 64px;
	align-items: center;
}

/* Wide variant: full-bleed screenshot above, copy in two columns below.
   Used where the interface detail needs the full column width to read.   */
.product--wide {
	grid-template-columns: minmax(0, 1fr);
	gap: 44px;
	align-items: start;
}

.product--wide .product__media {
	order: -1;
}

.product--wide .product__copy {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}

.product--wide .product__copy .product__specs {
	margin: 0;
}

@media (max-width: 900px) {
	.product--wide .product__copy {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}
}

.product__index {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.product__index i {
	height: 1px;
	width: 56px;
	background: var(--line-strong);
}

.product__tag {
	display: inline-block;
	font-family: var(--mono);
	font-size: 10.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent);
	background: var(--accent-dim);
	border: 1px solid rgba(77, 163, 255, 0.28);
	border-radius: 3px;
	padding: 4px 9px;
}

.product h3 {
	margin: 18px 0 12px;
}

.product__tagline {
	font-size: 1.25rem;
	font-weight: 550;
	letter-spacing: -0.015em;
	margin-bottom: 14px;
}

.product__specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: 6px;
	overflow: hidden;
	margin: 28px 0;
}

.product__specs div {
	background: var(--graphite);
	padding: 14px 16px;
}

.product__specs strong {
	display: block;
	font-size: 14px;
	font-weight: 550;
	margin-top: 4px;
}

/* 11 — FEATURES --------------------------------------------------------- */
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.features li {
	background: transparent;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 26px 24px 30px;
	transition: background 0.3s var(--ease);
}

.features li:hover {
	background: var(--raised);
}

.features__num {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--faint);
	letter-spacing: 0.12em;
}

.features__name {
	display: block;
	margin-top: 12px;
	font-size: 15px;
	font-weight: 550;
	letter-spacing: -0.01em;
}

.features__desc {
	margin-top: 6px;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--muted);
}

/* 12 — ROADMAP ---------------------------------------------------------- */
.roadmap {
	border-top: 1px solid var(--line);
}

.roadmap__row {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr) 160px 130px;
	gap: 24px;
	align-items: center;
	padding: 30px 4px;
	border-bottom: 1px solid var(--line);
	transition:
		background 0.3s var(--ease),
		padding-left 0.3s var(--ease);
}

.roadmap__row:hover {
	background: rgba(255, 255, 255, 0.022);
	padding-left: 14px;
}

.roadmap__row h3 {
	font-size: 1.125rem;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.roadmap__row p {
	font-size: 13.5px;
	color: var(--muted);
}

.status {
	justify-self: end;
	font-family: var(--mono);
	font-size: 10.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--faint);
	border: 1px solid var(--line);
	border-radius: 3px;
	padding: 5px 10px;
}

.status--live {
	color: var(--accent);
	border-color: rgba(77, 163, 255, 0.35);
	background: var(--accent-dim);
}

/* 13 — ABOUT ------------------------------------------------------------ */
.about {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 64px;
	align-items: start;
}

.about p + p {
	margin-top: 18px;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 34px;
}

.tags li {
	font-family: var(--mono);
	font-size: 10.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
	border: 1px solid var(--line);
	border-radius: 3px;
	padding: 7px 11px;
	transition:
		color 0.25s var(--ease),
		border-color 0.25s var(--ease);
}

.tags li:hover {
	color: var(--text);
	border-color: var(--line-strong);
}

/* 14 — PRICING ---------------------------------------------------------- */
.pricing {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.plan {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--graphite);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 34px 32px 32px;
	transition:
		border-color 0.3s var(--ease),
		transform 0.3s var(--ease);
}

.section--graphite .plan {
	background: var(--surface);
}

.plan:hover {
	border-color: var(--line-strong);
	transform: translateY(-2px);
}

.plan--featured {
	border-color: rgba(77, 163, 255, 0.32);
}

.plan__price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin: 20px 0 10px;
}

.plan__price strong {
	font-size: clamp(2rem, 3.4vw, 2.75rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1;
}

.plan__price span {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--faint);
}

/* "+ GST" sits beside the price as real pricing information, not metadata. */
.plan__price .plan__gst,
.price-strip .plan__gst {
	font-family: var(--sans);
	font-size: 16px;
	letter-spacing: 0;
	text-transform: none;
	color: var(--muted);
	font-weight: 500;
}

.plan p {
	color: var(--muted);
	font-size: 14.5px;
}

.plan ul {
	margin: 24px 0 30px;
	display: grid;
	gap: 10px;
	border-top: 1px solid var(--line);
	padding-top: 22px;
}

.plan li {
	display: flex;
	gap: 10px;
	font-size: 14px;
	color: var(--muted);
}

.plan li::before {
	content: "—";
	color: var(--accent);
}

.plan .btn {
	margin-top: auto;
}

.pricing-note {
	margin-top: 22px;
	font-size: 13px;
	color: var(--faint);
}

/* 15 — CONTACT ---------------------------------------------------------- */
.contact {
	text-align: left;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
	gap: 56px;
	align-items: end;
}

.mail {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
	font-size: clamp(1.125rem, 2.2vw, 1.625rem);
	font-weight: 550;
	letter-spacing: -0.02em;
	border-bottom: 1px solid var(--line-strong);
	padding-bottom: 6px;
	transition:
		color 0.25s var(--ease),
		border-color 0.25s var(--ease);
}

.mail:hover {
	color: var(--accent);
	border-color: var(--accent);
}

/* 16 — FOOTER ----------------------------------------------------------- */
.footer {
	border-top: 1px solid var(--line);
	padding: 56px 0 40px;
	background: var(--black);
}

.footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.6fr));
	gap: 40px;
}

.footer p {
	color: var(--muted);
	font-size: 14px;
	margin-top: 12px;
	max-width: 30ch;
}

.footer h4 {
	font-family: var(--mono);
	font-size: 10.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--faint);
	font-weight: 400;
	margin-bottom: 14px;
}

.footer__links {
	display: grid;
	gap: 10px;
}

.footer__links a {
	font-size: 14px;
	color: var(--muted);
	transition: color 0.2s var(--ease);
}

.footer__links a:hover {
	color: var(--text);
}

.footer__base {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	margin-top: 48px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
}

/* 17 — MOTION ----------------------------------------------------------- */
/* Reveal animation only applies when JS is active, so content can never be
   hidden if scripts fail to load. */
.js .reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.7s var(--ease),
		transform 0.7s var(--ease);
}

.js .reveal.is-visible {
	opacity: 1;
	transform: none;
}

.reveal--d1 {
	transition-delay: 0.08s;
}

.reveal--d2 {
	transition-delay: 0.16s;
}

.reveal--d3 {
	transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}

	.js .reveal {
		opacity: 1;
		transform: none;
	}
}

/* 18 — RESPONSIVE ------------------------------------------------------- */
@media (max-width: 1080px) {
	:root {
		--gutter: 32px;
	}

	.section {
		padding: 104px 0;
	}

	.hero__grid,
	.statement,
	.product,
	.about,
	.contact {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
		align-items: start;
	}

	.hero__aside {
		padding-bottom: 0;
	}

	.section__head {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px;
		margin-bottom: 48px;
	}

	.product__media {
		order: 2;
	}

	.footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.nav__links,
	.nav__cta {
		display: none;
	}

	.nav__toggle {
		display: block;
	}

	.nav__panel {
		display: block;
		position: fixed;
		inset: var(--nav-h) 0 auto;
		background: rgba(8, 8, 10, 0.97);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		border-bottom: 1px solid var(--line);
		padding: 12px var(--gutter) 28px;
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		transition:
			opacity 0.25s var(--ease),
			transform 0.25s var(--ease),
			visibility 0.25s;
		z-index: 99;
	}

	.nav__panel.is-open {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.nav__panel a:not(.btn) {
		display: block;
		padding: 16px 0;
		border-bottom: 1px solid var(--line);
		font-size: 17px;
	}

	.nav__panel .btn {
		margin-top: 22px;
		width: 100%;
	}
}

@media (max-width: 760px) {
	:root {
		--gutter: 22px;
	}

	.section {
		padding: 80px 0;
	}

	.section--tight {
		padding: 68px 0;
	}

	.hero {
		padding: 88px 0 64px;
	}

	.hero::after {
		background-size: 50% 100%;
	}

	.media--hero {
		margin-top: 40px;
	}

	.pricing,
	.product__specs {
		grid-template-columns: minmax(0, 1fr);
	}

	.btn-row .btn {
		width: 100%;
	}

	.roadmap__row {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 6px 16px;
		align-items: baseline;
		padding: 22px 2px;
	}

	.roadmap__row .mono:first-child {
		grid-column: 1 / -1;
	}

	.roadmap__row p {
		grid-column: 1;
	}

	.status {
		grid-row: 2;
		grid-column: 2;
	}

	.footer__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	.media__bar .mono:last-child,
	.media__frames .mono:nth-child(2) {
		display: none;
	}
}


/* 21 — HOMEPAGE PRICE STRIP / LICENCE TERMS / REQUIREMENTS / FAQ ---------- */
.price-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
	align-items: center;
	gap: 28px;
	padding: 30px 32px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 8px;
}

.price-strip__item {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding-right: 28px;
	border-right: 1px solid var(--line);
}

.price-strip__item:nth-of-type(2) {
	border-right: 0;
}

.price-strip__item strong {
	font-size: clamp(1.75rem, 2.6vw, 2.25rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1;
}

.price-strip__cta {
	justify-self: end;
}

.licence-note {
	margin-top: 30px;
	padding: 28px 30px;
	background: var(--graphite);
	border: 1px solid var(--line);
	border-left: 2px solid var(--accent);
	border-radius: 8px;
}

.section--graphite .licence-note {
	background: var(--surface);
}

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

.licence-note li {
	color: var(--muted);
	font-size: 14.5px;
	line-height: 1.65;
	padding-left: 16px;
	position: relative;
}

.licence-note li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 5px;
	height: 1px;
	background: var(--line-strong);
}

.licence-note strong {
	color: #fff;
	font-weight: 500;
}

.reqs {
	border-top: 1px solid var(--line);
}

.reqs__row {
	display: grid;
	grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr);
	gap: 28px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}

.reqs__row p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.6;
}

.faq {
	border-top: 1px solid var(--line);
}

.faq details {
	border-bottom: 1px solid var(--line);
}

.faq summary {
	list-style: none;
	display: block;
	cursor: pointer;
	padding: 22px 40px 22px 0;
	position: relative;
	font-size: 17px;
	letter-spacing: -0.01em;
	transition: color 0.25s var(--ease);
}

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

.faq summary:hover {
	color: var(--accent);
}

.faq summary::after {
	content: "+";
	position: absolute;
	right: 4px;
	top: 20px;
	font-family: var(--mono);
	font-size: 18px;
	color: var(--faint);
}

.faq details[open] summary::after {
	content: "\2013";
	color: var(--accent);
}

.faq details[open] summary {
	color: #fff;
}

.faq details p {
	margin: 4px 0 28px;
	padding-top: 14px;
	border-top: 1px solid var(--line);
	max-width: 68ch;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
}

@media (max-width: 760px) {
	.price-strip {
		grid-template-columns: minmax(0, 1fr);
		gap: 22px;
		padding: 26px 22px;
	}

	.price-strip__cta {
		justify-self: stretch;
	}

	.price-strip__cta .btn {
		width: 100%;
		justify-content: center;
	}

	.reqs__row {
		grid-template-columns: minmax(0, 1fr);
		gap: 8px;
	}

	.licence-note {
		padding: 22px 20px;
	}
}
