@font-face {
	font-family: "Geist";
	src: url("/assets/fonts/Geist-Regular.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Geist";
	src: url("/assets/fonts/Geist-Medium.ttf") format("truetype");
	font-style: normal;
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: "Geist";
	src: url("/assets/fonts/Geist-SemiBold.ttf") format("truetype");
	font-style: normal;
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: "Geist";
	src: url("/assets/fonts/Geist-Bold.ttf") format("truetype");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

:root {
	--ink: #172741;
	--muted: #657a92;
	--blue: #0d70b1;
	--blue-bright: #0a89ce;
	--blue-deep: #005a9c;
	--blue-night: #002d54;
	--page: #e8f4fd;
	--surface: #ffffff;
	--line: #d4e7f4;
	--green: #0c9d5e;
	--green-deep: #006c49;
	--green-soft: #e8fff4;
	--radius-lg: 36px;
	--radius-md: 24px;
	--shadow: 0 24px 70px rgba(5, 74, 119, 0.16);
	--content: 1180px;
	--page-pad: clamp(20px, 5vw, 72px);
	--header-top: 20px;
	--header-height: 72px;
	--header-clearance: 20px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family:
		"Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
		"Segoe UI", sans-serif;
	color: var(--ink);
	background: var(--page);
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 1000;
	transform: translateY(-150%);
	padding: 12px 16px;
	border-radius: 12px;
	background: white;
	color: var(--ink);
	font-weight: 600;
}

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

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.site-shell {
	min-height: 100vh;
	overflow: hidden;
}

.site-header {
	--brand-filter: none;
	--nav-text: rgba(255, 255, 255, 0.78);
	--nav-hover: white;
	--nav-hover-bg: rgba(255, 255, 255, 0.09);
	--nav-pill-text: var(--blue-night);
	--nav-pill-bg: white;
	--nav-pill-hover-bg: #e9f7ff;
	--menu-border: rgba(255, 255, 255, 0.2);
	--menu-bg: rgba(255, 255, 255, 0.08);
	--menu-line: white;
	--header-background: rgba(1, 63, 105, 0.62);
	--header-border: rgba(255, 255, 255, 0.22);
	--header-shadow: 0 16px 44px rgba(0, 39, 72, 0.14);
	position: fixed;
	top: var(--header-top);
	left: 50%;
	z-index: 100;
	display: flex;
	width: min(calc(100% - 40px), var(--content));
	height: var(--header-height);
	align-items: center;
	justify-content: space-between;
	transform: translateX(-50%);
	padding: 0 22px 0 26px;
	border: 1px solid var(--header-border);
	border-radius: 24px;
	background: var(--header-background);
	box-shadow: var(--header-shadow);
	backdrop-filter: blur(20px) saturate(140%);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	transition:
		background 260ms ease,
		border-color 260ms ease,
		box-shadow 260ms ease;
}

.site-header.is-scrolled {
	--brand-filter: brightness(0) saturate(100%) invert(13%) sepia(22%)
		saturate(1668%) hue-rotate(176deg) brightness(89%) contrast(94%);
	--nav-text: #47647d;
	--nav-hover: var(--blue-night);
	--nav-hover-bg: rgba(13, 112, 177, 0.08);
	--nav-pill-text: white;
	--nav-pill-bg: linear-gradient(135deg, var(--blue-bright), var(--blue));
	--nav-pill-hover-bg: linear-gradient(135deg, #149ddd, #0875b7);
	--menu-border: rgba(13, 112, 177, 0.16);
	--menu-bg: rgba(13, 112, 177, 0.07);
	--menu-line: var(--blue-night);
	backdrop-filter: blur(24px) saturate(150%);
	-webkit-backdrop-filter: blur(24px) saturate(150%);
}

.brand img {
	width: 148px;
	height: auto;
	filter: var(--brand-filter);
	transition: filter 260ms ease;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 8px;
}

.site-nav a {
	padding: 11px 14px;
	border-radius: 14px;
	color: var(--nav-text);
	font-size: 14px;
	font-weight: 500;
	transition:
		color 180ms ease,
		background 180ms ease,
		transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--nav-hover);
	background: var(--nav-hover-bg);
	outline: none;
}

.site-nav .nav-pill {
	margin-left: 4px;
	padding-inline: 18px;
	color: var(--nav-pill-text);
	background: var(--nav-pill-bg);
}

.site-nav .nav-pill:hover,
.site-nav .nav-pill:focus-visible {
	color: var(--nav-pill-text);
	background: var(--nav-pill-hover-bg);
	transform: translateY(-1px);
}

.menu-button {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--menu-border);
	border-radius: 14px;
	background: var(--menu-bg);
	cursor: pointer;
}

.menu-button span {
	position: absolute;
	width: 19px;
	height: 2px;
	border-radius: 2px;
	background: var(--menu-line);
	transition:
		transform 180ms ease,
		opacity 180ms ease;
}

.menu-button span:nth-child(1) {
	transform: translateY(-6px);
}
.menu-button span:nth-child(3) {
	transform: translateY(6px);
}
.menu-button[aria-expanded="true"] span:nth-child(1) {
	transform: rotate(45deg);
}
.menu-button[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.menu-button[aria-expanded="true"] span:nth-child(3) {
	transform: rotate(-45deg);
}

.section-pad {
	padding-right: var(--page-pad);
	padding-left: var(--page-pad);
}

.hero {
	position: relative;
	display: grid;
	min-height: 860px;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
	gap: clamp(32px, 5vw, 80px);
	align-items: center;
	padding-top: 150px;
	padding-bottom: 100px;
	color: white;
	background:
		radial-gradient(
			circle at 18% 22%,
			rgba(39, 161, 225, 0.42),
			transparent 34%
		),
		linear-gradient(135deg, #002d54 0%, #0568a5 52%, #0a89ce 100%);
	overflow: hidden;
}

.hero::after {
	position: absolute;
	right: -12vw;
	bottom: -260px;
	width: 70vw;
	height: 480px;
	border-radius: 50%;
	background: rgba(121, 207, 248, 0.22);
	content: "";
	transform: rotate(-9deg);
}

.contour-field {
	position: absolute;
	inset: 0;
	opacity: 0.22;
	pointer-events: none;
}

.contour {
	position: absolute;
	width: 720px;
	aspect-ratio: 1;
	border-radius: 45% 55% 61% 39% / 43% 38% 62% 57%;
	background: repeating-radial-gradient(
		ellipse at 48% 44%,
		transparent 0 28px,
		rgba(220, 244, 255, 0.58) 29px 31px
	);
	mix-blend-mode: screen;
	transform-origin: center;
	animation: contour-flow 20s linear infinite;
	will-change: border-radius, rotate, scale, translate, background-position;
}

.contour-one {
	top: -230px;
	left: -260px;
	transform: rotate(20deg);
}
.contour-two {
	right: -320px;
	bottom: -280px;
	transform: rotate(-35deg) scale(1.15);
	animation-direction: reverse;
	animation-duration: 27s;
}

@keyframes contour-flow {
	0% {
		border-radius: 45% 55% 61% 39% / 43% 38% 62% 57%;
		rotate: 0deg;
		scale: 1;
		translate: 0 0;
		background-position: 0 0;
	}
	25% {
		border-radius: 54% 46% 42% 58% / 61% 42% 58% 39%;
		scale: 1.035;
		translate: 12px -10px;
		background-position: 18px -12px;
	}
	50% {
		border-radius: 59% 41% 46% 54% / 36% 57% 43% 64%;
		scale: 1.07;
		translate: 0 -18px;
		background-position: 34px -20px;
	}
	75% {
		border-radius: 38% 62% 57% 43% / 49% 63% 37% 51%;
		scale: 1.035;
		translate: -12px -8px;
		background-position: 18px -12px;
	}
	100% {
		border-radius: 45% 55% 61% 39% / 43% 38% 62% 57%;
		rotate: 360deg;
		scale: 1;
		translate: 0 0;
		background-position: 0 0;
	}
}

[data-parallax] {
	translate: 0 var(--scroll-shift, 0px);
	will-change: translate;
}

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

.hero-copy {
	width: min(650px, 100%);
	justify-self: end;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	color: var(--blue);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.eyebrow > span {
	display: inline-block;
	width: 26px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
}

.hero .eyebrow,
.eyebrow-light {
	color: #a7e0ff;
}

.hero h1 {
	max-width: 700px;
	margin: 0;
	font-size: clamp(52px, 6.4vw, 90px);
	font-weight: 600;
	letter-spacing: -0.065em;
	line-height: 0.94;
}

.hero h1 em {
	color: #9bdcff;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
	letter-spacing: -0.045em;
}

.hero-lede {
	max-width: 610px;
	margin: 28px 0 0;
	color: rgba(239, 249, 255, 0.78);
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.hero-store-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0 0;
	padding: 0;
	border: 0;
}

.hero-store-link {
	display: flex;
	min-width: 190px;
	min-height: 58px;
	align-items: center;
	gap: 11px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 17px;
	color: white;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
	cursor: default;
	font: inherit;
	text-align: left;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.hero-store-link > span:last-child {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.hero-store-link small {
	color: rgba(237, 249, 255, 0.64);
	font-size: 9px;
}

.hero-store-link strong {
	font-size: 14px;
	letter-spacing: -0.02em;
}

.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 17px;
	font-size: 15px;
	font-weight: 600;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		background 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	outline: none;
}

.button-primary {
	color: white;
	background: linear-gradient(135deg, var(--blue), var(--blue-bright));
	box-shadow: 0 12px 28px rgba(4, 92, 149, 0.25);
}

.hero .button-primary {
	color: var(--blue-night);
	background: white;
	box-shadow: 0 16px 40px rgba(0, 31, 57, 0.25);
}

.button-quiet {
	color: white;
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
}

.button-white {
	color: var(--blue-night);
	background: white;
	box-shadow: 0 14px 36px rgba(0, 41, 73, 0.24);
}

.trust-line {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 34px;
	color: white;
}

.shield-mark {
	display: grid;
	width: 36px;
	height: 40px;
	place-items: center;
	border: 2px solid #8fe0bd;
	border-radius: 50% 50% 55% 55% / 35% 35% 68% 68%;
	color: #8fe0bd;
	font-weight: 700;
}

.trust-line div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.trust-line strong {
	font-size: 14px;
}
.trust-line small {
	color: rgba(234, 247, 255, 0.66);
	font-size: 12px;
}

.hero-visual {
	justify-self: start;
	perspective: 1300px;
}

.phone-glow {
	position: absolute;
	inset: 9% -25% 5%;
	border-radius: 50%;
	background: rgba(98, 205, 255, 0.28);
	filter: blur(70px);
	animation: phone-glow-breathe 7.5s ease-in-out infinite;
}

.phone-frame {
	position: relative;
	width: min(392px, 34vw);
	min-width: 340px;
	padding: 11px;
	border: 2px solid rgba(255, 255, 255, 0.32);
	border-radius: 54px;
	background: #071019;
	box-shadow:
		0 50px 90px rgba(0, 30, 54, 0.42),
		inset 0 0 0 2px #273644;
	transform: rotateY(-7deg) rotateX(2deg) rotateZ(2deg);
	animation: phone-float 7.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
	will-change: translate, rotate;
}

@keyframes phone-float {
	0% {
		translate: 0 0;
		rotate: 0deg;
	}
	25% {
		translate: 3px -8px;
		rotate: 0.35deg;
	}
	50% {
		translate: 0 -15px;
		rotate: 0deg;
	}
	75% {
		translate: -3px -8px;
		rotate: -0.35deg;
	}
	100% {
		translate: 0 0;
		rotate: 0deg;
	}
}

@keyframes phone-glow-breathe {
	0%,
	100% {
		opacity: 0.72;
		transform: scale(0.96);
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
}

.phone-screen {
	aspect-ratio: 1206 / 2622;
	border-radius: 44px;
	background: #e7f4fd;
	overflow: hidden;
}

.app-screenshot {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mini-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 26px;
	color: var(--ink);
}

.mini-header img {
	filter: brightness(0) saturate(100%) invert(13%) sepia(22%) saturate(1668%)
		hue-rotate(176deg) brightness(89%) contrast(94%);
}
.mini-menu {
	font-size: 24px;
	line-height: 1;
}
.mini-settings {
	font-size: 19px;
}

.debt-card {
	padding: 20px 18px 15px;
	border-radius: 27px;
	color: white;
	background: linear-gradient(135deg, var(--blue-bright), var(--blue));
	box-shadow: 0 18px 34px rgba(7, 105, 166, 0.28);
}

.debt-card-top {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 10px;
	align-items: start;
}

.loan-glyph,
.saved-icon {
	display: grid;
	place-items: center;
	color: white;
	background: rgba(255, 255, 255, 0.16);
}

.loan-glyph {
	width: 40px;
	height: 40px;
	border-radius: 13px;
	font-size: 23px;
}
.debt-card-top small {
	display: block;
	margin: 1px 0 4px;
	color: #caedff;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.13em;
}
.debt-card-top strong {
	display: block;
	font-size: 15px;
}

.progress-ring {
	display: flex;
	width: 64px;
	height: 64px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 7px solid #cbeeff;
	border-left-color: rgba(203, 238, 255, 0.34);
	border-radius: 50%;
}

.progress-ring b {
	font-size: 15px;
}
.progress-ring span {
	font-size: 7px;
}
.balance-label {
	margin-top: 20px;
	color: #caedff;
	font-size: 9px;
}
.balance-value {
	margin-top: 3px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.04em;
}
.balance-value span {
	color: #cbeeff;
}

.debt-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 18px;
	padding-top: 13px;
	border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.debt-stats > div {
	display: flex;
	align-items: center;
	gap: 6px;
}
.debt-stats i {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 8px;
	color: var(--blue);
	background: #d8f2ff;
	font-style: normal;
	font-weight: 700;
}
.debt-stats span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	color: #d8f2ff;
	font-size: 7px;
}
.debt-stats strong {
	color: white;
	font-size: 10px;
}

.pager {
	display: flex;
	justify-content: center;
	gap: 5px;
	padding: 15px 0;
}
.pager span,
.pager b {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #c8ddec;
}
.pager b {
	width: 18px;
	border-radius: 5px;
	background: var(--blue-bright);
}
.preview-title {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 600;
}
.quick-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 22px;
}
.quick-actions > div {
	display: flex;
	min-height: 54px;
	align-items: center;
	gap: 7px;
	padding: 8px;
	border-radius: 15px;
	background: white;
	box-shadow: 0 7px 16px rgba(23, 39, 65, 0.08);
}
.quick-actions i {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 9px;
	color: var(--blue);
	background: #edf8ff;
	font-style: normal;
}
.quick-actions span {
	flex: 1;
	font-size: 9px;
	font-weight: 600;
}
.quick-actions b {
	color: var(--blue);
	font-size: 17px;
}
.saved-debt {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 9px;
	align-items: center;
	padding: 12px;
	border-radius: 17px;
	background: white;
	box-shadow: 0 8px 20px rgba(23, 39, 65, 0.09);
}
.saved-icon {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--blue-bright), var(--blue));
}
.saved-debt strong,
.saved-debt small {
	display: block;
}
.saved-debt strong {
	font-size: 11px;
}
.saved-debt small {
	margin-top: 2px;
	overflow: hidden;
	color: var(--muted);
	font-size: 7px;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.saved-debt > span {
	color: var(--muted);
	font-size: 20px;
}

.proof-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	max-width: var(--content);
	margin: -38px auto 0;
	position: relative;
	z-index: 5;
	border: 1px solid var(--line);
	border-radius: 28px;
	background: white;
	box-shadow: var(--shadow);
}

.proof-strip > div {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 25px 32px;
	border-right: 1px solid var(--line);
}
.proof-strip > div:last-child {
	border-right: 0;
}
.proof-strip strong {
	font-size: 14px;
}
.proof-strip span {
	color: var(--muted);
	font-size: 12px;
}

.features {
	max-width: calc(var(--content) + (var(--page-pad) * 2));
	margin: 0 auto;
	padding-top: 150px;
	padding-bottom: 120px;
}

.section-heading {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 70px;
	align-items: end;
}
.section-heading .eyebrow {
	grid-column: 1 / -1;
	margin-bottom: 0;
}
.section-heading h2,
.workspace h2,
.legal-promo h2,
.support-content h2 {
	margin: 0;
	font-size: clamp(36px, 4.6vw, 62px);
	font-weight: 600;
	letter-spacing: -0.055em;
	line-height: 1.02;
}
.section-heading > p:last-child {
	max-width: 460px;
	margin: 0 0 5px;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.65;
}

.feature-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 18px;
	margin-top: 48px;
}

.feature-card {
	position: relative;
	min-height: 340px;
	padding: clamp(26px, 4vw, 42px);
	border: 1px solid rgba(181, 216, 238, 0.72);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 18px 55px rgba(25, 92, 133, 0.08);
	overflow: hidden;
}

.feature-card-large {
	grid-row: span 2;
	min-height: 700px;
	background: linear-gradient(155deg, #ffffff 10%, #e2f4ff 100%);
}
.feature-card::after {
	position: absolute;
	right: -90px;
	bottom: -90px;
	width: 240px;
	height: 240px;
	border: 1px solid rgba(13, 112, 177, 0.1);
	border-radius: 45% 55% 60% 40%;
	content: "";
}
.feature-icon {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 1px solid #b9ddf4;
	border-radius: 17px;
	color: var(--blue);
	background: #e6f6ff;
	font-size: 25px;
	font-weight: 600;
}
.feature-icon-green {
	color: var(--green-deep);
	border-color: #bce9d4;
	background: var(--green-soft);
}
.card-kicker {
	margin: 24px 0 8px;
	color: var(--blue);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.feature-card h3 {
	max-width: 520px;
	margin: 0;
	font-size: clamp(26px, 3.1vw, 43px);
	font-weight: 600;
	letter-spacing: -0.045em;
	line-height: 1.05;
}
.feature-card > p:not(.card-kicker) {
	max-width: 560px;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.65;
}

.timeline-visual {
	position: absolute;
	right: 42px;
	bottom: 45px;
	left: 42px;
	display: grid;
}
.timeline-visual::before {
	position: absolute;
	top: 13px;
	right: 4px;
	left: 4px;
	height: 2px;
	background: linear-gradient(90deg, var(--green), var(--blue-bright));
	content: "";
}
.timeline-visual > div {
	position: relative;
	display: grid;
	grid-template-columns: 90px 26px 1fr;
	gap: 12px;
	align-items: center;
	min-height: 92px;
}
.timeline-visual span {
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
}
.timeline-visual b {
	z-index: 2;
	width: 25px;
	height: 25px;
	border: 7px solid white;
	border-radius: 50%;
	background: var(--blue);
	box-shadow: 0 0 0 2px var(--blue);
}
.timeline-visual small {
	padding: 18px 20px;
	border: 1px solid var(--line);
	border-radius: 16px;
	color: var(--ink);
	background: white;
	box-shadow: 0 8px 22px rgba(4, 79, 126, 0.08);
	font-size: 12px;
}
.mini-progress {
	height: 12px;
	margin-top: 40px;
	padding: 2px;
	border-radius: 10px;
	background: #dfeef7;
}
.mini-progress span {
	display: block;
	height: 100%;
	border-radius: 9px;
	background: linear-gradient(90deg, var(--green), #28c77d);
}
.mini-progress-label {
	display: flex;
	justify-content: space-between;
	margin-top: 12px;
	color: var(--muted);
	font-size: 12px;
}
.mini-progress-label b {
	color: var(--ink);
}
.text-link {
	display: inline-flex;
	gap: 10px;
	margin-top: 28px;
	color: var(--blue);
	font-size: 13px;
	font-weight: 600;
}
.text-link:hover span {
	transform: translateX(3px);
}
.text-link span {
	transition: transform 180ms ease;
}

.workspace {
	padding-top: 100px;
	padding-bottom: 100px;
	background: white;
}
.workspace-panel {
	display: grid;
	max-width: var(--content);
	grid-template-columns: 0.84fr 1.16fr;
	gap: clamp(38px, 7vw, 100px);
	align-items: center;
	margin: 0 auto;
	padding: clamp(38px, 6vw, 76px);
	border-radius: 44px;
	color: white;
	background: linear-gradient(
		135deg,
		#053b62,
		var(--blue-deep) 58%,
		var(--blue-bright)
	);
	box-shadow: 0 35px 90px rgba(0, 62, 104, 0.22);
	overflow: hidden;
}
.workspace-copy {
	position: relative;
	z-index: 2;
}
.workspace-copy > p:not(.eyebrow) {
	margin: 24px 0 0;
	color: rgba(232, 247, 255, 0.74);
	font-size: 16px;
	line-height: 1.65;
}
.check-list {
	display: grid;
	gap: 13px;
	margin: 29px 0 0;
	padding: 0;
	list-style: none;
	color: rgba(243, 251, 255, 0.88);
	font-size: 13px;
}
.check-list li {
	display: flex;
	gap: 11px;
	align-items: center;
}
.check-list span {
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	border-radius: 8px;
	color: #9df0ca;
	background: rgba(157, 240, 202, 0.12);
}

.schedule-card {
	position: relative;
	z-index: 2;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 28px;
	color: var(--ink);
	background: rgba(244, 251, 255, 0.94);
	box-shadow: 0 25px 60px rgba(0, 29, 52, 0.23);
	transform: rotate(1.4deg);
}
.schedule-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 3px 4px 18px;
}
.schedule-head span {
	font-size: 16px;
	font-weight: 700;
}
.schedule-head b {
	padding: 7px 11px;
	border-radius: 20px;
	color: var(--blue);
	background: #dcf2ff;
	font-size: 10px;
}
.schedule-row {
	display: grid;
	min-height: 48px;
	grid-template-columns: 0.72fr 1fr 0.8fr 0.8fr;
	align-items: center;
	border-top: 1px solid #d9e9f3;
	color: var(--muted);
	font-size: 12px;
}
.schedule-row span,
.schedule-row strong {
	padding-inline: 8px;
}
.schedule-row span:first-child {
	color: var(--blue);
	font-weight: 600;
}
.schedule-row strong {
	color: var(--blue);
}
.schedule-labels {
	min-height: 38px;
	border-radius: 10px 10px 0 0;
	color: white;
	background: var(--blue);
	font-size: 10px;
	font-weight: 600;
}
.schedule-labels span:first-child {
	color: white;
}
.schedule-row.current {
	position: relative;
	margin-inline: -8px;
	padding-inline: 8px;
	border-color: transparent;
	border-radius: 12px;
	color: var(--green-deep);
	background: #dcf7ea;
	box-shadow: 0 6px 17px rgba(12, 157, 94, 0.12);
}
.schedule-row.current span:first-child,
.schedule-row.current strong {
	color: var(--green-deep);
}
.schedule-footer {
	display: flex;
	align-items: end;
	justify-content: space-between;
	padding: 19px 4px 2px;
}
.schedule-footer div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.schedule-footer small {
	color: var(--muted);
}
.schedule-footer strong {
	font-size: 19px;
}
.schedule-footer > span {
	color: var(--blue);
	font-size: 11px;
	font-weight: 600;
}

.download-promo {
	padding-top: 110px;
	padding-bottom: 110px;
	background: #f5fbff;
}

.download-card {
	position: relative;
	display: grid;
	max-width: var(--content);
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(38px, 7vw, 100px);
	align-items: center;
	margin: 0 auto;
	padding: clamp(38px, 6vw, 74px);
	border-radius: 44px;
	color: white;
	background:
		radial-gradient(
			circle at 82% 24%,
			rgba(88, 200, 255, 0.35),
			transparent 30%
		),
		linear-gradient(135deg, #00365f, #066fae 62%, #0a91d5);
	box-shadow: 0 32px 80px rgba(2, 73, 119, 0.2);
	overflow: hidden;
}

.download-copy {
	position: relative;
	z-index: 2;
	max-width: 650px;
}

.download-copy h2 {
	margin: 0;
	font-size: clamp(36px, 5vw, 64px);
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.download-copy > p:last-child {
	max-width: 580px;
	margin: 22px 0 0;
	color: rgba(237, 249, 255, 0.72);
	font-size: 16px;
	line-height: 1.65;
}

.store-links {
	position: relative;
	z-index: 2;
	display: grid;
	min-width: 250px;
	gap: 12px;
	margin: 0;
	padding: 0;
	border: 0;
}

.store-link {
	display: flex;
	min-height: 70px;
	align-items: center;
	gap: 14px;
	padding: 12px 18px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 19px;
	color: inherit;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
	font: inherit;
	text-align: left;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.store-link.is-disabled {
	cursor: default;
}

.store-link:not(:disabled) {
	cursor: pointer;
	transition:
		transform 180ms ease,
		border-color 180ms ease,
		background 180ms ease;
}

.store-link:not(:disabled):hover,
.store-link:not(:disabled):focus-visible {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.46);
	background: rgba(255, 255, 255, 0.16);
	outline: none;
}

.store-link > span:last-child {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.store-link small {
	color: rgba(240, 250, 255, 0.66);
	font-size: 10px;
}

.store-link strong {
	font-size: 17px;
	letter-spacing: -0.025em;
}

.store-mark {
	position: relative;
	display: grid;
	width: 36px;
	height: 36px;
	flex: 0 0 auto;
	place-items: center;
}

.phone-mark::before {
	width: 18px;
	height: 27px;
	border: 2px solid white;
	border-radius: 5px;
	content: "";
}

.phone-mark::after {
	position: absolute;
	bottom: 6px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: white;
	content: "";
}

.play-mark::before {
	width: 0;
	height: 0;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 23px solid white;
	content: "";
	filter: drop-shadow(-5px 0 0 rgba(110, 215, 255, 0.55));
}

.hero-store-link .store-mark {
	width: 30px;
	height: 30px;
}

.hero-store-link .phone-mark::before {
	width: 15px;
	height: 23px;
}

.hero-store-link .phone-mark::after {
	bottom: 4px;
}

.hero-store-link .play-mark::before {
	border-top-width: 11px;
	border-bottom-width: 11px;
	border-left-width: 19px;
}

.download-current {
	position: absolute;
	right: -90px;
	bottom: -140px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(190, 232, 255, 0.16);
	border-radius: 44% 56% 62% 38% / 48% 40% 60% 52%;
	animation: download-current-flow 18s linear infinite;
}

.download-current span {
	position: absolute;
	inset: calc(var(--current-index, 1) * 32px);
	border: 1px solid rgba(190, 232, 255, 0.16);
	border-radius: inherit;
}

@keyframes download-current-flow {
	from {
		rotate: 0deg;
	}
	to {
		rotate: 360deg;
	}
}

.legal-promo {
	padding-top: 120px;
	padding-bottom: 120px;
	background: white;
}
.legal-promo-card {
	display: grid;
	max-width: var(--content);
	grid-template-columns: auto 1fr minmax(260px, 0.58fr);
	gap: 30px;
	align-items: center;
	margin: 0 auto;
	padding: clamp(30px, 5vw, 58px);
	border: 1px solid var(--line);
	border-radius: 38px;
	background: linear-gradient(145deg, #f4fbff, #e3f4ff);
}
.legal-symbol {
	display: grid;
	width: 64px;
	height: 70px;
	place-items: center;
	border: 2px solid var(--blue);
	border-radius: 50% 50% 58% 58% / 35% 35% 67% 67%;
	color: var(--blue);
	font-size: 22px;
	font-weight: 700;
}
.legal-promo h2 {
	font-size: clamp(30px, 3.7vw, 50px);
}
.legal-promo-card > div:nth-child(2) > p:last-child {
	max-width: 640px;
	margin: 16px 0 0;
	color: var(--muted);
	line-height: 1.65;
}
.legal-links {
	display: grid;
	gap: 8px;
}
.legal-links a {
	display: flex;
	min-height: 55px;
	align-items: center;
	justify-content: space-between;
	padding: 0 17px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: white;
	font-size: 13px;
	font-weight: 600;
	transition:
		transform 180ms ease,
		border-color 180ms ease;
}
.legal-links a:hover {
	transform: translateX(3px);
	border-color: #89c9ed;
}
.legal-links b {
	color: var(--blue);
}

.site-footer {
	padding: 54px var(--page-pad) 28px;
	color: white;
	background: var(--blue-night);
}
.footer-top,
.footer-bottom {
	display: flex;
	max-width: var(--content);
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
}
.footer-top {
	padding-bottom: 40px;
}
.footer-top p {
	margin: 0;
	color: rgba(234, 247, 255, 0.62);
	font-size: 13px;
}
.footer-top nav {
	display: flex;
	gap: 8px;
}
.footer-top nav a {
	padding: 9px 11px;
	color: rgba(238, 249, 255, 0.72);
	font-size: 12px;
}
.footer-top nav a:hover {
	color: white;
}
.footer-bottom {
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(236, 248, 255, 0.48);
	font-size: 11px;
}

.inner-page {
	background: var(--page);
}
.inner-header {
	position: fixed;
}
.inner-hero {
	position: relative;
	min-height: 480px;
	padding: 160px var(--page-pad) 86px;
	color: white;
	background:
		radial-gradient(circle at 82% 8%, rgba(78, 190, 246, 0.38), transparent 34%),
		linear-gradient(
			135deg,
			var(--blue-night),
			var(--blue-deep) 58%,
			var(--blue-bright)
		);
	overflow: hidden;
}
.inner-hero::after {
	position: absolute;
	right: -120px;
	bottom: -230px;
	width: 560px;
	height: 560px;
	border: 1px solid rgba(200, 236, 255, 0.22);
	border-radius: 43% 57% 61% 39%;
	box-shadow:
		0 0 0 42px rgba(200, 236, 255, 0.05),
		0 0 0 84px rgba(200, 236, 255, 0.04),
		0 0 0 126px rgba(200, 236, 255, 0.03);
	content: "";
	transform: rotate(18deg);
}
.inner-hero-content {
	position: relative;
	z-index: 2;
	max-width: var(--content);
	margin: 0 auto;
}
.document-icon {
	display: grid;
	width: 56px;
	height: 60px;
	place-items: center;
	margin-bottom: 24px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.1);
	font-size: 24px;
	font-weight: 600;
}
.inner-hero h1 {
	margin: 0;
	font-size: clamp(48px, 7vw, 78px);
	font-weight: 600;
	letter-spacing: -0.06em;
	line-height: 1;
}
.inner-hero p:not(.eyebrow) {
	max-width: 690px;
	margin: 20px 0 0;
	color: rgba(237, 249, 255, 0.74);
	font-size: 18px;
	line-height: 1.6;
}
.inner-hero .button {
	margin-top: 30px;
}

.legal-layout {
	display: grid;
	max-width: calc(var(--content) + (var(--page-pad) * 2));
	grid-template-columns: 255px minmax(0, 1fr);
	gap: 36px;
	margin: 0 auto;
	padding-top: 64px;
	padding-bottom: 110px;
}
.legal-toc {
	position: sticky;
	top: calc(var(--header-top) + var(--header-height) + var(--header-clearance));
	align-self: start;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(18px);
}
.legal-toc strong {
	display: block;
	margin-bottom: 13px;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.legal-toc nav {
	display: grid;
	gap: 2px;
}
.legal-toc a {
	padding: 8px 10px;
	border-radius: 10px;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.3;
	transition:
		color 160ms ease,
		background 160ms ease;
}
.legal-toc a:hover,
.legal-toc a:focus-visible {
	color: var(--blue);
	background: #e8f6ff;
	outline: none;
}
.legal-document {
	padding: clamp(24px, 5vw, 58px);
	border: 1px solid var(--line);
	border-radius: 32px;
	background: white;
	box-shadow: 0 20px 60px rgba(22, 89, 131, 0.08);
}
.legal-effective {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 12px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--line);
}
.legal-effective span {
	color: var(--muted);
	font-size: 12px;
}
.legal-effective a {
	color: var(--blue);
	font-size: 12px;
	font-weight: 600;
}
.legal-section {
	scroll-margin-top: calc(
		var(--header-top) +
		var(--header-height) +
		var(--header-clearance)
	);
	padding: 30px 0;
	border-bottom: 1px solid #e3edf4;
}
.legal-section:last-of-type {
	border-bottom: 0;
}
.legal-section h2 {
	margin: 0 0 15px;
	font-size: clamp(20px, 2.4vw, 27px);
	font-weight: 600;
	letter-spacing: -0.025em;
}
.legal-section p,
.legal-section li {
	color: #566d86;
	font-size: 15px;
	line-height: 1.75;
}
.legal-section p {
	margin: 0;
}
.legal-section p + p {
	margin-top: 12px;
}
.legal-section ul {
	display: grid;
	gap: 9px;
	margin: 15px 0 0;
	padding: 0;
	list-style: none;
}
.legal-section li {
	position: relative;
	padding-left: 24px;
}
.legal-section li::before {
	position: absolute;
	top: 0.72em;
	left: 3px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--blue-bright);
	content: "";
}
.legal-contact-note {
	margin-top: 28px;
	padding: 24px;
	border-radius: 20px;
	color: var(--blue-night);
	background: #e7f6ff;
}
.legal-contact-note strong {
	display: block;
	margin-bottom: 5px;
}
.legal-contact-note a {
	color: var(--blue);
	font-weight: 600;
}

.support-hero {
	min-height: 560px;
}
.support-content {
	max-width: calc(var(--content) + (var(--page-pad) * 2));
	margin: 0 auto;
	padding-top: 100px;
	padding-bottom: 110px;
}
.support-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 60px;
	align-items: end;
}
.support-intro .eyebrow {
	grid-column: 1 / -1;
	margin-bottom: 0;
}
.support-intro > p:last-child {
	margin: 0 0 5px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.65;
}
.support-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 46px;
}
.support-card {
	min-height: 300px;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.86);
}
.support-card h3 {
	margin: 24px 0 0;
	font-size: 25px;
	letter-spacing: -0.035em;
}
.support-card p {
	margin: 13px 0 0;
	color: var(--muted);
	line-height: 1.65;
}
.contact-panel {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
	margin-top: 18px;
	padding: 42px;
	border-radius: 32px;
	color: white;
	background: linear-gradient(135deg, var(--blue-night), var(--blue));
}
.contact-panel h2 {
	font-size: clamp(31px, 4vw, 48px);
}
.contact-panel p:last-child {
	max-width: 700px;
	margin: 14px 0 0;
	color: rgba(236, 249, 255, 0.7);
	line-height: 1.65;
}
.contact-panel .card-kicker {
	color: #a7e0ff;
}

.website-contact {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1fr);
	gap: clamp(36px, 7vw, 90px);
	align-items: center;
	margin-top: 80px;
	padding: clamp(30px, 5vw, 62px);
	border-radius: 38px;
	color: white;
	background:
		radial-gradient(circle at 8% 10%, rgba(78, 194, 249, 0.26), transparent 32%),
		linear-gradient(135deg, var(--blue-night), var(--blue));
	box-shadow: 0 30px 80px rgba(3, 67, 110, 0.2);
}

.contact-copy h2 {
	margin: 0;
	font-size: clamp(38px, 5vw, 62px);
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.contact-copy > p:not(.card-kicker) {
	margin: 20px 0 0;
	color: rgba(237, 249, 255, 0.72);
	line-height: 1.65;
}

.contact-copy .card-kicker {
	color: #a7e0ff;
}

.contact-recipient {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 32px;
}

.contact-recipient > span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.1);
}

.contact-recipient > div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.contact-recipient small {
	color: #9bdcff;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.contact-recipient strong {
	font-size: 14px;
}

.support-form {
	position: relative;
	display: grid;
	gap: 17px;
	padding: clamp(22px, 4vw, 34px);
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 28px;
	color: var(--ink);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 24px 60px rgba(0, 31, 55, 0.24);
}

.category-fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.category-fieldset legend,
.form-field > span {
	margin-bottom: 9px;
	color: #27425b;
	font-size: 12px;
	font-weight: 700;
}

.category-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.category-option {
	position: relative;
	display: flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border: 1px solid #d8e8f2;
	border-radius: 15px;
	color: var(--blue);
	background: #f2f8fc;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	transition:
		transform 170ms ease,
		color 170ms ease,
		border-color 170ms ease,
		background 170ms ease;
}

.category-option:hover {
	transform: translateY(-1px);
	border-color: #9bd5f3;
}

.category-option:has(input:checked) {
	border-color: var(--blue);
	color: white;
	background: linear-gradient(135deg, var(--blue-bright), var(--blue));
	box-shadow: 0 8px 20px rgba(8, 113, 177, 0.2);
}

.category-option:has(input:focus-visible) {
	outline: 3px solid rgba(10, 137, 206, 0.25);
	outline-offset: 2px;
}

.category-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.category-symbol {
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	border-radius: 8px;
	background: rgba(13, 112, 177, 0.09);
	font-size: 12px;
	font-weight: 700;
}

.category-option:has(input:checked) .category-symbol {
	background: rgba(255, 255, 255, 0.16);
}

.form-field {
	display: flex;
	flex-direction: column;
}

.form-field input,
.form-field textarea {
	width: 100%;
	border: 1px solid #d7e7f1;
	border-radius: 15px;
	outline: none;
	color: var(--ink);
	background: #f8fbfd;
	font: inherit;
	font-size: 14px;
	transition:
		border-color 170ms ease,
		box-shadow 170ms ease,
		background 170ms ease;
}

.form-field input {
	height: 52px;
	padding: 0 16px;
}

.form-field textarea {
	min-height: 148px;
	padding: 15px 16px;
	line-height: 1.55;
	resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
	border-color: #70c4ee;
	background: white;
	box-shadow: 0 0 0 4px rgba(10, 137, 206, 0.11);
}

.form-field small {
	align-self: flex-end;
	margin-top: 6px;
	color: #8195a7;
	font-size: 10px;
}

.support-submit {
	display: flex;
	min-height: 56px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 17px;
	color: white;
	background: linear-gradient(135deg, #149ddd, #0a86c8 55%, #075f9f);
	box-shadow: 0 14px 30px rgba(7, 105, 166, 0.25);
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	transition:
		transform 170ms ease,
		box-shadow 170ms ease,
		opacity 170ms ease;
}

.support-submit:hover:not(:disabled),
.support-submit:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 17px 34px rgba(7, 105, 166, 0.31);
	outline: none;
}

.support-submit:disabled {
	cursor: wait;
	opacity: 0.72;
}

.send-symbol {
	display: grid;
	width: 27px;
	height: 27px;
	place-items: center;
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.15);
}

.support-status {
	margin: -2px 0 0;
	color: #758a9d;
	font-size: 11px;
	line-height: 1.5;
	text-align: center;
}

.support-status[data-state="success"] {
	color: var(--green-deep);
	font-weight: 600;
}

.support-status[data-state="error"] {
	color: #b42338;
	font-weight: 600;
}

.support-status[data-state="sending"] {
	color: var(--blue);
}

.contact-honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
}

.not-found {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 60px max(24px, calc((100vw - 760px) / 2));
	color: white;
	background:
		radial-gradient(
			circle at 76% 18%,
			rgba(72, 189, 246, 0.35),
			transparent 34%
		),
		linear-gradient(135deg, var(--blue-night), var(--blue));
}

.not-found img {
	margin-bottom: 70px;
}
.not-found h1 {
	margin: 0;
	font-size: clamp(50px, 9vw, 92px);
	letter-spacing: -0.065em;
	line-height: 0.95;
}
.not-found > p:not(.eyebrow) {
	max-width: 590px;
	margin: 24px 0 0;
	color: rgba(237, 249, 255, 0.72);
	font-size: 18px;
	line-height: 1.6;
}
.not-found .button {
	margin-top: 34px;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-delay {
	transition-delay: 110ms;
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1120px) {
	.hero {
		grid-template-columns: 1fr 360px;
		gap: 36px;
	}
	.phone-frame {
		width: 340px;
		min-width: 0;
	}
	.phone-screen {
		min-height: 0;
	}
	.proof-strip {
		width: calc(100% - 40px);
	}
	.legal-promo-card {
		grid-template-columns: auto 1fr;
	}
	.legal-links {
		grid-column: 1 / -1;
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.hero {
		min-height: auto;
		grid-template-columns: 1fr;
		padding-top: 165px;
		text-align: center;
	}
	.hero-copy {
		justify-self: center;
	}
	.hero .eyebrow,
	.hero-actions,
	.hero-store-links,
	.trust-line {
		justify-content: center;
	}
	.hero-lede {
		margin-inline: auto;
	}
	.hero-visual {
		justify-self: center;
		margin-top: 18px;
	}
	.phone-frame {
		transform: none;
	}
	.proof-strip {
		margin-top: -28px;
	}
	.feature-grid {
		grid-template-columns: 1fr;
	}
	.feature-card-large {
		grid-row: auto;
		min-height: 680px;
	}
	.workspace-panel {
		grid-template-columns: 1fr;
	}
	.download-card {
		grid-template-columns: 1fr;
	}
	.store-links {
		min-width: 0;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.schedule-card {
		transform: none;
	}
	.legal-layout {
		grid-template-columns: 1fr;
	}
	.legal-toc {
		position: static;
		padding: 16px;
		overflow: hidden;
	}
	.legal-toc nav {
		display: flex;
		overflow-x: auto;
		padding-bottom: 4px;
		scrollbar-width: none;
	}
	.legal-toc nav::-webkit-scrollbar {
		display: none;
	}
	.legal-toc a {
		flex: 0 0 auto;
		padding: 9px 12px;
		background: #eef8fe;
	}
}

@media (max-width: 760px) {
	:root {
		--page-pad: 20px;
		--radius-lg: 28px;
		--header-top: 12px;
		--header-height: 62px;
		--header-clearance: 16px;
	}
	.site-header {
		width: calc(100% - 24px);
		padding: 0 9px 0 18px;
		border-radius: 20px;
	}
	.brand img {
		width: 126px;
	}
	.menu-button {
		position: relative;
		display: flex;
	}
	.site-nav {
		position: fixed;
		top: 84px;
		right: 12px;
		left: 12px;
		display: grid;
		gap: 4px;
		padding: 12px;
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 22px;
		background: rgba(0, 45, 78, 0.94);
		box-shadow: 0 22px 50px rgba(0, 27, 48, 0.3);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition:
			opacity 180ms ease,
			transform 180ms ease;
		backdrop-filter: blur(22px);
	}
	.site-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}
	.site-nav a {
		padding: 14px 15px;
	}
	.site-nav .nav-pill {
		margin: 4px 0 0;
		text-align: center;
	}
	.site-header.is-scrolled {
		--nav-text: rgba(255, 255, 255, 0.8);
		--nav-hover: white;
		--nav-hover-bg: rgba(255, 255, 255, 0.09);
		--nav-pill-text: var(--blue-night);
		--nav-pill-bg: white;
		--nav-pill-hover-bg: #e9f7ff;
	}
	.hero {
		padding-top: 130px;
		padding-bottom: 80px;
	}
	.hero h1 {
		font-size: clamp(46px, 14vw, 66px);
	}
	.hero-lede {
		font-size: 16px;
	}
	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.hero-store-links {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.hero-store-link {
		min-width: 0;
	}
	.button {
		width: 100%;
	}
	.trust-line {
		align-items: center;
		text-align: left;
	}
	.phone-frame {
		width: min(340px, 92vw);
	}
	.phone-screen {
		min-height: 0;
	}
	.proof-strip {
		grid-template-columns: 1fr;
	}
	.proof-strip > div {
		padding: 19px 22px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}
	.proof-strip > div:last-child {
		border-bottom: 0;
	}
	.features {
		padding-top: 100px;
		padding-bottom: 80px;
	}
	.section-heading,
	.support-intro {
		grid-template-columns: 1fr;
	}
	.section-heading h2,
	.support-intro h2 {
		font-size: 40px;
	}
	.feature-grid {
		margin-top: 34px;
	}
	.feature-card {
		min-height: 320px;
		padding: 27px;
	}
	.feature-card-large {
		min-height: 650px;
	}
	.timeline-visual {
		right: 26px;
		bottom: 26px;
		left: 26px;
	}
	.timeline-visual > div {
		grid-template-columns: 62px 22px 1fr;
		gap: 8px;
	}
	.timeline-visual b {
		width: 20px;
		height: 20px;
		border-width: 6px;
	}
	.timeline-visual small {
		padding: 14px 12px;
	}
	.workspace {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.workspace-panel {
		padding: 30px 20px;
		border-radius: 30px;
	}
	.schedule-card {
		padding: 15px 12px;
		border-radius: 22px;
	}
	.schedule-row {
		font-size: 10px;
	}
	.schedule-row span,
	.schedule-row strong {
		padding-inline: 4px;
	}
	.schedule-footer {
		align-items: start;
		gap: 10px;
	}
	.schedule-footer > span {
		text-align: right;
	}
	.legal-promo {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.legal-promo-card {
		grid-template-columns: 1fr;
		padding: 28px;
	}
	.legal-symbol {
		width: 54px;
		height: 59px;
	}
	.legal-links {
		grid-column: auto;
		grid-template-columns: 1fr;
	}
	.footer-top,
	.footer-bottom {
		align-items: flex-start;
	}
	.footer-top {
		flex-direction: column;
		gap: 22px;
	}
	.footer-top nav {
		flex-wrap: wrap;
	}
	.footer-bottom {
		gap: 20px;
	}
	.inner-hero {
		min-height: 470px;
		padding-top: 130px;
		padding-bottom: 70px;
	}
	.inner-hero h1 {
		font-size: 50px;
	}
	.inner-hero p:not(.eyebrow) {
		font-size: 16px;
	}
	.legal-layout {
		gap: 18px;
		padding-top: 30px;
		padding-bottom: 70px;
	}
	.legal-document {
		padding: 24px 20px;
		border-radius: 25px;
	}
	.legal-effective {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}
	.legal-section {
		padding: 25px 0;
	}
	.legal-section p,
	.legal-section li {
		font-size: 14px;
	}
	.support-content {
		padding-top: 70px;
		padding-bottom: 80px;
	}
	.support-grid {
		grid-template-columns: 1fr;
		margin-top: 32px;
	}
	.support-card {
		min-height: 270px;
		padding: 27px;
	}
	.contact-panel {
		grid-template-columns: 1fr;
		padding: 30px 25px;
	}
	.website-contact {
		grid-template-columns: 1fr;
		margin-top: 54px;
		padding: 30px 24px;
		border-radius: 30px;
	}
	.download-promo {
		padding-top: 74px;
		padding-bottom: 74px;
	}
	.download-card {
		padding: 34px 25px;
		border-radius: 30px;
	}
	.store-links {
		grid-template-columns: 1fr;
	}
	.category-options {
		grid-template-columns: 1fr;
	}
	.category-option {
		justify-content: flex-start;
		padding-inline: 15px;
	}
}

@media (max-width: 380px) {
	.hero-store-links {
		grid-template-columns: 1fr;
	}
	.phone-frame {
		width: 310px;
	}
	.phone-screen {
		min-height: 0;
	}
	.debt-card {
		padding-inline: 13px;
	}
	.debt-stats i {
		width: 24px;
		height: 24px;
	}
	.debt-stats {
		gap: 3px;
	}
	.feature-card-large {
		min-height: 680px;
	}
	.timeline-visual > div {
		grid-template-columns: 1fr;
		gap: 4px;
		padding: 8px 0;
	}
	.timeline-visual::before,
	.timeline-visual b {
		display: none;
	}
	.schedule-footer {
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		scroll-behavior: auto;
		animation-duration: 0.01ms;
		animation-iteration-count: 1;
		transition-duration: 0.01ms;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
	[data-parallax] {
		translate: none;
	}
}
