:root {
	color-scheme: dark;
}

body.press-page {
	--press-bg: #06120f;
	--press-bg-raised: rgba(12, 33, 29, 0.88);
	--press-bg-soft: rgba(255, 255, 255, 0.035);
	--press-line: rgba(255, 255, 255, 0.11);
	--press-text: #f2fbf8;
	--press-muted: rgba(242, 251, 248, 0.72);
	--press-accent: #5eead4;
	--press-accent-2: #fde047;
	--press-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
	margin: 0;
	min-height: 100vh;
	font-family: "SF Pro Display", "SF Pro Rounded", ui-sans-serif, system-ui, sans-serif;
	color: var(--press-text);
	background:
		radial-gradient(circle at 12% 0%, rgba(20, 184, 166, 0.26), transparent 28rem),
		radial-gradient(circle at 90% 6%, rgba(220, 68, 68, 0.12), transparent 24rem),
		linear-gradient(180deg, #0a1f1a 0%, var(--press-bg) 34rem);
}

body.press-page * {
	box-sizing: border-box;
}

body.press-page a {
	color: inherit;
	text-decoration: none;
}

body.press-page img {
	display: block;
	max-width: 100%;
	height: auto;
}

body.press-page .page-shell {
	overflow-x: hidden;
}

body.press-page .container {
	width: min(1120px, calc(100% - 3rem));
	margin-inline: auto;
}

body.press-page .skip-link {
	position: fixed;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 100;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	background: #ffffff;
	color: #0a1f1a;
	font-weight: 700;
	transform: translateY(-200%);
}

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

body.press-page .topbar {
	position: sticky;
	top: 0;
	z-index: 10;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(6, 18, 15, 0.76);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

body.press-page .topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 1rem;
}

body.press-page .brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

body.press-page .brand img {
	width: 2.1rem;
	border-radius: 0.55rem;
}

body.press-page .topbar-nav {
	display: flex;
	align-items: center;
	gap: 1.4rem;
}

body.press-page .topbar-nav a {
	color: var(--press-muted);
	font-size: 0.95rem;
}

body.press-page .topbar-nav a:hover,
body.press-page .topbar-nav a:focus-visible,
body.press-page .fact-sheet a:hover,
body.press-page .fact-sheet a:focus-visible,
body.press-page .developer-copy a:hover,
body.press-page .developer-copy a:focus-visible {
	color: #ffffff;
}

body.press-page .topbar-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.8rem;
	padding: 0.8rem 1.15rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: #ffffff;
	font-weight: 700;
}

body.press-page .press-hero {
	padding-block: clamp(4rem, 9vw, 7rem);
}

body.press-page .press-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(15rem, 22rem);
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
}

body.press-page .press-kicker {
	margin-bottom: 0.85rem;
	color: rgba(167, 243, 230, 0.92);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

body.press-page .press-hero h1 {
	margin: 0;
	font-size: clamp(4rem, 12vw, 8rem);
	line-height: 0.9;
	letter-spacing: -0.06em;
}

body.press-page .press-deck {
	max-width: 46rem;
	margin: 1.75rem 0 0;
	color: var(--press-muted);
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	line-height: 1.55;
}

body.press-page .press-contact {
	margin: 1.6rem 0 0;
	color: var(--press-muted);
	font-size: 1.05rem;
}

body.press-page .press-contact a {
	color: var(--press-accent);
	text-decoration: underline;
	text-underline-offset: 0.22em;
}

body.press-page .press-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}

body.press-page .press-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.15rem;
	padding: 0.9rem 1.25rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

body.press-page .press-button:hover,
body.press-page .press-button:focus-visible {
	transform: translateY(-1px);
}

body.press-page .press-button-primary {
	background: linear-gradient(135deg, #0b7d70, #109c86 54%, #1f9d55);
	color: #ffffff;
	box-shadow: 0 14px 34px rgba(16, 156, 134, 0.24);
}

body.press-page .press-button-secondary {
	border-color: var(--press-line);
	background: rgba(255, 255, 255, 0.055);
	color: #ffffff;
}

body.press-page .press-download-note {
	max-width: 48rem;
	margin: 1rem 0 0;
	color: rgba(242, 251, 248, 0.56);
	font-size: 0.95rem;
	line-height: 1.6;
}

body.press-page .press-download-note a {
	color: var(--press-accent);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

body.press-page .press-hero-icon {
	padding: clamp(1rem, 2vw, 1.5rem);
	border: 1px solid var(--press-line);
	border-radius: 28%;
	background: rgba(255, 255, 255, 0.035);
	box-shadow: var(--press-shadow);
}

body.press-page .press-hero-icon img {
	border-radius: 22%;
}

body.press-page .press-section {
	padding-block: clamp(4rem, 8vw, 7rem);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	scroll-margin-top: 5rem;
}

body.press-page .press-section-soft {
	background: rgba(255, 255, 255, 0.018);
}

body.press-page .press-section-heading {
	max-width: 52rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

body.press-page .press-section-heading h2 {
	margin: 0;
	font-size: clamp(2.4rem, 6vw, 4.5rem);
	line-height: 1;
	letter-spacing: -0.04em;
}

body.press-page .press-section-heading-wide {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 34rem);
	align-items: end;
	max-width: none;
	gap: 2rem;
}

body.press-page .press-section-heading-wide .press-button {
	margin-top: 1.25rem;
}

body.press-page .press-section-heading-wide p {
	margin: 0;
	color: var(--press-muted);
	font-size: 1.05rem;
	line-height: 1.7;
}

body.press-page .fact-sheet {
	display: grid;
	grid-template-columns: minmax(9rem, 0.28fr) minmax(0, 1fr);
	margin: 0;
	border-top: 1px solid var(--press-line);
}

body.press-page .fact-sheet dt,
body.press-page .fact-sheet dd {
	padding-block: 1.35rem;
	border-bottom: 1px solid var(--press-line);
}

body.press-page .fact-sheet dt {
	padding-right: 2rem;
	color: rgba(242, 251, 248, 0.55);
	font-weight: 600;
}

body.press-page .fact-sheet dd {
	margin: 0;
	color: var(--press-text);
	font-size: 1.06rem;
	line-height: 1.65;
}

body.press-page .fact-sheet a,
body.press-page .developer-copy a {
	color: var(--press-accent);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

body.press-page .fact-sheet dd span {
	margin-inline: 0.35rem;
	color: rgba(242, 251, 248, 0.35);
}

body.press-page .press-copy-container {
	max-width: 960px;
}

body.press-page .press-copy-block {
	margin-top: 1rem;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 1px solid var(--press-line);
	border-radius: 1.25rem;
	background: var(--press-bg-raised);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

body.press-page .press-copy-block h3,
body.press-page .brand-card h3,
body.press-page .press-bundle-cta h3 {
	margin: 0;
	font-size: 1.15rem;
}

body.press-page .press-copy-block p {
	margin: 0.9rem 0 0;
	color: var(--press-muted);
	font-size: 1.05rem;
	line-height: 1.75;
}

body.press-page .press-copy-block > p:first-child {
	margin-top: 0;
}

body.press-page .press-copy-short {
	border-color: rgba(94, 234, 212, 0.34);
	background: linear-gradient(135deg, rgba(20, 184, 166, 0.13), rgba(253, 224, 71, 0.05));
}

body.press-page .press-copy-short p {
	color: var(--press-text);
	font-size: clamp(1.2rem, 2.4vw, 1.55rem);
	line-height: 1.55;
}

body.press-page .press-story blockquote {
	margin: 0;
}

body.press-page .press-story p + p {
	margin-top: 1.15rem;
}

body.press-page .press-story p:first-child {
	margin-top: 0;
}

body.press-page .press-story-cite {
	margin-top: 1.4rem;
	color: var(--press-text);
	font-size: 1.02rem;
	font-weight: 600;
}

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

body.press-page .feature-list li {
	position: relative;
	padding: 1.5rem 1.5rem 1.5rem 3.4rem;
	border: 1px solid var(--press-line);
	border-radius: 1.15rem;
	background: var(--press-bg-soft);
	color: var(--press-muted);
	font-size: 1.03rem;
	line-height: 1.65;
}

body.press-page .feature-list strong {
	color: var(--press-text);
}

body.press-page .feature-list li::before {
	position: absolute;
	top: 2rem;
	left: 1.45rem;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--press-accent), var(--press-accent-2));
	box-shadow: 0 0 0 0.32rem rgba(94, 234, 212, 0.1);
	content: "";
}

body.press-page .screenshot-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 2rem);
}

body.press-page .screenshot-grid-phones {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.press-page .screenshot-card {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--press-line);
	border-radius: 1.15rem;
	background: var(--press-bg-raised);
	box-shadow: var(--press-shadow);
}

body.press-page .screenshot-image {
	display: block;
	overflow: hidden;
	background: #10201c;
}

body.press-page .screenshot-image img {
	width: 100%;
	transition: transform 240ms ease;
}

body.press-page .screenshot-image:hover img,
body.press-page .screenshot-image:focus-visible img {
	transform: scale(1.012);
}

body.press-page .screenshot-card figcaption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.15rem;
	color: var(--press-muted);
	font-size: 0.95rem;
}

body.press-page .screenshot-card figcaption a,
body.press-page .asset-links a {
	flex: 0 0 auto;
	color: var(--press-accent);
	font-weight: 700;
}

body.press-page .screenshot-card figcaption a:hover,
body.press-page .screenshot-card figcaption a:focus-visible,
body.press-page .asset-links a:hover,
body.press-page .asset-links a:focus-visible {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

body.press-page .press-bundle-cta,
body.press-page .contact-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	margin-top: clamp(2rem, 5vw, 4rem);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border: 1px solid rgba(94, 234, 212, 0.26);
	border-radius: 1.35rem;
	background: linear-gradient(135deg, rgba(20, 184, 166, 0.14), rgba(253, 224, 71, 0.08));
}

body.press-page .press-bundle-cta p,
body.press-page .contact-panel p {
	margin: 0.65rem 0 0;
	color: var(--press-muted);
	line-height: 1.65;
}

body.press-page .press-bundle-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

body.press-page .brand-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 2rem);
}

body.press-page .brand-card {
	overflow: hidden;
	border: 1px solid var(--press-line);
	border-radius: 1.25rem;
	background: var(--press-bg-raised);
}

body.press-page .brand-preview {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 22rem;
	padding: 3rem;
	border-bottom: 1px solid var(--press-line);
	background:
		linear-gradient(45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
		linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
		#0b1a16;
	background-position: 0 0, 0 0;
	background-size: 2rem 2rem;
}

body.press-page .brand-preview img {
	/* Constrain with max-* only. Setting an explicit width alongside max-height lets the two
	   clamp independently, which squashes the mark once the preview box is shorter than it is
	   wide -- as it is on narrow viewports. */
	width: auto;
	height: auto;
	max-width: min(100%, 16rem);
	max-height: 100%;
	filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

body.press-page .brand-card-copy {
	padding: 1.5rem;
}

body.press-page .brand-card-copy p {
	margin: 0.65rem 0 0;
	color: var(--press-muted);
	line-height: 1.65;
}

body.press-page .asset-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
}

body.press-page .developer-copy p {
	color: var(--press-muted);
	font-size: 1.08rem;
	line-height: 1.75;
}

body.press-page .developer-copy p + p {
	margin-top: 1.25rem;
}

body.press-page .release-sheet dd em {
	color: rgba(242, 251, 248, 0.5);
	font-style: normal;
}

body.press-page .press-contact-section {
	padding-top: 0;
	border-top: 0;
}

body.press-page .contact-panel {
	margin-top: 0;
}

body.press-page .contact-panel h2 {
	margin: 0;
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	letter-spacing: -0.035em;
}

body.press-page .site-footer {
	padding-block: 2.5rem 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: rgba(242, 251, 248, 0.55);
	font-size: 0.92rem;
	text-align: center;
}

body.press-page .site-footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.6rem;
	margin-bottom: 0.9rem;
}

body.press-page .site-footer a:hover,
body.press-page .site-footer a:focus-visible {
	color: #ffffff;
}

body.press-page .site-footer p {
	margin: 0.4rem 0 0;
	line-height: 1.6;
}

body.press-page :focus-visible {
	outline: 3px solid var(--press-accent);
	outline-offset: 4px;
}

body.press-page .screenshot-image:focus-visible {
	outline-offset: -4px;
}

@media (max-width: 991px) {
	body.press-page .topbar-inner {
		flex-wrap: wrap;
	}

	body.press-page .topbar-nav {
		display: flex;
		flex: 1 1 100%;
		order: 3;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0.5rem 1.2rem;
	}

	body.press-page .press-hero-grid {
		grid-template-columns: 1fr;
	}

	body.press-page .press-hero-icon {
		width: min(65vw, 20rem);
	}

	body.press-page .press-section-heading-wide {
		grid-template-columns: 1fr;
		align-items: start;
	}

	body.press-page .screenshot-grid-phones {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	body.press-page .topbar-cta {
		min-height: 2.6rem;
		padding: 0.72rem 0.95rem;
		font-size: 0.9rem;
	}

	body.press-page .topbar-nav {
		gap: 0.35rem 1rem;
	}

	body.press-page .topbar-nav a {
		padding-block: 0.2rem;
		font-size: 0.9rem;
	}

	body.press-page .press-hero {
		padding-top: 3.5rem;
	}

	body.press-page .press-actions,
	body.press-page .press-button {
		width: 100%;
	}

	body.press-page .feature-list,
	body.press-page .screenshot-grid,
	body.press-page .screenshot-grid-phones,
	body.press-page .brand-grid {
		grid-template-columns: 1fr;
	}

	body.press-page .fact-sheet {
		grid-template-columns: 1fr;
	}

	body.press-page .fact-sheet dt {
		padding-bottom: 0.35rem;
		border-bottom: 0;
	}

	body.press-page .fact-sheet dd {
		padding-top: 0;
	}

	body.press-page .screenshot-card figcaption,
	body.press-page .press-bundle-cta,
	body.press-page .contact-panel {
		align-items: stretch;
		flex-direction: column;
	}

	body.press-page .brand-preview {
		height: 15rem;
		padding: 2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.press-page .press-button,
	body.press-page .screenshot-image img {
		transition: none;
	}
}

@media print {
	body.press-page {
		--press-line: #cccccc;
		--press-text: #111111;
		--press-muted: #444444;
		--press-accent: #0a7d6f;
		color: #111111;
		background: #ffffff;
	}

	body.press-page .topbar,
	body.press-page .press-actions,
	body.press-page .press-download-note,
	body.press-page #images,
	body.press-page #banners,
	body.press-page .site-footer {
		display: none;
	}

	body.press-page .press-section {
		padding-block: 2rem;
		border-color: #cccccc;
	}

	body.press-page .press-copy-block,
	body.press-page .feature-list li,
	body.press-page .brand-card {
		color: #111111;
		background: #ffffff;
		border-color: #cccccc;
		box-shadow: none;
	}

	body.press-page .press-kicker,
	body.press-page .fact-sheet dt {
		color: #333333;
	}

	body.press-page .press-button-primary {
		border-color: #111111;
		background: #ffffff;
		color: #111111;
		box-shadow: none;
	}
}
