:root {
	color-scheme: light;
	--ink: #121914;
	--ink-soft: #364039;
	--muted: #657068;
	--muted-strong: #4d5850;
	--canvas: #f3f4ee;
	--surface: #ffffff;
	--surface-soft: #f8f9f5;
	--line: #dfe3db;
	--line-strong: #cbd1c8;
	--nav: #111713;
	--nav-soft: #1a231d;
	--nav-muted: #98a29b;
	--accent: #d7f65d;
	--accent-strong: #9cbd1f;
	--accent-ink: #253000;
	--blue: #5b80e8;
	--blue-soft: #eef2ff;
	--amber: #995f0d;
	--amber-soft: #fff5e3;
	--violet: #8e68c8;
	--violet-soft: #f5efff;
	--red: #b64038;
	--red-soft: #fff0ed;
	--green: #1f7046;
	--green-soft: #e9f8ef;
	--sidebar-width: 248px;
	--shadow-sm: 0 1px 2px rgb(18 25 20 / 4%);
	--shadow-md: 0 18px 50px rgb(18 25 20 / 10%);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 18px;
	font-family:
		Inter,
		ui-sans-serif,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	font-synthesis: none;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 92px;
}

body {
	margin: 0;
	min-width: 320px;
	background: var(--canvas);
	color: var(--ink);
	font-size: 14px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

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

button,
select {
	cursor: pointer;
}

button {
	color: inherit;
}

svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.sr-only {
	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: 1000;
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	background: var(--surface);
	color: var(--ink);
	font-weight: 700;
	transform: translateY(-160%);
	transition: transform 150ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.app-shell {
	display: grid;
	grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
	min-height: 100vh;
}

.sidebar {
	position: fixed;
	inset: 0 auto 0 0;
	z-index: 50;
	display: flex;
	width: var(--sidebar-width);
	flex-direction: column;
	justify-content: space-between;
	overflow-y: auto;
	background: var(--nav);
	color: #f6f8f4;
	border-right: 1px solid #202923;
}

.sidebar-top {
	padding: 22px 16px 0;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0 7px;
	color: #fff;
	font-size: 19px;
	font-weight: 780;
	letter-spacing: -0.04em;
	text-decoration: none;
}

.brand-mark {
	width: 31px;
	height: 31px;
	color: var(--accent);
	stroke: none;
}

.workspace-switcher {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 9px;
	margin-top: 25px;
	padding: 10px;
	border: 1px solid #2b352e;
	border-radius: 11px;
	background: #171f1a;
}

.workspace-switcher > svg {
	width: 18px;
	height: 18px;
	color: #78847b;
}

.workspace-avatar {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border-radius: 8px;
	background: var(--accent);
	color: var(--accent-ink);
	font-size: 11px;
	font-weight: 800;
}

.workspace-switcher strong,
.workspace-switcher small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.workspace-switcher strong {
	font-size: 12px;
	font-weight: 700;
}

.workspace-switcher small {
	margin-top: 1px;
	color: var(--nav-muted);
	font-size: 10px;
}

.primary-nav {
	padding: 26px 12px 20px;
}

.nav-label {
	margin: 0 10px 8px;
	color: #aab4ac;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.nav-label-spaced {
	margin-top: 25px;
}

.nav-item {
	display: grid;
	width: 100%;
	grid-template-columns: 20px minmax(0, 1fr) auto;
	align-items: center;
	gap: 11px;
	min-height: 42px;
	padding: 0 11px;
	border: 0;
	border-radius: 9px;
	background: transparent;
	color: #aeb7b0;
	font-size: 12px;
	font-weight: 590;
	text-align: left;
	transition:
		background 150ms ease,
		color 150ms ease;
}

.nav-item:hover {
	background: #19211c;
	color: #f3f6f3;
}

.nav-item.is-active {
	background: var(--accent);
	color: var(--accent-ink);
	font-weight: 750;
}

.nav-item svg {
	width: 19px;
	height: 19px;
}

.nav-item kbd {
	min-width: 22px;
	padding: 1px 5px;
	border: 1px solid #39453c;
	border-radius: 5px;
	background: #202a23;
	color: #aeb8b0;
	font-family: inherit;
	font-size: 10px;
	text-align: center;
}

.nav-item.is-active kbd {
	border-color: #abc735;
	background: #c5e74b;
	color: #334000;
}

.nav-count {
	display: grid;
	min-width: 22px;
	height: 20px;
	place-items: center;
	border-radius: 10px;
	background: #273129;
	color: #c1cac3;
	font-size: 10px;
}

.nav-item.is-active .nav-count {
	background: #bcd942;
	color: var(--accent-ink);
}

.nav-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #f2a451;
	box-shadow: 0 0 0 3px rgb(242 164 81 / 12%);
}

.sidebar-bottom {
	padding: 14px 12px 16px;
}

.system-card {
	padding: 12px;
	border: 1px solid #29342c;
	border-radius: 10px;
	background: #161e19;
}

.system-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #bac4bc;
	font-size: 10px;
}

.system-card-head span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.system-card-head strong {
	color: #eff3ef;
	font-size: 10px;
}

.status-light {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--amber);
	box-shadow: 0 0 0 3px rgb(222 154 38 / 12%);
}

.system-track {
	height: 3px;
	margin-top: 10px;
	overflow: hidden;
	border-radius: 3px;
	background: #303a32;
}

.system-track span {
	display: block;
	width: 0;
	height: 100%;
	background: var(--accent);
}

.system-card p {
	margin: 7px 0 0;
	color: #abb6ae;
	font-size: 9px;
}

.user-card {
	display: grid;
	width: 100%;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 9px;
	margin-top: 10px;
	padding: 9px 7px;
	border: 0;
	border-radius: 9px;
	background: transparent;
	color: #fff;
	text-align: left;
}

.user-card:hover {
	background: #19221c;
}

.user-card > svg {
	width: 17px;
	height: 17px;
	color: #67736a;
	fill: currentColor;
	stroke: none;
}

.user-avatar {
	display: grid;
	width: 31px;
	height: 31px;
	place-items: center;
	border-radius: 50%;
	background: #d8c4a8;
	color: #322a21;
	font-size: 10px;
	font-weight: 800;
}

.user-card strong,
.user-card small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.user-card strong {
	font-size: 11px;
}

.user-card small {
	color: #7f8a82;
	font-size: 9px;
}

.main-panel {
	grid-column: 2;
	min-width: 0;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 30;
	display: flex;
	height: 68px;
	align-items: center;
	gap: 15px;
	padding: 0 30px;
	border-bottom: 1px solid var(--line);
	background: rgb(255 255 255 / 94%);
	backdrop-filter: blur(12px);
}

.global-search {
	display: grid;
	width: min(430px, 44vw);
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 9px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid var(--line);
	border-radius: 9px;
	background: var(--surface-soft);
	color: var(--muted);
	transition:
		border-color 150ms ease,
		box-shadow 150ms ease;
}

.global-search:focus-within {
	border-color: #a6b37d;
	box-shadow: 0 0 0 3px rgb(157 182 65 / 12%);
}

.global-search svg,
.filter-search svg {
	width: 17px;
	height: 17px;
}

.global-search input,
.filter-search input {
	width: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ink);
	font-size: 12px;
}

.global-search input::placeholder,
.filter-search input::placeholder {
	color: #929b94;
}

.global-search kbd {
	min-width: 22px;
	padding: 1px 5px;
	border: 1px solid #d7dcd4;
	border-bottom-width: 2px;
	border-radius: 5px;
	background: #fff;
	color: #5f6a62;
	font-family: inherit;
	font-size: 10px;
	text-align: center;
}

.topbar-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.button,
.icon-button,
.page-button,
.filter-reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	transition:
		background 150ms ease,
		border-color 150ms ease,
		transform 150ms ease;
}

.button {
	gap: 7px;
	min-height: 36px;
	padding: 0 13px;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 700;
}

.button svg {
	width: 16px;
	height: 16px;
}

.button:hover,
.icon-button:hover,
.page-button:hover,
.filter-reset:hover {
	transform: translateY(-1px);
}

.button-quiet {
	border-color: var(--line);
	background: var(--surface);
	color: var(--ink-soft);
}

.button-quiet:hover {
	border-color: var(--line-strong);
	background: var(--surface-soft);
}

.button-primary {
	border-color: #bddb40;
	background: var(--accent);
	color: var(--accent-ink);
}

.button-primary:hover {
	background: #caeb4d;
}

.button-dark {
	background: var(--ink);
	color: #fff;
}

.icon-button,
.page-button,
.filter-reset {
	width: 36px;
	height: 36px;
	padding: 0;
	border-color: var(--line);
	border-radius: 8px;
	background: var(--surface);
}

.icon-button svg,
.page-button svg,
.filter-reset svg {
	width: 18px;
	height: 18px;
}

.mobile-menu {
	display: none;
}

.sync-button.is-syncing svg {
	animation: rotate 700ms linear infinite;
}

@keyframes rotate {
	to {
		transform: rotate(360deg);
	}
}

.content-wrap {
	width: min(1460px, 100%);
	margin: 0 auto;
	padding: 34px 30px 60px;
}

.page-intro {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 25px;
	margin-bottom: 28px;
}

.eyebrow,
.section-kicker {
	margin: 0 0 7px;
	color: var(--muted);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #65703d;
}

.eyebrow span {
	width: 14px;
	height: 2px;
	background: var(--accent-strong);
}

.page-intro h1 {
	margin: 0;
	font-size: clamp(29px, 3vw, 42px);
	font-weight: 760;
	letter-spacing: -0.055em;
	line-height: 1.08;
}

.page-intro > div > p:last-child {
	max-width: 650px;
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.freshness-card {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 190px;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.freshness-pulse {
	position: relative;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--green);
}

.freshness-pulse::after {
	position: absolute;
	inset: -4px;
	border: 1px solid rgb(47 139 92 / 24%);
	border-radius: 50%;
	content: '';
	animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
	50%,
	100% {
		inset: -8px;
		opacity: 0;
	}
}

.freshness-card strong,
.freshness-card small {
	display: block;
}

.freshness-card strong {
	font-size: 10px;
}

.freshness-card small {
	margin-top: 1px;
	color: var(--muted);
	font-size: 9px;
}

.metric-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.metric-card {
	position: relative;
	min-height: 156px;
	padding: 17px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.metric-card-primary {
	border-color: #c6d980;
	background: #f8fce9;
}

.metric-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.metric-icon {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 8px;
	background: #e9f4bd;
	color: #59643c;
}

.metric-icon svg {
	width: 16px;
	height: 16px;
}

.icon-amber {
	background: var(--amber-soft);
	color: var(--amber);
}

.icon-blue {
	background: var(--blue-soft);
	color: var(--blue);
}

.icon-violet {
	background: var(--violet-soft);
	color: var(--violet);
}

.metric-delta {
	padding: 3px 7px;
	border-radius: 10px;
	background: var(--surface-soft);
	color: var(--muted);
	font-size: 8px;
	font-weight: 750;
}

.metric-delta.positive {
	background: var(--green-soft);
	color: var(--green);
}

.metric-value {
	display: block;
	margin-top: 14px;
	font-size: 27px;
	font-weight: 760;
	letter-spacing: -0.05em;
	line-height: 1;
}

.metric-label {
	display: block;
	margin-top: 6px;
	color: var(--muted);
	font-size: 10px;
}

.metric-spark {
	position: absolute;
	right: 16px;
	bottom: 15px;
	display: flex;
	height: 30px;
	align-items: flex-end;
	gap: 3px;
}

.metric-spark i {
	display: block;
	width: 3px;
	border-radius: 3px 3px 0 0;
	background: #adc830;
}

.metric-spark i:nth-child(1) {
	height: 30%;
}

.metric-spark i:nth-child(2) {
	height: 52%;
}

.metric-spark i:nth-child(3) {
	height: 43%;
}

.metric-spark i:nth-child(4) {
	height: 72%;
}

.metric-spark i:nth-child(5) {
	height: 61%;
}

.metric-spark i:nth-child(6) {
	height: 89%;
}

.metric-spark i:nth-child(7) {
	height: 74%;
}

.metric-spark i:nth-child(8) {
	height: 100%;
}

.mini-domain-stack {
	position: absolute;
	right: 15px;
	bottom: 15px;
	display: flex;
	flex-direction: row-reverse;
}

.mini-domain-stack span {
	display: grid;
	width: 26px;
	height: 26px;
	place-items: center;
	margin-left: -6px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: #e9ede7;
	color: var(--ink-soft);
	font-size: 7px;
	font-weight: 800;
}

.mini-domain-stack span:nth-child(2) {
	background: #f3dfc6;
}

.mini-domain-stack span:nth-child(3) {
	background: #dce6ff;
}

.score-track {
	position: absolute;
	right: 16px;
	bottom: 20px;
	width: 65px;
	height: 4px;
	overflow: hidden;
	border-radius: 4px;
	background: #e9ece7;
}

.score-track span {
	display: block;
	width: 0;
	height: 100%;
	background: var(--blue);
	transition: width 500ms ease;
}

.traffic-line {
	position: absolute;
	right: 13px;
	bottom: 12px;
	width: 80px;
	height: 27px;
}

.traffic-line svg {
	width: 100%;
	height: 100%;
	color: var(--violet);
}

.traffic-line path {
	vector-effect: non-scaling-stroke;
}

.market-panel,
.results-card,
.sources-section {
	margin-top: 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.market-panel {
	display: grid;
	grid-template-columns: minmax(190px, 0.75fr) minmax(500px, 2fr);
	align-items: center;
	gap: 35px;
	padding: 18px 20px;
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
}

.section-heading h2,
.results-header h2,
.drawer-header h2,
.dialog-header h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 740;
	letter-spacing: -0.035em;
}

.section-heading > div > p:last-child {
	max-width: 600px;
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 11px;
}

.compact-heading {
	display: block;
}

.text-button {
	margin-top: 12px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--muted-strong);
	font-size: 10px;
	font-weight: 700;
}

.text-button span {
	margin-left: 3px;
	color: #52650d;
}

.market-list {
	padding: 0;
}

.market-select {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid var(--border);
	border-radius: 6px;
	background: var(--surface);
	color: var(--ink);
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
}

.results-card {
	overflow: hidden;
}

.results-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 20px 15px;
}

.results-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	font-size: 10px;
}

.preview-badge {
	padding: 3px 7px;
	border-radius: 8px;
	background: var(--amber-soft);
	color: #9a641d;
	font-weight: 700;
}

.status-tabs {
	display: flex;
	gap: 4px;
	padding: 0 20px;
	border-bottom: 1px solid var(--line);
}

.status-tab {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 42px;
	padding: 0 10px;
	border: 0;
	background: transparent;
	color: var(--muted);
	font-size: 10px;
	font-weight: 650;
}

.status-tab::after {
	position: absolute;
	right: 8px;
	bottom: -1px;
	left: 8px;
	height: 2px;
	background: transparent;
	content: '';
}

.status-tab:hover,
.status-tab.is-active {
	color: var(--ink);
}

.status-tab.is-active::after {
	background: var(--accent-strong);
}

.status-tab span {
	padding: 2px 5px;
	border-radius: 8px;
	background: #f0f2ed;
	color: var(--muted);
	font-size: 8px;
}

.status-tab.is-active span {
	background: #ebf6c8;
	color: #51640b;
}

.status-tab-featured {
	color: #526319;
}

.status-tab-featured::before {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--accent-strong);
	content: '';
}

.filter-bar {
	display: grid;
	grid-template-columns: minmax(170px, 1.6fr) repeat(5, minmax(105px, 0.72fr)) minmax(120px, 0.8fr) auto;
	gap: 8px;
	padding: 12px 20px;
	border-bottom: 1px solid var(--line);
	background: #fbfcf9;
}

.filter-control {
	position: relative;
	display: flex;
	height: 36px;
	align-items: center;
	gap: 6px;
	padding: 0 9px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	color: var(--muted);
}

.filter-control:focus-within {
	border-color: #a8b783;
	box-shadow: 0 0 0 3px rgb(157 182 65 / 10%);
}

.filter-control > span {
	flex: 0 0 auto;
	font-size: 8px;
	font-weight: 750;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.filter-control select {
	width: 100%;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--ink-soft);
	font-size: 10px;
	font-weight: 650;
}

.filter-reset {
	height: 36px;
	color: var(--muted);
}

.active-filter-row {
	display: flex;
	align-items: center;
	gap: 6px;
	min-height: 38px;
	padding: 8px 20px;
	border-bottom: 1px solid var(--line);
}

.filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 8px;
	border: 1px solid #d9decf;
	border-radius: 12px;
	background: #f7f9f1;
	color: var(--muted-strong);
	font-size: 9px;
}

.filter-chip button {
	display: grid;
	width: 13px;
	height: 13px;
	place-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: #8c958e;
	font-size: 12px;
	line-height: 1;
}

.table-wrap {
	overflow-x: auto;
}

.domain-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.domain-table th,
.domain-table td {
	padding: 11px 9px;
	border-bottom: 1px solid #eceeea;
	text-align: left;
	vertical-align: middle;
}

.domain-table th:first-child,
.domain-table td:first-child {
	padding-left: 20px;
}

.domain-table th:last-child,
.domain-table td:last-child {
	padding-right: 18px;
}

.domain-table th {
	background: #f9faf7;
	color: #5f6a62;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.domain-table th:nth-child(1) {
	width: 25%;
}

.domain-table th:nth-child(2) {
	width: 9%;
}

.domain-table th:nth-child(3),
.domain-table th:nth-child(4) {
	width: 8%;
}

.domain-table th:nth-child(5) {
	width: 12%;
}

.domain-table th:nth-child(6) {
	width: 12%;
}

.domain-table th:nth-child(7) {
	width: 8%;
}

.domain-table th:nth-child(8) {
	width: 7%;
}

.domain-table th:nth-child(9) {
	width: 4%;
}

.domain-table tbody tr:not(.loading-row) {
	cursor: pointer;
	transition: background 120ms ease;
}

.domain-table tbody tr:not(.loading-row):hover,
.domain-table tbody tr:focus {
	outline: 0;
	background: #fbfdf5;
}

.domain-table tbody tr:last-child td {
	border-bottom: 0;
}

.domain-cell {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.domain-monogram {
	display: grid;
	width: 32px;
	height: 32px;
	flex: 0 0 auto;
	place-items: center;
	border: 1px solid #dfe5d9;
	border-radius: 8px;
	background: #f3f6ed;
	color: #5d6c2d;
	font-size: 9px;
	font-weight: 850;
	text-transform: uppercase;
}

.domain-cell strong,
.domain-cell small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.domain-cell strong {
	color: #172019;
	font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
	font-size: 11px;
	font-weight: 720;
	letter-spacing: -0.02em;
}

.domain-cell small {
	margin-top: 3px;
	color: var(--muted);
	font-size: 8px;
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 7px;
	border-radius: 10px;
	font-size: 8px;
	font-weight: 750;
	text-transform: capitalize;
}

.status-pill::before {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
	content: '';
}

.status-auction {
	background: var(--amber-soft);
	color: #92570f;
}

.status-dropping {
	background: var(--blue-soft);
	color: #455faf;
}

.status-expired {
	background: var(--red-soft);
	color: #b34a40;
}

.status-available {
	background: var(--green-soft);
	color: #29794f;
}

.status-sab {
	background: #ede9fe;
	color: #6d43c8;
	text-transform: none;
}

.metric-cell strong,
.metric-cell small,
.event-cell strong,
.event-cell small,
.price-cell strong,
.price-cell small {
	display: block;
}

.metric-cell strong,
.event-cell strong,
.price-cell strong {
	font-size: 10px;
	font-weight: 720;
}

.metric-cell small,
.event-cell small,
.price-cell small {
	margin-top: 2px;
	color: var(--muted);
	font-size: 8px;
}

.local-signal {
	display: flex;
	align-items: center;
	gap: 7px;
}

.local-signal-icon {
	display: grid;
	width: 25px;
	height: 25px;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 7px;
	background: #f0f3ed;
	color: #68736b;
}

.local-signal-icon svg {
	width: 13px;
	height: 13px;
}

.local-signal strong,
.local-signal small {
	display: block;
}

.local-signal strong {
	font-size: 9px;
}

.local-signal small {
	color: var(--muted);
	font-size: 8px;
}

.event-cell.is-urgent strong {
	color: var(--red);
}

.score-badge {
	display: grid;
	width: 33px;
	height: 33px;
	place-items: center;
	border: 2px solid #c8d4a3;
	border-radius: 50%;
	background: #f8fbe9;
	color: #536718;
	font-size: 10px;
	font-weight: 800;
}

.score-badge.score-mid {
	border-color: #dcd4b4;
	background: #fcf8ea;
	color: #806b27;
}

.watch-button {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	padding: 0;
	border: 0;
	border-radius: 7px;
	background: transparent;
	color: #a7afa9;
}

.watch-button:hover {
	background: #f0f2ed;
	color: #6f7c73;
}

.watch-button.is-watched {
	background: var(--amber-soft);
	color: var(--amber);
}

.watch-button svg {
	width: 16px;
	height: 16px;
}

.watch-button.is-watched svg {
	fill: currentColor;
}

.loading-row td {
	height: 190px;
	color: var(--muted);
	text-align: center;
}

.loading-spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 8px;
	border: 2px solid #d8ddd5;
	border-top-color: var(--accent-strong);
	border-radius: 50%;
	vertical-align: -3px;
	animation: rotate 700ms linear infinite;
}

.domain-card-list {
	display: none;
}

.empty-state {
	padding: 60px 20px;
	text-align: center;
}

.empty-state > span {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	margin: 0 auto 13px;
	border-radius: 12px;
	background: #f0f2ec;
	color: var(--muted);
}

.empty-state svg {
	width: 22px;
	height: 22px;
}

.empty-state h3 {
	margin: 0;
	font-size: 15px;
}

.empty-state p {
	max-width: 390px;
	margin: 7px auto 17px;
	color: var(--muted);
	font-size: 10px;
}

.table-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 54px;
	padding: 0 20px;
	border-top: 1px solid var(--line);
	background: #fbfcf9;
}

.table-footer p {
	margin: 0;
	color: var(--muted);
	font-size: 9px;
}

.pagination {
	display: flex;
	align-items: center;
	gap: 8px;
}

.page-button {
	width: 28px;
	height: 28px;
}

.page-button svg {
	width: 14px;
	height: 14px;
}

.page-button:disabled {
	cursor: not-allowed;
	opacity: 0.45;
	transform: none;
}

.pagination span {
	color: var(--muted-strong);
	font-size: 9px;
	font-weight: 650;
}

.sources-section {
	padding: 20px;
}

.source-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 17px;
}

.source-card {
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--surface-soft);
}

.source-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.source-icon {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 8px;
	background: #edf2e4;
	color: #667747;
}

.source-icon svg {
	width: 15px;
	height: 15px;
}

.source-status {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 8px;
	font-weight: 750;
	text-transform: capitalize;
}

.source-status::before {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
	content: '';
}

.source-status.healthy {
	color: var(--green);
}

.source-status.delayed {
	color: var(--amber);
}

.source-status.needs_configuration {
	color: var(--red);
}

.source-card h3 {
	margin: 12px 0 0;
	font-size: 11px;
}

.source-card > p {
	margin: 3px 0 0;
	color: var(--muted);
	font-size: 9px;
}

.source-stats {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 13px;
	padding-top: 10px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 8px;
}

.source-stats strong {
	color: var(--ink-soft);
}

.source-loading span {
	display: block;
	height: 9px;
	margin: 9px 0;
	border-radius: 5px;
	background: #e8ebe5;
	animation: shimmer 1.5s ease-in-out infinite;
}

.source-loading span:first-child {
	width: 30px;
	height: 30px;
}

.source-loading span:last-child {
	width: 65%;
}

@keyframes shimmer {
	50% {
		opacity: 0.45;
	}
}

.screen-overlay {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgb(9 13 10 / 44%);
	backdrop-filter: blur(2px);
}

.detail-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 80;
	width: min(480px, 100vw);
	overflow-y: auto;
	background: var(--surface);
	box-shadow: -20px 0 60px rgb(12 19 14 / 15%);
	transform: translateX(102%);
	transition: transform 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.detail-drawer.is-open {
	transform: translateX(0);
}

.drawer-header {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid var(--line);
	background: rgb(255 255 255 / 96%);
	backdrop-filter: blur(10px);
}

.drawer-body {
	padding: 20px;
}

.dossier-hero {
	padding: 18px;
	border: 1px solid #dbe4bd;
	border-radius: 13px;
	background: #f8fce9;
}

.dossier-domain-line {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.dossier-domain-line h3 {
	margin: 0;
	font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
	font-size: 18px;
	letter-spacing: -0.035em;
	word-break: break-word;
}

.dossier-domain-line p {
	margin: 5px 0 0;
	color: var(--muted);
	font-size: 10px;
}

.dossier-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 16px;
}

.dossier-tags span {
	padding: 4px 7px;
	border: 1px solid #dce4c4;
	border-radius: 10px;
	background: rgb(255 255 255 / 60%);
	color: #65714d;
	font-size: 8px;
	font-weight: 650;
}

.drawer-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: 10px;
}

.drawer-section {
	margin-top: 23px;
}

.drawer-section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 9px;
}

.drawer-section-title h4 {
	margin: 0;
	font-size: 11px;
	font-weight: 750;
}

.drawer-section-title span {
	color: var(--muted);
	font-size: 8px;
}

.dossier-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 7px;
}

.dossier-metric {
	padding: 11px;
	border: 1px solid var(--line);
	border-radius: 9px;
	background: var(--surface-soft);
}

.dossier-metric span,
.dossier-metric strong,
.dossier-metric small {
	display: block;
}

.dossier-metric span {
	color: var(--muted);
	font-size: 7px;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.dossier-metric strong {
	margin-top: 4px;
	font-size: 15px;
	letter-spacing: -0.03em;
}

.dossier-metric small {
	margin-top: 1px;
	color: var(--muted);
	font-size: 7px;
}

.local-proof-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 11px;
	padding: 13px;
	border: 1px solid var(--line);
	border-radius: 10px;
}

.local-proof-card > span {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 9px;
	background: var(--blue-soft);
	color: var(--blue);
}

.local-proof-card svg {
	width: 17px;
	height: 17px;
}

.local-proof-card strong,
.local-proof-card small {
	display: block;
}

.local-proof-card strong {
	font-size: 10px;
}

.local-proof-card small {
	margin-top: 2px;
	color: var(--muted);
	font-size: 8px;
}

.local-proof-card > strong {
	font-size: 13px;
}

.timeline {
	margin: 0;
	padding: 0;
	list-style: none;
}

.timeline li {
	position: relative;
	display: grid;
	grid-template-columns: 13px minmax(0, 1fr) auto;
	gap: 8px;
	padding: 0 0 15px;
}

.timeline li:not(:last-child)::after {
	position: absolute;
	top: 12px;
	bottom: 2px;
	left: 5px;
	width: 1px;
	background: var(--line);
	content: '';
}

.timeline i {
	position: relative;
	z-index: 1;
	width: 11px;
	height: 11px;
	margin-top: 2px;
	border: 3px solid #e7ecdd;
	border-radius: 50%;
	background: #8aa139;
}

.timeline strong,
.timeline small {
	display: block;
}

.timeline strong {
	font-size: 9px;
}

.timeline small,
.timeline time {
	color: var(--muted);
	font-size: 8px;
}

.source-dialog {
	width: min(580px, calc(100vw - 30px));
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 15px;
	background: var(--surface);
	box-shadow: var(--shadow-md);
}

.source-dialog::backdrop {
	background: rgb(9 13 10 / 50%);
	backdrop-filter: blur(3px);
}

.dialog-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding: 20px;
	border-bottom: 1px solid var(--line);
}

.dialog-header p:last-child {
	max-width: 430px;
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 10px;
}

.connector-list {
	display: grid;
	gap: 7px;
	padding: 15px;
}

.connector-list > button {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 11px;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--surface);
	text-align: left;
}

.connector-list > button:hover {
	border-color: #bdca95;
	background: #fbfdf5;
}

.connector-icon {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 9px;
}

.connector-icon svg {
	width: 18px;
	height: 18px;
}

.connector-lime {
	background: #edf6ce;
	color: #6c811b;
}

.connector-amber {
	background: var(--amber-soft);
	color: var(--amber);
}

.connector-blue {
	background: var(--blue-soft);
	color: var(--blue);
}

.connector-list strong,
.connector-list small {
	display: block;
}

.connector-list strong {
	font-size: 10px;
}

.connector-list small {
	margin-top: 3px;
	color: var(--muted);
	font-size: 8px;
}

.connector-list i {
	color: var(--muted-strong);
	font-size: 9px;
	font-style: normal;
	font-weight: 700;
}

.dialog-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 15px;
	border-top: 1px solid var(--line);
	background: var(--surface-soft);
}

.dialog-footer span {
	color: var(--muted);
	font-size: 8px;
}

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

.toast-region {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 200;
	display: grid;
	gap: 8px;
	width: min(340px, calc(100vw - 36px));
}

.toast {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	padding: 11px 12px;
	border: 1px solid #2a352d;
	border-radius: 10px;
	background: var(--nav);
	color: #eff3ef;
	box-shadow: 0 15px 35px rgb(12 18 14 / 25%);
	animation: toast-in 180ms ease-out;
}

.toast > span:first-child {
	display: grid;
	width: 23px;
	height: 23px;
	place-items: center;
	border-radius: 50%;
	background: var(--accent);
	color: var(--accent-ink);
	font-size: 11px;
	font-weight: 900;
}

.toast strong,
.toast small {
	display: block;
}

.toast strong {
	font-size: 10px;
}

.toast small {
	margin-top: 2px;
	color: #96a198;
	font-size: 8px;
}

.toast button {
	padding: 3px;
	border: 0;
	background: transparent;
	color: #7b877e;
	font-size: 15px;
}

@keyframes toast-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
}

.noscript {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 30px;
	background: var(--nav);
	color: #fff;
	text-align: center;
}

@media (max-width: 1220px) {
	.metric-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.market-panel {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.compact-heading {
		display: flex;
	}

	.market-list {
		padding: 0;
	}

	.domain-table th:nth-child(5),
	.domain-table td:nth-child(5) {
		display: none;
	}

	.domain-table th:nth-child(1) {
		width: 29%;
	}

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

@media (max-width: 960px) {
	:root {
		--sidebar-width: 228px;
	}

	.sidebar {
		transform: translateX(-102%);
		transition: transform 220ms ease;
	}

	.sidebar.is-open {
		transform: translateX(0);
	}

	.app-shell {
		display: block;
	}

	.main-panel {
		width: 100%;
	}

	.mobile-menu {
		display: inline-flex;
	}

	.topbar {
		padding: 0 20px;
	}

	.content-wrap {
		padding-right: 20px;
		padding-left: 20px;
	}

	.filter-bar {
		grid-template-columns: minmax(180px, 1.4fr) repeat(3, minmax(105px, 0.8fr)) auto;
	}

	.filter-control:nth-of-type(5),
	.filter-control:nth-of-type(6),
	.sort-control {
		display: none;
	}

	.domain-table th:nth-child(3),
	.domain-table td:nth-child(3),
	.domain-table th:nth-child(7),
	.domain-table td:nth-child(7) {
		display: none;
	}
}

@media (max-width: 700px) {
	.topbar {
		height: 60px;
		gap: 9px;
		padding: 0 14px;
	}

	.global-search {
		width: auto;
		flex: 1;
	}

	.global-search kbd,
	.topbar-actions .button-quiet,
	.button-primary span {
		display: none;
	}

	.button-primary {
		width: 36px;
		padding: 0;
	}

	.content-wrap {
		padding: 24px 13px 45px;
	}

	.page-intro {
		display: block;
	}

	.page-intro h1 {
		font-size: 31px;
	}

	.freshness-card {
		margin-top: 17px;
	}

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

	.metric-card {
		min-height: 140px;
		padding: 14px;
	}

	.metric-value {
		font-size: 23px;
	}

	.metric-spark,
	.mini-domain-stack,
	.score-track,
	.traffic-line {
		display: none;
	}

	.market-panel {
		padding: 15px;
	}

	.compact-heading {
		display: block;
	}

	.market-list {
		padding: 0;
	}

	.results-header {
		align-items: flex-start;
		padding: 16px 14px 12px;
	}

	.results-meta {
		flex-direction: column;
		align-items: flex-end;
	}

	.status-tabs {
		overflow-x: auto;
		padding: 0 10px;
		scrollbar-width: none;
	}

	.status-tabs::-webkit-scrollbar {
		display: none;
	}

	.filter-bar {
		grid-template-columns: 1fr auto;
		padding: 10px 13px;
	}

	.filter-control:not(.filter-search),
	.sort-control {
		display: none;
	}

	.active-filter-row {
		overflow-x: auto;
		padding-right: 13px;
		padding-left: 13px;
	}

	.domain-table {
		display: none;
	}

	.domain-card-list {
		display: grid;
		gap: 8px;
		padding: 10px;
	}

	.domain-mobile-card {
		padding: 12px;
		border: 1px solid var(--line);
		border-radius: 10px;
		background: #fff;
	}

	.domain-mobile-head {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 12px;
	}

	.domain-mobile-card h3 {
		margin: 0;
		font-family: 'SFMono-Regular', Consolas, monospace;
		font-size: 11px;
	}

	.domain-mobile-card p {
		margin: 3px 0 0;
		color: var(--muted);
		font-size: 8px;
	}

	.domain-mobile-meta {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 6px;
		margin-top: 12px;
	}

	.domain-mobile-meta span {
		padding: 7px;
		border-radius: 7px;
		background: var(--surface-soft);
		color: var(--muted);
		font-size: 7px;
	}

	.domain-mobile-meta strong {
		display: block;
		margin-top: 2px;
		color: var(--ink);
		font-size: 10px;
	}

	.table-footer {
		padding: 0 13px;
	}

	.sources-section {
		padding: 15px;
	}

	.section-heading {
		align-items: flex-start;
	}

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

	.dossier-metrics {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 430px) {
	.metric-grid {
		grid-template-columns: 1fr;
	}

	.metric-card {
		min-height: 127px;
	}

	.results-header h2,
	.section-heading h2 {
		font-size: 16px;
	}

	.results-meta > span:first-child,
	.section-heading > .button {
		display: none;
	}

	.dialog-footer span {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Shared product brand */

[hidden] {
	display: none !important;
}

.brand-mark {
	--mark-background: var(--nav);
	--mark-foreground: var(--accent);
	color: var(--mark-background);
	stroke: none;
}

.brand-mark path {
	fill: none;
	stroke: var(--mark-foreground);
	stroke-linecap: square;
	stroke-linejoin: miter;
	stroke-width: 3.1;
}

.brand-mark circle {
	fill: var(--mark-foreground);
	stroke: none;
}

.brand .brand-mark {
	--mark-background: var(--accent);
	--mark-foreground: var(--nav);
}

.brand > span {
	line-height: 1.04;
}

/* Authentication and account controls */

.login-shell {
	display: grid;
	min-height: 100vh;
	grid-template-rows: auto 1fr auto;
	place-items: center;
	padding: 28px;
	background: var(--canvas);
}

.login-shell::before {
	position: fixed;
	inset: 0;
	z-index: 0;
	background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size: 42px 42px;
	content: '';
	opacity: 0.32;
	pointer-events: none;
}

.login-shell > * {
	position: relative;
	z-index: 1;
}

.login-brand {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 10px;
	color: var(--ink);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.035em;
	text-decoration: none;
}

.login-brand .brand-mark {
	width: 34px;
	height: 34px;
}

.login-card {
	width: min(430px, 100%);
	padding: 36px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--surface);
	box-shadow: 0 24px 80px rgb(18 25 20 / 10%);
}

.login-card h1 {
	margin: 0;
	font-size: 36px;
	font-weight: 780;
	letter-spacing: -0.055em;
	line-height: 1.05;
}

.login-card > p:not(.section-kicker, .login-note) {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.login-form {
	display: grid;
	gap: 8px;
	margin-top: 25px;
}

.login-form label {
	margin-top: 7px;
	color: var(--muted-strong);
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.login-form input {
	height: 44px;
	padding: 0 12px;
	border: 1px solid var(--line-strong);
	border-radius: 9px;
	outline: none;
	background: var(--surface-soft);
	color: var(--ink);
}

.login-form input:focus {
	border-color: var(--accent-strong);
	box-shadow: 0 0 0 3px rgb(156 189 31 / 12%);
}

.login-form .credential-username {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	white-space: nowrap;
}

.login-submit {
	height: 44px;
	margin-top: 12px;
}

.login-error {
	margin: 6px 0 0;
	padding: 9px 10px;
	border: 1px solid #efcbc6;
	border-radius: 8px;
	background: var(--red-soft);
	color: var(--red);
	font-size: 10px;
}

.login-note {
	margin: 17px 0 0;
	padding-top: 15px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 9px;
	text-align: center;
}

.login-note a {
	color: var(--ink-soft);
	font-weight: 750;
}

.checkout-status-card .marketing-button {
	margin-top: 24px;
}

.checkout-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
	margin-top: 24px;
}

.checkout-actions[hidden] {
	display: none;
}

.checkout-actions .marketing-button {
	margin-top: 0;
	text-align: center;
}

.login-back {
	justify-self: start;
	color: var(--muted-strong);
	font-size: 10px;
	font-weight: 700;
	text-decoration: none;
}

.logout-button {
	display: grid;
	width: 27px;
	height: 27px;
	place-items: center;
	padding: 0;
	border: 1px solid #2a352d;
	border-radius: 7px;
	background: #19221c;
	color: #8c988f;
	font-size: 12px;
}

.logout-button:hover {
	color: #fff;
}

.reveal-meter {
	display: flex;
	height: 38px;
	align-items: center;
	gap: 8px;
	padding: 0 11px;
	border: 1px solid #d7e5a6;
	border-radius: 9px;
	background: #f8fce9;
}

.reveal-meter-icon {
	color: #59643c;
	font-size: 11px;
}

.reveal-meter strong,
.reveal-meter small {
	display: block;
	line-height: 1.05;
}

.reveal-meter strong {
	font-size: 11px;
}

.reveal-meter small {
	margin-top: 2px;
	color: #68763c;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.domain-row-locked .domain-monogram,
.domain-mobile-card.is-locked .domain-monogram {
	border-color: #d9dfc5;
	background: #f7f9f0;
	color: #65703d;
}

.domain-lock-label {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-left: 6px;
	padding: 2px 5px;
	border-radius: 7px;
	background: #edf5cf;
	color: #59643c;
	font-family: inherit;
	font-size: 7px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	vertical-align: 1px;
}

.reveal-button {
	min-width: 51px;
	height: 28px;
	padding: 0 8px;
	border: 1px solid #c6d980;
	border-radius: 7px;
	background: #f8fce9;
	color: #536718;
	font-size: 8px;
	font-weight: 800;
}

.reveal-button:hover {
	background: var(--accent);
}

.reveal-panel {
	padding: 17px;
	border: 1px solid #d8e4af;
	border-radius: 12px;
	background: #f8fce9;
}

.reveal-panel h3 {
	margin: 0;
	font-size: 15px;
	letter-spacing: -0.03em;
}

.reveal-panel p {
	margin: 7px 0 15px;
	color: var(--muted-strong);
	font-size: 10px;
}

.reveal-panel .button {
	width: 100%;
}

/* Marketing site */

.marketing-page {
	background: #f5f5ef;
	color: var(--ink);
	font-size: 16px;
}

.site-container {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgb(203 209 200 / 74%);
	background: rgb(245 245 239 / 94%);
	backdrop-filter: blur(14px);
}

.site-nav {
	display: flex;
	height: 72px;
	align-items: center;
	gap: 34px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ink);
	font-size: 15px;
	font-weight: 820;
	letter-spacing: -0.04em;
	text-decoration: none;
}

.site-brand .brand-mark {
	width: 34px;
	height: 34px;
}

.site-nav-links {
	display: flex;
	align-items: center;
	gap: 27px;
	margin-left: auto;
}

.site-nav-links a,
.site-login {
	color: var(--muted-strong);
	font-size: 11px;
	font-weight: 700;
	text-decoration: none;
}

.site-nav-links a:hover {
	color: var(--ink);
}

.site-login {
	display: inline-flex;
	height: 38px;
	align-items: center;
	gap: 9px;
	padding: 0 14px;
	border-radius: 8px;
	background: var(--nav);
	color: #fff;
}

.site-login span {
	color: var(--accent);
}

.hero-section {
	position: relative;
	overflow: hidden;
	padding: 104px 0 98px;
	border-bottom: 1px solid var(--line);
}

.hero-section::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 42%;
	background-image:
		linear-gradient(rgb(203 209 200 / 36%) 1px, transparent 1px), linear-gradient(90deg, rgb(203 209 200 / 36%) 1px, transparent 1px);
	background-size: 34px 34px;
	content: '';
	mask-image: linear-gradient(to right, transparent, black 35%);
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
	align-items: center;
	gap: 74px;
}

.marketing-eyebrow,
.marketing-kicker {
	margin: 0 0 13px;
	color: #65703d;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.value-panel .marketing-kicker,
.security-note .marketing-kicker {
	color: #b6c2b8;
}

.marketing-eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
}

.marketing-eyebrow span {
	width: 20px;
	height: 2px;
	background: var(--accent-strong);
}

.hero-copy h1 {
	max-width: 640px;
	margin: 0;
	font-size: clamp(48px, 5.6vw, 76px);
	font-weight: 790;
	letter-spacing: -0.075em;
	line-height: 0.97;
}

.hero-copy h1 em {
	color: #6c8023;
	font-style: normal;
}

.hero-lede {
	max-width: 620px;
	margin: 27px 0 0;
	color: var(--muted-strong);
	font-size: 16px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 31px;
}

.marketing-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 19px;
	border: 1px solid transparent;
	border-radius: 9px;
	font-size: 12px;
	font-weight: 780;
	text-decoration: none;
	transition:
		transform 150ms ease,
		background 150ms ease;
}

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

.marketing-button-primary {
	border-color: #bddb40;
	background: var(--accent);
	color: var(--accent-ink);
}

.marketing-button-secondary {
	border-color: var(--line-strong);
	background: var(--surface);
	color: var(--ink-soft);
}

.invite-note {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 9px;
	font-weight: 650;
}

.invite-note i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 4px rgb(47 139 92 / 10%);
}

.hero-product {
	position: relative;
}

.product-window {
	position: relative;
	z-index: 2;
	overflow: hidden;
	border: 1px solid #c9cfc6;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 30px 90px rgb(18 25 20 / 16%);
	transform: rotate(1.2deg);
}

.product-window-bar {
	display: flex;
	height: 42px;
	align-items: center;
	gap: 6px;
	padding: 0 14px;
	border-bottom: 1px solid var(--line);
	background: var(--nav);
}

.product-window-bar > span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #465049;
}

.product-window-bar > span:first-child {
	background: var(--accent);
}

.product-window-bar small {
	margin-left: 7px;
	color: #9ba69e;
	font-size: 8px;
	font-weight: 700;
}

.product-preview-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 22px 15px;
}

.product-preview-head small,
.product-preview-head strong {
	display: block;
}

.product-preview-head small {
	color: var(--muted);
	font-size: 8px;
	font-weight: 700;
	text-transform: uppercase;
}

.product-preview-head strong {
	margin-top: 4px;
	font-size: 16px;
	letter-spacing: -0.035em;
}

.preview-credit {
	padding: 5px 8px;
	border-radius: 9px;
	background: #edf6ce;
	color: #5f7314;
	font-size: 8px;
	font-weight: 800;
}

.preview-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 7px;
	padding: 0 22px 15px;
}

.preview-metrics > span {
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface-soft);
}

.preview-metrics small,
.preview-metrics strong {
	display: block;
}

.preview-metrics small {
	color: var(--muted);
	font-size: 7px;
}

.preview-metrics strong {
	margin-top: 3px;
	font-size: 17px;
	letter-spacing: -0.04em;
}

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

.preview-table-header,
.preview-row {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(105px, 0.8fr) 40px;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
}

.preview-table-header {
	background: #f7f8f4;
	color: var(--muted);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.preview-row {
	min-height: 62px;
	border-top: 1px solid #eceeea;
}

.preview-row > span:first-child {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	column-gap: 8px;
}

.preview-row i {
	display: grid;
	width: 28px;
	height: 28px;
	grid-row: span 2;
	place-items: center;
	border-radius: 7px;
	background: #edf5cf;
	color: #607313;
	font-size: 8px;
	font-style: normal;
	font-weight: 850;
}

.preview-row b,
.preview-row small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.preview-row b {
	font-family: 'SFMono-Regular', Consolas, monospace;
	font-size: 9px;
}

.preview-row small {
	margin-top: 2px;
	color: var(--muted);
	font-size: 7px;
}

.preview-row > strong {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border: 2px solid #c8d4a3;
	border-radius: 50%;
	font-size: 8px;
}

.hero-orbit {
	position: absolute;
	z-index: 3;
	padding: 7px 10px;
	border: 1px solid #d6dbc3;
	border-radius: 8px;
	background: #fff;
	color: var(--muted-strong);
	box-shadow: var(--shadow-md);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.hero-orbit-one {
	top: -18px;
	right: -22px;
}

.hero-orbit-two {
	bottom: -17px;
	left: -27px;
}

.proof-strip {
	border-bottom: 1px solid var(--line);
	background: #fff;
}

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

.proof-grid > div {
	display: flex;
	min-height: 98px;
	align-items: center;
	gap: 10px;
	padding: 0 24px;
	border-left: 1px solid var(--line);
}

.proof-grid > div:last-child {
	border-right: 1px solid var(--line);
}

.proof-grid strong {
	font-size: 21px;
	letter-spacing: -0.05em;
}

.proof-grid span {
	max-width: 105px;
	color: var(--muted);
	font-size: 9px;
	font-weight: 650;
	line-height: 1.35;
}

.marketing-section {
	padding: 112px 0;
}

.section-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
	gap: 100px;
}

.section-copy h2,
.section-heading-marketing h2,
.faq-grid h2,
.final-cta h2 {
	margin: 0;
	font-size: clamp(38px, 4.2vw, 58px);
	font-weight: 780;
	letter-spacing: -0.065em;
	line-height: 1.04;
}

.section-body {
	padding-top: 28px;
}

.section-body p {
	margin: 0 0 20px;
	color: var(--muted-strong);
	font-size: 15px;
	line-height: 1.75;
}

.problem-section {
	background: #fff;
}

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

.section-heading-marketing {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 60px;
}

.section-heading-marketing > div {
	max-width: 720px;
}

.section-heading-marketing > p {
	max-width: 350px;
	margin: 0 0 5px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.65;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 55px;
}

.feature-card {
	position: relative;
	min-height: 280px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
}

.feature-card-dark {
	border-color: var(--nav);
	background: var(--nav);
	color: #fff;
}

.feature-number {
	position: absolute;
	top: 25px;
	right: 27px;
	color: #5f6b63;
	font-family: 'SFMono-Regular', Consolas, monospace;
	font-size: 9px;
}

.feature-card-dark .feature-number {
	color: #aab4ac;
}

.feature-icon {
	display: grid;
	width: 43px;
	height: 43px;
	place-items: center;
	border-radius: 10px;
	background: #edf5cf;
	color: #59643c;
	font-size: 18px;
	font-weight: 700;
}

.feature-card-dark .feature-icon {
	background: var(--accent);
	color: var(--accent-ink);
}

.feature-card h3 {
	margin: 63px 0 0;
	font-size: 22px;
	letter-spacing: -0.045em;
}

.feature-card p {
	max-width: 440px;
	margin: 11px 0 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.65;
}

.feature-card-dark p {
	color: #aab4ac;
}

.workflow-section {
	background: #fff;
}

.centered-heading {
	display: block;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.centered-heading > p {
	max-width: 560px;
	margin: 18px auto 0;
}

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

.workflow-list li {
	position: relative;
	padding: 0 24px;
	border-left: 1px solid var(--line);
}

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

.workflow-list li > span {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 9px;
	background: var(--accent);
	color: var(--accent-ink);
	font-size: 11px;
	font-weight: 850;
}

.workflow-list small {
	display: block;
	margin-top: 34px;
	color: #65703d;
	font-size: 8px;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.workflow-list h3 {
	margin: 7px 0 0;
	font-size: 17px;
	letter-spacing: -0.035em;
}

.workflow-list p {
	margin: 9px 0 0;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.65;
}

.value-section {
	padding-top: 0;
	background: #fff;
}

.value-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
	align-items: center;
	gap: 80px;
	min-height: 540px;
	padding: 70px;
	overflow: hidden;
	border-radius: 20px;
	background: var(--nav);
	color: #fff;
}

.value-copy h2 {
	max-width: 670px;
	margin: 0;
	font-size: clamp(36px, 4.3vw, 59px);
	letter-spacing: -0.065em;
	line-height: 1.02;
}

.value-copy ul {
	display: grid;
	gap: 11px;
	margin: 27px 0 30px;
	padding: 0;
	color: #bdc6bf;
	font-size: 12px;
	list-style: none;
}

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

.value-copy li span {
	display: grid;
	width: 19px;
	height: 19px;
	place-items: center;
	border-radius: 50%;
	background: rgb(215 246 93 / 14%);
	color: var(--accent);
	font-size: 9px;
}

.signal-stack {
	position: relative;
	height: 340px;
}

.signal-card {
	position: absolute;
	width: 270px;
	padding: 21px;
	border: 1px solid #344038;
	border-radius: 13px;
	background: #19221c;
	box-shadow: 0 20px 50px rgb(0 0 0 / 22%);
}

.signal-card small,
.signal-card strong,
.signal-card span {
	display: block;
}

.signal-card small {
	color: #aab4ac;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.signal-card strong {
	margin-top: 11px;
	font-size: 20px;
	letter-spacing: -0.04em;
}

.signal-card span {
	margin-top: 4px;
	color: #9ba69e;
	font-size: 10px;
}

.signal-card-a {
	top: 0;
	right: 15px;
	transform: rotate(3deg);
}

.signal-card-b {
	top: 112px;
	left: 0;
	transform: rotate(-4deg);
}

.signal-card-c {
	right: 2px;
	bottom: 0;
	border-color: #66762c;
	background: #242e1d;
	transform: rotate(2deg);
}

.signal-card-c strong {
	color: var(--accent);
}

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

.pricing-grid {
	display: grid;
	max-width: 960px;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 55px auto 0;
}

.pricing-card {
	position: relative;
	display: flex;
	min-height: 550px;
	flex-direction: column;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 15px;
	background: #fff;
}

.pricing-card-featured {
	border: 2px solid var(--nav);
}

.pricing-badge {
	position: absolute;
	top: 18px;
	right: 18px;
	padding: 5px 8px;
	border-radius: 8px;
	background: var(--accent);
	color: var(--accent-ink);
	font-size: 7px;
	font-weight: 850;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.pricing-label {
	margin: 0;
	color: #68763c;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pricing-card h3 {
	margin: 12px 0 0;
	font-size: 28px;
	letter-spacing: -0.05em;
}

.price-line {
	margin: 25px 0 0;
	font-size: 38px;
	font-weight: 780;
	letter-spacing: -0.06em;
}

.price-line small {
	display: block;
	margin-top: 2px;
	color: var(--muted);
	font-size: 9px;
	font-weight: 650;
	letter-spacing: 0;
}

.pricing-description {
	min-height: 66px;
	margin: 22px 0 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.65;
}

.pricing-card ul {
	display: grid;
	gap: 12px;
	margin: 25px 0 30px;
	padding: 23px 0 0;
	border-top: 1px solid var(--line);
	color: var(--ink-soft);
	font-size: 11px;
	list-style: none;
}

.pricing-card li::before {
	margin-right: 9px;
	color: #52650d;
	content: '✓';
	font-weight: 900;
}

.pricing-action {
	display: grid;
	width: 100%;
	min-height: 45px;
	place-items: center;
	margin-top: auto;
	padding: 0 16px;
	border: 1px solid var(--line-strong);
	border-radius: 9px;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	font-family: inherit;
	font-size: 11px;
	font-weight: 800;
	text-decoration: none;
}

.pricing-action[hidden] {
	display: none;
}

.pricing-action:disabled {
	cursor: wait;
	opacity: 0.7;
}

.pricing-checkout {
	display: grid;
	gap: 0;
	margin-top: auto;
}

.pricing-checkout .pricing-action {
	margin-top: 0;
}

.pricing-checkout-status {
	min-height: 16px;
	margin: 10px 0 0;
	color: var(--muted-strong);
	font-size: 9px;
	line-height: 1.5;
	text-align: center;
}

.pricing-agreement {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 9px;
	line-height: 1.55;
	text-align: center;
}

.pricing-agreement[hidden] {
	display: none;
}

.pricing-agreement a {
	color: #52650d;
	font-weight: 750;
}

.pricing-action-primary {
	border-color: var(--nav);
	background: var(--nav);
	color: #fff;
}

.pricing-terms-link {
	margin-top: 14px;
	color: #52650d;
	font-size: 10px;
	font-weight: 750;
	text-align: center;
}

.pricing-card-terms {
	border-color: var(--nav);
	background: var(--nav);
	color: #fff;
}

.pricing-card-terms .pricing-label {
	color: var(--accent);
}

.pricing-card-terms .pricing-description {
	color: #c6d0c8;
}

.offer-terms {
	display: grid;
	margin: 25px 0 30px;
	border-top: 1px solid #354039;
}

.offer-terms div {
	display: grid;
	grid-template-columns: 115px minmax(0, 1fr);
	gap: 14px;
	padding: 15px 0;
	border-bottom: 1px solid #354039;
}

.offer-terms dt {
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

.offer-terms dd {
	margin: 0;
	color: #c6d0c8;
	font-size: 10px;
	line-height: 1.55;
}

.pricing-action-light {
	border-color: var(--accent);
	background: var(--accent);
	color: var(--accent-ink);
}

.pricing-note {
	margin: 22px 0 0;
	color: var(--muted);
	font-size: 9px;
	text-align: center;
}

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

.faq-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
	align-items: start;
	gap: 100px;
}

.faq-grid > div:first-child {
	position: sticky;
	top: 110px;
}

.faq-grid > div:first-child > p:last-child {
	max-width: 340px;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.65;
}

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

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

.faq-list summary {
	position: relative;
	padding: 24px 45px 24px 0;
	cursor: pointer;
	font-size: 14px;
	font-weight: 750;
	list-style: none;
}

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

.faq-list summary::after {
	position: absolute;
	top: 20px;
	right: 2px;
	display: grid;
	width: 27px;
	height: 27px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 7px;
	color: var(--muted);
	content: '+';
}

.faq-list details[open] summary::after {
	content: '−';
}

.faq-list details p {
	max-width: 650px;
	margin: -5px 45px 24px 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.7;
}

.final-cta-section {
	padding: 36px 0;
	background: var(--accent);
}

.final-cta {
	display: flex;
	min-height: 250px;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.final-cta .marketing-kicker {
	color: #52650d;
}

.final-cta h2 {
	max-width: 780px;
	color: var(--accent-ink);
}

.marketing-button-light {
	flex: 0 0 auto;
	background: var(--nav);
	color: #fff;
}

.site-footer {
	padding: 58px 0 25px;
	background: var(--nav);
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	align-items: start;
	gap: 50px;
}

.footer-brand {
	color: #fff;
}

.footer-brand .brand-mark {
	--mark-background: var(--accent);
	--mark-foreground: var(--nav);
}

.footer-grid > p {
	max-width: 330px;
	margin: 5px 0 0;
	color: #89948c;
	font-size: 10px;
	line-height: 1.6;
}

.footer-grid nav {
	display: flex;
	gap: 22px;
}

.footer-grid nav a {
	color: #b3bdb5;
	font-size: 10px;
	font-weight: 700;
	text-decoration: none;
}

.footer-legal {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid #29332c;
	color: #aab4ac;
	font-size: 10px;
}

/* Trust and legal pages */

.trust-page {
	background: #fff;
}

.trust-hero {
	position: relative;
	overflow: hidden;
	padding: 102px 0 88px;
	border-bottom: 1px solid var(--line);
	background: #f5f5ef;
}

.trust-hero::after {
	position: absolute;
	inset: 0 0 0 auto;
	width: 42%;
	background-image:
		linear-gradient(rgb(203 209 200 / 34%) 1px, transparent 1px), linear-gradient(90deg, rgb(203 209 200 / 34%) 1px, transparent 1px);
	background-size: 34px 34px;
	content: '';
	mask-image: linear-gradient(to right, transparent, black 38%);
	pointer-events: none;
}

.trust-hero-inner {
	position: relative;
	z-index: 1;
}

.trust-hero h1 {
	max-width: 850px;
	margin: 0;
	font-size: clamp(48px, 6.4vw, 78px);
	font-weight: 790;
	letter-spacing: -0.075em;
	line-height: 0.98;
}

.trust-lede {
	max-width: 760px;
	margin: 27px 0 0;
	color: var(--muted-strong);
	font-size: 17px;
	line-height: 1.75;
}

.trust-meta {
	margin: 26px 0 0;
	color: var(--muted);
	font-size: 12px;
	font-weight: 760;
	line-height: 1.6;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.trust-hero-compact {
	padding-top: 84px;
	padding-bottom: 70px;
}

.trust-hero-compact h1 {
	font-size: clamp(46px, 5.8vw, 70px);
}

.trust-section {
	padding: 90px 0 112px;
	background: #fff;
}

.legal-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 740px);
	justify-content: space-between;
	gap: 90px;
}

.legal-aside {
	position: sticky;
	top: 105px;
	align-self: start;
	padding-top: 20px;
	border-top: 2px solid var(--ink);
}

.legal-aside ul,
.legal-aside nav {
	display: grid;
	gap: 11px;
	margin: 0 0 25px;
	padding: 0;
	list-style: none;
}

.legal-aside li,
.legal-aside nav a {
	display: flex;
	min-height: 28px;
	align-items: center;
	color: var(--muted-strong);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.45;
	text-decoration: none;
}

.legal-aside nav a:hover {
	color: var(--ink);
}

.legal-aside > a {
	display: inline-flex;
	min-height: 32px;
	align-items: center;
	gap: 8px;
	color: #52670d;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.legal-article > section + section {
	margin-top: 62px;
	padding-top: 57px;
	border-top: 1px solid var(--line);
}

.legal-article h2 {
	max-width: 720px;
	margin: 0 0 24px;
	font-size: clamp(31px, 3.5vw, 46px);
	font-weight: 770;
	letter-spacing: -0.055em;
	line-height: 1.08;
}

.legal-article h3 {
	margin: 31px 0 10px;
	font-size: 17px;
	letter-spacing: -0.03em;
}

.legal-article p,
.legal-article li {
	color: var(--muted-strong);
	font-size: 16px;
	line-height: 1.8;
}

.legal-article p {
	margin: 0 0 18px;
}

.legal-article a {
	color: #52670d;
	font-weight: 720;
}

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

.legal-policy h2 {
	font-size: clamp(25px, 3vw, 34px);
}

.legal-policy code {
	padding: 2px 5px;
	border: 1px solid var(--line);
	border-radius: 5px;
	background: var(--surface-soft);
	color: var(--ink);
	font-size: 0.9em;
}

.legal-steps {
	display: grid;
	gap: 0;
	margin: 35px 0 0;
	padding: 0;
	list-style: none;
	counter-reset: legal-step;
}

.legal-steps li {
	display: grid;
	grid-template-columns: 42px 155px minmax(0, 1fr);
	align-items: start;
	gap: 18px;
	padding: 22px 0;
	border-top: 1px solid var(--line);
	counter-increment: legal-step;
}

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

.legal-steps li::before {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border-radius: 8px;
	background: var(--accent);
	color: var(--accent-ink);
	content: counter(legal-step, decimal-leading-zero);
	font-size: 9px;
	font-weight: 850;
}

.legal-steps strong {
	color: var(--ink);
	font-size: 14px;
}

.legal-steps span {
	color: var(--muted-strong);
	font-size: 14px;
	line-height: 1.7;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 34px;
}

.trust-card {
	min-height: 190px;
	padding: 25px;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: var(--surface-soft);
}

.trust-card h3 {
	margin: 0;
	font-size: 17px;
}

.trust-card p {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.7;
}

.legal-callout {
	margin-top: 34px;
	padding: 25px;
	border-left: 4px solid var(--accent);
	background: var(--nav);
	color: #fff;
}

.legal-callout strong {
	font-size: 14px;
}

.legal-callout p {
	margin: 7px 0 0;
	color: #aeb8b0;
	font-size: 14px;
}

.legal-callout a {
	color: var(--accent);
}

.contact-layout {
	max-width: 980px;
}

.contact-primary {
	max-width: 740px;
	padding-bottom: 76px;
}

.contact-primary h2 {
	margin: 0;
	font-size: clamp(32px, 5vw, 54px);
	letter-spacing: -0.06em;
	line-height: 1.05;
	overflow-wrap: normal;
}

.contact-primary > p:not(.marketing-kicker) {
	max-width: 670px;
	margin: 22px 0 28px;
	color: var(--muted-strong);
	font-size: 16px;
	line-height: 1.75;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.contact-card {
	min-height: 230px;
	padding: 27px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--surface-soft);
}

.contact-card > span {
	color: #647033;
	font-family: 'SFMono-Regular', Consolas, monospace;
	font-size: 9px;
	font-weight: 800;
}

.contact-card h2 {
	margin: 58px 0 0;
	font-size: 21px;
	letter-spacing: -0.04em;
}

.contact-card p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
}

.security-note {
	display: grid;
	grid-template-columns: 0.8fr 1fr;
	gap: 70px;
	margin-top: 70px;
	padding: 48px;
	border-radius: 16px;
	background: var(--nav);
	color: #fff;
}

.security-note h2 {
	margin: 0;
	font-size: 30px;
	letter-spacing: -0.05em;
	line-height: 1.1;
}

.security-note p:last-child {
	margin: 2px 0 0;
	color: #aab4ac;
	font-size: 14px;
	line-height: 1.8;
}

@media (max-width: 1050px) {
	.site-nav-links {
		display: none;
	}

	.site-login {
		margin-left: auto;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 70px;
	}

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

	.hero-product {
		width: min(720px, 94%);
		margin: 0 auto;
	}

	.section-grid,
	.faq-grid {
		gap: 60px;
	}

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

	.workflow-list li:nth-child(2) {
		border-right: 1px solid var(--line);
	}

	.value-panel {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.signal-stack {
		width: 440px;
		max-width: 100%;
		margin: 0 auto;
	}

	.legal-layout {
		grid-template-columns: 190px minmax(0, 1fr);
		gap: 55px;
	}
}

@media (max-width: 760px) {
	.site-container {
		width: min(100% - 28px, 1180px);
	}

	.site-nav {
		height: 64px;
		gap: 12px;
	}

	.site-brand {
		max-width: none;
		gap: 8px;
		font-size: 12px;
		white-space: nowrap;
	}

	.site-brand .brand-mark {
		width: 32px;
		height: 32px;
	}

	.site-login {
		height: 36px;
		flex: 0 0 auto;
		padding: 0 11px;
		font-size: 9px;
		white-space: nowrap;
	}

	.hero-section {
		padding: 72px 0 68px;
	}

	.hero-grid {
		gap: 54px;
	}

	.hero-copy h1 {
		font-size: clamp(43px, 14vw, 62px);
	}

	.hero-lede {
		font-size: 14px;
	}

	.hero-product {
		width: 100%;
	}

	.product-window {
		transform: none;
	}

	.hero-orbit {
		display: none;
	}

	.preview-table-header,
	.preview-row {
		grid-template-columns: minmax(0, 1fr) 36px;
	}

	.preview-table-header span:nth-child(2),
	.preview-row > span:nth-child(2) {
		display: none;
	}

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

	.proof-grid > div,
	.proof-grid > div:last-child {
		min-height: 82px;
		padding: 0 14px;
		border-right: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
	}

	.marketing-section {
		padding: 78px 0;
	}

	.section-grid,
	.faq-grid {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.section-body {
		padding-top: 0;
	}

	.section-heading-marketing {
		display: block;
	}

	.section-heading-marketing > p {
		margin-top: 18px;
	}

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

	.feature-card {
		min-height: 250px;
		padding: 24px;
	}

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

	.workflow-list li,
	.workflow-list li:nth-child(2),
	.workflow-list li:last-child {
		padding: 25px 0;
		border: 0;
		border-top: 1px solid var(--line);
	}

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

	.workflow-list small {
		margin-top: 20px;
	}

	.value-panel {
		min-height: 0;
		padding: 47px 24px;
		border-radius: 15px;
	}

	.signal-stack {
		height: 360px;
	}

	.signal-card {
		width: min(260px, 86%);
	}

	.pricing-card {
		min-height: 510px;
		padding: 27px;
	}

	.offer-terms div {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.faq-grid > div:first-child {
		position: static;
	}

	.final-cta {
		display: block;
		padding: 55px 0;
	}

	.final-cta .marketing-button {
		margin-top: 28px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 23px;
	}

	.footer-grid nav {
		flex-wrap: wrap;
	}

	.footer-legal {
		flex-direction: column;
	}

	.trust-hero,
	.trust-hero-compact {
		padding: 70px 0 60px;
	}

	.trust-hero h1,
	.trust-hero-compact h1 {
		font-size: clamp(42px, 13vw, 60px);
	}

	.trust-lede {
		font-size: 16px;
	}

	.trust-section {
		padding: 65px 0 80px;
	}

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

	.legal-aside {
		position: static;
	}

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

	.legal-article > section + section {
		margin-top: 48px;
		padding-top: 43px;
	}

	.legal-steps li {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 13px;
	}

	.legal-steps li span {
		grid-column: 2;
	}

	.trust-grid,
	.contact-grid,
	.security-note {
		grid-template-columns: 1fr;
	}

	.trust-card,
	.contact-card {
		min-height: 0;
	}

	.contact-primary {
		padding-bottom: 55px;
	}

	.contact-primary h2 {
		font-size: clamp(26px, 7.5vw, 32px);
	}

	.security-note {
		gap: 25px;
		margin-top: 50px;
		padding: 31px 24px;
	}

	.reveal-meter {
		display: none;
	}

	.login-shell {
		padding: 18px;
	}

	.login-card {
		padding: 27px 22px;
	}

	.checkout-actions {
		grid-template-columns: 1fr;
	}

	.login-submit {
		width: 100%;
		padding: 0 13px;
	}
}

/* YouTube Leaks collection */
.leaks-intro {
	margin: 0 0 12px;
	max-width: 70ch;
	color: var(--muted, #6b7280);
	font-size: 14px;
	line-height: 1.5;
}

.leaks-table .leak-masked {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	letter-spacing: 1px;
	color: #9aa3af;
}

.leaks-table .leak-revealed {
	font-size: 12px;
	font-weight: 600;
	color: #16a34a;
}

.leaks-table .leak-reveal {
	white-space: nowrap;
	padding: 6px 12px;
	font-size: 13px;
}

.leaks-table .leak-action {
	text-align: right;
}

.leaks-table .leak-video {
	max-width: 320px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
