/* ResolveCheat */

:root {
	--bg: #090909;
	--bg-2: #111111;
	--bg-3: #161616;
	--white: #ffffff;
	--gray: #888888;
	--gray-2: #444444;
	--line: #1e1e1e;
	--line-2: #2a2a2a;
	--green: #4ade80;
	--wrap: 1140px;
	--font: "Onest", system-ui, sans-serif;
	--mono: "IBM Plex Mono", monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
	background: var(--bg);
	color: var(--white);
	font-family: var(--font);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: -20%;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(ellipse 50% 40% at 15% 20%, rgba(74, 222, 128, .06), transparent 60%),
		radial-gradient(ellipse 45% 35% at 85% 70%, rgba(255, 255, 255, .04), transparent 55%);
	animation: drift-bg 18s ease-in-out infinite alternate;
}

main, footer { position: relative; z-index: 1; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.wrap {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 32px;
}

::selection { background: #fff; color: #000; }

/* ---- surf motion ---- */

@keyframes surf {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	33% { transform: translateY(-14px) rotate(.6deg); }
	66% { transform: translateY(-6px) rotate(-.4deg); }
}

@keyframes surf-slow {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(-.8deg); }
}

@keyframes surf-tilt {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-12px) rotate(1.2deg); }
}

@keyframes drift-bg {
	0% { transform: translate(0, 0) scale(1); }
	100% { transform: translate(3%, 2%) scale(1.05); }
}

.surf {
	animation: surf 6s ease-in-out infinite;
	will-change: transform;
}

.surf--slow { animation: surf-slow 8s ease-in-out infinite; }
.surf--tilt { animation: surf-tilt 7s ease-in-out infinite; }
.surf--d1 { animation-delay: -1.2s; }
.surf--d2 { animation-delay: -2.8s; }
.surf--d3 { animation-delay: -4.1s; }
.surf--d4 { animation-delay: -5.5s; }

/* ---- header ---- */

.header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	transition: background .2s, border-color .2s;
}

.header.scrolled {
	background: rgba(9, 9, 9, .88);
	backdrop-filter: blur(16px);
	border-color: var(--line);
}

.header-row {
	display: flex;
	align-items: center;
	height: 64px;
	gap: 40px;
}

.logo {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -.02em;
	text-transform: lowercase;
}

.logo span { color: var(--gray); font-weight: 400; }
.logo--sm { font-size: 13px; }

.menu {
	display: flex;
	gap: 32px;
	margin-left: auto;
}

.menu a {
	font-size: 14px;
	color: var(--gray);
	transition: color .15s, transform .2s;
}

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

.dl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	background: var(--white);
	color: #000;
	font-size: 13px;
	font-weight: 600;
	border-radius: 8px;
	transition: opacity .15s, transform .2s;
	white-space: nowrap;
}

.header .dl-btn,
.header .menu a {
	animation: none !important;
	transform: none !important;
}

.header .dl-btn:hover,
.header .menu a:hover {
	transform: none;
}

.hero-btns .dl-btn,
.download-row .dl-btn {
	animation: surf 5s ease-in-out infinite;
	animation-delay: -1s;
}

.dl-btn:hover { opacity: .88; transform: translateY(-3px) scale(1.02); }
.header .dl-btn:hover { opacity: .88; transform: none; }
.dl-btn--lg { padding: 14px 28px; font-size: 14px; border-radius: 10px; }

.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	margin-left: auto;
}

.burger i {
	display: block;
	height: 1.5px;
	background: var(--white);
	transition: transform .2s, opacity .2s;
}

.burger.open i:first-child { transform: translateY(3.25px) rotate(45deg); }
.burger.open i:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* ---- hero ---- */

.hero {
	padding: 140px 0 80px;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 48px;
	align-items: center;
}

.hero-text {
	animation: surf-slow 9s ease-in-out infinite;
	animation-delay: -.5s;
}

.ver {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--gray);
	letter-spacing: .04em;
	margin-bottom: 20px;
}

.hero-text h1 {
	font-size: clamp(44px, 6vw, 72px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -.04em;
	margin-bottom: 10px;
}

.hero-tag {
	font-size: 18px;
	color: var(--gray);
	margin-bottom: 24px;
}

.lead {
	font-size: 17px;
	color: var(--gray);
	max-width: 400px;
	line-height: 1.6;
	margin-bottom: 36px;
}

.hero-btns {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.link-btn {
	font-size: 14px;
	color: var(--gray);
	border-bottom: 1px solid var(--line-2);
	padding-bottom: 2px;
	transition: color .15s, border-color .15s, transform .2s;
}

.link-btn:hover { color: var(--white); border-color: var(--gray); transform: translateY(-2px); }

.hero-facts {
	display: flex;
	gap: 32px;
	list-style: none;
	padding-top: 32px;
	border-top: 1px solid var(--line);
}

.hero-facts li {
	font-size: 13px;
	color: var(--gray);
	animation: surf 7s ease-in-out infinite;
}

.hero-facts li:nth-child(2) { animation-delay: -2.3s; }
.hero-facts li:nth-child(3) { animation-delay: -4.6s; }

.hero-facts b {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 2px;
}

.hero-facts li:last-child b { color: var(--green); }

.hero-shot {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--line-2);
	background: var(--bg-2);
	animation: surf-tilt 7.5s ease-in-out infinite;
	animation-delay: -2s;
	box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
	line-height: 0;
}

.hero-shot img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: top;
}

/* ---- shots ---- */

.shots {
	padding: 40px 0 100px;
	border-top: 1px solid var(--line);
}

.shots-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: start;
}

.shots-item {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--line-2);
	background: var(--bg-2);
	animation: surf 5.5s ease-in-out infinite;
	box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
	line-height: 0;
}

.shots-item--1 { animation-delay: 0s; margin-top: 0; }
.shots-item--2 { animation-delay: -1.8s; margin-top: 32px; }
.shots-item--3 { animation-delay: -3.6s; margin-top: 14px; }

.shots-item img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: top;
}

/* ---- features ---- */

.features {
	padding: 100px 0;
	border-top: 1px solid var(--line);
}

.features-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 80px;
	align-items: start;
}

.features-head {
	animation: surf-slow 10s ease-in-out infinite;
}

.features-head h2 {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -.03em;
	margin-bottom: 12px;
}

.features-head p {
	font-size: 15px;
	color: var(--gray);
	line-height: 1.6;
}

.feat-list {
	list-style: none;
}

.feat-list li {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 24px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
	align-items: baseline;
}

.feat-list li:first-child { border-top: 1px solid var(--line); }

.feat-name {
	font-size: 15px;
	font-weight: 600;
}

.feat-desc {
	font-size: 14px;
	color: var(--gray);
}

/* ---- start ---- */

.start {
	padding: 100px 0;
	border-top: 1px solid var(--line);
}

.start h2 {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -.03em;
	margin-bottom: 48px;
}

.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	list-style: none;
}

.steps li {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--bg-2);
	animation: surf 6s ease-in-out infinite;
}

.steps li:nth-child(1) { animation-delay: 0s; }
.steps li:nth-child(2) { animation-delay: -1.5s; }
.steps li:nth-child(3) { animation-delay: -3s; }
.steps li:nth-child(4) { animation-delay: -4.5s; }

.step-n {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--gray-2);
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line-2);
	border-radius: 50%;
}

.steps strong {
	display: block;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 6px;
}

.steps p {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.55;
}

/* ---- console ---- */

.console {
	padding: 100px 0;
	background: var(--bg-2);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.console-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.console-head h2 {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -.03em;
}

.console-live {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--green);
	text-transform: uppercase;
	letter-spacing: .12em;
	animation: surf 4s ease-in-out infinite;
}

.console-box {
	border: 1px solid var(--line-2);
	border-radius: 12px;
	background: #050505;
	overflow: hidden;
	animation: surf-slow 8s ease-in-out infinite;
	animation-delay: -2s;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.console-box pre {
	padding: 28px 32px;
	min-height: 300px;
	font-family: var(--mono);
	font-size: 12.5px;
	line-height: 1.85;
	white-space: pre-wrap;
	word-break: break-word;
}

.t-dim { color: #555; }
.t-prompt { color: #aaa; }
.t-ok { color: var(--green); }
.t-warn { color: #fbbf24; }

.cursor {
	display: inline-block;
	width: 7px;
	height: 14px;
	background: var(--white);
	vertical-align: -2px;
	animation: blink .9s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* ---- download ---- */

.download {
	padding: 100px 0;
}

.download-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 56px 64px;
	background: var(--bg-2);
	border: 1px solid var(--line-2);
	border-radius: 16px;
	animation: surf-tilt 7s ease-in-out infinite;
	box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.download-row h2 {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -.03em;
	margin-bottom: 8px;
}

.download-row p {
	font-size: 14px;
	color: var(--gray);
}

/* ---- faq ---- */

.faq {
	padding: 100px 0 120px;
	border-top: 1px solid var(--line);
}

.faq-wrap {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 80px;
	align-items: start;
}

.faq-wrap > h2 {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -.03em;
	animation: surf-slow 9s ease-in-out infinite;
}

.faq-items { display: flex; flex-direction: column; }

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

.faq-items details:first-child { border-top: 1px solid var(--line); }

.faq-items summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 0;
	font-size: 15px;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
}

.faq-items summary::after {
	content: "+";
	font-family: var(--mono);
	font-size: 16px;
	color: var(--gray);
	transition: transform .2s;
}

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

.faq-items p {
	padding-bottom: 20px;
	font-size: 14px;
	color: var(--gray);
	line-height: 1.65;
	max-width: 560px;
}

/* ---- footer ---- */

.footer {
	border-top: 1px solid var(--line);
	padding: 32px 0;
	animation: surf-slow 12s ease-in-out infinite;
}

.footer-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-row p {
	font-size: 12px;
	color: var(--gray-2);
}

.footer-row > span:last-child {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--gray-2);
}

/* ---- reveal ---- */

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

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

/* ---- responsive ---- */

@media (max-width: 960px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-shot { order: -1; }
	.shots-grid { grid-template-columns: 1fr; gap: 16px; }
	.shots-item--2,
	.shots-item--3 { margin-top: 0; }
	.features-layout { grid-template-columns: 1fr; gap: 40px; }
	.steps { grid-template-columns: 1fr 1fr; }
	.faq-wrap { grid-template-columns: 1fr; gap: 32px; }
	.download-row { flex-direction: column; align-items: flex-start; padding: 40px 32px; }
}

@media (max-width: 640px) {
	.wrap { padding: 0 20px; }
	.menu {
		position: fixed;
		top: 64px; left: 0; right: 0;
		flex-direction: column;
		gap: 0;
		padding: 8px 20px 20px;
		background: rgba(9,9,9,.97);
		border-bottom: 1px solid var(--line);
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: transform .25s, opacity .25s;
	}
	.menu.open { transform: none; opacity: 1; pointer-events: auto; }
	.menu a { padding: 14px 0; border-bottom: 1px solid var(--line); }
	.burger { display: flex; }
	.header-row .dl-btn:not(.dl-btn--lg) { display: none; }
	.hero { padding-top: 100px; min-height: auto; }
	.hero-facts { flex-direction: column; gap: 16px; }
	.feat-list li { grid-template-columns: 1fr; gap: 4px; }
	.steps { grid-template-columns: 1fr; }
	.hero-text h1 { font-size: 36px; }
}

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