: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: #040b11;
	--surface: #0d1d28;
	--surface-raised: #112633;
	--surface-soft: #132d39;
	--navy: #173f63;
	--navy-bright: #2b658c;
	--teal: #69aeb0;
	--teal-bright: #a0dcda;
	--mint: #c9efea;
	--white: #f4fbfb;
	--muted: #9fb1b8;
	--muted-soft: #758a93;
	--line: rgba(166, 206, 210, 0.14);
	--line-strong: rgba(166, 206, 210, 0.24);
	--green: #69c6a7;
	--amber: #eab76f;
	--radius-sm: 10px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-xl: 32px;
	background: var(--ink);
	color: var(--white);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
	overflow-x: clip;
}

body {
	min-width: 320px;
	min-height: 100vh;
	margin: 0;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 82% 4%, rgba(52, 112, 137, 0.2), transparent 30rem),
		radial-gradient(circle at 12% 36%, rgba(41, 97, 98, 0.1), transparent 28rem),
		var(--ink);
	color: var(--white);
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
}

button,
input,
select {
	font: inherit;
}

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

svg {
	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: 10px 14px;
	border-radius: 9px;
	background: var(--teal-bright);
	color: var(--ink);
	font-weight: 750;
}

:focus-visible {
	outline: 3px solid rgba(160, 220, 218, 0.75);
	outline-offset: 3px;
}

.section-shell,
.site-header,
.footer-inner {
	width: min(1240px, calc(100% - 48px));
	margin-inline: auto;
}

.section-pad {
	padding-block: clamp(92px, 11vw, 154px);
}

.header-shell {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(166, 206, 210, 0.08);
	background: rgba(7, 19, 28, 0.78);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.site-header {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 74px;
}

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

.brand img {
	display: block;
	object-fit: contain;
}

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

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

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

.site-navigation a:hover {
	background: rgba(160, 220, 218, 0.06);
	color: var(--white);
}

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

.nav-toggle {
	display: none;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 11px;
	background: rgba(13, 29, 40, 0.76);
	color: var(--white);
	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: 8px;
	min-height: 43px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 11px;
	font-weight: 720;
	letter-spacing: -0.01em;
	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(-1px);
}

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

.button-header {
	border-color: var(--line-strong);
	background: rgba(15, 36, 49, 0.82);
	color: var(--white);
}

.button-primary {
	background: var(--teal-bright);
	color: #071418;
	box-shadow: 0 14px 38px rgba(102, 176, 178, 0.17), inset 0 1px rgba(255, 255, 255, 0.3);
}

.button-primary:hover {
	background: #b2e8e4;
	box-shadow: 0 18px 46px rgba(102, 176, 178, 0.24), inset 0 1px rgba(255, 255, 255, 0.34);
}

.button-secondary {
	border-color: var(--line-strong);
	background: rgba(13, 29, 40, 0.62);
	color: var(--white);
}

.button-secondary:hover,
.button-header:hover {
	border-color: rgba(160, 220, 218, 0.38);
	background: rgba(22, 48, 61, 0.86);
}

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

.button-large {
	min-height: 52px;
	padding-inline: 22px;
	border-radius: 13px;
	font-size: 0.94rem;
}

.button:disabled {
	opacity: 0.64;
	cursor: wait;
	transform: none;
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(570px, 1.14fr);
	align-items: center;
	gap: clamp(50px, 6vw, 88px);
	min-height: 760px;
	padding-block: clamp(84px, 9vw, 124px) 96px;
}

.hero-copy {
	position: relative;
	z-index: 2;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 20px;
	color: var(--teal-bright);
	font-size: 0.72rem;
	font-weight: 820;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 22px;
	height: 1px;
	background: currentColor;
}

h1,
h2,
h3,
p {
	text-wrap: pretty;
}

h1 {
	max-width: 690px;
	margin: 0;
	font-size: clamp(3.9rem, 6vw, 6.8rem);
	font-weight: 720;
	letter-spacing: -0.07em;
	line-height: 0.91;
}

h1 em {
	display: block;
	color: var(--teal-bright);
	font-style: normal;
	font-weight: 590;
}

.hero-lede {
	max-width: 650px;
	margin: 30px 0 0;
	color: var(--muted);
	font-size: clamp(1.05rem, 1.5vw, 1.26rem);
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
	margin-top: 36px;
}

.hero-assurances {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	margin: 27px 0 0;
	padding: 0;
	list-style: none;
	color: var(--muted-soft);
	font-size: 0.76rem;
	font-weight: 620;
}

.hero-assurances li {
	display: flex;
	align-items: center;
	gap: 7px;
}

.assurance-check {
	display: inline-grid;
	place-items: center;
	width: 17px;
	height: 17px;
	border: 1px solid rgba(105, 198, 167, 0.35);
	border-radius: 50%;
	background: rgba(105, 198, 167, 0.08);
	color: var(--green);
	font-size: 0.63rem;
}

.hero-visual {
	position: relative;
	min-width: 0;
	perspective: 1400px;
}

.visual-glow {
	position: absolute;
	inset: 6% -4% -7% 5%;
	border-radius: 45%;
	background: radial-gradient(circle, rgba(83, 158, 163, 0.2), rgba(24, 79, 109, 0.08) 50%, transparent 72%);
	filter: blur(25px);
}

.app-window {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(190, 223, 225, 0.23);
	border-radius: 19px;
	background: #f7fafa;
	box-shadow: 0 44px 100px rgba(0, 0, 0, 0.42), 0 0 0 7px rgba(255, 255, 255, 0.02);
	color: #16252b;
	transform: rotateY(-1.5deg) rotateX(0.8deg);
}

.actual-app-shot {
	margin: 0;
}

.actual-app-shot .app-window {
	transform: rotateY(-1deg) rotateX(0.5deg);
}

.app-screenshot {
	display: block;
	width: 100%;
	height: auto;
	background: #fff;
}

.app-screenshot-dashboard {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: top;
}

.screenshot-caption {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin: 17px 12px 0;
	color: var(--muted-soft);
	font-size: 0.69rem;
	line-height: 1.45;
}

.screenshot-caption > span,
.actual-screen-note > span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--teal-bright);
	font: 760 0.61rem ui-monospace, SFMono-Regular, Menlo, monospace;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.screenshot-caption > span i,
.actual-screen-note > span i {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 4px rgba(105, 198, 167, 0.1);
}

.window-bar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 39px;
	padding: 0 13px;
	border-bottom: 1px solid #dbe4e5;
	background: #eef3f4;
}

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

.window-dots span,
.preview-toolbar > span i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #c1ced0;
}

.window-dots span:first-child,
.preview-toolbar > span i:first-child {
	background: #e89587;
}

.window-dots span:nth-child(2),
.preview-toolbar > span i:nth-child(2) {
	background: #e6bd73;
}

.window-dots span:last-child,
.preview-toolbar > span i:last-child {
	background: #70c2a0;
}

.window-address {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 5px 45px;
	border: 1px solid #dce6e7;
	border-radius: 6px;
	background: #fff;
	color: #829196;
	font-size: 0.55rem;
}

.address-lock {
	color: #75a9aa;
	font-size: 0.38rem;
}

.window-command {
	justify-self: end;
	padding: 3px 5px;
	border: 1px solid #d6e0e1;
	border-radius: 4px;
	color: #8a999e;
	font-size: 0.5rem;
}

.app-frame {
	display: grid;
	grid-template-columns: 142px minmax(0, 1fr);
	min-height: 475px;
}

.app-sidebar {
	display: flex;
	flex-direction: column;
	padding: 15px 10px 12px;
	border-right: 1px solid #dce6e7;
	background: #f2f6f6;
	font-size: 0.58rem;
}

.preview-brand {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 0 5px;
	font-size: 0.63rem;
}

.store-switcher {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 7px;
	margin: 16px 0 11px;
	padding: 8px 7px;
	border: 1px solid #d8e3e4;
	border-radius: 7px;
	background: #fff;
}

.store-switcher > span:nth-child(2) {
	display: grid;
	gap: 2px;
}

.store-switcher small {
	color: #89989e;
	font-size: 0.48rem;
}

.store-avatar {
	display: grid;
	place-items: center;
	width: 23px;
	height: 23px;
	border-radius: 6px;
	background: #193e5f;
	color: #fff;
	font-size: 0.48rem;
	font-weight: 800;
}

.app-sidebar ul {
	display: grid;
	gap: 3px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.app-sidebar li {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 7px;
	border-radius: 6px;
	color: #64747a;
	font-weight: 590;
}

.app-sidebar li small {
	margin-left: auto;
	color: #93a2a7;
	font-size: 0.48rem;
}

.app-sidebar li.active {
	background: #dfecee;
	color: #173c5b;
	font-weight: 720;
}

.nav-icon {
	display: grid;
	place-items: center;
	width: 13px;
	color: #537b88;
}

.sidebar-footer {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding: 8px 7px 2px;
	color: #708187;
	font-size: 0.49rem;
}

.status-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 3px rgba(105, 198, 167, 0.13);
}

.app-content {
	min-width: 0;
	padding: 28px 27px;
	background: #fbfcfc;
}

.app-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 15px;
}

.preview-kicker {
	color: #699295;
	font-size: 0.44rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.app-heading h2 {
	margin: 5px 0 3px;
	font-size: 1.15rem;
	letter-spacing: -0.04em;
}

.app-heading p {
	margin: 0;
	color: #7e8d92;
	font-size: 0.58rem;
}

.app-heading button,
.control-panel button,
.readiness-panel button {
	padding: 8px 11px;
	border: 0;
	border-radius: 7px;
	background: #1d4668;
	color: #fff;
	font-size: 0.55rem;
	font-weight: 700;
}

.metric-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
	margin-top: 24px;
}

.metric-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px;
	min-width: 0;
	padding: 11px;
	border: 1px solid #e0e8e9;
	border-radius: 9px;
	background: #fff;
	box-shadow: 0 2px 7px rgba(31, 65, 80, 0.03);
}

.metric-card > span:last-child {
	display: grid;
	min-width: 0;
}

.metric-icon {
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	border-radius: 7px;
	font-size: 0.65rem;
}

.metric-icon.navy {
	background: #e7edf2;
	color: #173f63;
}

.metric-icon.teal {
	background: #e2f0f0;
	color: #467e82;
}

.metric-icon.green {
	background: #e5f4ee;
	color: #3c9275;
}

.metric-card small,
.metric-card em {
	overflow: hidden;
	color: #91a0a5;
	font-size: 0.4rem;
	font-style: normal;
	letter-spacing: 0.08em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.metric-card b {
	margin: 1px 0;
	font-size: 1rem;
	letter-spacing: -0.04em;
}

.metric-card em {
	letter-spacing: 0;
}

.queue-card {
	margin-top: 13px;
	padding: 16px;
	border: 1px solid #e0e8e9;
	border-radius: 10px;
	background: #fff;
}

.queue-header,
.queue-header > span:first-child {
	display: flex;
	align-items: center;
}

.queue-header {
	justify-content: space-between;
	gap: 12px;
}

.queue-header > span:first-child {
	align-items: flex-start;
	flex-direction: column;
	gap: 2px;
	font-size: 0.66rem;
}

.queue-header small,
.queue-list small {
	color: #8c9ba0;
	font-size: 0.48rem;
	font-weight: 500;
}

.queue-link {
	color: #4b7b83;
	font-size: 0.49rem;
	font-weight: 680;
}

.queue-list {
	display: grid;
	gap: 7px;
	margin-top: 12px;
}

.queue-list > div {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 10px;
	padding: 9px;
	border: 1px solid #e6eded;
	border-radius: 7px;
	font-size: 0.55rem;
}

.queue-list > div > span:nth-child(2) {
	display: grid;
	gap: 2px;
}

.queue-badge {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 6px;
	font-weight: 800;
}

.queue-badge.amber {
	background: #fff2df;
	color: #a66a21;
}

.queue-badge.blue {
	background: #e6f0f5;
	color: #356888;
}

.queue-badge.green {
	background: #e6f4ee;
	color: #40866e;
}

.floating-status {
	position: absolute;
	right: 0;
	bottom: 40px;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 11px 15px 11px 11px;
	border: 1px solid rgba(188, 222, 221, 0.26);
	border-radius: 12px;
	background: rgba(11, 29, 39, 0.94);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
	animation: status-float 5s ease-in-out infinite;
}

.floating-icon {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 9px;
	background: rgba(105, 198, 167, 0.13);
	color: var(--green);
	font-weight: 800;
}

.floating-status > span:last-child {
	display: grid;
	gap: 2px;
}

.floating-status b {
	font-size: 0.68rem;
}

.floating-status small {
	color: var(--muted);
	font-size: 0.52rem;
}

@keyframes status-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-7px); }
}

.integration-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 118px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.integration-strip > p {
	margin: 0;
	color: var(--muted);
	font-size: 0.86rem;
	font-weight: 650;
}

.integration-flow {
	display: flex;
	align-items: center;
	gap: 13px;
}

.integration-chip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 9px 13px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(16, 36, 48, 0.65);
	font-size: 0.75rem;
	font-weight: 690;
}

.integration-chip > i,
.provider-logo-shell {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: var(--surface-soft);
	color: var(--teal-bright);
	font-size: 0.67rem;
	font-style: normal;
	font-weight: 850;
}

.provider-logo-shell {
	background: #162c36;
}

.provider-logo {
	display: block;
	max-width: 15px;
	max-height: 15px;
}

.provider-logo-printify {
	width: 11px;
	height: 14px;
}

.provider-logo-shopify {
	width: 15px;
	height: 15px;
}

.flow-arrow {
	color: #49616b;
}

.section-heading {
	max-width: 760px;
}

.section-heading.centered {
	margin-inline: auto;
	text-align: center;
}

.section-heading.centered .eyebrow {
	justify-content: center;
}

.section-heading h2,
.story-copy h2,
.control-copy h2,
.waitlist-copy h2 {
	margin: 0;
	font-size: clamp(2.8rem, 5vw, 5rem);
	font-weight: 650;
	letter-spacing: -0.06em;
	line-height: 1;
}

.section-heading > p:last-child,
.workflow-heading > p,
.story-copy > p:not(.eyebrow),
.control-copy > p:not(.eyebrow),
.waitlist-copy > p:not(.eyebrow, .interest-count) {
	margin: 24px 0 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.7;
}

.outcome-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-top: 64px;
}

.outcome-card {
	position: relative;
	display: flex;
	min-height: 445px;
	flex-direction: column;
	overflow: hidden;
	padding: 31px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: linear-gradient(150deg, rgba(19, 44, 56, 0.88), rgba(11, 26, 36, 0.82));
}

.outcome-card::after {
	position: absolute;
	right: -80px;
	bottom: -120px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(88, 156, 158, 0.05);
	content: "";
	filter: blur(10px);
}

.outcome-card.featured {
	background: linear-gradient(150deg, rgba(30, 67, 82, 0.96), rgba(13, 32, 43, 0.9));
}

.outcome-icon {
	display: grid;
	place-items: center;
	width: 43px;
	height: 43px;
	border: 1px solid rgba(160, 220, 218, 0.2);
	border-radius: 12px;
	background: rgba(160, 220, 218, 0.08);
	color: var(--teal-bright);
}

.outcome-icon svg {
	width: 21px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.card-label {
	margin: 25px 0 10px;
	color: var(--teal);
	font-size: 0.66rem;
	font-weight: 820;
	letter-spacing: 0.14em;
}

.outcome-card h3 {
	margin: 0;
	font-size: 1.55rem;
	font-weight: 650;
	letter-spacing: -0.04em;
	line-height: 1.15;
}

.outcome-card > p:not(.card-label) {
	margin: 15px 0 0;
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.65;
}

.mini-batch,
.quality-meter,
.sync-row {
	position: relative;
	z-index: 1;
	margin-top: auto;
}

.mini-batch {
	display: flex;
	align-items: center;
	padding-top: 27px;
}

.mini-batch span,
.mini-batch b {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-right: -7px;
	border: 2px solid #183642;
	border-radius: 10px;
	background: #d9e9e7;
	color: #274d5a;
	font-size: 0.6rem;
}

.mini-batch span:nth-child(2) { background: #dce3ec; }
.mini-batch span:nth-child(3) { background: #e8ddcf; }
.mini-batch b { background: #214656; color: var(--teal-bright); }

.mini-batch em {
	margin-left: 17px;
	color: var(--green);
	font-size: 0.68rem;
	font-style: normal;
	font-weight: 700;
}

.quality-meter {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 7px 12px;
	padding-top: 27px;
}

.quality-meter > span {
	grid-column: 1 / -1;
	height: 6px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
}

.quality-meter > span i {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--teal), var(--green));
}

.quality-meter b,
.quality-meter em {
	font-size: 0.66rem;
	font-style: normal;
}

.quality-meter em {
	color: var(--muted-soft);
}

.sync-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 18px 19px;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: rgba(5, 15, 22, 0.34);
	font-size: 0.69rem;
	font-weight: 700;
}

.sync-row span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sync-row b {
	color: var(--green);
	font-size: 1rem;
}

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

.story-row {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
	align-items: center;
	gap: clamp(60px, 8vw, 108px);
}

.story-row.reverse .story-visual {
	grid-column: 2;
	grid-row: 1;
}

.story-row.reverse .story-copy {
	grid-column: 1;
	grid-row: 1;
}

.story-visual {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius-lg);
	background: #edf2f2;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.26);
	color: #1c2b31;
}

.story-visual::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 30%);
	content: "";
	z-index: 3;
}

.actual-app-frame {
	margin: 0;
}

.actual-app-frame .app-screenshot {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: top;
}

.actual-screen-note {
	position: relative;
	z-index: 4;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin: 0;
	padding: 12px 15px;
	border-top: 1px solid rgba(190, 223, 225, 0.16);
	background: #10232d;
	color: #b8c9ce;
	font-size: 0.68rem;
	line-height: 1.45;
}

.preview-toolbar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 43px;
	padding: 0 15px;
	border-bottom: 1px solid #d5dfe0;
	background: #f4f7f7;
	font-size: 0.62rem;
}

.preview-toolbar > span {
	display: flex;
	gap: 5px;
}

.preview-toolbar > span i {
	display: block;
}

.preview-toolbar small {
	justify-self: end;
	padding: 4px 7px;
	border-radius: 5px;
	background: #e7eeee;
	color: #718387;
}

.placement-canvas {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(170px, 0.65fr);
	min-height: 430px;
}

.tee-stage {
	position: relative;
	display: grid;
	place-items: center;
	background: radial-gradient(circle at 50% 42%, #fbfdfd, #e1e9e9 67%);
}

.tee {
	width: min(76%, 300px);
	filter: drop-shadow(0 18px 18px rgba(26, 48, 54, 0.16));
	fill: #203238;
	stroke: #142328;
	stroke-width: 1.5;
}

.print-area {
	position: absolute;
	top: 29%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 91px;
	height: 116px;
	border: 1px solid #67adae;
	transform: translateX(-50%);
}

.art-mark {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border: 2px solid #86cfcd;
	border-radius: 50% 44% 50% 43%;
	color: #bcebea;
	font-family: Georgia, serif;
	font-size: 2rem;
	font-weight: 800;
	transform: rotate(-9deg);
}

.handle {
	position: absolute;
	width: 7px;
	height: 7px;
	border: 1px solid #407f82;
	background: #d9ffff;
}

.top-left { top: -4px; left: -4px; }
.top-right { top: -4px; right: -4px; }
.bottom-left { bottom: -4px; left: -4px; }
.bottom-right { right: -4px; bottom: -4px; }

.size-label {
	position: absolute;
	bottom: 22px;
	left: 50%;
	padding: 5px 8px;
	border-radius: 5px;
	background: rgba(26, 49, 56, 0.86);
	color: #fff;
	font-size: 0.55rem;
	transform: translateX(-50%);
}

.control-panel {
	padding: 24px 20px;
	border-left: 1px solid #d6e0e1;
	background: #f9fbfb;
}

.control-panel > p {
	margin: 0 0 24px;
	font-size: 0.73rem;
	font-weight: 750;
}

.control-panel label {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	margin-bottom: 22px;
	color: #52656b;
	font-size: 0.57rem;
	font-weight: 650;
}

.control-panel label > span {
	color: #7d8d92;
	font-weight: 500;
}

.control-panel label > i {
	grid-column: 1 / -1;
	height: 4px;
	border-radius: 999px;
	background: #dce5e5;
}

.control-panel label > i b {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: #5a979a;
}

.control-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 7px;
}

.control-grid span {
	display: grid;
	gap: 4px;
	padding: 9px;
	border: 1px solid #dce5e5;
	border-radius: 7px;
}

.control-grid small {
	color: #8a999d;
	font-size: 0.43rem;
	letter-spacing: 0.1em;
}

.control-grid b {
	font-size: 0.68rem;
}

.control-panel button {
	width: 100%;
	margin-top: 80px;
}

.story-copy {
	max-width: 510px;
}

.story-copy h2 {
	font-size: clamp(2.8rem, 4.6vw, 4.65rem);
}

.check-list {
	display: grid;
	gap: 20px;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 13px;
	align-items: start;
}

.check-list li > span {
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	border: 1px solid rgba(105, 198, 167, 0.25);
	border-radius: 8px;
	background: rgba(105, 198, 167, 0.08);
	color: var(--green);
	font-size: 0.7rem;
	font-weight: 800;
}

.check-list div {
	display: grid;
	gap: 5px;
}

.check-list b {
	font-size: 0.9rem;
}

.check-list small {
	color: var(--muted);
	font-size: 0.8rem;
	line-height: 1.55;
}

.product-panel {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	min-height: 430px;
}

.product-summary {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 24px;
	background: #e7eeee;
}

.product-thumb {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border-radius: 13px;
	background: linear-gradient(145deg, #d7dfdf, #f7f9f9);
}

.mini-tee {
	width: 72%;
	fill: #31464a;
	filter: drop-shadow(0 12px 10px rgba(30, 52, 56, 0.17));
}

.product-thumb > span {
	position: absolute;
	top: 39%;
	left: 50%;
	color: #b9ddda;
	font-size: 1.2rem;
	font-weight: 850;
	letter-spacing: -0.12em;
	transform: translateX(-53%);
}

.product-summary > span:nth-child(2) {
	display: grid;
	gap: 4px;
	margin-top: 18px;
}

.product-summary small {
	color: #788b91;
	font-size: 0.49rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.product-summary b {
	font-size: 0.8rem;
}

.product-summary em {
	color: #788b91;
	font-size: 0.58rem;
	font-style: normal;
}

.color-dots {
	display: flex;
	gap: 6px;
	margin-top: 13px;
}

.color-dots i {
	width: 14px;
	height: 14px;
	border: 2px solid #f3f6f6;
	border-radius: 50%;
	background: #1e2b30;
	box-shadow: 0 0 0 1px #c3cecf;
}

.color-dots i:nth-child(2) { background: #e9e1d5; }
.color-dots i:nth-child(3) { background: #68818c; }
.color-dots i:nth-child(4) { background: #9a6c64; }
.color-dots i:nth-child(5) { background: #7d9069; }
.color-dots i:nth-child(6) { background: #b8babe; }

.readiness-panel {
	display: flex;
	flex-direction: column;
	padding: 31px 26px;
	background: #fff;
}

.readiness-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 15px;
}

.readiness-head > span {
	display: grid;
	gap: 4px;
}

.readiness-head b {
	font-size: 0.78rem;
}

.readiness-head small {
	color: #859499;
	font-size: 0.54rem;
}

.readiness-head strong {
	color: #37826b;
	font-size: 1.1rem;
}

.progress-track {
	height: 5px;
	margin: 14px 0 19px;
	overflow: hidden;
	border-radius: 999px;
	background: #e4ebeb;
}

.progress-track span {
	display: block;
	width: 100%;
	height: 100%;
	background: #55a98b;
}

.readiness-panel ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.readiness-panel li {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 9px;
	padding: 10px;
	border: 1px solid #e3eaea;
	border-radius: 7px;
	font-size: 0.58rem;
}

.readiness-panel li > span {
	display: grid;
	place-items: center;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: #e2f3ec;
	color: #39866e;
	font-size: 0.52rem;
}

.readiness-panel li small {
	color: #86969b;
	font-size: 0.49rem;
}

.readiness-panel button {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: auto;
	padding: 10px 12px;
}

.workflow {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: rgba(5, 14, 21, 0.46);
}

.workflow-heading {
	display: grid;
	grid-template-columns: 1fr minmax(280px, 0.52fr);
	align-items: end;
	max-width: none;
	gap: 60px;
}

.workflow-heading h2 {
	max-width: 760px;
}

.workflow-heading > p {
	margin: 0 0 5px;
}

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

.workflow-grid li {
	position: relative;
	min-width: 0;
	padding: 0 28px 4px;
	border-left: 1px solid var(--line);
}

.workflow-grid li:first-child {
	padding-left: 0;
	border-left: 0;
}

.workflow-grid li:last-child {
	padding-right: 0;
}

.step-number {
	position: absolute;
	top: 4px;
	right: 27px;
	color: #47606b;
	font: 700 0.62rem ui-monospace, SFMono-Regular, Menlo, monospace;
}

.workflow-grid li:last-child .step-number {
	right: 0;
}

.step-icon {
	display: grid;
	place-items: center;
	width: 45px;
	height: 45px;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: var(--surface);
	color: var(--teal-bright);
	font-weight: 700;
}

.workflow-grid h3 {
	margin: 28px 0 12px;
	font-size: 1.16rem;
	letter-spacing: -0.03em;
}

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

.workflow-grid li > small {
	display: block;
	margin-top: 20px;
	color: var(--teal);
	font-size: 0.66rem;
	font-weight: 720;
}

.control-panel-shell {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(60px, 9vw, 120px);
	padding: clamp(38px, 6vw, 72px);
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	background:
		radial-gradient(circle at 0 0, rgba(80, 144, 150, 0.14), transparent 28rem),
		linear-gradient(140deg, rgba(18, 42, 54, 0.88), rgba(8, 22, 31, 0.9));
}

.control-copy h2 {
	font-size: clamp(2.7rem, 4.8vw, 4.5rem);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin-top: 30px;
	color: var(--teal-bright);
	font-size: 0.86rem;
	font-weight: 720;
	text-decoration: none;
}

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

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

.control-list {
	display: grid;
	border-top: 1px solid var(--line);
}

.control-list article {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 18px;
	padding: 26px 0;
	border-bottom: 1px solid var(--line);
}

.control-number {
	color: var(--teal);
	font: 700 0.68rem ui-monospace, SFMono-Regular, Menlo, monospace;
}

.control-list h3 {
	margin: -4px 0 7px;
	font-size: 1rem;
	letter-spacing: -0.02em;
}

.control-list p {
	margin: 0;
	color: var(--muted);
	font-size: 0.81rem;
	line-height: 1.6;
}

.faq {
	display: grid;
	grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
	gap: clamp(60px, 10vw, 130px);
}

.faq-heading {
	position: sticky;
	top: 120px;
	align-self: start;
}

.faq-heading h2 {
	font-size: clamp(2.8rem, 4.6vw, 4.6rem);
}

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

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

.faq-list summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 25px 0;
	font-size: 1rem;
	font-weight: 660;
	list-style: none;
	cursor: pointer;
}

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

.faq-list summary span {
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	flex: 0 0 auto;
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--teal-bright);
	font-weight: 450;
	transition: transform 180ms ease;
}

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

.faq-list details p {
	max-width: 700px;
	margin: -4px 45px 25px 0;
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.7;
}

.waitlist {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	gap: clamp(48px, 7vw, 92px);
	align-items: center;
	overflow: hidden;
	margin-bottom: 126px;
	padding: clamp(40px, 7vw, 82px);
	border: 1px solid rgba(160, 220, 218, 0.22);
	border-radius: var(--radius-xl);
	background:
		radial-gradient(circle at 0 0, rgba(91, 167, 168, 0.19), transparent 35rem),
		linear-gradient(145deg, #122f3c, #091a24 72%);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.23);
}

.waitlist-ornament {
	position: absolute;
	border: 1px solid rgba(160, 220, 218, 0.08);
	border-radius: 50%;
	pointer-events: none;
}

.ornament-one {
	top: -240px;
	right: -180px;
	width: 540px;
	height: 540px;
}

.ornament-two {
	top: -155px;
	right: -95px;
	width: 360px;
	height: 360px;
}

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

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

.waitlist-copy h2 {
	font-size: clamp(2.8rem, 4.7vw, 4.7rem);
}

.waitlist-copy ul {
	display: grid;
	gap: 12px;
	margin: 27px 0 0;
	padding: 0;
	list-style: none;
	color: #c3d0d3;
	font-size: 0.82rem;
}

.waitlist-copy li {
	display: flex;
	align-items: center;
	gap: 9px;
}

.waitlist-copy li span {
	color: var(--green);
	font-weight: 800;
}

.interest-count {
	display: inline-flex;
	width: fit-content;
	margin: 27px 0 0;
	padding: 8px 11px;
	border: 1px solid rgba(160, 220, 218, 0.2);
	border-radius: 999px;
	background: rgba(6, 17, 24, 0.32);
	color: var(--teal-bright);
	font-size: 0.72rem;
	font-weight: 680;
}

.waitlist-form {
	display: grid;
	gap: 20px;
	padding: clamp(22px, 4vw, 34px);
	border: 1px solid var(--line-strong);
	border-radius: 20px;
	background: rgba(5, 16, 23, 0.6);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.form-intro {
	display: flex;
	align-items: center;
	gap: 11px;
	padding-bottom: 4px;
}

.form-intro > span:last-child {
	display: grid;
	gap: 2px;
}

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

.form-intro small {
	color: var(--muted);
	font-size: 0.7rem;
}

.form-step {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--line-strong);
	border-radius: 10px;
	background: rgba(160, 220, 218, 0.08);
	color: var(--teal-bright);
	font: 700 0.61rem ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

.waitlist-form label:not(.consent-field) > span:first-child {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
	color: #e7f1f2;
	font-size: 0.73rem;
	font-weight: 680;
}

.waitlist-form label small {
	color: var(--muted-soft);
	font-size: 0.64rem;
	font-weight: 550;
}

.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);
	border-radius: 10px;
	outline: 0;
	background: rgba(12, 31, 41, 0.9);
	color: var(--white);
	font-size: 0.82rem;
}

.waitlist-form select {
	padding-right: 44px;
	-webkit-appearance: none;
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #90abad 50%),
		linear-gradient(135deg, #90abad 50%, transparent 50%);
	background-position: calc(100% - 20px) 21px, calc(100% - 15px) 21px;
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
}

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

.waitlist-form input::placeholder,
.waitlist-form textarea::placeholder {
	color: #71878f;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
	border-color: var(--teal);
	box-shadow: 0 0 0 3px rgba(112, 174, 177, 0.13);
}

.optional-fields {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.optional-fields summary {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	padding: 14px 0;
	color: #c9d7d9;
	font-size: 0.72rem;
	font-weight: 650;
	list-style: none;
	cursor: pointer;
}

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

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

.optional-fields .form-grid {
	padding: 4px 0 17px;
}

.consent-field {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--muted);
	font-size: 0.69rem;
	line-height: 1.5;
}

.consent-field input {
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
	margin: 1px 0 0;
	accent-color: var(--teal-bright);
}

.consent-field a {
	color: var(--teal-bright);
	font-weight: 700;
	text-underline-offset: 2px;
}

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

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

.form-submit {
	display: grid;
	gap: 11px;
}

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

.form-status {
	min-height: 1px;
	margin: 0;
	color: var(--muted);
	font-size: 0.74rem;
	line-height: 1.45;
}

.form-status-success {
	color: var(--teal-bright);
}

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

.waitlist-enrichment {
	align-content: start;
}

.enrichment-copy {
	margin: -7px 0 0;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.55;
}

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

.waitlist-complete {
	display: flex;
	align-items: center;
	gap: 15px;
	min-height: 190px;
}

.completion-mark {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	flex: 0 0 auto;
	border: 1px solid rgba(105, 198, 167, 0.35);
	border-radius: 15px;
	background: rgba(105, 198, 167, 0.1);
	color: var(--green);
	font-size: 1.15rem;
	font-weight: 800;
}

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

.waitlist-complete p {
	margin: 7px 0 0;
	color: var(--muted);
	font-size: 0.76rem;
	line-height: 1.55;
}

.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;
	gap: 30px;
	min-height: 170px;
}

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

.footer-inner nav {
	display: flex;
	gap: 24px;
}

.footer-inner nav a {
	color: var(--muted);
	font-size: 0.75rem;
	font-weight: 620;
	text-decoration: none;
}

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

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

.site-navigation a[aria-current="page"],
.footer-inner a[aria-current="page"] {
	color: var(--teal-bright);
}

.legal-main {
	padding: clamp(66px, 8vw, 108px) 0 clamp(92px, 11vw, 150px);
}

.legal-hero {
	max-width: 820px;
	margin-bottom: clamp(52px, 7vw, 88px);
}

.legal-hero h1 {
	max-width: none;
	margin: 20px 0 22px;
	font-size: clamp(3.25rem, 8vw, 6.7rem);
	letter-spacing: -0.078em;
	line-height: 0.88;
}

.legal-lede {
	max-width: 720px;
	margin: 0;
	color: #b6c7cc;
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	line-height: 1.72;
}

.legal-updated {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 28px 0 0;
	color: var(--muted-soft);
	font: 650 0.72rem ui-monospace, SFMono-Regular, Menlo, monospace;
	letter-spacing: 0.02em;
}

.legal-updated span {
	padding: 5px 8px;
	border: 1px solid var(--line-strong);
	border-radius: 6px;
	color: var(--teal-bright);
	font-size: 0.64rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.legal-layout {
	display: grid;
	grid-template-columns: minmax(190px, 230px) minmax(0, 820px);
	justify-content: space-between;
	gap: clamp(42px, 8vw, 110px);
	align-items: start;
}

.legal-toc {
	position: sticky;
	top: 108px;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: 15px;
	background: rgba(13, 29, 40, 0.68);
}

.legal-toc > p {
	margin: 0 0 14px;
	color: var(--muted-soft);
	font: 750 0.63rem ui-monospace, SFMono-Regular, Menlo, monospace;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.legal-toc nav {
	display: grid;
	gap: 3px;
}

.legal-toc a {
	padding: 8px 9px;
	border-radius: 7px;
	color: var(--muted);
	font-size: 0.76rem;
	font-weight: 620;
	line-height: 1.35;
	text-decoration: none;
	transition: color 160ms ease, background 160ms ease;
}

.legal-toc a:hover {
	background: rgba(160, 220, 218, 0.06);
	color: var(--white);
}

.legal-document {
	min-width: 0;
	padding: clamp(27px, 5vw, 58px);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(145deg, rgba(19, 45, 57, 0.56), rgba(9, 24, 33, 0.72)),
		rgba(8, 22, 31, 0.82);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.legal-document section {
	padding: 35px 0 3px;
	border-top: 1px solid var(--line);
	scroll-margin-top: 104px;
}

.legal-document section:first-of-type {
	border-top: 0;
}

.legal-document h2 {
	margin: 0 0 16px;
	color: var(--white);
	font-size: clamp(1.25rem, 2.5vw, 1.62rem);
	letter-spacing: -0.035em;
	line-height: 1.2;
}

.legal-document h3 {
	margin: 25px 0 9px;
	color: #e2eff0;
	font-size: 0.96rem;
	letter-spacing: -0.015em;
}

.legal-document p,
.legal-document li {
	color: #aebfc4;
	font-size: 0.9rem;
	line-height: 1.78;
}

.legal-document p {
	margin: 0 0 16px;
}

.legal-document ul {
	display: grid;
	gap: 9px;
	margin: 0 0 20px;
	padding-left: 20px;
}

.legal-document li::marker {
	color: var(--teal);
}

.legal-document strong {
	color: #e8f4f5;
	font-weight: 720;
}

.legal-document a {
	color: var(--teal-bright);
	font-weight: 650;
	text-underline-offset: 3px;
}

.legal-document a:hover {
	color: var(--white);
}

.legal-callout {
	padding: 22px 24px;
	border: 1px solid rgba(160, 220, 218, 0.23);
	border-radius: 14px;
	background: rgba(105, 174, 176, 0.08);
	scroll-margin-top: 104px;
}

.legal-callout > strong {
	display: block;
	margin-bottom: 6px;
	color: var(--teal-bright);
	font: 760 0.67rem ui-monospace, SFMono-Regular, Menlo, monospace;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.legal-callout p {
	margin: 0;
	color: #cedbdd;
}

[hidden] {
	display: none !important;
}

@media (max-width: 1100px) {
	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

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

	.hero-visual {
		width: min(840px, 100%);
		margin-inline: auto;
	}

	.outcome-card {
		padding: 25px;
	}

	.story-row {
		grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
		gap: 48px;
	}

	.workflow-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 44px 0;
	}

	.workflow-grid li:nth-child(3) {
		padding-left: 0;
		border-left: 0;
	}

	.workflow-grid li:nth-child(2) .step-number,
	.workflow-grid li:nth-child(4) .step-number {
		right: 0;
	}

	.waitlist {
		grid-template-columns: 0.8fr 1.2fr;
		gap: 42px;
	}
}

@media (max-width: 860px) {
	.section-shell,
	.site-header,
	.footer-inner {
		width: min(100% - 32px, 1240px);
	}

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

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

	.site-navigation {
		position: absolute;
		top: 64px;
		right: 16px;
		left: 16px;
		display: none;
		align-items: stretch;
		flex-direction: column;
		padding: 10px;
		border: 1px solid var(--line-strong);
		border-radius: 15px;
		background: rgba(8, 22, 31, 0.98);
		box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	}

	body.nav-open .site-navigation {
		display: flex;
	}

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

	.account-nav {
		grid-column: 3;
	}

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

	.integration-strip,
	.workflow-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.integration-strip {
		justify-content: center;
		padding-block: 28px;
	}

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

	.outcome-card {
		min-height: 350px;
	}

	.story-row,
	.story-row.reverse {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.story-row.reverse .story-visual,
	.story-row.reverse .story-copy {
		grid-column: 1;
	}

	.story-row.reverse .story-visual {
		grid-row: 1;
	}

	.story-row.reverse .story-copy {
		grid-row: 2;
	}

	.story-copy {
		max-width: 680px;
	}

	.workflow-heading {
		display: flex;
		gap: 25px;
	}

	.control-panel-shell,
	.faq,
	.waitlist {
		grid-template-columns: 1fr;
	}

	.faq-heading {
		position: static;
	}

	.waitlist-copy {
		max-width: 650px;
	}

	.footer-inner {
		grid-template-columns: 1fr auto;
	}

	.footer-note {
		display: none;
	}
}

@media (max-width: 600px) {
	.section-pad {
		padding-block: 90px;
	}

	.header-shell {
		position: relative;
	}

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

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

	.account-nav .button-quiet {
		display: none;
	}

	h1 {
		font-size: clamp(3.35rem, 17vw, 5rem);
	}

	.hero {
		gap: 54px;
		padding-block: 70px 74px;
	}

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

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

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

	.hero-assurances {
		align-items: flex-start;
		flex-direction: column;
	}

	.app-window {
		border-radius: 13px;
		transform: none;
	}

	.screenshot-caption {
		margin-inline: 4px;
	}

	.window-bar {
		grid-template-columns: 1fr auto;
	}

	.window-address {
		padding-inline: 20px;
	}

	.window-command {
		display: none;
	}

	.app-frame {
		grid-template-columns: 1fr;
		min-height: 390px;
	}

	.app-sidebar {
		display: none;
	}

	.app-content {
		padding: 20px 16px;
	}

	.app-heading button {
		display: none;
	}

	.metric-grid {
		gap: 6px;
	}

	.metric-card {
		grid-template-columns: 1fr;
		padding: 8px;
	}

	.metric-icon {
		display: none;
	}

	.queue-card {
		padding: 11px;
	}

	.queue-list > div {
		gap: 7px;
		padding: 7px;
	}

	.floating-status {
		right: -6px;
		bottom: -25px;
	}

	.integration-strip {
		align-items: flex-start;
		margin-top: 26px;
	}

	.integration-flow {
		align-items: flex-start;
		flex-direction: column;
		width: 100%;
	}

	.flow-arrow {
		margin-left: 25px;
		transform: rotate(90deg);
	}

	.integration-chip {
		width: 100%;
	}

	.section-heading h2,
	.story-copy h2,
	.control-copy h2,
	.waitlist-copy h2 {
		font-size: clamp(2.7rem, 13vw, 4.2rem);
	}

	.outcome-grid {
		margin-top: 45px;
	}

	.outcome-card {
		min-height: 410px;
	}

	.product-story {
		gap: 110px;
	}

	.placement-canvas,
	.product-panel {
		grid-template-columns: 1fr;
	}

	.tee-stage {
		min-height: 380px;
	}

	.control-panel {
		display: none;
	}

	.product-summary {
		display: none;
	}

	.readiness-panel {
		min-height: 400px;
	}

	.workflow-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.workflow-grid li,
	.workflow-grid li:nth-child(3) {
		padding: 31px 0;
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.workflow-grid li:last-child {
		border-bottom: 1px solid var(--line);
	}

	.workflow-grid .step-number {
		top: 45px;
		right: 0;
	}

	.control-panel-shell {
		padding: 32px 22px;
		border-radius: 22px;
	}

	.control-list article {
		grid-template-columns: 34px 1fr;
	}

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

	.waitlist {
		margin-bottom: 90px;
		padding: 34px 18px;
		border-radius: 22px;
	}

	.waitlist-form {
		padding: 21px 17px;
	}

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

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

	.footer-inner {
		grid-template-columns: 1fr;
		align-content: center;
		padding-block: 38px;
	}

	.footer-inner nav {
		flex-wrap: wrap;
		gap: 15px 21px;
	}

	.legal-layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.legal-toc {
		position: static;
	}

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

@media (max-width: 620px) {
	.legal-main {
		padding-top: 48px;
	}

	.legal-hero {
		margin-bottom: 38px;
	}

	.legal-hero h1 {
		font-size: clamp(3rem, 17vw, 4.7rem);
	}

	.legal-toc nav {
		grid-template-columns: 1fr;
	}

	.legal-document {
		padding: 24px 19px;
		border-radius: 18px;
	}

	.legal-document p,
	.legal-document li {
		font-size: 0.86rem;
	}

	.legal-callout {
		padding: 19px;
	}
}

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

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