:root {
	color-scheme: light;

	--bg: #faf9f6;
	--bg-soft: #f2efe9;
	--surface: #ffffff;
	--border: #e7e3da;
	--border-strong: #d8d2c4;

	--text: #211f1a;
	--text-muted: #6b675e;
	--text-dim: #9b968a;

	--accent: #3a4fd1;
	--accent-deep: #2c3aa6;
	--accent-soft: #eef0fc;
	--gold: #b08a3e;
	--green: #3e8a5c;
	--green-soft: #e9f3ec;

	--gradient: linear-gradient(135deg, #3a4fd1 0%, #5a3fc4 100%);

	--font-display: "Fraunces", "Georgia", serif;
	--font-body: "Inter", system-ui, sans-serif;

	--shadow-sm: 0 1px 2px rgba(33, 31, 26, 0.06);
	--shadow-md: 0 12px 30px rgba(33, 31, 26, 0.07);
	--shadow-lg: 0 30px 70px rgba(33, 31, 26, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--font-body);
}

html {
	scroll-behavior: smooth;
	color-scheme: light;
}

body {
	background: var(--bg);
	background-image:
		radial-gradient(
			circle at 10% -5%,
			rgba(58, 79, 209, 0.06),
			transparent 32%
		),
		radial-gradient(circle at 92% 6%, rgba(176, 138, 62, 0.07), transparent 30%);
	background-repeat: no-repeat;
	color: var(--text);
	min-height: 100vh;
	overflow-x: hidden;
}

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

svg {
	display: block;
}

.container {
	width: min(1120px, 92%);
	margin: 0 auto;
}

/* ---------- Nav ---------- */

.navbar {
	padding: 22px 0;
	position: sticky;
	top: 0;
	z-index: 40;
}

.nav-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 11px 11px 11px 14px;
	box-shadow: var(--shadow-sm);
}

.logo {
	display: flex;
	align-items: center;
	gap: 11px;
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: -0.2px;
	white-space: nowrap;
}

.logo-icon {
	width: 38px;
	height: 38px;
	border-radius: 11px;
	display: grid;
	place-items: center;
	background: var(--gradient);
	color: white;
	box-shadow: 0 8px 18px rgba(58, 79, 209, 0.28);
	flex: 0 0 auto;
}

.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
	color: var(--text-muted);
	font-size: 14.5px;
	font-weight: 500;
}

.nav-links a:not(.icon-btn):not(.nav-btn) {
	transition: color 0.2s ease;
}

.nav-links a:not(.icon-btn):not(.nav-btn):hover {
	color: var(--text);
}

.icon-btn {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: 11px;
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text-muted);
	transition:
		color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
	flex: 0 0 auto;
}

.icon-btn:hover {
	color: var(--text);
	border-color: var(--border-strong);
	transform: translateY(-2px);
}

.nav-btn {
	background: var(--text);
	color: white;
	padding: 10px 18px;
	border-radius: 11px;
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	transition:
		transform 0.2s ease,
		background 0.2s ease;
}

.nav-btn:hover {
	transform: translateY(-2px);
	background: var(--accent-deep);
}

/* ---------- Hero ---------- */

.hero {
	padding: 76px 0 60px;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 60px;
	align-items: center;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 8px 15px 8px 12px;
	border-radius: 999px;
	background: var(--surface);
	color: var(--text-muted);
	border: 1px solid var(--border);
	font-weight: 500;
	font-size: 13.5px;
	margin-bottom: 26px;
	box-shadow: var(--shadow-sm);
}

.badge .dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--green);
	flex: 0 0 auto;
}

.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(38px, 5.6vw, 62px);
	line-height: 1.1;
	letter-spacing: -1.2px;
	font-weight: 600;
	margin-bottom: 24px;
}

.hero h1 em {
	font-style: italic;
	font-weight: 500;
	color: var(--accent-deep);
}

.hero p {
	font-size: 18px;
	line-height: 1.75;
	color: var(--text-muted);
	max-width: 580px;
	margin-bottom: 34px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.primary-btn,
.secondary-btn {
	padding: 15px 22px;
	min-height: 56px;
	border-radius: 13px;
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease,
		border-color 0.2s ease;
}

.primary-btn {
	background: var(--text);
	color: white;
	box-shadow: var(--shadow-md);
}

.btn-icon-img {
	width: 27px;
	height: 27px;
	object-fit: contain;
	flex: 0 0 auto;
}

.primary-btn:hover {
	background: var(--accent-deep);
	box-shadow: 0 16px 30px rgba(44, 58, 166, 0.28);
}

.secondary-btn {
	background: var(--surface);
	color: var(--text);
	border: 1px solid var(--border);
}

.secondary-btn:hover {
	border-color: var(--border-strong);
}

.primary-btn:hover,
.secondary-btn:hover {
	transform: translateY(-2px);
}

.trust-row {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	color: var(--text-dim);
	font-size: 13.5px;
	font-weight: 500;
}

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

.check {
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: var(--green-soft);
	color: var(--green);
	display: grid;
	place-items: center;
	flex: 0 0 auto;
}

.check svg {
	width: 11px;
	height: 11px;
}

/* ---------- Mockup ---------- */

.mockup-wrap {
	position: relative;
	width: 100%;
}

.mockup-glow {
	position: absolute;
	inset: 30px;
	background: var(--gradient);
	filter: blur(80px);
	opacity: 0.14;
	z-index: -1;
}

.extension-card {
	width: 100%;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 22px;
	padding: 22px;
	box-shadow: var(--shadow-lg);
}

.extension-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border);
	margin-bottom: 18px;
}

.extension-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
}

.small-icon {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: var(--accent-soft);
	color: var(--accent-deep);
	flex: 0 0 auto;
}

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

.small-icon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.gear-icon {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	color: var(--text-dim);
}

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

.detected-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 14px;
	color: var(--text-muted);
}

.platform {
	background: var(--green-soft);
	color: var(--green);
	padding: 6px 11px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
}

.job-box {
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 20px;
	background: var(--bg);
	margin-bottom: 18px;
}

.job-box h3 {
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 600;
	margin-bottom: 8px;
}

.job-box p {
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 4px;
	font-size: 14px;
}

.job-link {
	color: var(--accent-deep);
	font-weight: 600;
	font-size: 13px;
	margin-top: 12px;
	display: inline-block;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.mockup-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 18px;
}

.mockup-buttons button {
	border: 0;
	padding: 13px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	font-family: var(--font-body);
	transition: transform 0.15s ease;
}

.mockup-buttons button:hover {
	transform: translateY(-1px);
}

.edit-btn {
	background: var(--surface);
	border: 1px solid var(--border) !important;
	color: var(--text);
}

.save-btn {
	background: var(--text);
	color: white;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.stat {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 14px;
	text-align: center;
}

.stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 600;
}

.stat span {
	color: var(--text-dim);
	font-size: 12px;
	font-weight: 500;
}

/* ---------- Sections ---------- */

.section {
	padding: 72px 0;
}

.section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 46px;
}

.eyebrow {
	display: inline-block;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--accent-deep);
	margin-bottom: 14px;
}

.section-header h2 {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 600;
	letter-spacing: -0.8px;
	margin-bottom: 14px;
}

.section-header p {
	color: var(--text-muted);
	font-size: 16.5px;
	line-height: 1.75;
}

/* ---------- Features ---------- */

.features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.feature-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 28px;
	box-shadow: var(--shadow-sm);
	transition:
		border-color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.feature-card:hover {
	border-color: var(--border-strong);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.feature-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: var(--accent-soft);
	color: var(--accent-deep);
	margin-bottom: 20px;
}

.feature-icon svg {
	width: 21px;
	height: 21px;
}

.feature-card h3 {
	font-family: var(--font-display);
	font-size: 18.5px;
	font-weight: 600;
	margin-bottom: 10px;
}

.feature-card p {
	color: var(--text-muted);
	line-height: 1.7;
	font-size: 14.5px;
}

/* ---------- Workflow ---------- */

.workflow {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}

.step {
	background: transparent;
	padding: 0 18px;
	position: relative;
}

.step:not(:last-child)::before {
	content: "";
	position: absolute;
	top: 17px;
	left: calc(50% + 34px);
	right: calc(-50% + 34px);
	height: 1px;
	background: var(--border-strong);
}

.step-number {
	font-family: var(--font-display);
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: var(--surface);
	border: 1px solid var(--border-strong);
	color: var(--accent-deep);
	display: grid;
	place-items: center;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.step h3 {
	font-family: var(--font-display);
	margin-bottom: 10px;
	font-size: 17.5px;
	font-weight: 600;
}

.step p {
	color: var(--text-muted);
	line-height: 1.7;
	font-size: 14px;
}

/* ---------- CTA ---------- */

.cta {
	background: var(--surface);
	background-image: radial-gradient(
		circle at top left,
		rgba(58, 79, 209, 0.08),
		transparent 45%
	);
	border: 1px solid var(--border);
	border-radius: 26px;
	padding: 60px;
	text-align: center;
	box-shadow: var(--shadow-md);
}

.cta h2 {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.6vw, 42px);
	font-weight: 600;
	letter-spacing: -0.8px;
	margin-bottom: 16px;
}

.cta p {
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto 28px;
	line-height: 1.75;
	font-size: 16.5px;
}

.cta .primary-btn {
	display: inline-flex;
}

/* ---------- Footer ---------- */

footer {
	padding: 40px 0 48px;
	text-align: center;
	color: var(--text-dim);
	font-size: 13.5px;
	border-top: 1px solid var(--border);
	margin-top: 20px;
}

.footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.footer-links {
	display: flex;
	gap: 18px;
	align-items: center;
}

.footer-links a {
	color: var(--text-dim);
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: var(--text-muted);
}

/* ---------- Focus states ---------- */

a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
	border-radius: 8px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
	.hero {
		gap: 36px;
	}

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

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

	.step:not(:last-child)::before {
		display: none;
	}
}

@media (max-width: 820px) {
	.hero {
		grid-template-columns: 1fr;
		padding-top: 40px;
	}

	.hero h1,
	.hero p,
	.hero-actions,
	.trust-row {
		max-width: 100%;
	}

	.nav-links a:not(.nav-btn):not(.icon-btn) {
		display: none;
	}

	.mockup-wrap {
		max-width: 560px;
		margin: 0 auto;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(100% - 28px, 1120px);
	}

	.navbar {
		padding: 14px 0;
	}

	.nav-inner {
		border-radius: 16px;
		padding: 9px 9px 9px 7px;
	}

	.logo {
		font-size: 17px;
	}

	.logo-icon {
		width: 34px;
		height: 34px;
	}

	.nav-btn {
		padding: 9px 13px;
		font-size: 13.5px;
	}

	.hero {
		padding: 34px 0 36px;
	}

	.badge {
		font-size: 12.5px;
	}

	.hero h1 {
		font-size: 38px;
		letter-spacing: -1px;
	}

	.hero p {
		font-size: 16px;
	}

	.primary-btn,
	.secondary-btn {
		width: 100%;
	}

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

	.workflow {
		grid-template-columns: 1fr;
		row-gap: 26px;
	}

	.section {
		padding: 48px 0;
	}

	.extension-card {
		border-radius: 20px;
		padding: 16px;
	}

	.job-box {
		padding: 16px;
	}

	.job-box h3 {
		font-size: 19px;
	}

	.mockup-buttons {
		grid-template-columns: 1fr;
	}

	.stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
	}

	.stat {
		padding: 12px 8px;
	}

	.stat strong {
		font-size: 18px;
	}

	.cta {
		padding: 38px 22px;
		border-radius: 22px;
	}
}

@media (max-width: 420px) {
	.container {
		width: min(100% - 20px, 1120px);
	}

	.nav-btn {
		display: none;
	}

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

	.hero p {
		font-size: 15px;
	}

	.detected-label {
		align-items: flex-start;
		flex-direction: column;
	}

	.extension-top {
		align-items: flex-start;
	}

	.feature-card,
	.step {
		padding: 22px;
	}

	.step {
		padding: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
	}
}
