:root {
	--navy: #0a1c2e;
	--navy-lt: #122436;
	--blue: #1a4a72;
	--blue-lt: #1e6090;
	--red: #c0392b;
	--red-lt: #e74c3c;
	--amber: #d4841a;
	--amber-lt: #f0a030;
	--sun: #ffd166;
	--teal: #0e7a8a;
	--teal-lt: #12a0b5;
	--sage: #2e7d52;
	--cream: #fdfaf5;
	--warm: #f7f2ea;
	--stone: #ede8e0;
	--sky: #e8f3f8;
	--alert: #fff3cd;
	--body: #2c3e50;
	--muted: #6b7f8f;
	--white: #ffffff;
	--e: cubic-bezier(0.22, 0.61, 0.36, 1);
	--spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── NAV ── */
nav {
	background: rgba(10, 28, 46, 0.97);
}

.nav-links a:hover {
	color: var(--amber-lt);
}

.nav-cta {
	border-radius: 100px;
	box-shadow: 0 4px 18px rgba(212, 132, 26, 0.35);
	transition:
		background 0.2s,
		transform 0.15s;
}

.nav-cta:hover {
	background: var(--amber-lt);
	transform: translateY(-1px);
}

/* ── HERO ── */
#home {
	min-height: 100vh;
	background: var(--navy);
	position: relative;
	overflow: hidden;
	padding-top: 100px 0;
}

.home-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
	min-height: calc(100vh - 200px);
	margin-top: 50px;
}

.hero-wash {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(
			ellipse 65% 55% at 80% 40%,
			rgba(26, 74, 114, 0.35) 0%,
			transparent 65%
		),
		radial-gradient(
			ellipse 45% 45% at 15% 70%,
			rgba(192, 57, 43, 0.15) 0%,
			transparent 60%
		),
		radial-gradient(
			ellipse 35% 35% at 50% 5%,
			rgba(212, 132, 26, 0.08) 0%,
			transparent 60%
		);
}

.hero-dots {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.04) 1px,
		transparent 1px
	);
	background-size: 30px 30px;
}

.hero-left {
	position: relative;
	z-index: 2;
}

.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(192, 57, 43, 0.18);
	border: 1px solid rgba(192, 57, 43, 0.4);
	border-radius: 100px;
	padding: 7px 15px;
	margin-bottom: 15px;
}

.hero-pill-dot {
	min-width: 8px;
	min-height: 8px;
	border-radius: 50%;
	background: var(--red-lt);
	animation: pulse 1.8s infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.3;
		transform: scale(1.5);
	}
}

.hero-pill-text {
	font-size: 12px;
	font-weight: 700;
	color: var(--red-lt);
	letter-spacing: 0.05em;
}

.hero-h1 {
	font-size: clamp(32px, 3.6vw, 56px);
	color: var(--white);
	line-height: 1.12;
	margin-bottom: 24px;
	animation: slideUp 0.9s var(--e) both;
}

.hero-h1 em {
	color: var(--amber-lt);
	font-style: italic;
}

.hero-sub {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.82;
	max-width: 500px;
	margin-bottom: 40px;
	animation: slideUp 0.9s 0.1s var(--e) both;
}

.hero-sub strong {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 700;
}

.hero-btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	animation: slideUp 0.9s 0.2s var(--e) both;
}

.btn-amber,
.btn-outline {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	font-weight: 800;
	padding: 15px 30px;
	border-radius: 100px;
}

.btn-amber {
	background: var(--amber);
	color: var(--white);
	box-shadow: 0 6px 24px rgba(212, 132, 26, 0.35);
	transition:
		background 0.2s,
		transform 0.2s var(--spring);
}

.btn-amber:hover {
	background: var(--amber-lt);
	transform: translateY(-2px) scale(1.02);
}

.btn-outline {
	background: transparent;
	color: rgba(255, 255, 255, 0.85);
	border: 2px solid rgba(255, 255, 255, 0.25);
	transition:
		border-color 0.2s,
		color 0.2s;
}

.btn-outline:hover {
	border-color: var(--amber-lt);
	color: var(--amber-lt);
}

.hero-right {
	position: relative;
	z-index: 2;
	animation: slideUp 0.9s 0.15s var(--e) both;
}

.testing-gap-card,
.gap-card {
	opacity: 0;
	transform: translateX(100%);
}

.testing-gap-card.fade-in-slide-left,
.gap-card.fade-in-slide-left {
	opacity: 1;
	transform: translateX(0);
	transition: 0.6s ease;
}

.stat {
	opacity: 0;
}

.stat.fade-in-delay {
	opacity: 1;
	transition: 0.6s ease;
}

.layer,
.bm-card,
.court-card,
.user-card,
.faq-item {
	opacity: 0;
	transform: translateY(20px);
}

.layer.fade-in-up,
.bm-card.fade-in-up,
.court-card.fade-in-up,
.user-card.fade-in-up,
.faq-item.fade-in-up {
	opacity: 1;
	transform: translateY(0);
	transition: 0.6s ease;
}

.tech-display,
.table,
#contact-road-sideimpairment-form {
	opacity: 0;
}

.tech-display.fade-in,
.table.fade-in,
#contact-road-sideimpairment-form.fade-in {
	opacity: 1;
	transition: 0.6s ease;
}

.ci-item {
	opacity: 0;
	transform: translateX(-100%);
}

.ci-item.fade-in-slide-right {
	opacity: 1;
	transform: translateX(0);
	transition: 0.6s ease;
}

.scene-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.scene-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	text-align: center;
	transition:
		background 0.25s,
		border-color 0.25s,
		transform 0.25s var(--spring);
}

.scene-card:hover {
	background: rgba(26, 74, 114, 0.2);
	border-color: rgba(26, 96, 144, 0.5);
	transform: translateY(-4px);
}

.sc-icon {
	font-size: clamp(26px, calc(24.27px + 0.541vw), 32px);
	margin-bottom: 10px;
}

.sc-label {
	font-size: 14px;
	font-weight: 700;
	color: var(--amber-lt);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.sc-val {
	font-size: clamp(20px, calc(18.27px + 0.541vw), 26px);
	color: var(--white);
	font-weight: 700;
	margin-bottom: 4px;
}

.sc-sub,
.scene-card.wide p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.5;
}

.scene-card.wide {
	grid-column: 1/-1;
	display: flex;
	align-items: center;
	gap: 15px;
	text-align: left;
}

.scene-card.wide .sc-icon {
	flex-shrink: 0;
	font-size: 28px;
	margin: 0;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.eyebrow {
	font-weight: 500;
	color: var(--blue-lt);
	margin-bottom: 5px;
}

.sh {
	font-size: clamp(26px, 3vw, 44px);
	color: var(--navy);
	line-height: 1.15;
	margin-bottom: 16px;
	font-weight: 700;
}

.sh em {
	color: var(--teal);
	font-style: italic;
}

.sintro {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--muted);
	line-height: 1.85;
	max-width: 680px;
	margin-bottom: clamp(30px, calc(24.234px + 1.802vw), 50px);
}

/* ── ALERT BANNER ── */
.alert-bar {
	background: var(--alert);
	padding: 15px;
}

.alert-inner {
	display: flex;
	align-items: center;
	gap: 15px;
}

.alert-icon {
	font-size: 22px;
	flex-shrink: 0;
}

.alert-text {
	font-size: 14px;
	color: #5a3e00;
	line-height: 1.5;
}

.alert-text strong {
	color: #3a2600;
	font-weight: 800;
}

/* ── STATS BAND ── */
.stats-band {
	background: linear-gradient(135deg, var(--blue), var(--navy));
	padding: 50px 0;
}

.stats-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.stat {
	text-align: center;
	padding: 0 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat:first-child {
	padding-left: 0;
}

.stat:last-child {
	border-right: none;
	padding-right: 0;
}

.stat-n {
	font-size: clamp(29px, calc(22.946px + 1.892vw), 50px);
	color: var(--sun);
	line-height: 1;
	margin-bottom: 10px;
}

.stat-l {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.5;
}

.stat-s {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.38);
	margin-top: 6px;
	letter-spacing: 0.1em;
}

/* ── THE GAP ── */
.gap {
	background: var(--white);
	padding: var(--vertical-padding) 0;
}

.gap-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(25px, calc(17.793px + 2.252vw), 50px);
	align-items: start;
}

.gap-grid>div:nth-of-type(2) {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.prose {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--body);
	line-height: 1.85;
	margin-bottom: clamp(10px, calc(7.117px + 0.901vw), 20px);
}
.prose:last-of-type {
	margin-bottom: 0;
}

.prose strong {
	color: var(--navy);
}

.testing-gap-list {
	overflow: hidden;
}

.gap-card,
.problem-card {
	border-radius: 14px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
}

.gap-card {
	background: var(--stone);
	border-left: 3px solid var(--blue-lt);
}

.problem-card h4,
.gap-card h4 {
	font-size: clamp(14px, calc(12.847px + 0.36vw), 18px);
	font-weight: 700;
	margin-bottom: 8px;
}

.gap-card h4 {
	color: var(--navy);
}

.gap-card p,
.problem-card p {
	font-size: 14px;
	color: var(--body);
	line-height: 1.7;
}

.problem-card {
	background: linear-gradient(135deg, #fff0ee, #ffe4df);
	border-left: 3px solid var(--red);
}

.problem-card h4 {
	color: var(--red);
}

.problem-card .tag {
	font-size: 11px;
	color: var(--red);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

/* ── HOW IT WORKS ── */
.how {
	background: var(--sky);
	padding: var(--vertical-padding) 0;
}

.how-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(30px, calc(24.234px + 1.802vw), 50px);
	align-items: flex-start;
}

.layer-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
}

.layer-steps::before {
	content: '';
	position: absolute;
	left: clamp(17px, calc(14.982px + 0.631vw), 24px);
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--red), var(--amber), var(--teal-lt));
}

.layer {
	display: grid;
	grid-template-columns: clamp(38px, calc(35.117px + 0.901vw), 48px) 1fr;
	gap: clamp(15px, calc(13.559px + 0.45vw), 20px);
	padding: 0 0 clamp(20px, calc(17.117px + 0.901vw), 30px);
	position: relative;
}

.layer:last-child {
	padding-bottom: 0;
}

.layer-num {
	width: clamp(38px, calc(35.117px + 0.901vw), 48px);
	height: clamp(38px, calc(35.117px + 0.901vw), 48px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	font-weight: 700;
	color: var(--white);
	position: relative;
	z-index: 2;
}

.layer-num.l1 {
	background: var(--red);
	box-shadow: 0 4px 14px rgba(192, 57, 43, 0.4);
}

.layer-num.l2 {
	background: var(--amber);
	box-shadow: 0 4px 14px rgba(212, 132, 26, 0.4);
}

.layer-num.l3 {
	background: var(--teal);
	box-shadow: 0 4px 14px rgba(14, 122, 138, 0.4);
}

.layer-content {
	background: var(--white);
	border-radius: 14px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
}

.layer-tag {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.l1 + .layer-content .layer-tag,
.l-tag-1 {
	color: var(--red);
}

.l2 + .layer-content .layer-tag,
.l-tag-2 {
	color: var(--amber);
}

.l3 + .layer-content .layer-tag,
.l-tag-3 {
	color: var(--teal);
}

.layer-title {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: var(--navy);
	margin-bottom: 8px;
}

.layer-body {
	font-size: 14px;
	color: var(--body);
	line-height: 1.75;
}

.layer-body ul {
	margin-top: 8px;
	padding-left: 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.layer-body li {
	font-size: 14px;
}

.layer-time {
	display: inline-block;
	margin-top: 10px;
	background: var(--stone);
	border-radius: 100px;
	padding: 3px 12px;
	font-size: 12px;
	color: var(--muted);
}

/* right side tech display */
.tech-display {
	background: linear-gradient(160deg, var(--navy), var(--blue));
	border-radius: 24px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	position: sticky;
	top: 82px;
	overflow: hidden;
}

.tech-display::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 80% 60% at 70% 30%,
		rgba(14, 122, 138, 0.25) 0%,
		transparent 65%
	);
}

.eye-ring-wrap {
	width: clamp(100px, calc(94.234px + 1.802vw), 120px);
	height: clamp(100px, calc(94.234px + 1.802vw), 120px);
	border-radius: 50%;
	border: 2px solid rgba(14, 122, 138, 0.4);
	margin: 0 auto 28px;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.03);
}

.er1 {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(14, 122, 138, 0.25);
}

.er2 {
	position: absolute;
	inset: clamp(12px, calc(11.423px + 0.18vw), 14px);
	border-radius: 50%;
	border: 1px solid rgba(212, 132, 26, 0.2);
}

.eye-core {
	width: clamp(50px, calc(46.541px + 1.081vw), 62px);
	height: clamp(50px, calc(46.541px + 1.081vw), 62px);
	border-radius: 50%;
	background: var(--teal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(22px, calc(21.423px + 0.18vw), 24px);
	box-shadow: 0 0 clamp(22px, calc(21.423px + 0.18vw), 24px) rgba(14, 122, 138, 0.6);
	z-index: 2;
	position: relative;
}

.signal-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	position: relative;
	z-index: 2;
}

.sig {
	background: rgba(255, 255, 255, 0.07);
	border-radius: 8px;
	padding: 10px;
}

.sig.r {
	border-left: 3px solid var(--red-lt);
}

.sig.a {
	border-left: 3px solid var(--amber-lt);
}

.sig.t {
	border-left: 3px solid var(--teal-lt);
}

.sig.g {
	border-left: 3px solid var(--sage);
}

.sig-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 2px;
}

.sig-val {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.38);
}

/* ── THE BIOMARKERS ── */
.biomarkers {
	background: var(--warm);
	padding: var(--vertical-padding) 0;
}

.bm-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
	margin-bottom: clamp(30px, calc(24.234px + 1.802vw), 50px);
}

.biomarkers-card-wrapper {
	overflow: hidden;
}

.biomarkers .biomarkers-gap-card-title {
	font-size:clamp(14px, calc(13.423px + 0.18vw), 16px);
	color:var(--body);
	line-height:1.7;
	margin-bottom:12px;
}

.biomarkers-gap-card-list {
	list-style:none;
	display:flex;
	flex-direction:column;
	gap: 10px;
}

.biomarkers-gap-card-subtitle {
	font-size:clamp(14px, calc(13.423px + 0.18vw), 16px);
	color:var(--body);
}

.bm-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 15px;
}

.bm-card {
	background: var(--white);
	border-radius: 12px;
	padding: clamp(15px, calc(13.559px + 0.45vw), 20px);
	border-bottom: 3px solid var(--blue-lt);
	display: flex;
  flex-direction: column;
  justify-content: space-between;
	transition:
		transform 0.2s var(--spring),
		box-shadow 0.2s;
}

.bm-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.bm-card:nth-child(4n + 2) {
	border-bottom-color: var(--amber);
}

.bm-card:nth-child(4n + 3) {
	border-bottom-color: var(--red);
}

.bm-card:nth-child(4n + 4) {
	border-bottom-color: var(--teal);
}

.bm-num {
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 6px;
}

.bm-name {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 4px;
}

.bm-desc {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--muted);
	line-height: 1.5;
	margin-bottom: 6px;
}

.bm-rel {
	font-size: 12px;
	font-weight: 700;
	color: var(--blue-lt);
}

.bm-card:nth-child(4n + 2) .bm-rel {
	color: var(--amber);
}

.bm-card:nth-child(4n + 3) .bm-rel {
	color: var(--red);
}

.bm-card:nth-child(4n + 4) .bm-rel {
	color: var(--teal);
}

/* ── CANNABIS GAP ── */
.cannabis {
	background: var(--navy);
	padding: var(--vertical-padding) 0;
}

.cannabis .eyebrow {
	color: var(--amber-lt);
}

.cannabis .sh {
	color: var(--white);
}

.cannabis .sintro {
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 44px;
}

.table thead tr,
.table,
.table tr:nth-child(even) td {
	background: transparent;
}

.table thead tr {
	background: rgba(255, 255, 255, 0.08);
}

.table tr {
	background: rgba(255, 255, 255, 0.05);
}

.table td:first-child {
  color: var(--white);
}

.table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ct-badge {
	display: inline-block;
	border-radius: 100px;
	padding: 3px 12px;
	font-size: 11px;
	font-weight: 700;
}

.cb-yes {
	background: rgba(46, 125, 82, 0.2);
	color: #4ae08a;
}

.cb-no {
	background: rgba(192, 57, 43, 0.2);
	color: #ff7a6a;
}

.cb-partial {
	background: rgba(212, 132, 26, 0.2);
	color: #ffbb55;
}

.cannabis-note {
	margin-top: 30px;
	background: rgba(212, 132, 26, 0.12);
	border: 1px solid rgba(212, 132, 26, 0.3);
	border-radius: 12px;
	padding: 15px;
}

.cannabis-note p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.75;
}

.cannabis-note strong {
	color: var(--amber-lt);
}

/* ── COURT DEFENSIBLE ── */
.court {
	background: var(--white);
	padding: var(--vertical-padding) 0;
}

.court-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-bottom: 40px;
}

.court-card {
	background: var(--stone);
	border-radius: 16px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	border-top: 3px solid var(--blue-lt);
	transition: transform 0.25s var(--spring);
}

.court-card:hover {
	transform: translateY(-5px);
}

.court-card:nth-child(2) {
	border-top-color: var(--amber);
}

.court-card:nth-child(3) {
	border-top-color: var(--sage);
}

.cc-icon {
	font-size: 30px;
	margin-bottom: 15px;
}

.cc-title {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: var(--navy);
	margin-bottom: 10px;
}

.cc-body {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--muted);
	line-height: 1.75;
}

.cc-body strong {
	color: var(--navy);
}

.precedent-box {
	background: var(--navy);
	border-radius: 14px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 15px;
	align-items: start;
}

.pb-icon {
	font-size: clamp(26px, calc(24.27px + 0.541vw), 32px);
}

.pb-title {
	font-size: clamp(16px, calc(14.847px + 0.36vw), 20px);
	color: var(--white);
	margin-bottom: 10px;
}

.pb-body {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.8;
}

.pb-body strong {
	color: var(--amber-lt);
}

/* ── WHO USES IT ── */
.users {
	background: var(--sky);
	padding: var(--vertical-padding) 0;
}

.users-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.user-card {
	background: var(--white);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
	transition:
		transform 0.25s var(--spring),
		box-shadow 0.25s;
}

.user-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 38px rgba(0, 0, 0, 0.13);
}

.uc-top {
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	text-align: center;
}

.uc-icon {
	font-size: 38px;
	margin-bottom: 12px;
}

.uc-title {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: var(--navy);
	margin-bottom: 6px;
}

.uc-role {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.uc-bottom {
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	border-top: 1px solid var(--stone);
}

.uc-bottom p {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--body);
	line-height: 1.75;
}

.uc-bottom strong {
	color: var(--teal);
}

.user-card:nth-child(1) .uc-top {
	background: linear-gradient(160deg, #e8eef8, #c8d4f0);
}

.user-card:nth-child(1) .uc-role {
	color: #4a6fa5;
}

.user-card:nth-child(2) .uc-top {
	background: linear-gradient(160deg, #e8f3f8, #c0dce8);
}

.user-card:nth-child(2) .uc-role {
	color: var(--teal);
}

.user-card:nth-child(3) .uc-top {
	background: linear-gradient(160deg, #fff3dc, #ffe0a0);
}

.user-card:nth-child(3) .uc-role {
	color: var(--amber);
}

/* ── FAQ ── */
.faq {
	background: var(--cream);
	padding: var(--vertical-padding) 0;
}

.faq-a p strong {
	color: var(--navy);
}

/* ── CONTACT ── */
.contact {
	background: var(--navy);
	padding: var(--vertical-padding) 0;
}

.contact-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contact .sh {
	color: var(--white);
}

.contact .sintro {
	color: rgba(255, 255, 255, 0.6);
}

.cf-submit {
	background: var(--amber);
	color: var(--white);
	font-weight: 800;
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	padding: clamp(8px, calc(5.982px + 0.631vw), 15px);
	border-radius: 100px;
	border: none;
	cursor: pointer;
	width: 100%;
	box-shadow: 0 6px 24px rgba(212, 132, 26, 0.4);
	transition:
		background 0.2s,
		transform 0.2s;
}

.cf-submit:hover {
	background: var(--amber-lt);
	transform: translateY(-1px);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.ci-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.ci-icon {
	font-size: 24px;
	flex-shrink: 0;
	margin-top: 2px;
}

.ci-title {
	font-size: 13px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 4px;
}

.ci-val {
	font-size: 15px;
	color: var(--white);
	font-weight: 600;
}

.ci-val a {
	color: var(--amber-lt);
}

/* ── RESPONSIVE ── */
@media (max-width: 1020px){
	.home-content {
    grid-template-columns: 1fr;
	}
	.hero-sub {
		min-width: 100%;
	}
}
@media (max-width: 900px) {
	#home {
		grid-template-columns: 1fr;
	}

	.stats-inner {
		grid-template-columns: 1fr 1fr;
	}

	.stat {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		padding: 0 10px;
	}
	.stat:first-of-type {
		padding-left: 0;
		padding-bottom: 10px;
	}
	.stat:nth-of-type(2) {
		border-right: none;
		border-left: 1px solid rgba(255, 255, 255, 0.12);
		padding-right: 0;
		padding-bottom: 10px;
	}
	.stat:nth-of-type(3) {
		border-right: 1px solid rgba(255, 255, 255, 0.12);
		border-bottom: none;
		padding-top: 10px;
		padding-left: 0;
	}
	.stat:nth-of-type(4) {
		border-right: none;
		border-bottom: none;
		padding-top: 10px;
		padding-right: 0;
	}

	.gap-grid,
	.how-split,
	.bm-intro,
	.court-grid,
	.contact-inner {
		grid-template-columns: 1fr;
	}

	.ct-head,
	.ct-row {
		grid-template-columns: 1fr 1fr;
	}

	.users-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media(max-width:820px) {
	.nav-container{
		justify-content: space-between;
	}
	.nav-burger {
		display: block;
		width: 25px;
		height: 25px;
	}
	.nav-links {
		flex-direction: column;
		position: fixed;
		top: 0;
		right: 0;
		height: 100%;
		padding: 20px;
		background: rgba(24, 56, 94, 0.97);
		transform: translateX(100%);
		transition: 0.3s ease;
		z-index: 902;
	}
	.nav-links.active {
		transform: translateX(0);
	}
}
@media(max-width: 555px){
	.precedent-box {
    grid-template-columns: 1fr;
	}
	.users-grid {
		grid-template-columns: 1fr;
	}
}
@media(max-width: 405px) {
	.scene-grid {
    grid-template-columns: 1fr;
	}
	.scene-card.wide {
    flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}
	.stats-inner {
		grid-template-columns: 1fr;
	}
	.stat {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.stat:first-of-type {
		padding-top: 0;
		padding-left: 0;
		padding-right: 0;
	}
	.stat:nth-of-type(2) {
		border-right: none;
		border-left: none;
		padding-right: 0;
		padding-left: 0;
	}
	.stat:nth-of-type(3) {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		padding-top: 10px;
		padding-left: 0;
		padding-right: 0;
	}
	.stat:nth-of-type(4) {
		border-right: none;
		border-bottom: none;
		padding-top: 10px;
		padding-right: 0;
		padding-left: 0;
	}
	.stat:last-of-type {
		padding-bottom: 0;
	}
}
@media(max-width: 375px) {
	.alert-inner {
    flex-wrap: wrap;
    justify-content: center;
		gap: 5px;
	}
	.bm-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
	.signal-grid {
    grid-template-columns: 1fr;
	}
}