:root {
	--ink: #090b10;
	--ink-2: #0d1017;
	--panel: #11141c;
	--panel-2: #171b25;
	--line: #292e3a;
	--paper: #f4f5f8;
	--white: #f8f9fb;
	--muted: #a9b0bf;
	--red: #ff4438;
	--red-dark: #d92f28;
	--lime: #dfff4f;
	--blue: #68c8ff;
	--purple: #9b87ff;
	--orange: #ff9e4a;
	--shell: 1180px;
	--radius: 18px;
	--shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ink);
	color: var(--white);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
	top: 32px;
}

body.menu-open {
	overflow: hidden;
}

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

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

button,
input,
select,
textarea {
	font: inherit;
}

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

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

::selection {
	background: var(--red);
	color: #fff;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	left: 18px;
	top: -100px;
	z-index: 99999;
	background: var(--lime);
	color: var(--ink);
	font-weight: 900;
	padding: 10px 15px;
	border-radius: 8px;
}

.skip-link:focus {
	top: 18px;
}

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

.narrow {
	width: min(780px, calc(100% - 40px));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(9, 11, 16, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(18px);
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
	background: rgba(9, 11, 16, 0.97);
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.header-inner {
	display: flex;
	min-height: 78px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.brand-mark {
	position: relative;
	display: block;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	box-shadow: 0 0 28px rgba(255, 68, 56, 0.35);
}

.brand-mark img {
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.brand-mark::after {
	position: absolute;
	inset: -4px;
	border: 1px solid rgba(255, 68, 56, 0.5);
	border-radius: 14px;
	content: "";
	animation: brand-pulse 2.8s ease-out infinite;
	pointer-events: none;
}

@keyframes brand-pulse {
	0%, 45% { opacity: 0; transform: scale(0.92); }
	55% { opacity: 0.65; }
	100% { opacity: 0; transform: scale(1.24); }
}

.brand-word {
	color: #fff;
	font-size: 21px;
	font-weight: 950;
	letter-spacing: -0.045em;
	line-height: 1;
}

.brand-word small {
	display: block;
	margin-top: 5px;
	color: #929aaa;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.18em;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 27px;
	color: #d9dde6;
	font-size: 13px;
	font-weight: 800;
}

.primary-nav > a:not(.button) {
	position: relative;
	padding: 27px 0;
}

.primary-nav > a:not(.button)::after {
	position: absolute;
	right: 0;
	bottom: 18px;
	left: 0;
	height: 2px;
	background: var(--red);
	content: "";
	opacity: 0;
	transform: scaleX(0.4);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.primary-nav > a:hover,
.primary-nav > a.is-active {
	color: #fff;
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after {
	opacity: 1;
	transform: scaleX(1);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: transparent;
	color: #fff;
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: currentColor;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	gap: 10px;
	padding: 13px 19px;
	border: 1px solid var(--line);
	border-radius: 11px;
	background: transparent;
	color: inherit;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
	transform: translateY(-2px);
	border-color: #596274;
}

.button-primary {
	border-color: var(--red);
	background: var(--red);
	color: #fff;
	box-shadow: 0 14px 38px rgba(255, 68, 56, 0.23);
}

.button-primary:hover {
	border-color: #ff665d;
	background: #ff5146;
	box-shadow: 0 18px 44px rgba(255, 68, 56, 0.3);
}

.button-lime {
	border-color: var(--lime);
	background: var(--lime);
	color: var(--ink);
}

.button-dark {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
}

.button-ghost {
	border-color: #363c49;
	background: rgba(255, 255, 255, 0.015);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.eyebrow,
.kicker {
	color: var(--red);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 7px 11px;
	border: 1px solid #323745;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.025);
	color: #d5dae4;
}

.kicker::before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--lime);
	box-shadow: 0 0 16px var(--lime);
	content: "";
}

.display-title {
	max-width: 800px;
	margin: 23px 0 24px;
	color: #fff;
	font-size: clamp(54px, 6.8vw, 96px);
	font-weight: 950;
	letter-spacing: -0.068em;
	line-height: 0.96;
}

.display-title em,
.subhero h1 em,
.section-title em {
	color: var(--red);
	font-style: normal;
}

.lead {
	max-width: 680px;
	margin: 0;
	color: var(--muted);
	font-size: 19px;
	line-height: 1.72;
}

.microcopy {
	margin-top: 18px;
	color: #747d8d;
	font-size: 12px;
}

.hero {
	position: relative;
	min-height: 720px;
	display: flex;
	align-items: center;
	padding: 92px 0 78px;
	overflow: hidden;
}

.hero::before,
.subhero::before {
	position: absolute;
	width: 680px;
	height: 680px;
	border-radius: 50%;
	background: rgba(255, 68, 56, 0.14);
	content: "";
	filter: blur(120px);
	pointer-events: none;
	right: -230px;
	top: -300px;
}

.hero::after {
	position: absolute;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: rgba(104, 200, 255, 0.07);
	bottom: -330px;
	content: "";
	filter: blur(100px);
	left: -180px;
	pointer-events: none;
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: center;
	gap: 64px;
	z-index: 1;
}

.signal-console {
	padding: 20px;
	border: 1px solid #303645;
	border-radius: 20px;
	background: linear-gradient(180deg, #181c26, #0e1118);
	box-shadow: var(--shadow);
	transform: rotate(1.2deg);
}

.console-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line);
}

.console-dots {
	display: flex;
	gap: 6px;
}

.console-dots span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--red);
}

.console-dots span:nth-child(2) {
	background: #ffbf3f;
}

.console-dots span:nth-child(3) {
	background: var(--lime);
}

.console-live {
	color: var(--lime);
	font-size: 9px;
	font-weight: 950;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.console-main {
	padding: 25px 4px 18px;
}

.console-main small {
	color: #818999;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.console-main strong {
	display: block;
	margin: 5px 0;
	color: #fff;
	font-size: 45px;
	letter-spacing: -0.05em;
}

.signal-chart {
	height: 120px;
	display: flex;
	align-items: end;
	gap: 7px;
	padding-bottom: 1px;
	border-bottom: 1px solid #313746;
}

.signal-chart span {
	flex: 1;
	min-width: 8px;
	border-radius: 5px 5px 1px 1px;
	background: linear-gradient(180deg, var(--red), #812c37);
	transform-origin: bottom;
	animation: chart-rise 1.4s cubic-bezier(0.2, 0.65, 0.28, 1) both;
}

.signal-chart span:nth-child(1) { height: 28%; }
.signal-chart span:nth-child(2) { height: 42%; }
.signal-chart span:nth-child(3) { height: 64%; }
.signal-chart span:nth-child(4) { height: 51%; }
.signal-chart span:nth-child(5) { height: 78%; }
.signal-chart span:nth-child(6) { height: 69%; }
.signal-chart span:nth-child(7) { height: 93%; }
.signal-chart span:nth-child(8) { height: 82%; }
.signal-chart span:nth-child(9) { height: 100%; }

@keyframes chart-rise {
	from { transform: scaleY(0.04); opacity: 0.2; }
	to { transform: scaleY(1); opacity: 1; }
}

.console-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
	margin-top: 15px;
}

.console-stat {
	padding: 12px;
	border: 1px solid #242a36;
	border-radius: 10px;
	background: #0a0d13;
}

.console-stat small {
	color: #737c8c;
	font-size: 8px;
	text-transform: uppercase;
}

.console-stat b {
	display: block;
	margin-top: 2px;
	font-size: 16px;
}

.console-stat:first-child b {
	color: var(--lime);
}

.proof-band {
	border-block: 1px solid var(--line);
	background: #0c0f15;
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.proof-item {
	min-height: 108px;
	padding: 25px;
	border-right: 1px solid var(--line);
}

.proof-item:last-child {
	border-right: 0;
}

.proof-item b {
	display: block;
	color: #fff;
	font-size: 25px;
	letter-spacing: -0.04em;
}

.proof-item span {
	color: #7f8899;
	font-size: 10px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.section {
	padding: 105px 0;
}

.section.alt {
	background: var(--ink-2);
}

.section.light {
	background: var(--paper);
	color: #101218;
}

.section.white {
	background: #fff;
	color: #101218;
}

.section-heading {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	align-items: end;
	gap: 58px;
	margin-bottom: 52px;
}

.section-title {
	max-width: 780px;
	margin: 0;
	color: inherit;
	font-size: clamp(38px, 5vw, 66px);
	font-weight: 950;
	letter-spacing: -0.057em;
	line-height: 1.02;
}

.section-heading p,
.split-copy p {
	max-width: 650px;
	margin: 13px 0 0;
	color: #7c8494;
	font-size: 17px;
}

.section-heading .intro {
	align-self: end;
}

.grid-2,
.grid-3,
.grid-4 {
	display: grid;
	gap: 14px;
}

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

.dark-card {
	position: relative;
	min-height: 275px;
	padding: 30px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--panel);
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.dark-card:hover {
	border-color: #4b5364;
	transform: translateY(-4px);
}

.dark-card::after {
	position: absolute;
	right: -60px;
	bottom: -60px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--card-glow, var(--red));
	content: "";
	filter: blur(42px);
	opacity: 0.18;
}

.card-number {
	color: var(--red);
	font-size: 10px;
	font-weight: 950;
	letter-spacing: 0.15em;
}

.dark-card h3 {
	margin: 28px 0 10px;
	color: #fff;
	font-size: 26px;
	letter-spacing: -0.035em;
	line-height: 1.12;
}

.dark-card p {
	margin: 0;
	color: #9da5b5;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 20px;
}

.tag-list span {
	padding: 5px 9px;
	border: 1px solid #343a48;
	border-radius: 999px;
	color: #cbd0da;
	font-size: 10px;
}

.check-list {
	padding: 0;
	margin: 20px 0 0;
	list-style: none;
}

.check-list li {
	padding: 9px 0;
	border-top: 1px solid #292f3b;
	color: #c2c7d1;
	font-size: 13px;
}

.check-list li::before {
	margin-right: 10px;
	color: var(--lime);
	content: "✓";
	font-weight: 950;
}

.light-card {
	padding: 27px;
	border: 1px solid #dfe2e9;
	border-radius: 16px;
	background: #fff;
}

.light-card .card-number {
	color: var(--red);
}

.light-card h3 {
	margin: 24px 0 9px;
	color: #11141a;
	font-size: 22px;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.light-card p {
	margin: 0;
	color: #687181;
	font-size: 14px;
}

.light-card .check-list li {
	border-color: #e5e7ec;
	color: #535b69;
}

.light-card .check-list li::before {
	color: var(--red);
}

.light-card.featured {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
	box-shadow: 0 28px 60px rgba(17, 20, 28, 0.18);
	transform: translateY(-8px);
}

.light-card.featured h3 {
	color: #fff;
}

.light-card.featured p {
	color: var(--muted);
}

.light-card.featured .card-number {
	color: var(--lime);
}

.light-card.featured .check-list li {
	border-color: var(--line);
	color: #c2c7d1;
}

.light-card.featured .check-list li::before {
	color: var(--lime);
}

.solution-card {
	position: relative;
	cursor: pointer;
	transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.solution-card:hover {
	border-color: #aeb4c0;
	transform: translateY(-4px);
}

.solution-card.is-selected {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
	box-shadow: 0 28px 60px rgba(17, 20, 28, 0.2);
	transform: translateY(-8px);
}

.solution-card.is-selected h3 {
	color: #fff;
}

.solution-card.is-selected p,
.solution-card.is-selected .check-list li {
	color: var(--muted);
}

.solution-card.is-selected .card-number,
.solution-card.is-selected .check-list li::before,
.solution-card.is-selected .text-link {
	color: var(--lime);
}

.solution-card.is-selected .check-list li {
	border-color: var(--line);
}

.solution-select {
	display: inline-flex;
	margin-top: 20px;
	padding: 8px 11px;
	border: 1px solid #ccd1db;
	border-radius: 999px;
	background: transparent;
	color: #343a46;
	font-size: 11px;
	font-weight: 900;
	cursor: pointer;
}

.solution-card.is-selected .solution-select {
	border-color: var(--lime);
	background: var(--lime);
	color: var(--ink);
}

.service-disclaimer {
	max-width: 900px;
	margin: 24px 0 0;
	color: #7f8899;
	font-size: 12px;
}

.platform-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.platform-card {
	min-height: 165px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: #0b0e14;
	transition: background 0.25s ease;
}

.platform-card:hover {
	background: #151924;
}

.platform-icon {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: #1b202b;
	color: var(--platform, var(--lime));
	font-size: 13px;
	font-style: normal;
	font-weight: 950;
}

.platform-card b {
	display: block;
	color: #fff;
	font-size: 17px;
	letter-spacing: -0.02em;
}

.platform-card small {
	display: block;
	margin-top: 5px;
	color: #778091;
	font-size: 10px;
	line-height: 1.45;
}

.text-link {
	display: inline-flex;
	margin-top: 18px;
	color: var(--red);
	font-size: 13px;
	font-weight: 900;
}

.text-link:hover {
	color: var(--red-dark);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-top: 1px solid var(--line);
}

.process-step {
	min-height: 220px;
	padding: 27px 20px;
	border-right: 1px solid var(--line);
}

.process-step:last-child {
	border-right: 0;
}

.process-step b {
	color: var(--red);
	font-size: 10px;
	letter-spacing: 0.12em;
}

.process-step h3 {
	margin: 36px 0 8px;
	color: #fff;
	font-size: 19px;
}

.process-step p {
	margin: 0;
	color: #858d9d;
	font-size: 12px;
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 70px;
}

.stat-wall {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.stat {
	min-height: 155px;
	padding: 26px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.stat b {
	display: block;
	color: #fff;
	font-size: 32px;
	letter-spacing: -0.05em;
	line-height: 1.05;
}

.stat span {
	display: block;
	margin-top: 10px;
	color: #838c9c;
	font-size: 10px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.quote-title {
	margin: 0;
	font-size: clamp(38px, 4.8vw, 68px);
	font-weight: 950;
	letter-spacing: -0.06em;
	line-height: 1;
}

.quote-title em {
	color: var(--red);
	font-style: normal;
}

.subhero {
	position: relative;
	padding: 110px 0 92px;
	overflow: hidden;
	border-bottom: 1px solid var(--line);
}

.subhero.compact {
	min-height: 560px;
	display: flex;
	align-items: center;
}

.subhero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: end;
	gap: 70px;
	z-index: 1;
}

.subhero h1 {
	max-width: 850px;
	margin: 24px 0 0;
	color: #fff;
	font-size: clamp(56px, 7vw, 100px);
	font-weight: 950;
	letter-spacing: -0.069em;
	line-height: 0.95;
}

.subhero.compact h1 {
	max-width: 920px;
}

.subhero p {
	max-width: 620px;
	margin: 20px 0 0;
	color: var(--muted);
	font-size: 19px;
	line-height: 1.7;
}

.cta-section {
	padding: 90px 0;
	background: linear-gradient(135deg, #ff4438, #e82e27 52%, #bd201d);
	color: #fff;
}

.cta-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	align-items: end;
	gap: 60px;
}

.cta-section h2 {
	margin: 0;
	font-size: clamp(44px, 6vw, 78px);
	font-weight: 950;
	letter-spacing: -0.062em;
	line-height: 0.96;
}

.cta-section p {
	max-width: 650px;
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
}

.accordion {
	display: grid;
	gap: 10px;
}

.accordion details {
	padding: 0 22px;
	border: 1px solid #dfe2e9;
	border-radius: 14px;
	background: #fff;
}

.accordion summary {
	padding: 20px 0;
	color: #11141a;
	font-weight: 900;
	cursor: pointer;
}

.accordion details p {
	padding: 0 0 20px;
	margin: 0;
	color: #697080;
}

.contact-layout {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	align-items: start;
	gap: 70px;
}

.contact-details {
	display: grid;
	gap: 12px;
}

.contact-detail {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 15px;
	background: var(--panel);
}

.contact-detail span {
	display: block;
	color: #747d8e;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
	display: block;
	margin-top: 8px;
	color: #fff;
	font-size: 19px;
}

.contact-form {
	padding: 32px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--panel);
	box-shadow: var(--shadow);
}

.project-layout {
	grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
}

.project-aside {
	position: sticky;
	top: 112px;
}

.project-form {
	padding: 38px;
}

.form-section {
	padding: 0 0 30px;
	margin: 0 0 30px;
	border: 0;
	border-bottom: 1px solid var(--line);
}

.form-section-label,
.choice-section legend span {
	display: block;
	margin: 0 0 18px;
	color: var(--red);
	font-size: 10px;
	font-weight: 950;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.choice-section legend {
	width: 100%;
	padding: 0;
	margin: 0 0 16px;
	color: #fff;
	font-size: 17px;
	font-weight: 900;
}

.choice-section legend span {
	margin-bottom: 8px;
}

.choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
}

.choice {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px;
	border: 1px solid #343a48;
	border-radius: 10px;
	background: #0b0e14;
	color: #cbd0da;
	font-size: 12px;
	font-weight: 750;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.choice:has(input:checked) {
	border-color: var(--red);
	background: rgba(255, 68, 56, 0.11);
	color: #fff;
}

.choice input {
	flex: 0 0 auto;
	margin: 3px 0 0;
	accent-color: var(--red);
}

.field-spaced {
	margin-top: 18px;
}

.field small {
	color: #778091;
	font-size: 10px;
}

.form-submit {
	margin-top: 4px;
}

.form-submit .button {
	width: 100%;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.field {
	display: grid;
	gap: 7px;
}

.field.full {
	grid-column: 1 / -1;
}

.field label {
	color: #cbd0da;
	font-size: 12px;
	font-weight: 850;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid #343a48;
	border-radius: 10px;
	background: #0b0e14;
	color: #fff;
	outline: 0;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
	min-height: 150px;
	resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(104, 200, 255, 0.12);
}

.field-hp {
	position: absolute;
	left: -9999px;
}

.form-note {
	margin: 12px 0 0;
	color: #778091;
	font-size: 11px;
}

.form-message {
	margin: 0 0 18px;
	padding: 13px 15px;
	border-radius: 10px;
	background: rgba(223, 255, 79, 0.12);
	color: var(--lime);
	font-weight: 800;
}

.form-message.error {
	background: rgba(255, 68, 56, 0.12);
	color: #ff8d86;
}

.legal-content {
	padding: 80px 0 110px;
	background: #fff;
	color: #151821;
}

.legal-content h2 {
	margin-top: 42px;
	font-size: 30px;
	letter-spacing: -0.04em;
}

.legal-content h3 {
	margin-top: 28px;
	font-size: 20px;
}

.legal-content p,
.legal-content li {
	color: #5d6573;
}

.legal-content a {
	color: var(--red-dark);
	text-decoration: underline;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.post-card {
	min-height: 260px;
	padding: 28px;
	border: 1px solid #dfe2e9;
	border-radius: 16px;
	background: #fff;
}

.post-card .post-meta {
	color: var(--red);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.post-card h2 {
	margin: 24px 0 12px;
	font-size: 24px;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.post-card p {
	color: #697080;
}

.site-footer {
	padding: 58px 0 28px;
	background: #080a0f;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.75fr 1fr 1fr;
	gap: 38px;
	padding-bottom: 46px;
}

.footer-intro p {
	max-width: 330px;
	color: #9098a8;
	font-size: 13px;
}

.site-footer h2 {
	margin: 0 0 17px;
	color: #747d8e;
	font-size: 10px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.site-footer a,
.site-footer p {
	display: block;
	margin: 8px 0;
	color: #aab1bf;
	font-size: 13px;
}

.site-footer a:hover {
	color: #fff;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
}

.footer-bottom p,
.footer-bottom a {
	display: inline;
	color: #656e7e;
	font-size: 11px;
}

.footer-bottom a + a {
	margin-left: 13px;
}

.pagination {
	margin-top: 36px;
}

@media (max-width: 1080px) {
	.primary-nav {
		gap: 18px;
	}

	.primary-nav > a:not(.button) {
		font-size: 12px;
	}

	.hero-grid {
		gap: 36px;
	}

	.platform-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 920px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.header-inner {
		min-height: 70px;
	}

	.menu-toggle {
		display: block;
	}

	.primary-nav {
		position: fixed;
		top: 70px;
		right: 0;
		left: 0;
		height: calc(100vh - 70px);
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 20px;
		background: rgba(9, 11, 16, 0.99);
	}

	body.admin-bar .primary-nav {
		top: 116px;
		height: calc(100vh - 116px);
	}

	.primary-nav.is-open {
		display: flex;
	}

	.primary-nav > a:not(.button) {
		padding: 18px 4px;
		border-bottom: 1px solid var(--line);
		font-size: 17px;
	}

	.primary-nav > a:not(.button)::after {
		display: none;
	}

	.primary-nav .nav-cta {
		margin-top: 20px;
	}

	.hero {
		padding: 78px 0 70px;
	}

	.hero-grid,
	.subhero-grid,
	.section-heading,
	.split,
	.cta-grid,
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.project-aside {
		position: static;
	}

	.signal-console {
		max-width: 620px;
		transform: none;
	}

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

	.platform-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.process-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.process-step:nth-child(3) {
		border-right: 0;
	}

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

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

	.section {
		padding: 82px 0;
	}
}

@media (max-width: 620px) {
	.shell,
	.narrow {
		width: min(100% - 28px, var(--shell));
	}

	.brand-word {
		font-size: 18px;
	}

	.brand-mark {
		width: 32px;
		height: 32px;
	}

	.hero {
		min-height: 0;
		padding: 64px 0 58px;
	}

	.display-title {
		font-size: 51px;
	}

	.lead,
	.subhero p {
		font-size: 16px;
	}

	.signal-console {
		padding: 15px;
	}

	.console-main strong {
		font-size: 36px;
	}

	.console-stats,
	.proof-grid,
	.grid-2,
	.grid-3,
	.grid-4,
	.platform-grid,
	.process-grid,
	.stat-wall,
	.form-grid,
	.post-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

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

	.proof-item,
	.process-step {
		border-right: 0;
	}

	.proof-item {
		min-height: auto;
	}

	.section {
		padding: 66px 0;
	}

	.section-heading {
		margin-bottom: 36px;
	}

	.section-title {
		font-size: 42px;
	}

	.dark-card,
	.light-card {
		padding: 24px;
	}

	.light-card.featured {
		transform: none;
	}

	.solution-card.is-selected {
		transform: none;
	}

	.platform-card {
		min-height: 135px;
	}

	.process-step {
		min-height: 180px;
	}

	.subhero {
		padding: 72px 0 64px;
	}

	.subhero h1 {
		font-size: 51px;
	}

	.cta-section {
		padding: 68px 0;
	}

	.contact-form {
		padding: 22px;
	}

	.field.full {
		grid-column: auto;
	}

	.footer-bottom {
		display: block;
	}

	.footer-bottom div {
		margin-top: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
