:root {
	--bg: #edf2f8;
	--bg-deep: #dfe7f2;
	--surface: rgba(255, 255, 255, 0.82);
	--surface-strong: rgba(255, 255, 255, 0.94);
	--surface-dark: #111827;
	--text: #0f172a;
	--muted: #5b6678;
	--muted-strong: #344054;
	--line: rgba(15, 23, 42, 0.08);
	--line-strong: rgba(15, 23, 42, 0.14);
	--accent: #0a84ff;
	--accent-dark: #0057d8;
	--accent-soft: rgba(10, 132, 255, 0.12);
	--shadow-sm: 0 20px 45px rgba(15, 23, 42, 0.08);
	--shadow-lg: 0 38px 100px rgba(15, 23, 42, 0.12);
	--radius-xl: 40px;
	--radius-lg: 30px;
	--radius-md: 22px;
	--radius-sm: 16px;
	--container: min(1180px, calc(100vw - 2rem));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at top left, rgba(122, 174, 255, 0.22), transparent 24%),
		radial-gradient(circle at 85% 10%, rgba(116, 145, 255, 0.16), transparent 24%),
		linear-gradient(180deg, #f8fbff 0%, var(--bg) 40%, var(--bg-deep) 100%);
	line-height: 1.65;
}

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

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

.container {
	width: var(--container);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(248, 251, 255, 0.72);
	backdrop-filter: blur(24px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.header-inner,
.footer-inner,
.hero-grid,
.split-grid,
.app-hero-grid,
.app-content-grid,
.cta-banner {
	display: grid;
	gap: 2rem;
}

.header-inner {
	grid-template-columns: 1fr auto;
	align-items: center;
	padding: 1rem 0;
}

.brand a,
.footer-title {
	font-size: 1.02rem;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.brand p,
.footer-copy,
.archive-copy,
.hero-copy,
.app-card p,
.prose p,
.contact-form label,
.contact-form input,
.contact-form textarea {
	color: var(--muted);
}

.brand p {
	margin: 0.3rem 0 0;
	font-size: 0.92rem;
}

.menu,
.footer-links,
.spec-list,
.feature-list,
.hero-metrics {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu {
	display: flex;
	gap: 0.45rem;
	align-items: center;
}

.menu a,
.footer-links a {
	color: var(--muted-strong);
	font-weight: 500;
}

.menu a {
	padding: 0.65rem 0.95rem;
	border-radius: 999px;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu a:hover,
.menu .current-menu-item a,
.menu .current_page_item a {
	background: rgba(255, 255, 255, 0.66);
	color: var(--text);
}

.footer-links a:hover,
.text-link,
.app-card h3 a:hover {
	color: var(--accent-dark);
}

.page-section,
.hero {
	padding: 5.5rem 0;
}

.hero {
	padding-top: 6.5rem;
	position: relative;
	overflow: clip;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 2rem auto auto 50%;
	width: 54rem;
	height: 54rem;
	background: radial-gradient(circle, rgba(10, 132, 255, 0.14) 0%, rgba(10, 132, 255, 0) 68%);
	transform: translateX(-8%);
	pointer-events: none;
}

.hero-grid,
.app-hero-grid {
	grid-template-columns: 1.02fr 0.98fr;
	align-items: center;
}

.hero-copy-stack,
.hero-showcase,
.app-card,
.about-card,
.contact-hero-card,
.contact-detail-card,
.contact-card,
.app-meta-panel,
.cta-banner,
.section-surface,
.contact-side-note,
.app-overview-card,
.app-features-card {
	position: relative;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 251, 255, 0.78) 100%);
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-sm);
}

.hero-copy-stack,
.hero-showcase,
.about-card,
.contact-hero-card,
.contact-detail-card,
.contact-card,
.app-meta-panel,
.contact-side-note,
.app-overview-card,
.app-features-card {
	padding: 2.2rem;
}

.eyebrow,
.panel-label,
.app-platform {
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-dark);
	margin: 0 0 1rem;
}

h1,
h2,
h3 {
	line-height: 1;
	letter-spacing: -0.05em;
	margin: 0 0 1rem;
}

h1 {
	font-size: clamp(3.25rem, 6.2vw, 6rem);
	max-width: 9.2ch;
}

h2 {
	font-size: clamp(2.15rem, 4vw, 3.25rem);
	max-width: 13ch;
}

h3 {
	font-size: 1.55rem;
}

.hero-copy,
.lead,
.archive-copy {
	font-size: 1.14rem;
	max-width: 58ch;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 2rem;
}

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

.hero-metrics li {
	padding: 1rem 1.1rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-metrics strong {
	display: block;
	font-size: 1rem;
	margin-bottom: 0.35rem;
	letter-spacing: -0.03em;
}

.hero-metrics span {
	display: block;
	font-size: 0.92rem;
	color: var(--muted);
}

.hero-showcase {
	padding: 1.4rem;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.hero-showcase-copy {
	padding: 1rem 1rem 0;
	max-width: 28rem;
}

.hero-showcase-copy h2 {
	font-size: clamp(1.8rem, 3vw, 2.55rem);
	max-width: none;
}

.hero-device-stack {
	position: relative;
	min-height: 32rem;
	margin: 1rem 0 1.25rem;
}

.device-frame {
	position: relative;
	padding: 0.6rem;
	border-radius: 36px;
	background: linear-gradient(180deg, #1f2937 0%, #0f172a 100%);
	box-shadow: 0 35px 90px rgba(15, 23, 42, 0.28);
}

.device-frame::before {
	content: "";
	position: absolute;
	top: 0.9rem;
	left: 50%;
	width: 28%;
	height: 1.55rem;
	background: #0b1220;
	border-radius: 999px;
	transform: translateX(-50%);
	z-index: 2;
}

.device-frame img {
	width: 100%;
	border-radius: 28px;
	background: #fff;
}

.device-frame.primary {
	position: absolute;
	right: 0;
	bottom: 0;
	width: min(19rem, 64%);
	transform: rotate(5deg);
}

.device-frame.secondary {
	position: absolute;
	left: 2rem;
	top: 1.5rem;
	width: min(15rem, 52%);
	transform: rotate(-10deg);
	opacity: 0.94;
}

.device-frame.tall {
	max-width: 19rem;
	margin: 0 auto;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.9rem 1.4rem;
	border-radius: 999px;
	font-weight: 600;
	letter-spacing: -0.02em;
	transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

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

.button-primary {
	background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
	color: #fff;
	box-shadow: 0 16px 36px rgba(10, 132, 255, 0.32);
}

.button-secondary {
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid var(--line);
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2rem;
}

.section-heading h2 {
	max-width: 12ch;
}

.app-grid,
.screenshot-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.featured-grid .app-card:nth-child(2) {
	transform: translateY(1.25rem);
}

.app-card {
	padding: 1.25rem;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.app-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.app-card-icon,
.app-icon {
	width: 88px;
	height: 88px;
	border-radius: 24px;
	box-shadow: 0 20px 48px rgba(10, 132, 255, 0.18);
}

.app-card-preview {
	margin-bottom: 1.35rem;
	padding: 0.6rem;
	background: linear-gradient(180deg, rgba(240, 246, 255, 0.95) 0%, rgba(255, 255, 255, 0.72) 100%);
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.72);
}

.app-card-preview img {
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 24px;
	width: 100%;
}

.app-card-content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.app-card h3 {
	max-width: 10ch;
}

.app-card-helper {
	font-size: 0.92rem;
	color: var(--muted-strong);
	margin-top: 0.2rem;
}

.app-card-actions {
	margin-top: auto;
	padding-top: 1rem;
}

.split-grid,
.app-content-grid,
.cta-banner {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 2rem;
	align-items: start;
}

.contact-intro,
.contact-form-shell {
	display: grid;
	gap: 1.5rem;
}

.contact-lead {
	font-size: 1.14rem;
	max-width: 36rem;
	color: var(--muted-strong);
}

.contact-details-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.contact-detail-card h2,
.contact-form-header h2 {
	max-width: none;
}

.contact-list {
	margin: 0;
	padding-left: 1.2rem;
	color: var(--muted);
}

.contact-list li + li {
	margin-top: 0.6rem;
}

.contact-form-header {
	margin-bottom: 1.25rem;
}

.split-grid-balanced {
	align-items: center;
}

.section-surface {
	padding: 2.5rem;
	box-shadow: var(--shadow-lg);
}

.craft-section {
	overflow: hidden;
}

.craft-section::before {
	content: "";
	position: absolute;
	inset: auto -10% -18% auto;
	width: 28rem;
	height: 28rem;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(10, 132, 255, 0.16) 0%, rgba(10, 132, 255, 0) 70%);
}

.craft-copy p,
.prose-emphasis p {
	font-size: 1.08rem;
	max-width: 50ch;
}

.pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.pill-list span {
	padding: 0.7rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.72);
	color: var(--muted-strong);
	font-weight: 600;
}

.about-card-rich {
	min-height: 100%;
}

.cta-banner {
	padding: 2.9rem;
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(232, 241, 255, 0.88) 100%);
	box-shadow: var(--shadow-lg);
}

.archive-hero {
	padding-bottom: 1rem;
}

.app-hero-copy {
	padding-right: 1rem;
}

.app-hero-visual {
	display: grid;
	gap: 1.4rem;
	align-items: start;
}

.app-meta-panel {
	backdrop-filter: blur(20px);
}

.store-link-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
	padding: 1rem;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(31, 41, 55, 0.96) 100%);
	color: #fff;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.store-link-icon {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	flex: 0 0 auto;
}

.store-link-copy span,
.store-link-copy small {
	display: block;
}

.store-link-copy span {
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.store-link-copy strong {
	display: block;
	font-size: 1.05rem;
	letter-spacing: -0.02em;
	margin: 0.2rem 0 0.1rem;
}

.store-link-copy small {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.78);
}

.app-meta-panel h2,
.prose h2 {
	font-size: 1.55rem;
	max-width: none;
}

.app-badge {
	display: flex;
	gap: 1.25rem;
	align-items: center;
	margin-bottom: 1.25rem;
}

.spec-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.95rem 0;
	border-bottom: 1px solid var(--line);
}

.spec-list span {
	color: var(--muted);
}

.screenshot-card {
	padding: 0.9rem;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.76);
	box-shadow: var(--shadow-sm);
}

.screenshot-card img {
	border-radius: 24px;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.feature-list li {
	position: relative;
	padding-left: 1.35rem;
	margin-bottom: 1rem;
}

.feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62rem;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--accent);
	box-shadow: 0 0 0 6px rgba(10, 132, 255, 0.12);
}

.support-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.7rem;
}

.text-link {
	font-weight: 600;
}

.entry-content > :first-child,
.prose > :first-child {
	margin-top: 0;
}

.prose p + h2,
.entry-content p + h2 {
	margin-top: 2rem;
}

.contact-form p {
	margin: 0 0 1rem;
}

.contact-form label {
	display: inline-block;
	margin-bottom: 0.45rem;
	font-weight: 600;
	color: var(--muted-strong);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.98rem 1rem;
	border-radius: 18px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.92);
	font: inherit;
	color: var(--text);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #8b95a7;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: rgba(10, 132, 255, 0.45);
	box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.12);
	background: #fff;
}

.form-notice {
	padding: 0.9rem 1rem;
	border-radius: 16px;
	margin-bottom: 1rem;
}

.form-notice.success {
	background: rgba(52, 199, 89, 0.12);
	color: #1d6f36;
}

.form-notice.error {
	background: rgba(255, 59, 48, 0.12);
	color: #a12720;
}

.site-footer {
	padding: 2rem 0 2.8rem;
}

.footer-inner {
	grid-template-columns: 1fr auto;
	align-items: center;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.skip-link,
.visually-hidden,
.screen-reader-text {
	position: absolute;
	left: -9999px;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	background: #fff;
	padding: 0.75rem 1rem;
	border-radius: 12px;
	z-index: 100;
}

@media (prefers-reduced-motion: no-preference) {
	.hero-copy-stack,
	.hero-showcase,
	.app-card,
	.cta-banner {
		animation: rise-in 0.7s ease both;
	}

	.hero-showcase {
		animation-delay: 0.12s;
	}

	.app-card:nth-child(2) {
		animation-delay: 0.1s;
	}

	.app-card:nth-child(3) {
		animation-delay: 0.18s;
	}
}

@keyframes rise-in {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1080px) {
	.hero-grid,
	.app-hero-grid,
	.split-grid,
	.app-content-grid,
	.cta-banner,
	.header-inner,
	.footer-inner,
	.app-grid,
	.screenshot-gallery,
	.hero-metrics {
		grid-template-columns: 1fr;
	}

	.hero-metrics {
		display: grid;
	}

	.featured-grid .app-card:nth-child(2) {
		transform: none;
	}

	.hero-device-stack {
		min-height: 28rem;
	}

	h1 {
		max-width: none;
	}
}

@media (max-width: 720px) {
	.page-section,
	.hero {
		padding: 4rem 0;
	}

	.hero-copy-stack,
	.hero-showcase,
	.about-card,
	.contact-card,
	.app-card,
	.app-meta-panel,
	.section-surface,
	.cta-banner,
	.app-overview-card,
	.app-features-card {
		padding: 1.5rem;
		border-radius: 28px;
	}

	.hero-device-stack {
		min-height: 22rem;
	}

	.device-frame.primary {
		width: 68%;
	}

	.device-frame.secondary {
		left: 0.5rem;
		top: 0.75rem;
		width: 56%;
	}

	.app-badge {
		flex-direction: column;
		align-items: flex-start;
	}

	.section-heading {
		display: block;
	}
}
