:root {
	--electric: #168cff;
	--cyan: #29e0ed;
	--ice: #c8f8ff;
	--navy: #031329;
	--navy-2: #061c3a;
	--navy-3: #0b2852;
	--white: #ffffff;
	--paper: #f4f8ff;
	--ink: #08152f;
	--muted: #68758d;
	--line: #dbe4f2;
	--warning: #ffd274;
	--sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
	--serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
	--radius: 28px;
	--shadow: 0 34px 90px rgba(3, 19, 41, 0.28);
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { background: var(--electric); color: var(--white); }

.shell {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

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

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid transparent;
	background: rgba(3, 19, 41, 0.93);
	transition: border-color 180ms ease, box-shadow 180ms ease;
	backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
	border-color: rgba(255, 255, 255, 0.11);
	box-shadow: 0 14px 44px rgba(0, 0, 0, 0.16);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	width: min(1320px, calc(100% - 48px));
	min-height: 86px;
	margin-inline: auto;
}

.brand-lockup {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--white);
	text-decoration: none;
}

.brand-symbol {
	flex: 0 0 auto;
	width: 42px;
	height: 44px;
	object-fit: contain;
}

.brand-copy { display: flex; flex-direction: column; }

.brand-name {
	font-size: 1.43rem;
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 0.92;
}

.brand-tagline {
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.56rem;
	font-weight: 500;
	letter-spacing: 0.005em;
	line-height: 1;
}

.main-nav {
	display: flex;
	justify-content: center;
	gap: clamp(22px, 3vw, 42px);
}

.main-nav a,
.footer-nav a,
.footer-nav button {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.8rem;
	font-weight: 650;
	text-decoration: none;
	transition: color 160ms ease;
}

.main-nav a { position: relative; padding: 12px 0; }

.main-nav a::after {
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 1px;
	background: var(--cyan);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-nav button:hover,
.footer-nav button:focus-visible { color: var(--white); }
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.menu-button {
	display: none;
	padding: 9px 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: transparent;
	color: var(--white);
	font-size: 0.8rem;
	font-weight: 700;
	cursor: pointer;
}

.nav-action-mobile { display: none; }

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 24px;
	border: 1px solid var(--electric);
	border-radius: 999px;
	background: var(--electric);
	box-shadow: 0 14px 34px rgba(22, 140, 255, 0.26);
	color: var(--white);
	font-size: 0.84rem;
	font-weight: 750;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
	border-color: var(--cyan);
	background: #0f72e5;
	box-shadow: 0 18px 42px rgba(22, 140, 255, 0.38);
	transform: translateY(-2px);
}

.button-small {
	min-height: 42px;
	padding: 10px 18px;
	font-size: 0.76rem;
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(400px, 0.94fr);
	align-items: center;
	gap: clamp(50px, 7vw, 100px);
	width: min(100%, 1440px);
	min-height: 780px;
	padding: 86px max(24px, calc((100% - 1180px) / 2)) 104px;
	background: var(--navy);
	color: var(--white);
	overflow: hidden;
}

.hero-glow {
	position: absolute;
	top: -42%;
	right: -14%;
	width: 760px;
	height: 760px;
	border-radius: 50%;
	background: rgba(20, 198, 255, 0.18);
	filter: blur(90px);
	pointer-events: none;
}

.hero::before {
	position: absolute;
	top: 18%;
	right: 22%;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: rgba(22, 98, 255, 0.22);
	content: "";
	filter: blur(95px);
}

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

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 22px;
	color: var(--electric);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.hero .eyebrow { color: var(--cyan); }
.eyebrow > span { width: 22px; height: 2px; background: currentColor; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin-top: 0; }

h1,
h2 {
	font-family: var(--serif);
	font-weight: 400;
	letter-spacing: -0.05em;
}

h1 {
	max-width: 760px;
	margin-bottom: 28px;
	font-size: clamp(4.6rem, 7.1vw, 7.2rem);
	line-height: 0.91;
}

h1 em { color: var(--cyan); font-weight: inherit; }

h2 {
	margin-bottom: 0;
	font-size: clamp(3rem, 5.2vw, 5.25rem);
	line-height: 0.98;
}

h3 { margin-bottom: 14px; font-size: 1.25rem; line-height: 1.25; }

.lead {
	max-width: 640px;
	margin: 0;
	color: rgba(255, 255, 255, 0.67);
	font-size: clamp(1.06rem, 1.8vw, 1.24rem);
	line-height: 1.65;
}

.actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }

.text-link {
	padding: 7px 0 5px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.55);
	color: var(--white);
	font-size: 0.82rem;
	font-weight: 750;
	text-decoration: none;
	transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible { border-color: var(--cyan); color: var(--cyan); }

.availability {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 28px 0 0;
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.74rem;
	font-weight: 650;
}

.availability span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #52e0a4;
	box-shadow: 0 0 0 5px rgba(82, 224, 164, 0.12);
}

.hero-visual { min-height: 560px; }

.hero-symbol {
	position: absolute;
	top: 8px;
	right: 0;
	width: min(100%, 500px);
	height: auto;
	aspect-ratio: 1;
	padding: clamp(42px, 7vw, 78px);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 48px;
	background: var(--navy-2);
	box-shadow: 0 38px 100px rgba(0, 0, 0, 0.34);
	object-fit: contain;
	transform: rotate(2deg);
}

.call-card {
	position: absolute;
	right: clamp(12px, 4vw, 70px);
	bottom: 0;
	left: -38px;
	max-width: 430px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 26px;
	background: rgba(8, 32, 70, 0.96);
	box-shadow: var(--shadow);
	color: var(--white);
	transform: rotate(-2deg);
	backdrop-filter: blur(18px);
}

.call-card-top,
.confidence-row,
.signal-panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.call-card-top {
	color: rgba(255, 255, 255, 0.53);
	font-size: 0.67rem;
	font-weight: 750;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.status {
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--warning);
	color: var(--navy);
	font-size: 0.58rem;
}

.phone-number {
	margin: 50px 0 4px;
	font-family: var(--serif);
	font-size: clamp(1.8rem, 3vw, 2.55rem);
	line-height: 1.05;
}

.call-type { margin: 0 0 44px; color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

.confidence-row {
	padding-top: 17px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.73rem;
}

.confidence-row span { color: rgba(255, 255, 255, 0.54); }
.confidence-row strong { color: #62e5b2; }

.trust-bar { border-top: 1px solid rgba(255, 255, 255, 0.1); background: var(--navy-2); color: var(--white); }

.trust-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	min-height: 98px;
}

.trust-inner p {
	margin: 0;
	color: rgba(255, 255, 255, 0.44);
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.trust-inner ul { display: flex; gap: 42px; margin: 0; padding: 0; list-style: none; }
.trust-inner li { position: relative; font-size: 0.82rem; font-weight: 650; }

.trust-inner li + li::before {
	position: absolute;
	top: 50%;
	left: -22px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--cyan);
	content: "";
	transform: translateY(-50%);
}

.section { padding-top: 120px; padding-bottom: 120px; }

.section-intro {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	align-items: end;
	gap: clamp(50px, 9vw, 130px);
}

.section-intro > p {
	max-width: 470px;
	margin: 0 0 6px;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.75;
}

.steps { margin-top: 68px; border-top: 1px solid var(--line); }

.step {
	display: grid;
	grid-template-columns: minmax(180px, 0.6fr) 1.4fr;
	gap: 40px;
	padding: 42px 0;
	border-bottom: 1px solid var(--line);
	transition: padding-left 180ms ease;
}

.step:hover { padding-left: 12px; }
.step-number { margin: 2px 0 0; color: var(--electric); font-family: var(--serif); font-size: 1rem; }

.step > div {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: start;
	gap: 36px;
}

.step h3,
.step p { margin-top: 0; }
.step h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
.step > div p { max-width: 490px; margin-bottom: 0; color: var(--muted); }

.protection { background: var(--navy); color: var(--white); }

.protection-grid {
	display: grid;
	grid-template-columns: 0.88fr 1.12fr;
	align-items: center;
	gap: clamp(70px, 11vw, 160px);
}

.eyebrow-light { color: var(--cyan); }
.protection-copy h2 { max-width: 630px; }

.protection-copy > p:last-child {
	max-width: 550px;
	margin: 34px 0 0;
	color: rgba(255, 255, 255, 0.64);
	font-size: 1.04rem;
}

.signal-panel {
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--radius);
	background: var(--navy-2);
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
}

.signal-panel-heading {
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.66rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.signal-panel-heading span:last-child { color: var(--cyan); letter-spacing: 0; text-transform: none; }
.signal-result { margin: 72px 0; }
.signal-result p { margin: 0 0 8px; color: rgba(255, 255, 255, 0.53); font-size: 0.8rem; }

.signal-result strong {
	display: block;
	max-width: 470px;
	font-family: var(--serif);
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.02;
}

.signal-details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	margin: 0;
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 16px;
	overflow: hidden;
}

.signal-details div { padding: 18px; background: var(--navy-2); }
.signal-details dt { margin-bottom: 5px; color: rgba(255, 255, 255, 0.43); font-size: 0.63rem; text-transform: uppercase; }
.signal-details dd { margin: 0; font-size: 0.78rem; font-weight: 700; }

.preview { background: var(--paper); }
.preview { padding-bottom: 88px; }
.process { padding-top: 88px; }

.preview-intro { align-items: start; }

.preview-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 68px;
}

.preview-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 22px 60px rgba(11, 40, 82, 0.08);
}

.preview-card-dark {
	border-color: rgba(255, 255, 255, 0.12);
	background: var(--navy-2);
	color: var(--white);
}

.preview-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
	color: var(--muted);
	font-size: 0.65rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.preview-card-dark .preview-meta { color: rgba(255, 255, 255, 0.6); }
.preview-meta span:first-child { color: var(--electric); }
.preview-card-dark .preview-meta span:first-child { color: var(--cyan); }

.preview-screen {
	min-height: 330px;
	margin-bottom: 26px;
	padding: 25px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--paper);
}

.preview-card-dark .preview-screen {
	border-color: rgba(255, 255, 255, 0.13);
	background: var(--navy-3);
}

.preview-kicker {
	margin: 0;
	color: var(--muted);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.preview-card-dark .preview-kicker { color: rgba(255, 255, 255, 0.55); }
.incoming-preview .status { display: inline-flex; margin-top: 24px; }

.preview-screen h3 {
	margin: 42px 0 7px;
	font-family: var(--serif);
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: -0.035em;
}

.preview-screen > p:not(.preview-kicker, .preview-note) { margin: 0; color: var(--muted); font-size: 0.84rem; }
.preview-card-dark .preview-screen > p:not(.preview-kicker, .preview-note) { color: rgba(255, 255, 255, 0.62); }

.preview-confidence {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-top: 48px;
	padding-top: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.72rem;
}

.preview-confidence span { color: rgba(255, 255, 255, 0.58); }
.preview-confidence strong { color: #62e5b2; }
.detail-preview h3 { margin-top: 28px; }
.detail-preview dl { margin: 30px 0 0; }

.detail-preview dl div {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 12px 0;
	border-top: 1px solid var(--line);
	font-size: 0.73rem;
}

.detail-preview dt { color: var(--muted); }
.detail-preview dd { margin: 0; font-weight: 750; }
.report-preview h3 { margin-top: 26px; }

.report-preview ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.report-preview li {
	padding: 8px 11px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: #445169;
	font-size: 0.7rem;
	font-weight: 700;
}

.report-preview li.is-selected {
	border-color: var(--electric);
	background: #e8f3ff;
	color: #0759ad;
}

.preview-note {
	margin: 32px 0 0;
	color: var(--muted);
	font-size: 0.68rem;
	line-height: 1.5;
}

.preview-card > h3 { margin-bottom: 10px; }
.preview-card > p { margin: 0; color: var(--muted); font-size: 0.86rem; }
.preview-card-dark > p { color: rgba(255, 255, 255, 0.66); }
.section-intro.compact { grid-template-columns: 1fr; }
.section-intro.compact h2 { max-width: 730px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }

.value-grid article {
	min-height: 310px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--paper);
	transition: border-color 180ms ease, transform 180ms ease;
}

.value-grid article:hover { border-color: #9eb7df; transform: translateY(-5px); }

.value-label {
	margin: 0;
	color: var(--electric);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.value-grid h3 { margin-top: 78px; font-size: 1.45rem; }
.value-grid article > p:not(.value-label) { margin: 0; color: #526078; font-size: 0.88rem; line-height: 1.7; }

.value-grid .text-link {
	display: inline-flex;
	margin-top: 20px;
	border-color: currentColor;
	color: #075fad;
}

.value-grid .text-link:hover,
.value-grid .text-link:focus-visible { border-color: #063f78; color: #063f78; }

.faq {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: clamp(60px, 11vw, 150px);
	border-top: 1px solid var(--line);
}

.faq-heading h2 { font-size: clamp(2.7rem, 4.6vw, 4.6rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
	position: relative;
	padding: 28px 44px 28px 0;
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.45;
	list-style: none;
	cursor: pointer;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
	position: absolute;
	top: 27px;
	right: 4px;
	color: var(--electric);
	content: "+";
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	transition: transform 180ms ease;
}

.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { max-width: 620px; margin: -6px 44px 28px 0; color: var(--muted); }

.closing {
	position: relative;
	isolation: isolate;
	margin-bottom: 28px;
	padding: 82px clamp(30px, 7vw, 88px);
	border-radius: 32px;
	background: var(--navy-2);
	color: var(--white);
	overflow: hidden;
}

.closing::before {
	position: absolute;
	top: -240px;
	right: -120px;
	z-index: -1;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: rgba(41, 224, 237, 0.2);
	content: "";
	filter: blur(90px);
}

.closing > img {
	position: absolute;
	top: -52px;
	right: -28px;
	z-index: -1;
	width: clamp(280px, 38vw, 510px);
	height: auto;
	opacity: 0.52;
	transform: rotate(7deg);
}

.closing-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
	align-items: center;
	gap: clamp(48px, 8vw, 100px);
}

.closing .eyebrow { color: var(--cyan); }
.closing h2 { max-width: 700px; font-size: clamp(3rem, 5vw, 4.8rem); }
.closing-copy > p:not(.eyebrow) { max-width: 610px; margin: 26px 0 0; color: rgba(255, 255, 255, 0.68); font-size: 1.04rem; }
.closing-copy .closing-reassurance { color: rgba(255, 255, 255, 0.48); font-size: 0.76rem; }

.launch-form-card {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 24px;
	background: rgba(3, 19, 41, 0.78);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(18px);
}

.launch-form { display: grid; gap: 18px; }
.launch-form .form-field label { color: rgba(255, 255, 255, 0.78); }
.launch-form input,
.launch-form select { border-color: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.08); color: var(--white); }
.launch-form input::placeholder { color: rgba(255, 255, 255, 0.42); }
.launch-form select option { background: var(--navy); color: var(--white); }
.launch-form .form-check { color: rgba(255, 255, 255, 0.65); }
.launch-form .form-privacy { color: rgba(255, 255, 255, 0.52); }
.launch-form .form-privacy a { color: var(--ice); }
.launch-form .button { justify-self: start; cursor: pointer; }

.button-light { border-color: var(--white); background: var(--white); box-shadow: none; color: var(--navy); }
.button-light:hover, .button-light:focus-visible { border-color: var(--cyan); background: var(--cyan); color: var(--navy); }

.site-footer { padding: 58px 0 34px; background: var(--navy); color: var(--white); }

.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 40px; }

.footer-brand { align-self: center; }
.footer-brand .brand-symbol { width: 48px; height: 50px; }
.footer-brand .brand-name { font-size: 1.58rem; }
.footer-brand .brand-tagline { font-size: 0.61rem; }

.footer-nav { display: flex; gap: 30px; padding-top: 34px; }

.footer-nav button {
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.copyright {
	grid-column: 1 / -1;
	margin: 20px 0 0;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.11);
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.68rem;
}

.consent-panel {
	position: fixed;
	right: 22px;
	bottom: 22px;
	left: 22px;
	z-index: 80;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 36px;
	width: min(820px, calc(100% - 44px));
	margin-left: auto;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 24px;
	background: rgba(6, 28, 58, 0.97);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
	color: var(--white);
	backdrop-filter: blur(18px);
}

.consent-panel[hidden] { display: none; }

.consent-label {
	margin: 0 0 8px;
	color: var(--cyan);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.consent-panel h2 {
	margin: 0 0 10px;
	font-family: var(--sans);
	font-size: 1.12rem;
	font-weight: 750;
	letter-spacing: -0.02em;
}

.consent-panel p:last-child {
	max-width: 610px;
	margin: 0;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.78rem;
	line-height: 1.55;
}

.consent-actions {
	display: flex;
	align-items: center;
	gap: 15px;
	white-space: nowrap;
}

.consent-actions .button {
	min-height: 44px;
	padding: 10px 18px;
	border: 0;
	cursor: pointer;
}

.consent-essential {
	padding: 9px 2px;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
	background: transparent;
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 700;
	cursor: pointer;
}

:focus-visible { outline: 3px solid rgba(41, 224, 237, 0.45); outline-offset: 4px; }

.community {
	background: var(--navy-2);
	color: var(--white);
}

.community-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
	align-items: start;
	gap: clamp(60px, 8vw, 120px);
}

.community-copy { position: sticky; top: 132px; }
.community-copy h2 { max-width: 660px; }

.community-lead {
	max-width: 620px;
	margin: 30px 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 1.08rem;
}

.community-principles { border-top: 1px solid rgba(255, 255, 255, 0.15); }

.community-principles article {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 22px;
	padding: 30px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.community-principles article > span {
	color: var(--cyan);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.community-principles h3 { margin-bottom: 8px; }
.community-principles p { margin: 0; color: rgba(255, 255, 255, 0.63); }

.legal-main { background: var(--paper); }

.legal-hero {
	padding: 110px 0 92px;
	background: var(--navy);
	color: var(--white);
}

.legal-hero-inner { max-width: 1040px; }

.legal-hero h1 {
	max-width: 920px;
	margin: 18px 0 26px;
	font-size: clamp(3rem, 6vw, 5.8rem);
	line-height: 0.98;
	letter-spacing: -0.065em;
}

.legal-hero p:not(.eyebrow) {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.08rem;
}

.legal-hero .legal-version {
	margin-top: 28px;
	color: var(--cyan);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.legal-layout {
	display: grid;
	grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
	align-items: start;
	gap: clamp(50px, 8vw, 110px);
	padding-top: 82px;
	padding-bottom: 110px;
}

.legal-summary {
	position: sticky;
	top: 122px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: var(--white);
}

.legal-summary ul {
	margin: 22px 0 28px;
	padding-left: 20px;
	color: var(--muted);
}

.legal-summary li + li { margin-top: 9px; }

.legal-summary .text-link {
	border-color: currentColor;
	color: #075fad;
}

.legal-summary .text-link:hover,
.legal-summary .text-link:focus-visible { border-color: #063f78; color: #063f78; }

.legal-content { min-width: 0; }

.legal-content section {
	padding: 0 0 54px;
	border-bottom: 1px solid var(--line);
	scroll-margin-top: 120px;
}

.legal-content section + section { padding-top: 54px; }

.legal-content h2 {
	margin: 0 0 22px;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	line-height: 1.08;
	letter-spacing: -0.045em;
}

.legal-content p,
.legal-content li,
.legal-content dd { color: #47546b; }

.legal-content p { margin: 0; }
.legal-content p + p { margin-top: 18px; }

.legal-content ul {
	margin: 22px 0;
	padding-left: 24px;
}

.legal-content li + li { margin-top: 10px; }

.legal-content a {
	color: #0870d1;
	font-weight: 650;
	text-underline-offset: 3px;
}

.legal-content dl { margin: 0; }

.legal-content dt {
	margin-top: 24px;
	font-weight: 800;
}

.legal-content dt:first-child { margin-top: 0; }

.legal-content dd {
	margin: 7px 0 0;
}

.contact-main { min-height: calc(100vh - 86px); background: var(--paper); }
.contact-page .header-action { grid-column: 3; justify-self: end; }

.contact-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
	align-items: start;
	gap: clamp(60px, 9vw, 130px);
	padding-top: 96px;
	padding-bottom: 110px;
}

.contact-copy { position: sticky; top: 136px; }

.contact-copy h1 {
	margin-bottom: 28px;
	font-size: clamp(3.2rem, 6vw, 5.7rem);
	line-height: 0.96;
}

.contact-copy > p:not(.eyebrow) { max-width: 560px; margin: 0; color: #526078; font-size: 1.05rem; }

.contact-promises {
	display: grid;
	gap: 10px;
	margin: 34px 0 0;
	padding: 0;
	color: #526078;
	font-size: 0.84rem;
	list-style: none;
}

.contact-promises li { position: relative; padding-left: 20px; }
.contact-promises li::before { position: absolute; top: 0.68em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--electric); content: ""; }

.contact-card {
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 30px 90px rgba(11, 40, 82, 0.1);
}

.contact-form { display: grid; gap: 22px; }

.form-field { display: grid; gap: 8px; }

.form-field label {
	color: var(--ink);
	font-size: 0.78rem;
	font-weight: 750;
}

.form-field label span { color: var(--muted); font-weight: 500; }

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid #b8c7dc;
	border-radius: 12px;
	background: var(--white);
	color: var(--ink);
	font: inherit;
	font-size: 0.94rem;
}

.form-field textarea { min-height: 170px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--electric); outline: 3px solid rgba(22, 140, 255, 0.18); }

.form-check {
	display: grid;
	grid-template-columns: 20px 1fr;
	align-items: start;
	gap: 10px;
	color: #526078;
	font-size: 0.76rem;
	line-height: 1.55;
}

.form-check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--electric); }
.form-privacy { margin: 0; color: var(--muted); font-size: 0.73rem; }
.form-privacy a { color: #075fad; font-weight: 700; text-underline-offset: 3px; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.form-errors {
	margin-bottom: 26px;
	padding: 18px 20px;
	border: 1px solid #d84b5d;
	border-radius: 14px;
	background: #fff4f5;
	color: #7c1e2b;
}

.form-errors h2 { margin: 0 0 8px; font-family: var(--sans); font-size: 1rem; font-weight: 800; letter-spacing: 0; }
.form-errors ul { margin: 0; padding-left: 20px; }
.form-success h2 { margin: 0 0 18px; font-size: clamp(2.5rem, 5vw, 4rem); }
.form-success h3 { margin-bottom: 12px; font-size: 1.4rem; }
.form-success > p:not(.eyebrow) { margin: 0 0 28px; color: var(--muted); }
.form-success-light > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.68); }

.legal-consent-button {
	margin-top: 28px;
	color: var(--white) !important;
	cursor: pointer;
}

@media (max-width: 980px) {
	.legal-page .legal-nav { display: none; }
	.legal-page .header-action { display: inline-flex; grid-column: 3; justify-self: end; }
	.contact-page .header-action { display: inline-flex; grid-column: 3; justify-self: end; }

	.legal-layout {
		grid-template-columns: 1fr;
		gap: 52px;
	}

	.legal-summary { position: static; }
}

@media (max-width: 700px) {
	.legal-hero { padding: 74px 0 68px; }
	.legal-hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
	.legal-layout { padding-top: 52px; padding-bottom: 78px; }
	.legal-summary { padding: 24px; }
	.legal-content section { padding-bottom: 42px; }
	.legal-content section + section { padding-top: 42px; }
}

@media (max-width: 980px) {
	.header-inner { grid-template-columns: auto auto 1fr; }
	.menu-button { display: inline-flex; grid-column: 3; justify-self: end; }

	.main-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		height: calc(100vh - 86px);
		display: flex;
		align-items: stretch;
		justify-content: flex-start;
		flex-direction: column;
		gap: 0;
		padding: 34px 24px;
		background: var(--navy);
		overflow-y: auto;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-16px);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
	.main-nav a { padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
	.main-nav a::after { display: none; }
	.main-nav .nav-action-mobile {
		display: inline-flex;
		justify-content: center;
		margin-top: 24px;
		padding: 14px 18px;
		border: 1px solid var(--electric);
		border-radius: 999px;
		background: var(--electric);
		color: var(--white);
		font-family: var(--sans);
		font-size: 0.84rem;
		font-weight: 750;
	}
	.header-action { display: none; }

	.hero { grid-template-columns: 1fr; gap: 75px; min-height: auto; padding-top: 88px; }
	.hero-copy { max-width: 780px; }
	.hero-visual { width: min(100%, 650px); min-height: 590px; margin-inline: auto; }
	.section-intro, .protection-grid, .community-grid, .faq, .closing-grid, .contact-hero { grid-template-columns: 1fr; }
	.section-intro { align-items: start; }
	.step { grid-template-columns: 100px 1fr; }
	.protection-grid { gap: 70px; }
	.protection-copy { max-width: 760px; }
	.community-copy { position: static; max-width: 760px; }
	.value-grid { grid-template-columns: 1fr; }
	.preview-grid { grid-template-columns: 1fr; }
	.preview-card { display: grid; grid-template-columns: minmax(280px, 0.9fr) 1.1fr; column-gap: 30px; }
	.preview-card .preview-meta { grid-column: 1 / -1; }
	.preview-card .preview-screen { grid-row: 2 / span 2; margin-bottom: 0; }
	.value-grid article { min-height: 250px; }
	.value-grid h3 { margin-top: 70px; }
	.faq-heading { max-width: 620px; }
	.contact-copy { position: static; }
}

@media (max-width: 700px) {
	.shell, .header-inner { width: min(100% - 32px, 640px); }
	.header-inner { min-height: 72px; }
	.brand-lockup { gap: 9px; }
	.brand-symbol { width: 36px; height: 38px; }
	.brand-name { font-size: 1.25rem; }
	.brand-tagline { margin-top: 5px; font-size: 0.5rem; }
	.main-nav { top: 100%; height: calc(100vh - 72px); }
	h1 { font-size: clamp(3.55rem, 16vw, 5rem); }
	h2 { font-size: clamp(2.7rem, 12vw, 4rem); }

	.hero {
		width: 100%;
		padding: 66px 16px 78px;
	}

	.actions { align-items: flex-start; flex-direction: column; gap: 17px; }
	.hero-visual { min-height: 480px; }
	.hero-symbol { width: calc(100% - 18px); border-radius: 32px; }
	.call-card { right: 0; left: 0; padding: 24px; }
	.phone-number { margin-top: 42px; }

	.trust-inner { align-items: flex-start; flex-direction: column; padding-top: 26px; padding-bottom: 26px; }
	.trust-inner ul { align-items: flex-start; flex-direction: column; gap: 8px; }
	.trust-inner li + li::before { display: none; }
	.section { padding-top: 84px; padding-bottom: 84px; }
	.section-intro { gap: 32px; }
	.steps { margin-top: 60px; }
	.step, .step > div { grid-template-columns: 1fr; gap: 12px; }
	.step { padding: 32px 0; }
	.step:hover { padding-left: 0; }
	.signal-panel { padding: 25px; }
	.signal-panel-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
	.signal-result { margin: 54px 0; }
	.signal-details { grid-template-columns: 1fr; }
	.value-grid { margin-top: 52px; }
	.value-grid article { min-height: 280px; }
	.preview-grid { margin-top: 52px; }
	.preview-card { display: flex; padding: 20px; }
	.preview-screen { min-height: 300px; }
	.faq { gap: 55px; }

	.closing {
		width: calc(100% - 20px);
		margin-bottom: 10px;
		padding: 66px 24px;
		border-radius: 24px;
	}

	.closing > img { top: -20px; right: -92px; }
	.launch-form-card { padding: 22px; }
	.launch-form .button { width: 100%; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-nav { align-items: flex-start; flex-direction: column; gap: 12px; padding-top: 0; }
	.copyright { grid-column: auto; }

	.consent-panel {
		right: 12px;
		bottom: 12px;
		left: 12px;
		grid-template-columns: 1fr;
		align-items: stretch;
		gap: 20px;
		width: auto;
		padding: 22px;
		border-radius: 20px;
	}

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

	.consent-essential { align-self: center; }

	.contact-hero { gap: 44px; padding-top: 66px; padding-bottom: 78px; }
	.contact-copy h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
	.contact-card { padding: 24px; border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
