:root {
	--background: #f5f7f2;
	--surface: #ffffff;
	--ink: #10130f;
	--muted: #62685f;
	--line: #dfe4db;
	--lime: #b7ff32;
	--lime-strong: #91e600;
	--orange: #ff9f32;
	--yellow: #ffe45c;
	--blue: #7ddcff;
	--pink: #ff8fb8;
	--dark: #0d110c;
	--dark-soft: #151a13;
	--max-width: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--background);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

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

.container {
	width: min(calc(100% - 40px), var(--max-width));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	border-bottom: 1px solid rgba(16, 19, 15, 0.08);
	background: rgba(245, 247, 242, 0.92);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.05em;
}

.brand-mark {
	width: 16px;
	height: 16px;
	background: var(--lime);
	border: 1px solid var(--ink);
	transform: rotate(45deg);
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 14px;
	font-weight: 600;
}

.main-nav a:hover,
.footer-links a:hover,
.legal-content a:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.hero {
	padding: 96px 0 80px;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
	gap: 72px;
	align-items: center;
}

.eyebrow,
.kicker {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
}

.eyebrow span {
	width: 9px;
	height: 9px;
	background: var(--lime-strong);
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

.hero h1 {
	margin-bottom: 26px;
	font-size: clamp(48px, 6vw, 82px);
	font-weight: 530;
	line-height: 0.98;
	letter-spacing: -0.065em;
}

.hero h1 strong {
	font-weight: 820;
}

.marker {
	--marker-color: var(--lime);
	padding: 0 0.08em;
	margin: 0 -0.03em;
	color: var(--ink);
	background-image: linear-gradient(
		176deg,
		transparent 0%,
		transparent 17%,
		var(--marker-color) 17%,
		var(--marker-color) 84%,
		transparent 84%,
		transparent 100%
	);
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.marker-lime {
	--marker-color: var(--lime);
}

.marker-orange {
	--marker-color: var(--orange);
}

.marker-yellow {
	--marker-color: var(--yellow);
}

.marker-blue {
	--marker-color: var(--blue);
}

.marker-pink {
	--marker-color: var(--pink);
}

.marker-hero {
	padding-right: 0.12em;
	padding-left: 0.04em;
}

.marker-on-dark,
.marker-dark-text {
	color: var(--ink);
}

.marker-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 24px;
	margin-bottom: 64px;
	color: var(--ink);
	transform: rotate(-2deg);
}

.marker-lime-bg {
	background: var(--lime);
}

.marker-orange-bg {
	background: var(--orange);
	transform: rotate(1.5deg);
}

.marker-blue-bg {
	background: var(--blue);
	transform: rotate(-1deg);
}

.hero-lead {
	max-width: 690px;
	margin-bottom: 34px;
	color: var(--muted);
	font-size: 20px;
	line-height: 1.55;
}

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

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 22px;
	border: 1px solid var(--ink);
	font-size: 14px;
	font-weight: 800;
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
	background: var(--lime);
	box-shadow: 5px 5px 0 var(--ink);
}

.button-primary:hover {
	box-shadow: 3px 3px 0 var(--ink);
}

.button-secondary {
	background: transparent;
}

.hero-panel {
	position: relative;
	padding: 26px;
	border: 1px solid #2e352b;
	background: var(--dark);
	color: #f6f7f3;
	box-shadow: 22px 22px 0 var(--lime);
}

.panel-topline,
.metric-row,
.confidence {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.panel-topline {
	padding-bottom: 20px;
	border-bottom: 1px solid #2b3228;
	color: #aab2a5;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.status {
	color: var(--lime);
}

.metric-row {
	gap: 16px;
	padding: 24px 0;
}

.metric {
	flex: 1;
	padding: 18px;
	border: 1px solid #2b3228;
	background: var(--dark-soft);
}

.metric span,
.metric small {
	display: block;
	color: #9fa79b;
	font-size: 12px;
}

.metric strong {
	display: block;
	margin: 8px 0 3px;
	font-size: 28px;
}

.insight-card {
	padding: 22px;
	background: var(--lime);
	color: var(--ink);
}

.insight-label {
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.16em;
}

.insight-card p {
	margin: 14px 0 24px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
}

.confidence {
	justify-content: flex-start;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
}

.confidence span {
	width: 7px;
	height: 7px;
	background: var(--ink);
	border-radius: 50%;
}

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

.signal-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.signal-grid span {
	padding: 18px 12px;
	border-right: 1px solid var(--line);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.signal-grid span:last-child {
	border-right: 0;
}

.section {
	padding: 120px 0;
}

.section-heading {
	display: grid;
	grid-template-columns: 120px 1fr;
	margin-bottom: 64px;
}

.section-index {
	font-size: 13px;
	font-weight: 800;
}

.section h2,
.cta-section h2,
.legal-sidebar h1 {
	margin-bottom: 24px;
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1.02;
	letter-spacing: -0.05em;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--ink);
}

.feature-card {
	min-height: 300px;
	padding: 28px;
	border-right: 1px solid var(--line);
}

.feature-card:last-child {
	border-right: 0;
}

.feature-number {
	display: block;
	margin-bottom: 70px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.feature-number.marker-number {
	display: inline-flex;
	margin-bottom: 64px;
	color: var(--ink);
}

.feature-card h3 {
	margin-bottom: 14px;
	font-size: 24px;
	letter-spacing: -0.035em;
}

.feature-card p,
.section-copy {
	color: var(--muted);
}

.section-dark {
	background: var(--dark);
	color: #f5f7f2;
}

.split-section,
.ai-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.section-dark .section-copy {
	color: #aab2a5;
}

.integration-list {
	border-top: 1px solid #333a31;
}

.integration-list div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	border-bottom: 1px solid #333a31;
}

.integration-list span {
	font-size: 20px;
	font-weight: 760;
}

.integration-list small {
	color: #9ca697;
}

.integration-list .muted {
	opacity: 0.55;
}

.ai-quote {
	padding: 36px;
	border: 1px solid var(--ink);
	background: var(--surface);
	box-shadow: 14px 14px 0 var(--orange);
}

.ai-quote .quote-mark {
	display: block;
	height: 50px;
	font-family: Georgia, serif;
	font-size: 72px;
	line-height: 1;
}

.ai-quote p {
	margin-bottom: 0;
	font-size: 30px;
	font-weight: 780;
	line-height: 1.22;
	letter-spacing: -0.04em;
}

.cta-section {
	padding: 80px 0;
	border-top: 1px solid var(--line);
}

.cta-inner {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
}

.cta-inner h2 {
	max-width: 780px;
	margin-bottom: 0;
}

.site-footer {
	padding: 48px 0;
	background: var(--dark);
	color: #f5f7f2;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.footer-inner p {
	margin: 14px 0 0;
	color: #98a094;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-end;
	font-size: 14px;
}

.legal-main {
	padding: 90px 0 120px;
}

.legal-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
	gap: 100px;
}

.legal-sidebar {
	position: sticky;
	top: 110px;
	align-self: start;
}

.legal-sidebar h1 {
	font-size: clamp(44px, 5vw, 66px);
}

.legal-sidebar > p:last-child {
	color: var(--muted);
	font-size: 13px;
}

.legal-content {
	max-width: 760px;
}

.legal-content section {
	padding: 0 0 36px;
	margin-bottom: 36px;
	border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
	border-bottom: 0;
}

.legal-content h2 {
	margin-bottom: 18px;
	font-size: 25px;
	letter-spacing: -0.03em;
}

.legal-content p,
.legal-content li {
	color: #4f554c;
}

.legal-content ul {
	padding-left: 22px;
}

.legal-content a {
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
}

@media (max-width: 900px) {
	.main-nav {
		display: none;
	}

	.hero {
		padding-top: 64px;
	}

	.hero-grid,
	.split-section,
	.ai-grid,
	.legal-layout {
		grid-template-columns: 1fr;
	}

	.hero-grid,
	.split-section,
	.ai-grid,
	.legal-layout {
		gap: 48px;
	}

	.hero-panel {
		box-shadow: 12px 12px 0 var(--lime);
	}

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

	.feature-card {
		min-height: auto;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.feature-number,
	.feature-number.marker-number {
		margin-bottom: 36px;
	}

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

	.signal-grid span:nth-child(2) {
		border-right: 0;
	}

	.signal-grid span:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line);
	}

	.section-heading {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.legal-sidebar {
		position: static;
	}
}

@media (max-width: 620px) {
	.container {
		width: min(calc(100% - 28px), var(--max-width));
	}

	.hero {
		padding: 52px 0 60px;
	}

	.hero h1 {
		font-size: 48px;
	}

	.hero-lead {
		font-size: 17px;
	}

	.hero-actions,
	.cta-inner,
	.footer-inner,
	.metric-row {
		flex-direction: column;
		align-items: stretch;
	}

	.button {
		width: 100%;
	}

	.button-primary {
		box-shadow: 4px 4px 0 var(--ink);
	}

	.section {
		padding: 82px 0;
	}

	.integration-list div {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.ai-quote {
		box-shadow: 9px 9px 0 var(--orange);
	}

	.footer-links {
		align-items: flex-start;
	}

	.legal-main {
		padding-top: 58px;
	}
}
