:root {
	--ink: #241827;
	--ink-soft: #645968;
	--paper: #fffdfd;
	--paper-warm: #fff8fa;
	--line: #eadfe5;
	--accent: #e63f70;
	--accent-dark: #bc2453;
	--accent-soft: #ffe4ed;
	--gold: #ffb648;
	--green: #249a71;
	--shadow: 0 28px 80px rgba(77, 31, 59, 0.16);
}

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

html {
	scroll-behavior: smooth;
}

body {
	min-width: 320px;
	background:
		radial-gradient(circle at 8% 8%, rgba(255, 211, 225, 0.65), transparent 28rem),
		linear-gradient(180deg, #fffdfd 0%, #fff8fa 46%, #fffdfd 100%);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
}

svg {
	display: block;
}

.skip-link {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 20;
	padding: 0.7rem 1rem;
	border-radius: 0.65rem;
	background: var(--ink);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transform: translateY(-180%);
	transition: transform 160ms ease;
}

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

.site-header,
.hero,
.benefit-strip,
.features,
.final-cta,
.site-footer {
	width: min(1160px, calc(100% - 48px));
	margin-inline: auto;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 28px;
}

.brand,
.footer-brand,
.extension-brand {
	display: inline-flex;
	align-items: center;
}

.brand {
	gap: 0.7rem;
	font-size: 1.125rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	text-decoration: none;
}

.brand-mark,
.extension-logo {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	background: linear-gradient(145deg, #f45a80, #d72963);
	box-shadow: 0 8px 18px rgba(213, 41, 99, 0.24);
	color: #fff;
	font-weight: 900;
	line-height: 1;
	transform: rotate(-5deg);
}

.brand-mark {
	width: 2.15rem;
	height: 2.15rem;
	border-radius: 0.72rem;
}

.header-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	border-bottom: 1px solid var(--ink);
	font-size: 0.9rem;
	font-weight: 750;
	line-height: 1.4;
	text-decoration: none;
}

.header-link-short {
	display: none;
}

.header-link svg,
.button svg {
	width: 1.1rem;
	height: 1.1rem;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
	min-height: 700px;
	padding-block: 70px 100px;
}

.hero-copy {
	position: relative;
	z-index: 2;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 1.2rem;
	color: var(--accent-dark);
	font-size: 0.75rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	line-height: 1.4;
	text-transform: uppercase;
}

.hero .eyebrow span {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 5px rgba(36, 154, 113, 0.12);
}

h1,
h2,
h3 {
	line-height: 1.05;
}

h1 {
	max-width: 720px;
	font-size: clamp(3.2rem, 6.3vw, 5.7rem);
	font-weight: 850;
	letter-spacing: -0.068em;
}

h1 em {
	background: linear-gradient(92deg, var(--accent-dark), #f05b5d);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-style: normal;
}

.hero-description {
	max-width: 620px;
	margin-top: 1.7rem;
	color: var(--ink-soft);
	font-size: clamp(1.05rem, 2vw, 1.22rem);
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2.1rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 52px;
	padding: 0.85rem 1.2rem;
	border: 1px solid transparent;
	border-radius: 0.85rem;
	font-size: 0.94rem;
	font-weight: 800;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button-primary {
	background: var(--ink);
	box-shadow: 0 14px 26px rgba(36, 24, 39, 0.19);
	color: #fff;
}

.button-primary:hover {
	background: #3a263f;
	box-shadow: 0 18px 32px rgba(36, 24, 39, 0.25);
}

.button-secondary {
	border-color: var(--line);
	background: rgba(255, 255, 255, 0.72);
	color: var(--ink);
}

.button-secondary:hover {
	background: #fff;
	box-shadow: 0 10px 24px rgba(77, 31, 59, 0.09);
}

.store-note {
	margin-top: 0.9rem;
	color: #7b707e;
	font-size: 0.78rem;
	font-weight: 650;
}

.store-note span {
	margin-inline: 0.35rem;
	color: #baafb5;
}

.product-visual {
	position: relative;
	isolation: isolate;
}

.glow {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	filter: blur(2px);
}

.glow-one {
	top: -70px;
	right: -45px;
	width: 230px;
	height: 230px;
	background: rgba(255, 180, 194, 0.53);
}

.glow-two {
	bottom: -40px;
	left: -50px;
	width: 190px;
	height: 190px;
	background: rgba(255, 216, 169, 0.4);
}

.browser-card {
	overflow: hidden;
	border: 1px solid rgba(95, 53, 76, 0.13);
	border-radius: 1.4rem;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--shadow);
	transform: rotate(1.6deg);
	backdrop-filter: blur(18px);
}

.browser-bar {
	display: grid;
	grid-template-columns: 50px 1fr 50px;
	align-items: center;
	padding: 0.7rem 0.85rem;
	border-bottom: 1px solid #eee4e8;
	background: #f7f1f4;
}

.browser-dots {
	display: flex;
	gap: 0.3rem;
}

.browser-dots span {
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: #d8cdd3;
}

.browser-dots span:first-child {
	background: #f2879e;
}

.browser-address {
	overflow: hidden;
	padding: 0.38rem 0.65rem;
	border: 1px solid #eadfe4;
	border-radius: 0.45rem;
	background: #fff;
	color: #988c92;
	font-size: 0.57rem;
	line-height: 1.3;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.extension-panel {
	padding: clamp(1.25rem, 3vw, 2rem);
	background: linear-gradient(160deg, #fff 0%, #fff9fb 100%);
}

.extension-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.extension-brand {
	gap: 0.75rem;
}

.extension-logo {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.8rem;
}

.extension-brand strong,
.extension-brand small,
.control-copy strong,
.control-copy small,
.activity-card strong,
.activity-card small {
	display: block;
}

.extension-brand strong {
	font-size: 0.9rem;
	line-height: 1.3;
}

.extension-brand small {
	margin-top: 0.1rem;
	color: #8f828a;
	font-size: 0.62rem;
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.55rem;
	border-radius: 999px;
	background: #eaf8f3;
	color: #147354;
	font-size: 0.58rem;
	font-weight: 800;
}

.status-pill i {
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 50%;
	background: var(--green);
}

.control-list {
	display: grid;
	gap: 0.65rem;
	margin-top: 1.5rem;
}

.control-row {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.8rem;
	padding: 0.8rem;
	border: 1px solid #eee4e8;
	border-radius: 0.85rem;
	background: rgba(255, 255, 255, 0.88);
}

.control-icon {
	display: grid;
	place-items: center;
	width: 2.05rem;
	height: 2.05rem;
	border-radius: 0.65rem;
	background: #f5eef2;
	color: #75646e;
}

.control-icon svg,
.activity-icon svg {
	width: 1.05rem;
	height: 1.05rem;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

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

.control-copy small,
.activity-card small {
	color: #94868e;
	font-size: 0.56rem;
	line-height: 1.3;
}

.control-copy strong,
.activity-card strong {
	margin-top: 0.12rem;
	font-size: 0.68rem;
	line-height: 1.3;
}

.toggle {
	position: relative;
	width: 1.9rem;
	height: 1.05rem;
	border-radius: 999px;
	background: #e8dfe4;
}

.toggle i {
	position: absolute;
	top: 0.18rem;
	left: 0.18rem;
	width: 0.69rem;
	height: 0.69rem;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 5px rgba(36, 24, 39, 0.2);
}

.toggle.is-on {
	background: var(--accent);
}

.toggle.is-on i {
	left: 1.03rem;
}

.row-arrow {
	color: #a99ba3;
	font-size: 1rem;
	line-height: 1;
}

.activity-card {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.8rem;
	padding: 0.85rem;
	border-radius: 0.85rem;
	background: var(--ink);
	color: #fff;
}

.activity-icon {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border-radius: 0.62rem;
	background: rgba(255, 255, 255, 0.1);
	color: #ff95b4;
}

.activity-card small {
	color: #c8bbc9;
}

.benefit-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.benefit-strip > div {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 0.8rem;
	padding: 1.5rem 1.8rem;
}

.benefit-strip > div + div {
	border-left: 1px solid var(--line);
}

.benefit-strip span {
	grid-row: 1 / 3;
	color: var(--accent);
	font-size: 0.65rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.benefit-strip strong {
	font-size: 0.85rem;
	line-height: 1.4;
}

.benefit-strip small {
	margin-top: 0.15rem;
	color: var(--ink-soft);
	font-size: 0.74rem;
	line-height: 1.4;
}

.features {
	padding-block: clamp(6rem, 10vw, 9rem);
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
	align-items: end;
	gap: 2rem;
	margin-bottom: 3rem;
}

.section-heading .eyebrow {
	grid-column: 1 / -1;
	margin-bottom: -1rem;
}

.section-heading h2,
.final-cta h2 {
	font-size: clamp(2.35rem, 4.8vw, 4.3rem);
	font-weight: 850;
	letter-spacing: -0.055em;
}

.section-heading > p:last-child {
	color: var(--ink-soft);
	font-size: 1rem;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.85rem;
}

.feature-card {
	min-height: 270px;
	padding: 1.5rem;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.68);
}

.feature-number {
	display: inline-block;
	margin-bottom: 5rem;
	color: var(--accent);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.feature-card h3 {
	font-size: 1.28rem;
	letter-spacing: -0.03em;
}

.feature-card p {
	margin-top: 0.7rem;
	color: var(--ink-soft);
	font-size: 0.88rem;
	line-height: 1.55;
}

.feature-card-accent {
	border-color: transparent;
	background: var(--ink);
	color: #fff;
}

.feature-card-accent .feature-number {
	color: #ff92b3;
}

.feature-card-accent p {
	color: #cbbfcf;
}

.final-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2.5rem;
	padding: clamp(2.2rem, 5vw, 4.5rem);
	border-radius: 1.5rem;
	background:
		radial-gradient(circle at 88% 0%, rgba(255, 106, 151, 0.35), transparent 17rem),
		var(--ink);
	color: #fff;
}

.final-cta .eyebrow {
	color: #ff99b7;
}

.final-cta h2 {
	max-width: 720px;
}

.button-light {
	flex: 0 0 auto;
	background: #fff;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
	color: var(--ink);
}

.button-light:hover {
	background: var(--paper-warm);
}

.site-footer {
	display: grid;
	grid-template-columns: auto minmax(260px, 1fr) auto;
	align-items: center;
	gap: 2.5rem;
	padding-block: 3rem;
	color: #7e727f;
	font-size: 0.72rem;
}

.footer-brand {
	gap: 0.6rem;
	color: var(--ink);
	font-size: 0.9rem;
}

.footer-brand .brand-mark {
	width: 1.8rem;
	height: 1.8rem;
	border-radius: 0.58rem;
	font-size: 0.8rem;
}

.site-footer > p:not(.copyright) {
	max-width: 610px;
}

.copyright {
	white-space: nowrap;
}

a:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 4px;
}

@media (max-width: 980px) {
	.hero {
		grid-template-columns: 1fr;
		gap: 4.5rem;
		padding-top: 80px;
	}

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

	.product-visual {
		width: min(580px, 90%);
		margin-inline: auto;
	}

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

	.feature-card {
		min-height: 230px;
	}

	.feature-number {
		margin-bottom: 3.4rem;
	}

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

	.site-footer {
		grid-template-columns: 1fr auto;
	}

	.site-footer > p:not(.copyright) {
		grid-column: 1 / -1;
		grid-row: 2;
	}
}

@media (max-width: 680px) {
	.site-header,
	.hero,
	.benefit-strip,
	.features,
	.final-cta,
	.site-footer {
		width: min(100% - 32px, 1160px);
	}

	.site-header {
		padding-block: 20px;
	}

	.header-link {
		font-size: 0.74rem;
	}

	.hero {
		min-height: auto;
		padding-block: 70px 80px;
	}

	h1 {
		font-size: clamp(2.75rem, 13.6vw, 4.2rem);
	}

	.hero-description {
		font-size: 1rem;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.product-visual {
		width: 100%;
	}

	.glow-one {
		right: 0;
	}

	.glow-two {
		left: 0;
	}

	.browser-card {
		transform: none;
	}

	.extension-panel {
		padding: 1rem;
	}

	.benefit-strip {
		grid-template-columns: 1fr;
	}

	.benefit-strip > div {
		padding-inline: 0.25rem;
	}

	.benefit-strip > div + div {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.section-heading {
		grid-template-columns: 1fr;
	}

	.section-heading .eyebrow {
		grid-column: auto;
	}

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

	.feature-card {
		min-height: 220px;
	}

	.final-cta {
		width: calc(100% - 24px);
		padding: 2.2rem 1.25rem;
		border-radius: 1.15rem;
	}

	.site-footer {
		grid-template-columns: 1fr;
		gap: 1.3rem;
	}

	.site-footer > p:not(.copyright) {
		grid-column: auto;
		grid-row: auto;
	}
}

@media (max-width: 420px) {
	.header-link-full {
		display: none;
	}

	.header-link-short {
		display: inline;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
	}
}
