:root {
	--ink: #40312b;
	--muted: #77645b;
	--cream: #fff8ed;
	--paper: #fffdf7;
	--peach: #ffb07a;
	--mint: #78cbb0;
	--berry: #e9677e;
	--sky: #8ac7df;
	--shadow: 0 18px 45px rgba(82, 53, 42, 0.18);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background:
		radial-gradient(circle at 20% 12%, rgba(138, 199, 223, 0.28), transparent 24rem),
		radial-gradient(circle at 82% 8%, rgba(255, 176, 122, 0.34), transparent 22rem),
		linear-gradient(180deg, #fff3dc 0%, #fffbf2 46%, #eef8f1 100%);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem clamp(1rem, 4vw, 4rem);
	background: rgba(255, 248, 237, 0.88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(64, 49, 43, 0.08);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 850;
	text-decoration: none;
}

.brand img {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	box-shadow: 0 8px 18px rgba(82, 53, 42, 0.18);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--muted);
	font-size: 0.95rem;
	font-weight: 700;
}

.nav-links a {
	text-decoration: none;
}

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

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
	align-items: center;
	gap: clamp(2rem, 5vw, 5rem);
	padding: clamp(2.5rem, 8vw, 6rem) clamp(1rem, 5vw, 5rem) clamp(2rem, 6vw, 4.5rem);
	min-height: calc(100vh - 76px);
}

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

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0 0 1rem;
	color: #6b5044;
	font-size: 0.88rem;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0;
}

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

h1 {
	margin-bottom: 1rem;
	font-size: 6.5rem;
	line-height: 0.92;
	letter-spacing: 0;
}

.lead {
	max-width: 38rem;
	margin-bottom: 1.8rem;
	color: var(--muted);
	font-size: 1.35rem;
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: center;
	margin-bottom: 2rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.85rem 1.15rem;
	border: 2px solid rgba(64, 49, 43, 0.16);
	border-radius: 8px;
	background: var(--paper);
	box-shadow: 0 8px 0 rgba(64, 49, 43, 0.12);
	font-weight: 850;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.button.primary {
	background: var(--mint);
	color: #1e4038;
	border-color: rgba(30, 64, 56, 0.18);
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 0 rgba(64, 49, 43, 0.12);
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	max-width: 44rem;
}

.stat {
	padding: 1rem;
	border-radius: 8px;
	background: rgba(255, 253, 247, 0.74);
	border: 1px solid rgba(64, 49, 43, 0.1);
}

.stat strong {
	display: block;
	font-size: 1.4rem;
}

.stat span {
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.phone-stage {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 620px;
}

.phone-stage::before {
	content: "";
	position: absolute;
	width: 106%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: conic-gradient(from 80deg, var(--peach), var(--sky), var(--mint), #ffd56d, var(--peach));
	opacity: 0.42;
	filter: blur(1px);
}

.phone {
	position: relative;
	width: min(100%, 335px);
	padding: 12px;
	border-radius: 36px;
	background: #3f322e;
	box-shadow: var(--shadow);
	transform: rotate(2deg);
}

.phone img {
	border-radius: 26px;
}

.sock-float {
	position: absolute;
	width: 86px;
	padding: 0.55rem;
	border-radius: 18px;
	background: rgba(255, 253, 247, 0.88);
	box-shadow: 0 12px 24px rgba(82, 53, 42, 0.16);
}

.sock-float.one {
	top: 6%;
	left: -4%;
	transform: rotate(-16deg);
}

.sock-float.two {
	right: -4%;
	bottom: 13%;
	transform: rotate(13deg);
}

.section {
	padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 5rem);
}

.section-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.section h2 {
	max-width: 760px;
	margin-bottom: 1rem;
	font-size: 3.4rem;
	line-height: 1;
}

.section-intro {
	max-width: 640px;
	color: var(--muted);
	font-size: 1.08rem;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.feature {
	min-height: 210px;
	padding: 1.35rem;
	border-radius: 8px;
	background: var(--paper);
	border: 1px solid rgba(64, 49, 43, 0.1);
	box-shadow: 0 12px 30px rgba(82, 53, 42, 0.08);
}

.feature-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	border-radius: 8px;
	background: #ffe0a8;
	font-size: 1.35rem;
	font-weight: 900;
}

.feature h3 {
	margin-bottom: 0.45rem;
	font-size: 1.25rem;
}

.feature p {
	margin-bottom: 0;
	color: var(--muted);
}

.screens {
	background: rgba(255, 255, 255, 0.42);
}

.screenshot-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 2rem);
	align-items: start;
	margin-top: 2rem;
}

.screenshot {
	padding: 10px;
	border-radius: 28px;
	background: #40312b;
	box-shadow: var(--shadow);
}

.screenshot:nth-child(2) {
	margin-top: 2rem;
}

.screenshot img {
	border-radius: 20px;
}

.cta {
	text-align: center;
}

.cta .section-inner {
	max-width: 760px;
}

.cta h2 {
	margin-left: auto;
	margin-right: auto;
}

.cta .actions {
	justify-content: center;
}

.support-page {
	min-height: calc(100vh - 76px);
	padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
}

.support-card {
	max-width: 880px;
	margin: 0 auto;
	padding: clamp(1.5rem, 5vw, 3rem);
	border-radius: 8px;
	background: rgba(255, 253, 247, 0.86);
	border: 1px solid rgba(64, 49, 43, 0.12);
	box-shadow: var(--shadow);
}

.support-card h1 {
	font-size: 4.6rem;
}

.support-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 2rem 0;
	padding: 0;
	list-style: none;
}

.support-list li {
	padding: 1rem;
	border-radius: 8px;
	background: #ffffff;
	border: 1px solid rgba(64, 49, 43, 0.1);
}

.footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem clamp(1rem, 5vw, 5rem);
	color: var(--muted);
	border-top: 1px solid rgba(64, 49, 43, 0.08);
}

.footer a {
	font-weight: 750;
	text-decoration: none;
}

@media (max-width: 860px) {
	.site-header {
		position: static;
	}

	h1 {
		font-size: 4.4rem;
	}

	.lead {
		font-size: 1.18rem;
	}

	.section h2,
	.support-card h1 {
		font-size: 2.6rem;
	}

	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.phone-stage {
		min-height: 520px;
	}

	.stats,
	.feature-grid,
	.screenshot-row,
	.support-list {
		grid-template-columns: 1fr;
	}

	.screenshot:nth-child(2) {
		margin-top: 0;
	}
}

@media (max-width: 560px) {
	.nav-links {
		gap: 0.7rem;
		font-size: 0.85rem;
	}

	.brand span {
		display: none;
	}

	h1 {
		font-size: 3.25rem;
	}

	.section h2,
	.support-card h1 {
		font-size: 2.15rem;
	}

	.phone-stage {
		min-height: 460px;
	}

	.sock-float {
		width: 68px;
	}
}
