:root {
	color-scheme: dark;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-synthesis: none;
	--ink: #07131c;
	--ink-deep: #030a0f;
	--graphite: #142732;
	--graphite-soft: #1a323e;
	--porcelain: #f3f5f0;
	--paper: #ffffff;
	--mist: #dbe6e4;
	--mint: #a7e5de;
	--mint-bright: #c9f4ee;
	--blue: #79aee8;
	--coral: #ff7d63;
	--text: #f5fbfa;
	--text-muted: #9aadb4;
	--dark-text: #102029;
	--dark-muted: #5b6a70;
	--line: rgba(180, 220, 220, 0.16);
	--line-strong: rgba(180, 220, 220, 0.28);
	--paper-line: rgba(18, 44, 52, 0.14);
	--display: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
	background: var(--ink);
	color: var(--text);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 79px;
	overflow-x: visible;
}

body {
	min-width: 320px;
	min-height: 100vh;
	margin: 0;
	overflow-x: visible;
	background:
		linear-gradient(rgba(150, 204, 208, 0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(150, 204, 208, 0.018) 1px, transparent 1px),
		var(--ink);
	background-size: 52px 52px;
	color: var(--text);
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

svg,
img {
	display: block;
}

.sr-only,
.skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	padding: 11px 16px;
	border-radius: 8px;
	background: var(--mint-bright);
	color: var(--ink);
	font-weight: 800;
}

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

.section-shell {
	width: min(1360px, calc(100% - 64px));
	margin-inline: auto;
}

.section-pad {
	padding-block: clamp(84px, 8.5vw, 128px);
}

.header-shell {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(180, 220, 220, 0.1);
	background: rgba(5, 14, 20, 0.96);
	-webkit-backdrop-filter: blur(20px) saturate(130%);
	backdrop-filter: blur(20px) saturate(130%);
}

.site-header {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: min(1360px, calc(100% - 64px));
	min-height: 78px;
	margin-inline: auto;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: -0.035em;
	text-decoration: none;
}

.brand img {
	object-fit: contain;
}

.brand-small {
	font-size: 0.95rem;
}

.site-navigation {
	display: flex;
	align-items: center;
	gap: 4px;
}

.site-navigation a {
	padding: 10px 13px;
	border-radius: 8px;
	color: var(--text-muted);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	transition: color 160ms ease, background 160ms ease;
}

.site-navigation a:hover {
	background: rgba(167, 229, 222, 0.06);
	color: var(--text);
}

.account-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.nav-toggle {
	display: none;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(20, 39, 50, 0.76);
	color: var(--text);
	cursor: pointer;
}

.nav-toggle svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 9px;
	font-weight: 780;
	letter-spacing: -0.015em;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.button-header {
	border-color: var(--line-strong);
	background: rgba(20, 39, 50, 0.62);
	color: var(--text);
	font-size: 0.82rem;
}

.button-header-primary {
	background: var(--mint);
	color: var(--ink);
	font-size: 0.82rem;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.button-quiet {
	border-color: transparent;
	background: transparent;
	color: var(--text-muted);
}

.button-primary {
	background: var(--mint);
	color: var(--ink);
	box-shadow: 0 14px 36px rgba(77, 176, 168, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.button-primary:hover {
	background: var(--mint-bright);
	box-shadow: 0 18px 42px rgba(77, 176, 168, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.button-secondary {
	border-color: var(--line-strong);
	background: rgba(20, 39, 50, 0.48);
	color: var(--text);
}

.button-secondary:hover {
	border-color: rgba(167, 229, 222, 0.5);
	background: rgba(20, 39, 50, 0.86);
}

.button-large {
	min-height: 54px;
	padding: 0 22px;
}

.play-mark {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border: 1px solid rgba(167, 229, 222, 0.38);
	border-radius: 50%;
	color: var(--mint);
	font-size: 0.48rem;
	padding-left: 1px;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 20px;
	color: var(--mint);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.19em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow > span {
	display: block;
	width: 24px;
	height: 1px;
	background: currentColor;
}

.eyebrow.dark {
	color: #397a78;
}

.hero {
	position: relative;
	display: grid;
	overflow-x: clip;
	grid-template-columns: minmax(0, 0.95fr) minmax(600px, 1.05fr);
	grid-template-rows: auto;
	column-gap: clamp(56px, 6vw, 100px);
	row-gap: 0;
	align-items: center;
	min-height: 740px;
	padding-top: clamp(68px, 6vw, 96px);
	padding-bottom: 76px;
}

.hero::before {
	position: absolute;
	top: 6%;
	right: -8%;
	width: 760px;
	height: 620px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(78, 147, 164, 0.18), rgba(7, 19, 28, 0) 68%);
	content: "";
	pointer-events: none;
}

.hero-copy {
	position: relative;
	z-index: 3;
	max-width: 680px;
}

.hero h1 {
	max-width: 680px;
	margin: 0;
	font-family: var(--display);
	font-size: clamp(4rem, 4.4vw, 4.5rem);
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 0.97;
	text-wrap: balance;
}

.hero h1 em {
	display: block;
	margin-top: 0.08em;
	color: var(--mint);
	font-style: normal;
}

.hero-lede {
	max-width: 610px;
	margin: 30px 0 0;
	color: var(--text-muted);
	font-size: clamp(1rem, 1.2vw, 1.16rem);
	line-height: 1.75;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.hero-assurances {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	padding: 0;
	margin: 28px 0 0;
	list-style: none;
}

.hero-assurances li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-muted);
	font-size: 0.76rem;
	font-weight: 650;
}

.hero-assurances li > span {
	width: 7px;
	height: 7px;
	border: 1px solid var(--mint);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(167, 229, 222, 0.06);
}

.hero-product {
	position: relative;
	z-index: 2;
	min-width: 0;
	padding-top: 22px;
	padding-bottom: 50px;
}

.hero-coordinate {
	position: absolute;
	top: -4px;
	right: 0;
	color: rgba(167, 229, 222, 0.52);
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.18em;
}

.hero-coordinate::after {
	display: inline-block;
	width: 36px;
	height: 1px;
	margin-left: 10px;
	background: rgba(167, 229, 222, 0.4);
	vertical-align: middle;
	content: "";
}

.dashboard-frame,
.placement-card,
.product-screen {
	margin: 0;
}

.dashboard-frame {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(188, 221, 220, 0.3);
	border-radius: 17px;
	background: #f7faf8;
	box-shadow: 0 42px 100px rgba(0, 0, 0, 0.44), 0 0 0 8px rgba(132, 195, 199, 0.03);
}

.window-bar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 38px;
	padding: 0 12px;
	border-bottom: 1px solid #dfe7e4;
	background: #eef3f1;
	color: #607177;
}

.window-dots {
	display: flex;
	gap: 5px;
}

.window-dots span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #b9c7c6;
}

.window-dots span:first-child {
	background: #ff967f;
}

.window-dots span:nth-child(2) {
	background: #f0c671;
}

.window-address {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 5px 28px;
	border: 1px solid #dbe5e3;
	border-radius: 6px;
	background: #fff;
	font-size: 0.54rem;
	font-weight: 650;
}

.window-address span {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #61b69d;
}

.window-badge {
	justify-self: end;
	font-size: 0.5rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.dashboard-image {
	width: 100%;
	height: auto;
	aspect-ratio: auto;
	object-fit: contain;
}

.placement-card {
	position: absolute;
	bottom: -8px;
	left: -68px;
	width: min(360px, 48%);
	overflow: hidden;
	border: 1px solid rgba(204, 226, 224, 0.46);
	border-radius: 12px;
	background: #f8faf9;
	color: var(--dark-text);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.46);
}

.placement-card-head,
.screen-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 12px;
	border-bottom: 1px solid #dfe8e5;
	background: #edf3f1;
	font-size: 0.58rem;
}

.placement-card-head span,
.screen-label span {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.placement-card-head i,
.screen-label i,
.dashboard-caption i,
.console-head i {
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #5fb397;
	box-shadow: 0 0 0 4px rgba(74, 168, 144, 0.1);
}

.placement-card-head small,
.screen-label small {
	color: #708086;
}

.placement-card-crop {
	height: 162px;
	overflow: hidden;
}

.placement-card-crop img {
	width: 185%;
	height: auto;
	max-width: none;
	transform: translate(-1%, -44%);
}

.placement-card figcaption {
	padding: 10px 12px;
	color: #576a70;
	font-size: 0.62rem;
	font-weight: 650;
}

.dashboard-caption {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 13px 0 0 320px;
	color: #82969d;
	font-size: 0.61rem;
	line-height: 1.4;
}

.dashboard-caption span {
	display: flex;
	align-items: center;
	gap: 7px;
	color: var(--mint);
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.production-thread {
	position: absolute;
	right: 0;
	bottom: 64px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	width: calc(58% - 10px);
	padding: 0 0 0 20px;
	margin: 0;
	list-style: none;
}

.production-thread::before {
	position: absolute;
	top: 8px;
	left: 27px;
	right: 12px;
	height: 1px;
	background: repeating-linear-gradient(90deg, rgba(167, 229, 222, 0.58) 0 3px, transparent 3px 7px);
	content: "";
}

.production-thread::after {
	position: absolute;
	top: 3px;
	right: 6px;
	width: 9px;
	height: 9px;
	border-top: 1px solid var(--mint);
	border-right: 1px solid var(--mint);
	transform: rotate(45deg);
	content: "";
}

.production-thread li {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 11px;
	min-width: 0;
}

.thread-dot {
	position: relative;
	z-index: 1;
	display: block;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	border: 1px solid rgba(167, 229, 222, 0.6);
	border-radius: 4px;
	background: var(--ink);
	box-shadow: inset 0 0 0 4px var(--ink), inset 0 0 0 8px var(--mint);
}

.production-thread div {
	padding-top: 29px;
}

.production-thread b,
.production-thread small {
	display: block;
}

.production-thread b {
	font-size: 0.69rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.production-thread small {
	margin-top: 5px;
	color: var(--text-muted);
	font-size: 0.66rem;
}

.proof-strip {
	position: relative;
	z-index: 4;
	border-top: 1px solid var(--paper-line);
	border-bottom: 1px solid var(--paper-line);
	background: var(--porcelain);
	color: var(--dark-text);
}

.proof-strip-inner {
	display: grid;
	grid-template-columns: 1fr 2fr;
	align-items: stretch;
	min-height: 104px;
}

.proof-strip-inner > p {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.proof-pulse {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4c9f8d;
	box-shadow: 0 0 0 5px rgba(76, 159, 141, 0.12);
}

.proof-strip ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0;
	margin: 0;
	border-left: 1px solid var(--paper-line);
	list-style: none;
}

.proof-strip li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px 26px;
	border-right: 1px solid var(--paper-line);
}

.proof-strip li:last-child {
	border-right: 0;
}

.proof-strip b {
	font-size: 0.86rem;
	font-weight: 850;
}

.proof-strip li span {
	margin-top: 4px;
	color: var(--dark-muted);
	font-size: 0.67rem;
}

.drag-section,
.workflow,
.faq {
	position: relative;
	background: var(--porcelain);
	color: var(--dark-text);
	box-shadow: 0 0 0 100vmax var(--porcelain);
	clip-path: inset(0 -100vmax);
}

.drag-section {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(640px, 1.28fr);
	gap: clamp(60px, 9vw, 140px);
	align-items: start;
}

.drag-intro {
	position: sticky;
	top: 126px;
}

.drag-intro h2,
.product-proof-heading h2,
.workflow-heading h2,
.control-copy h2,
.faq-heading h2,
.waitlist-copy h2 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(2.75rem, 3.9vw, 4.45rem);
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1;
	text-wrap: balance;
}

.drag-intro > p:last-child {
	max-width: 500px;
	margin: 28px 0 0;
	color: var(--dark-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.drag-ledger {
	border-top: 1px solid var(--paper-line);
}

.drag-ledger article {
	position: relative;
	display: grid;
	grid-template-columns: 94px 1fr;
	column-gap: 18px;
	padding: 34px 0 38px;
	border-bottom: 1px solid var(--paper-line);
}

.ledger-status {
	grid-row: 1 / span 3;
	width: fit-content;
	height: fit-content;
	padding: 6px 8px;
	border: 1px solid rgba(190, 86, 66, 0.26);
	border-radius: 5px;
	background: rgba(255, 125, 99, 0.08);
	color: #a54533;
	font-size: 0.6rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.drag-ledger h3 {
	margin: 0;
	font-size: clamp(1.35rem, 2vw, 1.85rem);
	letter-spacing: -0.035em;
}

.drag-ledger article > p {
	margin: 10px 0 0;
	color: var(--dark-muted);
	font-size: 0.92rem;
	line-height: 1.65;
}

.ledger-answer {
	display: grid;
	grid-template-columns: 124px 1fr;
	gap: 16px;
	align-items: baseline;
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px dashed rgba(18, 44, 52, 0.18);
}

.ledger-answer span {
	color: #397a78;
	font-size: 0.61rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ledger-answer b {
	font-size: 0.82rem;
	line-height: 1.5;
}

.product-proof {
	position: relative;
	background:
		radial-gradient(circle at 88% 18%, rgba(87, 150, 164, 0.16), transparent 34rem),
		var(--ink-deep);
}

.product-proof-heading {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 80px;
	align-items: end;
	margin-bottom: clamp(72px, 8vw, 116px);
}

.product-proof-heading h2 {
	max-width: 850px;
}

.product-proof-heading > p {
	margin: 0;
	color: var(--text-muted);
	line-height: 1.75;
}

.product-chapters {
	display: grid;
	gap: clamp(100px, 12vw, 180px);
}

.product-chapter {
	display: grid;
	grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
	gap: clamp(56px, 7vw, 108px);
	align-items: center;
}

.product-chapter.reverse {
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
}

.product-chapter.reverse .chapter-copy {
	grid-column: 2;
	grid-row: 1;
}

.product-chapter.reverse .product-screen {
	grid-column: 1;
	grid-row: 1;
}

.chapter-kicker {
	display: block;
	margin-bottom: 18px;
	color: var(--mint);
	font-size: 0.66rem;
	font-weight: 850;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.chapter-copy h3 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(2.35rem, 3.1vw, 3.75rem);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1;
	text-wrap: balance;
}

.chapter-copy > p {
	margin: 24px 0 0;
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.75;
}

.chapter-copy ul {
	display: grid;
	gap: 0;
	padding: 0;
	margin: 28px 0 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.chapter-copy li {
	position: relative;
	padding: 13px 0 13px 22px;
	border-bottom: 1px solid var(--line);
	color: #c4d0d3;
	font-size: 0.78rem;
	font-weight: 680;
}

.chapter-copy li::before {
	position: absolute;
	top: 18px;
	left: 2px;
	width: 7px;
	height: 7px;
	border: 1px solid var(--mint);
	border-radius: 2px;
	content: "";
}

.product-screen {
	overflow: hidden;
	border: 1px solid rgba(192, 219, 220, 0.26);
	border-radius: 14px;
	background: #f6f8f7;
	box-shadow: 0 38px 92px rgba(0, 0, 0, 0.42);
}

.screen-label {
	color: var(--dark-text);
}

.product-screen img {
	width: 100%;
	height: auto;
	aspect-ratio: auto;
	object-fit: contain;
}

.workflow-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
	column-gap: 80px;
	align-items: end;
	margin-bottom: 72px;
}

.workflow-heading .eyebrow,
.workflow-heading h2 {
	grid-column: 1;
}

.workflow-heading > p:last-child {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: end;
	margin: 0;
	color: var(--dark-muted);
	line-height: 1.7;
}

.workflow-line {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 34px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.workflow-line::before {
	position: absolute;
	top: 22px;
	left: 22px;
	right: 22px;
	height: 1px;
	background: linear-gradient(90deg, #397a78, #88aaa9);
	content: "";
}

.workflow-line li {
	position: relative;
	padding-right: 20px;
}

.workflow-node {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(57, 122, 120, 0.6);
	border-radius: 8px;
	background: var(--porcelain);
	color: #397a78;
	font-size: 1.05rem;
	box-shadow: 0 0 0 8px var(--porcelain);
}

.workflow-line small {
	display: block;
	margin-top: 28px;
	color: #397a78;
	font-size: 0.61rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.workflow-line h3 {
	margin: 8px 0 0;
	font-size: 1.18rem;
	letter-spacing: -0.035em;
}

.workflow-line p {
	margin: 10px 0 0;
	color: var(--dark-muted);
	font-size: 0.84rem;
	line-height: 1.65;
}

.control {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(620px, 1.2fr);
	gap: clamp(68px, 8vw, 124px);
	align-items: center;
}

.control-copy h2 {
	max-width: 620px;
}

.control-copy > p:not(.eyebrow) {
	max-width: 570px;
	margin: 26px 0 0;
	color: var(--text-muted);
	line-height: 1.75;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 28px;
	color: var(--mint);
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
}

.text-link span {
	transition: transform 160ms ease;
}

.text-link:hover span {
	transform: translateX(4px);
}

.control-console {
	overflow: hidden;
	border: 1px solid var(--line-strong);
	border-radius: 14px;
	background: rgba(16, 34, 44, 0.84);
	box-shadow: 0 32px 86px rgba(0, 0, 0, 0.32);
}

.console-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid var(--line);
	background: rgba(22, 46, 57, 0.84);
}

.console-head span {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.console-head small {
	color: var(--text-muted);
	font-size: 0.65rem;
}

.control-console ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.control-console li {
	display: grid;
	grid-template-columns: 32px 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid var(--line);
}

.console-check {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(167, 229, 222, 0.3);
	border-radius: 7px;
	background: rgba(167, 229, 222, 0.08);
	color: var(--mint);
	font-size: 0.75rem;
}

.control-console b,
.control-console small {
	display: block;
}

.control-console li b {
	font-size: 0.82rem;
}

.control-console li small {
	margin-top: 5px;
	color: var(--text-muted);
	font-size: 0.66rem;
}

.control-console li em {
	padding: 5px 7px;
	border: 1px solid rgba(167, 229, 222, 0.2);
	border-radius: 5px;
	color: var(--mint);
	font-size: 0.58rem;
	font-style: normal;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.console-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 17px 20px;
}

.console-action > span {
	color: var(--text-muted);
	font-size: 0.68rem;
}

.console-action button {
	display: inline-flex;
	align-items: center;
	gap: 22px;
	min-height: 38px;
	padding: 0 14px;
	border: 0;
	border-radius: 7px;
	background: var(--mint);
	color: var(--ink);
	font-size: 0.68rem;
	font-weight: 820;
}

.faq {
	display: grid;
	grid-template-columns: minmax(320px, 0.65fr) minmax(600px, 1.35fr);
	gap: clamp(70px, 9vw, 144px);
	align-items: start;
}

.faq-heading {
	position: sticky;
	top: 126px;
}

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

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

.faq-list summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 23px 2px;
	font-size: 1rem;
	font-weight: 760;
	letter-spacing: -0.02em;
	list-style: none;
	cursor: pointer;
}

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

.faq-list summary span {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid var(--paper-line);
	border-radius: 7px;
	color: #397a78;
	font-size: 1.1rem;
	font-weight: 400;
	transition: transform 180ms ease;
}

.faq-list details[open] summary span {
	transform: rotate(45deg);
}

.faq-list details p {
	max-width: 760px;
	padding: 0 52px 26px 2px;
	margin: 0;
	color: var(--dark-muted);
	font-size: 0.9rem;
	line-height: 1.75;
}

.waitlist {
	position: relative;
	display: grid;
	overflow-x: clip;
	grid-template-columns: minmax(0, 0.78fr) minmax(620px, 1.22fr);
	gap: clamp(70px, 8vw, 128px);
	align-items: start;
	padding-block: clamp(96px, 10vw, 150px);
}

.waitlist::before {
	position: absolute;
	top: 10%;
	left: -18%;
	width: 700px;
	height: 700px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(70, 143, 158, 0.16), transparent 68%);
	content: "";
	pointer-events: none;
}

.waitlist-copy,
.waitlist-form-stack {
	position: relative;
	z-index: 1;
}

.waitlist-copy > p:not(.eyebrow, .interest-count) {
	max-width: 520px;
	margin: 26px 0 0;
	color: var(--text-muted);
	line-height: 1.75;
}

.waitlist-copy ul {
	display: grid;
	gap: 0;
	padding: 0;
	margin: 34px 0 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.waitlist-copy li {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 13px 0;
	border-bottom: 1px solid var(--line);
	color: #c7d3d5;
	font-size: 0.8rem;
	font-weight: 650;
}

.waitlist-copy li span {
	color: var(--mint);
	font-size: 0.58rem;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.interest-count {
	margin: 24px 0 0;
	color: var(--mint);
	font-size: 0.72rem;
	font-weight: 760;
}

.waitlist-form-stack {
	min-width: 0;
}

.waitlist-form {
	padding: clamp(26px, 3vw, 38px);
	border: 1px solid var(--line-strong);
	border-radius: 14px;
	background: rgba(17, 37, 47, 0.88);
	box-shadow: 0 34px 86px rgba(0, 0, 0, 0.32);
}

.form-intro {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 22px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--line);
}

.form-intro > span:last-child,
.form-intro b,
.form-intro small {
	display: block;
}

.form-step {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(167, 229, 222, 0.28);
	border-radius: 8px;
	background: rgba(167, 229, 222, 0.07);
	color: var(--mint);
	font-size: 0.66rem;
	font-weight: 850;
}

.form-intro b {
	font-size: 0.9rem;
}

.form-intro small {
	margin-top: 3px;
	color: var(--text-muted);
	font-size: 0.67rem;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.waitlist-form label:not(.consent-field) {
	display: grid;
	gap: 8px;
}

.waitlist-form label:not(.consent-field) > span:first-child {
	color: #d8e2e2;
	font-size: 0.68rem;
	font-weight: 760;
}

.waitlist-form label small {
	margin-left: 4px;
	color: var(--text-muted);
	font-weight: 560;
}

.waitlist-form input:not([type="checkbox"]),
.waitlist-form select,
.waitlist-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 0 13px;
	border: 1px solid var(--line-strong);
	border-radius: 8px;
	background: rgba(5, 17, 24, 0.72);
	color: var(--text);
	font-size: 0.82rem;
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.waitlist-form textarea {
	min-height: 104px;
	padding-block: 12px;
	resize: vertical;
}

.waitlist-form input::placeholder,
.waitlist-form textarea::placeholder {
	color: #667b83;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
	border-color: var(--mint);
	box-shadow: 0 0 0 3px rgba(167, 229, 222, 0.1);
}

.optional-fields {
	margin-top: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
}

.optional-fields summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 13px 14px;
	color: #c7d4d5;
	font-size: 0.72rem;
	font-weight: 700;
	list-style: none;
	cursor: pointer;
}

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

.optional-fields summary span {
	color: var(--text-muted);
	font-size: 0.62rem;
	font-weight: 550;
}

.optional-fields .form-grid {
	padding: 16px;
	border-top: 1px solid var(--line);
}

.form-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.consent-field {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 10px;
	align-items: start;
	margin-top: 20px;
	color: var(--text-muted);
	font-size: 0.67rem;
	line-height: 1.55;
}

.consent-field input {
	width: 16px;
	height: 16px;
	margin: 1px 0 0;
	accent-color: var(--mint);
}

.consent-field a {
	color: var(--mint);
}

.form-submit {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 18px;
	margin-top: 22px;
}

.form-status {
	flex: 1 1 180px;
	margin: 0;
	color: var(--mint);
	font-size: 0.68rem;
	line-height: 1.4;
}

.form-status-error {
	color: #ff9c87;
}

.waitlist-enrichment {
	display: grid;
	gap: 18px;
}

.waitlist-enrichment[hidden],
.waitlist-complete[hidden],
.waitlist-form[hidden],
[hidden] {
	display: none !important;
}

.enrichment-copy {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.8rem;
	line-height: 1.6;
}

.enrichment-skip {
	min-height: 48px;
}

.waitlist-complete {
	display: flex;
	align-items: center;
	gap: 16px;
}

.completion-mark {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(167, 229, 222, 0.35);
	border-radius: 9px;
	background: rgba(167, 229, 222, 0.1);
	color: var(--mint);
}

.waitlist-complete b {
	font-size: 0.94rem;
}

.waitlist-complete p {
	margin: 5px 0 0;
	color: var(--text-muted);
	font-size: 0.78rem;
}

.footer-shell {
	border-top: 1px solid var(--line);
	background: var(--ink-deep);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 150px;
}

.footer-inner > div:first-child > p {
	margin: 8px 0 0;
	color: var(--text-muted);
	font-size: 0.68rem;
}

.footer-inner nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
}

.footer-inner nav a {
	padding: 8px;
	color: var(--text-muted);
	font-size: 0.69rem;
	font-weight: 650;
	text-decoration: none;
}

.footer-inner nav a:hover {
	color: var(--text);
}

.footer-note {
	justify-self: end;
	margin: 0;
	color: var(--text-muted);
	font-size: 0.68rem;
}

.reveal-ready [data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready [data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1220px) {
	.hero {
		grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
		column-gap: 54px;
	}

	.hero h1 {
		font-size: clamp(3.55rem, 5.2vw, 4.9rem);
	}

	.placement-card {
		left: -34px;
		width: 42%;
	}

	.drag-section,
	.control,
	.faq,
	.waitlist {
		grid-template-columns: minmax(0, 0.75fr) minmax(540px, 1.25fr);
		gap: 70px;
	}
}

@media (max-width: 980px) {
	.section-shell,
	.site-header {
		width: min(100% - 40px, 820px);
	}

	.site-header {
		grid-template-columns: 1fr auto;
	}

	.site-navigation {
		position: fixed;
		top: 78px;
		left: 20px;
		right: 20px;
		display: grid;
		gap: 4px;
		padding: 10px;
		border: 1px solid var(--line-strong);
		border-radius: 10px;
		background: rgba(6, 17, 23, 0.98);
		box-shadow: 0 24px 52px rgba(0, 0, 0, 0.38);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 160ms ease, transform 160ms ease;
	}

	.nav-open .site-navigation {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-navigation a {
		padding: 12px;
	}

	.nav-toggle {
		display: grid;
		grid-column: 2;
		grid-row: 1;
	}

	.account-nav {
		position: absolute;
		right: 76px;
	}

	.button-header-primary {
		display: none;
	}

	.hero {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 62px;
		min-height: auto;
		padding-top: 84px;
		padding-bottom: 64px;
	}

	.hero-copy {
		max-width: 720px;
	}

	.hero-product {
		width: calc(100% - 24px);
		margin-left: 24px;
	}

	.production-thread {
		position: relative;
		right: auto;
		bottom: auto;
		width: calc(100% - 24px);
		margin-left: 24px;
	}

	.proof-strip-inner {
		grid-template-columns: 1fr;
	}

	.proof-strip-inner > p {
		padding: 22px 0;
	}

	.proof-strip ul {
		border-top: 1px solid var(--paper-line);
		border-left: 0;
	}

	.drag-section,
	.control,
	.faq,
	.waitlist {
		grid-template-columns: 1fr;
	}

	.drag-intro,
	.faq-heading {
		position: static;
	}

	.product-proof-heading,
	.workflow-heading {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.product-proof-heading > p,
	.workflow-heading > p:last-child {
		grid-column: 1;
		grid-row: auto;
		max-width: 640px;
	}

	.product-chapter,
	.product-chapter.reverse {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.product-chapter.reverse .chapter-copy,
	.product-chapter.reverse .product-screen {
		grid-column: 1;
		grid-row: auto;
	}

	.product-chapter.reverse .chapter-copy {
		grid-row: 1;
	}

	.workflow-line {
		grid-template-columns: repeat(2, 1fr);
		gap: 56px 32px;
	}

	.workflow-line::before {
		display: none;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 24px;
		padding-block: 36px;
		text-align: center;
	}

	.footer-inner > div:first-child,
	.footer-note {
		justify-self: center;
	}
}

@media (max-width: 640px) {
	html {
		scroll-padding-top: 70px;
	}

	.section-shell,
	.site-header {
		width: min(100% - 28px, 560px);
	}

	.section-pad {
		padding-block: 86px;
	}

	.site-header {
		min-height: 70px;
	}

	.brand img {
		width: 33px;
		height: 33px;
	}

	.account-nav {
		right: 62px;
	}

	.account-nav .button-header {
		min-height: 38px;
		padding-inline: 13px;
	}

	.site-navigation {
		top: 70px;
		left: 14px;
		right: 14px;
	}

	.nav-toggle {
		width: 38px;
		height: 38px;
	}

	.hero {
		gap: 46px;
		padding-top: 66px;
		padding-bottom: 48px;
	}

	.hero h1 {
		font-size: clamp(3rem, 13.5vw, 4rem);
		line-height: 0.99;
	}

	.hero-lede {
		font-size: 0.96rem;
	}

	.hero-actions {
		display: grid;
	}

	.hero-actions .button {
		width: 100%;
	}

	.hero-assurances {
		display: grid;
		grid-template-columns: 1fr;
		gap: 11px;
	}

	.hero-product {
		width: 100%;
		padding-top: 18px;
		padding-bottom: 78px;
		margin-left: 0;
	}

	.hero-coordinate {
		display: none;
	}

	.window-bar {
		height: 30px;
		padding: 0 8px;
	}

	.window-address {
		padding: 4px 9px;
	}

	.window-badge {
		display: none;
	}

	.placement-card {
		bottom: 0;
		left: 12px;
		width: 55%;
	}

	.placement-card-crop {
		height: 94px;
	}

	.placement-card figcaption,
	.placement-card-head small {
		display: none;
	}

	.dashboard-caption {
		align-items: flex-start;
		margin: 12px 0 0 60%;
		font-size: 0.55rem;
	}

	.dashboard-caption span {
		display: none;
	}

	.production-thread {
		grid-template-columns: 1fr;
		gap: 0;
		width: 100%;
		padding-left: 0;
		margin-left: 0;
	}

	.production-thread::before {
		top: 8px;
		bottom: 8px;
		left: 8px;
		right: auto;
		width: 1px;
		height: auto;
		background: repeating-linear-gradient(180deg, rgba(167, 229, 222, 0.58) 0 3px, transparent 3px 7px);
	}

	.production-thread::after {
		display: none;
	}

	.production-thread li {
		gap: 14px;
		padding-bottom: 20px;
	}

	.production-thread div {
		padding-top: 0;
	}

	.proof-strip ul {
		grid-template-columns: repeat(2, 1fr);
	}

	.proof-strip li {
		padding: 16px 12px;
		border-bottom: 1px solid var(--paper-line);
	}

	.drag-intro h2,
	.product-proof-heading h2,
	.workflow-heading h2,
	.control-copy h2,
	.faq-heading h2,
	.waitlist-copy h2 {
		font-size: clamp(3rem, 14vw, 4.35rem);
	}

	.drag-ledger article {
		grid-template-columns: 1fr;
	}

	.ledger-status {
		grid-row: auto;
		margin-bottom: 16px;
	}

	.ledger-answer {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.product-proof-heading {
		margin-bottom: 60px;
	}

	.product-chapters {
		gap: 92px;
	}

	.chapter-copy h3 {
		font-size: clamp(2.8rem, 13vw, 4rem);
	}

	.product-screen {
		border-radius: 9px;
	}

	.workflow-line {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.workflow-line li {
		padding-right: 0;
	}

	.control-console li {
		grid-template-columns: 30px 1fr;
		padding: 16px;
	}

	.control-console li em {
		grid-column: 2;
		width: fit-content;
	}

	.console-action {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.console-action button {
		width: 100%;
		justify-content: space-between;
	}

	.faq-list summary {
		font-size: 0.92rem;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.optional-fields summary {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.form-submit .button {
		width: 100%;
	}

	.footer-inner nav {
		gap: 0;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.reveal-ready [data-reveal] {
		opacity: 1;
		transform: none;
	}
}
