:root {
	--black-950: #020407;
	--black-900: #05070b;
	--black-850: #080a0f;
	--slate-900: #0f1419;
	--slate-850: #111827;
	--slate-800: #131a22;
	--slate-700: #1f2937;
	--text-primary: #ffffff;
	--text-secondary: #cbd5e1;
	--text-muted: #94a3b8;
	--cyan: #22d3ee;
	--cyan-strong: #06b6d4;
	--blue: #0ea5e9;
	--green: #22c55e;
	--yellow: #facc15;
	--border: rgba(148, 163, 184, 0.18);
	--border-strong: rgba(203, 213, 225, 0.32);
	--card: rgba(15, 20, 25, 0.74);
	--radius-xl: 20px;
	--radius-2xl: 24px;
	--radius-3xl: 32px;
	--shadow-dark: 0 30px 120px rgba(0, 0, 0, 0.55);
	--shadow-glow: 0 0 70px rgba(34, 211, 238, 0.2);
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	font-family:
		"Geist",
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;
	color: var(--text-primary);
	background:
		radial-gradient(circle at 12% 8%, rgba(34, 211, 238, 0.16), transparent 28%), radial-gradient(circle at 86% 12%, rgba(14, 165, 233, 0.14), transparent 30%),
		linear-gradient(180deg, #020407 0%, #05070b 42%, #070b12 100%);
	line-height: 1.6;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	content: "";
	background-image: linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}

body.is-menu-open {
	overflow: hidden;
}

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

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

button {
	font: inherit;
}

svg {
	display: block;
}

.site-shell {
	width: min(100%, 1480px);
	margin: 0 auto;
	overflow: hidden;
}

.site-header {
	position: sticky;
	top: 16px;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 32px), var(--container));
	height: 68px;
	margin: 16px auto 0;
	padding: 0 12px 0 18px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: rgba(2, 4, 7, 0.76);
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(20px);
}

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

.brand-mark {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(34, 211, 238, 0.24), rgba(14, 165, 233, 0.08)), rgba(255, 255, 255, 0.07);
	box-shadow: var(--shadow-glow);
}

.brand-mark svg {
	width: 24px;
	color: var(--cyan);
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.2;
}

.nav-links {
	display: flex;
	gap: 6px;
	align-items: center;
}

.nav-links a {
	padding: 10px 13px;
	border-radius: 999px;
	color: var(--text-secondary);
	font-size: 0.9rem;
	font-weight: 600;
	transition:
		color 160ms ease-out,
		background 160ms ease-out,
		transform 160ms ease-out;
}

.nav-links a:hover {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.07);
}

.nav-links .nav-cta {
	color: #020407;
	background: #ffffff;
}

.nav-links .nav-cta:hover {
	color: #020407;
	background: var(--cyan);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.06);
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 17px;
	height: 2px;
	margin: 4px auto;
	border-radius: 999px;
	background: currentColor;
	transition:
		transform 180ms ease-out,
		opacity 180ms ease-out;
}

body.is-menu-open .menu-toggle span:first-child {
	transform: translateY(3px) rotate(45deg);
}

body.is-menu-open .menu-toggle span:last-child {
	transform: translateY(-3px) rotate(-45deg);
}

.section-grid,
.section,
.problem,
.final-cta,
.site-footer {
	width: min(calc(100% - 32px), var(--container));
	margin-right: auto;
	margin-left: auto;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
	gap: 46px;
	align-items: center;
	min-height: calc(100vh - 84px);
	padding: 78px 0 96px;
}

.hero-copy {
	max-width: 650px;
	min-width: 0;
}

.eyebrow,
.section-kicker {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	margin: 0 0 18px;
	color: var(--cyan);
	font-size: 0.83rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pulse-dot {
	position: relative;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--green);
	box-shadow: 0 0 24px rgba(34, 197, 94, 0.75);
}

.pulse-dot::after {
	position: absolute;
	inset: -7px;
	border: 1px solid rgba(34, 197, 94, 0.42);
	border-radius: inherit;
	content: "";
	animation: ping 1.8s ease-out infinite;
}

.hero h1,
.section-heading h2,
.problem h2,
.final-cta h2 {
	margin: 0;
	font-size: clamp(2.7rem, 7vw, 5.95rem);
	font-weight: 800;
	line-height: 0.96;
}

.hero h1 {
	text-wrap: balance;
}

.hero-lead {
	max-width: 620px;
	margin: 26px 0 0;
	color: var(--text-secondary);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 999px;
	font-weight: 750;
	transition:
		transform 160ms ease-out,
		border-color 160ms ease-out,
		background 160ms ease-out,
		color 160ms ease-out;
}

.button:active {
	transform: scale(0.98);
}

.button-primary {
	color: #020407;
	background: #ffffff;
	box-shadow:
		0 12px 38px rgba(255, 255, 255, 0.12),
		0 0 48px rgba(34, 211, 238, 0.2);
}

.button-primary:hover {
	background: var(--cyan);
}

.button-secondary {
	border: 1px solid var(--border);
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
	border-color: var(--border-strong);
	background: rgba(255, 255, 255, 0.1);
}

.benefit-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.benefit-row span {
	padding: 8px 12px;
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--text-secondary);
	background: rgba(255, 255, 255, 0.055);
	font-size: 0.9rem;
	font-weight: 650;
}

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

.orb {
	position: absolute;
	z-index: -1;
	border-radius: 999px;
	filter: blur(14px);
	opacity: 0.7;
}

.orb-cyan {
	top: 10%;
	right: 8%;
	width: 220px;
	height: 220px;
	background: rgba(34, 211, 238, 0.14);
}

.orb-blue {
	bottom: 12%;
	left: 4%;
	width: 260px;
	height: 260px;
	background: rgba(14, 165, 233, 0.12);
}

.api-console {
	position: absolute;
	top: 60px;
	right: 0;
	left: 0;
	max-width: 610px;
	margin-left: auto;
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: var(--radius-3xl);
	background: linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(3, 5, 7, 0.96)), #030507;
	box-shadow: var(--shadow-dark);
	overflow: hidden;
	transform: rotateX(2deg) rotateY(-7deg) rotateZ(1deg);
	transform-origin: center;
}

.console-topbar {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	min-height: 58px;
	padding: 0 18px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.16);
	color: var(--text-muted);
	font-family: "Fira Code", monospace;
	font-size: 0.82rem;
}

.traffic-lights {
	display: flex;
	gap: 7px;
}

.traffic-lights span {
	width: 11px;
	height: 11px;
	border-radius: 999px;
}

.traffic-lights span:nth-child(1) {
	background: #ef4444;
}

.traffic-lights span:nth-child(2) {
	background: #facc15;
}

.traffic-lights span:nth-child(3) {
	background: #22c55e;
}

.status-pill,
.response-badge {
	padding: 5px 9px;
	border: 1px solid rgba(34, 211, 238, 0.24);
	border-radius: 999px;
	color: var(--cyan);
	background: rgba(34, 211, 238, 0.08);
	font-family: "Geist", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.code-panel {
	margin: 18px;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 22px;
	background: rgba(2, 4, 7, 0.78);
	overflow: hidden;
}

.panel-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.14);
	color: var(--text-muted);
	font-size: 0.82rem;
	font-weight: 700;
}

.copy-button {
	border: 0;
	color: #061116;
	background: var(--cyan);
	cursor: pointer;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
}

pre {
	margin: 0;
	padding: 18px;
	overflow-x: auto;
}

code {
	color: #d6faff;
	font-family: "Fira Code", ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.82rem;
	line-height: 1.8;
}

.response-card {
	margin: 0 18px 18px;
	padding: 18px;
	border: 1px solid rgba(34, 211, 238, 0.18);
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(14, 165, 233, 0.04)), rgba(255, 255, 255, 0.04);
}

.response-card p {
	margin: 14px 0 0;
	color: var(--text-secondary);
}

.response-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	color: var(--text-muted);
	font-size: 0.82rem;
}

.floating-card {
	position: absolute;
	z-index: 2;
	display: flex;
	gap: 12px;
	align-items: center;
	max-width: 285px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 22px;
	background: rgba(15, 20, 25, 0.78);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(18px);
	animation: float 5s ease-in-out infinite;
}

.card-search {
	top: 6px;
	left: 4px;
}

.card-output {
	right: 12px;
	bottom: 38px;
	animation-delay: -1.8s;
}

.mini-icon {
	display: grid;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 14px;
	color: #020407;
	background: var(--cyan);
	font-weight: 900;
}

.mini-icon.check {
	background: var(--green);
}

.floating-card strong {
	display: block;
	letter-spacing: -0.02em;
}

.floating-card small {
	display: block;
	margin-top: 2px;
	color: var(--text-muted);
	line-height: 1.4;
}

.problem {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
	gap: 46px;
	align-items: end;
	padding: 34px;
	border: 1px solid var(--border);
	border-radius: var(--radius-3xl);
	background: radial-gradient(circle at 18% 20%, rgba(34, 211, 238, 0.12), transparent 28%), rgba(255, 255, 255, 0.045);
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.problem h2,
.section-heading h2,
.final-cta h2 {
	font-size: clamp(2rem, 4.5vw, 4.25rem);
	line-height: 1;
}

.problem p:last-child {
	margin: 0;
	color: var(--text-secondary);
	font-size: 1.05rem;
}

.section {
	padding: 112px 0 0;
}

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

.steps-grid,
.feature-grid,
.response-grid,
.faq-grid {
	display: grid;
	gap: 18px;
}

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

.step-card,
.feature-card,
.response-style,
.faq-item,
.diff-item {
	border: 1px solid var(--border);
	border-radius: var(--radius-2xl);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.024)), rgba(17, 24, 39, 0.45);
	box-shadow: 0 18px 56px rgba(0, 0, 0, 0.2);
}

.step-card,
.feature-card,
.response-style {
	padding: 24px;
	transition:
		transform 180ms ease-out,
		border-color 180ms ease-out,
		background 180ms ease-out;
}

.step-card:hover,
.feature-card:hover,
.response-style:hover {
	border-color: rgba(34, 211, 238, 0.34);
	background: linear-gradient(180deg, rgba(34, 211, 238, 0.09), rgba(255, 255, 255, 0.025)), rgba(17, 24, 39, 0.56);
	transform: translateY(-4px);
}

.step-number {
	display: inline-flex;
	margin-bottom: 42px;
	color: var(--cyan);
	font-family: "Fira Code", monospace;
	font-weight: 700;
}

h3 {
	margin: 0;
	font-size: 1.18rem;
	line-height: 1.2;
	letter-spacing: -0.035em;
}

.step-card p,
.feature-card p,
.response-style p,
.diff-item p,
.faq-item p {
	margin: 12px 0 0;
	color: var(--text-muted);
}

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

.feature-icon {
	display: grid;
	width: 44px;
	height: 44px;
	margin-bottom: 26px;
	place-items: center;
	border: 1px solid rgba(34, 211, 238, 0.24);
	border-radius: 16px;
	color: var(--cyan);
	background: rgba(34, 211, 238, 0.08);
	font-weight: 900;
}

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

.response-style span {
	display: inline-flex;
	margin-bottom: 48px;
	padding: 7px 10px;
	border-radius: 999px;
	color: var(--cyan);
	background: rgba(34, 211, 238, 0.08);
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
}

.featured-style {
	border-color: rgba(34, 211, 238, 0.34);
	box-shadow:
		0 20px 70px rgba(0, 0, 0, 0.28),
		0 0 54px rgba(34, 211, 238, 0.12);
}

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

.diff-item {
	display: flex;
	gap: 16px;
	padding: 22px;
}

.diff-item > span {
	flex: 0 0 auto;
	width: 13px;
	height: 13px;
	margin-top: 5px;
	border-radius: 999px;
	background: var(--cyan);
	box-shadow: 0 0 26px rgba(34, 211, 238, 0.62);
}

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

.faq-item {
	padding: 0;
	overflow: hidden;
}

.faq-item summary {
	cursor: pointer;
	padding: 22px;
	font-weight: 750;
	list-style: none;
}

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

.faq-item summary::after {
	float: right;
	color: var(--cyan);
	content: "+";
}

.faq-item[open] summary::after {
	content: "-";
}

.faq-item p {
	padding: 0 22px 22px;
}

.final-cta {
	display: flex;
	gap: 28px;
	align-items: center;
	justify-content: space-between;
	margin-top: 112px;
	padding: 36px;
	border: 1px solid rgba(34, 211, 238, 0.24);
	border-radius: var(--radius-3xl);
	background:
		radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.16), transparent 30%), linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(14, 165, 233, 0.035)),
		rgba(255, 255, 255, 0.055);
	box-shadow:
		0 26px 90px rgba(0, 0, 0, 0.32),
		var(--shadow-glow);
}

.final-cta p:not(.section-kicker) {
	max-width: 680px;
	margin: 18px 0 0;
	color: var(--text-secondary);
	font-size: 1.05rem;
}

.site-footer {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: space-between;
	padding: 52px 0 40px;
	color: var(--text-muted);
}

.site-footer p {
	margin: 0;
	text-align: right;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 520ms ease-out,
		transform 520ms ease-out;
}

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

@keyframes ping {
	from {
		opacity: 0.9;
		transform: scale(0.4);
	}

	to {
		opacity: 0;
		transform: scale(1.4);
	}
}

@keyframes float {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, -10px, 0);
	}
}

@media (max-width: 980px) {
	.site-header {
		top: 10px;
		height: 62px;
	}

	.menu-toggle {
		display: block;
	}

	.nav-links {
		position: fixed;
		top: 82px;
		right: 16px;
		left: 16px;
		display: grid;
		gap: 8px;
		padding: 14px;
		border: 1px solid var(--border);
		border-radius: 24px;
		background: rgba(2, 4, 7, 0.94);
		box-shadow: var(--shadow-dark);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition:
			opacity 180ms ease-out,
			transform 180ms ease-out;
	}

	body.is-menu-open .nav-links {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.nav-links a {
		padding: 13px 15px;
	}

	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-top: 62px;
	}

	.hero-visual {
		min-height: 570px;
	}

	.api-console {
		max-width: none;
		transform: none;
	}

	.problem,
	.steps-grid,
	.feature-grid,
	.response-grid,
	.diff-list,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.final-cta,
	.site-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer p {
		text-align: left;
	}
}

@media (max-width: 640px) {
	.site-header,
	.section-grid,
	.section,
	.problem,
	.final-cta,
	.site-footer {
		width: min(calc(100% - 24px), var(--container));
	}

	.brand span:last-child {
		max-width: 170px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.hero {
		gap: 28px;
		padding-bottom: 66px;
	}

	.hero-copy {
		max-width: 100%;
	}

	.eyebrow {
		display: flex;
		max-width: 100%;
		line-height: 1.3;
	}

	.hero h1 {
		font-size: clamp(2.15rem, 10.5vw, 2.9rem);
		line-height: 1.02;
	}

	.hero-lead {
		margin-top: 20px;
		font-size: 1.1rem;
	}

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

	.benefit-row {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.benefit-row span {
		width: 100%;
		text-align: center;
	}

	.hero-visual {
		min-height: 620px;
	}

	.floating-card {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		max-width: none;
		margin-top: 12px;
		animation: none;
	}

	.api-console {
		position: relative;
		top: auto;
	}

	.console-topbar {
		align-items: flex-start;
		flex-direction: column;
		padding: 14px;
	}

	code {
		font-size: 0.74rem;
	}

	.problem,
	.final-cta {
		padding: 24px;
	}

	.section {
		padding-top: 78px;
	}
}

@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;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}
