/* ================================================================
   FLARE LABS PAGE - Section-specific styles
   Overhaul: 2026-04-17 (Digital Operations positioning)
   ================================================================ */

/* Restate the new tokens here so UCSS can't drop them and LiteSpeed
   bundling can't lose them between global.css regenerations. */
:root {
	--accent-blue: #15587A;
	--cream-bg: #F5F0E6;
	--cream-dot: #F0E6D5;
}

/* LiteSpeed delays theme JS until user interaction, which leaves .anim
   elements stuck at opacity:0 on this page (animations.js can't run).
   Force content visible by default here; the fade-up effect is cosmetic. */
.labs-hero .anim,
.labs-section .anim {
	opacity: 1 !important;
	animation: none !important;
}

/* ══════════════════════════════════════════════════════════════
   HERO METRICS BLOCK (design preserved, copy changed)
   ══════════════════════════════════════════════════════════════ */

.hero-metrics {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	align-self: stretch;
}

.hero-metric-card {
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(108, 171, 182, 0.12);
	border-radius: 6px;
	padding: 28px 24px;
	transition: border-color 0.3s ease, transform 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-metric-card:hover {
	border-color: rgba(108, 171, 182, 0.35);
	transform: translateY(-2px);
}

.hero-metric-val {
	font-family: var(--font-primary);
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 10px;
}

.hero-metric-val .metric-unit {
	font-size: 18px;
	font-weight: 400;
	color: var(--teal-blue);
}

.hero-metric-label {
	font-family: var(--font-body);
	font-size: 14px;
	color: rgba(245, 245, 245, 0.65);
	line-height: 1.5;
	font-weight: 300;
}

.hero-secondary-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--teal-blue);
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.05em;
	margin-left: 20px;
	transition: color 0.25s ease;
}

.hero-secondary-cta:hover {
	color: var(--peach-warm);
}

/* ══════════════════════════════════════════════════════════════
   SECTION WRAPPER + COMMON TOKENS
   ══════════════════════════════════════════════════════════════ */

.labs-section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.labs-section .container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 40px;
}

.labs-section.has-dots {
	background-color: #F5F0E6;
	background-image: radial-gradient(#F0E6D5 1px, transparent 1px);
	background-size: 32px 32px;
}

.labs-section h2 {
	font-family: var(--font-primary);
	font-size: clamp(30px, 3.2vw, 42px);
	font-weight: 300;
	color: var(--teal-deep);
	line-height: 1.15;
	margin: 0 0 20px 0;
}

.labs-section h2 strong {
	font-weight: 700;
	color: #15587A;
}

.labs-fineprint {
	font-style: italic;
	color: rgba(15, 58, 74, 0.6);
	font-size: 14px;
	margin-top: 18px;
	text-align: center;
}

/* Section header with big peach number */
.section-header {
	display: flex;
	align-items: flex-end;
	gap: 28px;
	margin-bottom: 32px;
}

.section-num-large {
	font-family: var(--font-primary);
	font-size: 92px;
	font-weight: 700;
	color: var(--peach-warm);
	line-height: 0.82;
	letter-spacing: -0.02em;
}

.section-tag {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--teal-blue);
	margin-bottom: 6px;
}

.section-title {
	font-family: var(--font-primary);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 700;
	color: var(--teal-deep);
	margin: 0;
	letter-spacing: 0.01em;
	line-height: 1;
}

.section-intro {
	font-family: var(--font-body);
	font-size: 17px;
	color: rgba(15, 58, 74, 0.85);
	line-height: 1.75;
	max-width: 760px;
	margin: 0 0 40px 0;
	font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 2: THE PROBLEM (dark teal)
   ══════════════════════════════════════════════════════════════ */

.labs-problem {
	background: var(--teal-deep);
	border-top: 1px solid rgba(108, 171, 182, 0.1);
	border-bottom: 1px solid rgba(108, 171, 182, 0.1);
}

.labs-problem::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 50% at 20% 30%, rgba(108, 171, 182, 0.06), transparent 60%),
		radial-gradient(ellipse 60% 40% at 80% 70%, rgba(254, 187, 138, 0.04), transparent 60%);
	pointer-events: none;
}

.labs-problem .container {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 80px;
	align-items: start;
}

.labs-problem h2 {
	color: #ffffff;
	font-size: clamp(30px, 3.2vw, 44px);
	font-weight: 300;
}

.labs-problem h2 strong {
	color: var(--peach-warm);
	font-weight: 600;
}

.labs-problem p {
	font-family: var(--font-body);
	font-size: 17px;
	color: rgba(245, 245, 245, 0.82);
	line-height: 1.85;
	font-weight: 300;
	margin: 0 0 18px 0;
}

.labs-problem .problem-list {
	list-style: none;
	padding: 0;
	margin: 16px 0 28px 0;
}

.labs-problem .problem-list li {
	font-family: var(--font-body);
	font-size: 16px;
	color: rgba(245, 245, 245, 0.85);
	line-height: 1.55;
	padding: 12px 0 12px 28px;
	border-bottom: 1px dashed rgba(108, 171, 182, 0.18);
	position: relative;
	font-weight: 300;
}

.labs-problem .problem-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	top: 12px;
	color: var(--peach-warm);
	font-weight: 700;
}

.labs-problem .problem-list li:last-child {
	border-bottom: none;
}

.labs-problem .problem-callout {
	font-family: var(--font-primary);
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	margin-top: 30px;
	padding-top: 28px;
	border-top: 2px solid rgba(254, 187, 138, 0.3);
	line-height: 1.5;
}

.labs-problem .problem-callout strong {
	color: var(--peach-warm);
	font-weight: 700;
}

/* Problem stats sidebar (stat strips, not cards) */
.problem-stats {
	display: flex;
	flex-direction: column;
	gap: 28px;
	position: sticky;
	top: 120px;
}

.problem-stat {
	background: rgba(0, 0, 0, 0.28);
	padding: 28px 26px;
	border-left: 3px solid var(--peach-warm);
	border-radius: 0 6px 6px 0;
}

.problem-stat-num {
	font-family: var(--font-primary);
	font-size: 44px;
	font-weight: 700;
	color: var(--peach-warm);
	line-height: 1;
}

.problem-stat-rule {
	width: 36px;
	height: 2px;
	background: rgba(254, 187, 138, 0.5);
	margin: 14px 0;
}

.problem-stat-text {
	font-family: var(--font-body);
	font-size: 14px;
	color: rgba(245, 245, 245, 0.75);
	line-height: 1.55;
	font-weight: 300;
}

/* New "Ask yourself honestly" question cards (replaces 74/53/35% stats) */
.problem-stats-header {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #FEBB8A;
	margin-bottom: 4px;
}

.problem-stat-q .problem-stat-num {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.problem-stat-q .problem-stat-text {
	font-family: var(--font-primary);
	font-style: italic;
	font-size: 15.5px;
	font-weight: 400;
	color: rgba(245, 245, 245, 0.9);
	line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 3: WHAT WE DO (cream, 2-panel with connector)
   ══════════════════════════════════════════════════════════════ */

.labs-what-we-do .wwd-heading {
	text-align: center;
	margin-bottom: 56px;
}

.labs-what-we-do .wwd-grid {
	display: grid;
	grid-template-columns: 1fr 72px 1fr;
	gap: 0;
	align-items: stretch;
}

.wwd-panel {
	background: #ffffff;
	padding: 48px 40px 44px;
	border-radius: 8px;
	border: 1px solid rgba(15, 58, 74, 0.08);
	box-shadow: 0 6px 20px rgba(15, 58, 74, 0.04);
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wwd-panel:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(15, 58, 74, 0.08);
}

.wwd-panel-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: var(--teal-blue);
	border-radius: 8px 8px 0 0;
}

.wwd-panel.wwd-flagship {
	background: linear-gradient(180deg, #E2ECF0 0%, #F0F5F7 100%);
	border-color: rgba(254, 187, 138, 0.45);
	box-shadow: 0 10px 30px rgba(15, 58, 74, 0.08);
}

.wwd-panel.wwd-flagship .wwd-panel-bar {
	background: var(--peach-warm);
	height: 8px;
}

.wwd-label {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--teal-blue);
	margin-bottom: 14px;
}

.wwd-panel.wwd-flagship .wwd-label {
	color: #15587A;
}

.wwd-panel h3 {
	font-family: var(--font-primary);
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 700;
	color: var(--teal-deep);
	margin: 0 0 14px 0;
	line-height: 1.25;
}

.wwd-sub {
	font-family: var(--font-body);
	font-size: 16px;
	color: rgba(15, 58, 74, 0.72);
	line-height: 1.65;
	margin: 0 0 24px 0;
	font-style: italic;
	flex-grow: 1;
}

.wwd-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-primary);
	font-size: 14px;
	font-weight: 700;
	color: #15587A;
	text-decoration: none;
	letter-spacing: 0.04em;
	padding-bottom: 2px;
	border-bottom: 2px solid #15587A;
	align-self: flex-start;
	transition: gap 0.25s ease, color 0.25s ease;
}

.wwd-cta:hover {
	gap: 14px;
	color: var(--teal-deep);
}

.wwd-panel.wwd-flagship .wwd-cta {
	color: #15587A;
	border-bottom-color: var(--peach-deep);
}

.wwd-connector {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.wwd-connector .wwd-line {
	flex: 1;
	width: 0;
	border-left: 2px dashed rgba(108, 171, 182, 0.4);
}

.wwd-connector .wwd-diamond {
	width: 14px;
	height: 14px;
	background: var(--peach-warm);
	transform: rotate(45deg);
	margin: 14px 0;
	box-shadow: 0 0 0 4px #F5F0E6, 0 0 0 5px rgba(254, 187, 138, 0.3);
}

/* Rotate connector horizontally between side-by-side panels */
@media (min-width: 1025px) {
	.wwd-connector {
		flex-direction: row;
	}
	.wwd-connector .wwd-line {
		flex: 1;
		height: 0;
		width: auto;
		border-left: none;
		border-top: 2px dashed rgba(108, 171, 182, 0.4);
	}
	.wwd-connector .wwd-diamond {
		margin: 0 14px;
	}
}

/* ══════════════════════════════════════════════════════════════
   SECTION 4 & 5: SYSTEM DIAGRAM (flagship sections)
   ══════════════════════════════════════════════════════════════ */

.system-diagram {
	background: #ffffff;
	border: 1px solid rgba(15, 58, 74, 0.08);
	border-radius: 10px;
	padding: 30px 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0;
	position: relative;
	box-shadow: 0 6px 24px rgba(15, 58, 74, 0.05);
	margin: 20px 0;
}

.system-diagram-large {
	padding: 40px 0;
	margin: 40px 0 48px;
}

.tier-col {
	padding: 32px 30px;
	border-right: 1px dashed rgba(15, 58, 74, 0.15);
	position: relative;
	display: flex;
	flex-direction: column;
}

.tier-col:last-child {
	border-right: none;
}

.tier-label {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--teal-blue);
	margin-bottom: 12px;
}

.tier-name {
	font-family: var(--font-primary);
	font-size: 22px;
	font-weight: 700;
	color: var(--teal-deep);
	margin: 0 0 6px 0;
	line-height: 1.2;
}

.tier-tagline {
	font-family: var(--font-body);
	font-size: 13px;
	color: rgba(15, 58, 74, 0.62);
	font-style: italic;
	margin-bottom: 16px;
	line-height: 1.5;
}

.tier-price {
	font-family: var(--font-primary);
	font-size: 32px;
	font-weight: 700;
	color: #15587A;
	line-height: 1;
	margin: 4px 0 16px 0;
	letter-spacing: -0.01em;
}

.tier-price-pre {
	font-size: 14px;
	color: rgba(15, 58, 74, 0.55);
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	display: inline-block;
	margin-right: 6px;
	vertical-align: 10px;
}

.tier-price-sub {
	font-size: 14px;
	color: rgba(15, 58, 74, 0.55);
	font-weight: 400;
}

.tier-desc {
	font-family: var(--font-body);
	font-size: 14px;
	color: rgba(15, 58, 74, 0.78);
	line-height: 1.65;
	margin: 0 0 20px 0;
	flex-grow: 1;
}

.tier-list {
	list-style: none;
	padding: 0;
	margin: 0;
	flex-grow: 1;
}

.tier-list li {
	font-family: var(--font-body);
	font-size: 13.5px;
	color: rgba(15, 58, 74, 0.82);
	line-height: 1.65;
	padding: 8px 0 8px 18px;
	position: relative;
}

.tier-list li::before {
	content: '●';
	color: var(--teal-blue);
	font-size: 7px;
	position: absolute;
	left: 2px;
	top: 14px;
}

.tier-list li.inherits {
	color: #15587A;
	font-style: italic;
	font-weight: 700;
	border-bottom: 1px dashed rgba(21, 88, 122, 0.25);
	margin-bottom: 6px;
	padding-bottom: 10px;
}

.tier-list li.inherits::before {
	content: '+';
	color: #15587A;
	font-size: 14px;
	top: 6px;
	font-weight: 700;
}

.btn-tier {
	align-self: stretch;
	justify-content: center;
	padding: 14px 18px !important;
	font-size: 13px !important;
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* FLAGSHIP breakout treatment */
.tier-col-flagship {
	background: var(--teal-deep);
	color: #ffffff;
	border-left: 3px solid var(--peach-warm);
	border-right: 3px solid var(--peach-warm);
	border-radius: 6px;
	box-shadow: 0 18px 44px rgba(15, 58, 74, 0.28);
	z-index: 2;
}

.tier-col-flagship.tier-col-protrude {
	margin: -40px 0;
	padding: 60px 30px;
}

.labs-01 .tier-col-protrude {
	background: #FAFCFD;
	border-left: 3px solid var(--teal-mid);
	border-right: 3px solid var(--teal-mid);
	border-radius: 6px;
	box-shadow: 0 10px 28px rgba(19, 161, 200, 0.15);
	margin: -24px 0;
	padding: 46px 30px;
	z-index: 1;
}

/* Website Builds: Tier II gets a subtle highlight without the vertical protrusion,
   so all 3 CTA buttons stay on the same baseline. */
.labs-01 .tier-col-feature {
	background: #FAFCFD;
	border-left: 3px solid var(--teal-mid);
	border-right: 3px solid var(--teal-mid);
	border-radius: 6px;
	box-shadow: 0 10px 28px rgba(19, 161, 200, 0.15);
	z-index: 1;
}

.labs-01 .tier-col-protrude .tier-label {
	color: var(--teal-mid);
}

.tier-ribbon {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--peach-warm);
	color: var(--teal-deep);
	padding: 6px 16px;
	border-radius: 4px;
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(15, 58, 74, 0.18);
}

.tier-col-flagship .tier-label {
	color: var(--peach-warm);
}

.tier-col-flagship .tier-name {
	color: #ffffff;
	font-size: 24px;
}

.tier-col-flagship .tier-tagline {
	color: rgba(254, 187, 138, 0.9);
}

.tier-col-flagship .tier-price {
	color: var(--peach-warm);
}

.tier-col-flagship .tier-price-pre {
	color: rgba(254, 187, 138, 0.6);
}

.tier-col-flagship .tier-list li {
	color: rgba(245, 245, 245, 0.88);
}

.tier-col-flagship .tier-list li::before {
	color: var(--peach-warm);
}

.tier-col-flagship .tier-list li.inherits {
	color: var(--peach-warm);
	border-bottom-color: rgba(254, 187, 138, 0.3);
}

.tier-col-flagship .tier-list li.inherits::before {
	color: var(--peach-warm);
}

.labs-02-cta {
	text-align: center;
	margin-top: 56px;
}

.labs-02-cta .btn {
	margin-bottom: 16px;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 6: HOW ENGAGEMENTS WORK (dark teal schematic)
   ══════════════════════════════════════════════════════════════ */

.labs-process {
	background: var(--teal-deep);
	color: #ffffff;
}

.labs-process::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(108, 171, 182, 0.08), transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(254, 187, 138, 0.05), transparent 50%);
	pointer-events: none;
}

.labs-process .container {
	position: relative;
	z-index: 2;
}

.labs-process h2 {
	color: #ffffff;
	text-align: center;
}

.labs-process h2 strong {
	color: var(--peach-warm);
	font-weight: 700;
}

.process-sub {
	font-family: var(--font-body);
	font-size: 17px;
	color: rgba(245, 245, 245, 0.7);
	text-align: center;
	margin: 0 auto 60px;
	max-width: 620px;
	font-weight: 300;
	line-height: 1.65;
}

.process-schematic {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
	position: relative;
	padding: 40px 0 30px;
}

.process-connector {
	position: absolute;
	left: 10%;
	right: 10%;
	top: 72px;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, rgba(254, 187, 138, 0.6) 12%, rgba(254, 187, 138, 0.6) 88%, transparent 100%);
	z-index: 0;
}

.process-node {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 8px;
}

.node-num {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: var(--teal-deep);
	border: 2px solid var(--peach-warm);
	color: var(--peach-warm);
	font-family: var(--font-primary);
	font-size: 22px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 22px;
	box-shadow: 0 0 0 6px var(--teal-deep);
	transition: transform 0.25s ease, background 0.25s ease;
}

.process-node-paid .node-num {
	background: var(--peach-warm);
	color: var(--teal-deep);
}

.process-node:hover .node-num {
	transform: scale(1.06);
}

.node-title {
	font-family: var(--font-primary);
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 4px;
	line-height: 1.25;
}

.node-tag {
	font-family: var(--font-body);
	font-size: 11px;
	color: var(--peach-warm);
	font-style: italic;
	margin-bottom: 10px;
	font-weight: 500;
}

.node-detail {
	font-family: var(--font-body);
	font-size: 13.5px;
	color: rgba(245, 245, 245, 0.72);
	line-height: 1.6;
	font-weight: 300;
	margin: 0 0 14px 0;
}

.process-note {
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--teal-blue);
	font-style: italic;
	text-align: center;
	margin: 40px 0 0 0;
	letter-spacing: 0.02em;
}

.btn-outline-peach {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: 1.5px solid var(--peach-warm);
	color: var(--peach-warm) !important;
	padding: 8px 14px;
	border-radius: 4px;
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.04em;
	transition: all 0.2s ease;
}

.btn-outline-peach:hover {
	background: var(--peach-warm);
	color: var(--teal-deep) !important;
}

.btn-sm {
	padding: 6px 12px !important;
	font-size: 11px !important;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 7: THE GUARANTEE (dark teal)
   ══════════════════════════════════════════════════════════════ */

.labs-guarantee {
	background: linear-gradient(180deg, var(--teal-deep) 0%, #0B2D3A 100%);
	color: #ffffff;
	padding: 80px 0;
}

.labs-guarantee .container {
	max-width: 980px;
}

.guarantee-primary {
	display: grid;
	grid-template-columns: 8px 1fr;
	gap: 36px;
	align-items: stretch;
	padding: 8px 0 20px;
}

.guarantee-bar {
	background: var(--peach-warm);
	border-radius: 4px;
}

.guarantee-label {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--peach-warm);
	margin-bottom: 20px;
}

.guarantee-quote {
	font-family: var(--font-primary);
	font-size: clamp(22px, 2.5vw, 32px);
	font-style: italic;
	font-weight: 300;
	color: #ffffff;
	line-height: 1.35;
	margin: 0 0 20px 0;
	padding: 0;
	border: none;
}

.guarantee-quote strong {
	color: var(--peach-warm);
	font-weight: 700;
	font-style: italic;
}

.guarantee-qualifier {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--peach-warm);
	font-style: italic;
	opacity: 0.75;
	margin: 0;
}

.guarantee-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(254, 187, 138, 0.35) 50%, transparent 100%);
	margin: 48px 0;
}

.guarantee-specs-label {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--teal-blue);
	margin-bottom: 22px;
	padding-left: 44px;
}

.spec-row {
	display: grid;
	grid-template-columns: 200px 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 14px 44px;
	border-top: 1px dashed rgba(108, 171, 182, 0.2);
}

.spec-row:last-child {
	border-bottom: 1px dashed rgba(108, 171, 182, 0.2);
}

.spec-label {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--peach-warm);
}

.spec-leader {
	display: block;
	height: 1px;
	border-top: 1px dotted rgba(108, 171, 182, 0.35);
}

.spec-detail {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	color: rgba(245, 245, 245, 0.9);
	text-align: right;
	line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 8: WHO THIS IS FOR (roster, not card grid)
   ══════════════════════════════════════════════════════════════ */

.labs-who h2 {
	margin-bottom: 16px;
}

.labs-who h2 strong {
	color: #15587A;
}

.who-intro {
	font-family: var(--font-body);
	font-size: 17px;
	color: rgba(15, 58, 74, 0.82);
	line-height: 1.7;
	max-width: 760px;
	margin: 0 0 50px 0;
}

/* Legacy roster-row kept for backward-compat; new layout uses .who-roster-grid with .roster-card */
.who-roster {
	background: #ffffff;
	border: 1px solid rgba(15, 58, 74, 0.08);
	border-radius: 10px;
	box-shadow: 0 8px 28px rgba(15, 58, 74, 0.05);
	overflow: hidden;
}

.who-roster-grid {
	background: transparent;
	border: none;
	box-shadow: none;
	overflow: visible;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.roster-card {
	background: #ffffff;
	border: 1px solid rgba(15, 58, 74, 0.08);
	border-radius: 10px;
	padding: 26px 26px 28px;
	box-shadow: 0 6px 18px rgba(15, 58, 74, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.roster-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(15, 58, 74, 0.1);
	border-color: rgba(254, 187, 138, 0.45);
}

.roster-card .roster-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(254, 187, 138, 0.18);
	color: var(--peach-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-bottom: 6px;
}

.roster-card .roster-name {
	font-family: var(--font-primary);
	font-size: 18px;
	font-weight: 700;
	color: var(--teal-deep);
	line-height: 1.22;
	letter-spacing: 0.01em;
	margin: 0;
}

.roster-card .roster-pain {
	font-family: var(--font-body);
	font-size: 14px;
	color: rgba(15, 58, 74, 0.72);
	line-height: 1.55;
	margin: 0;
	flex-grow: 1;
}

.roster-row {
	display: grid;
	grid-template-columns: 72px 260px 1fr;
	gap: 24px;
	align-items: center;
	padding: 24px 32px;
	border-bottom: 1px dashed rgba(15, 58, 74, 0.12);
	transition: background 0.2s ease;
}

.roster-row:last-child { border-bottom: none; }
.roster-row:hover { background: rgba(254, 187, 138, 0.06); }

.roster-row .roster-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(254, 187, 138, 0.18);
	color: var(--peach-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.roster-row .roster-name {
	font-family: var(--font-primary);
	font-size: 19px;
	font-weight: 700;
	color: var(--teal-deep);
	line-height: 1.2;
	letter-spacing: 0.01em;
}

.roster-row .roster-pain {
	font-family: var(--font-body);
	font-size: 15px;
	color: rgba(15, 58, 74, 0.72);
	line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 9: FAQ
   ══════════════════════════════════════════════════════════════ */

.labs-faq h2 {
	text-align: center;
	margin-bottom: 48px;
}

.labs-faq h2 strong {
	color: #15587A;
}

.labs-faq .container {
	max-width: 900px;
}

.faq-item {
	background: #ffffff;
	border: 1px solid rgba(15, 58, 74, 0.08);
	border-radius: 8px;
	margin-bottom: 14px;
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}

.faq-item:hover {
	box-shadow: 0 6px 18px rgba(15, 58, 74, 0.06);
}

.faq-question {
	width: 100%;
	background: transparent;
	border: none;
	padding: 22px 26px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-family: var(--font-primary);
	font-size: 17px;
	font-weight: 600;
	color: var(--teal-deep);
	text-align: left;
	line-height: 1.4;
}

.faq-question:focus-visible {
	outline: 2px solid #15587A;
	outline-offset: -2px;
}

.faq-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(254, 187, 138, 0.2);
	color: var(--peach-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 400;
	margin-left: 18px;
	transition: transform 0.25s ease, background 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
	transform: rotate(45deg);
	background: var(--peach-warm);
	color: var(--teal-deep);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 26px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
	max-height: 600px;
	padding: 0 26px 24px 26px;
}

.faq-answer p {
	font-family: var(--font-body);
	font-size: 15px;
	color: rgba(15, 58, 74, 0.78);
	line-height: 1.7;
	margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 10: FINAL CTA (peach block)
   ══════════════════════════════════════════════════════════════ */

.labs-final-cta {
	background-color: var(--peach-warm);
	background-image:
		radial-gradient(rgba(220, 149, 130, 0.2) 1px, transparent 1px),
		linear-gradient(180deg, var(--peach-warm) 0%, #FFCBA1 100%);
	background-size: 32px 32px, auto;
	color: var(--teal-deep);
	text-align: center;
	padding: 88px 0;
}

.labs-final-cta .container {
	max-width: 780px;
}

.labs-final-cta h2 {
	color: var(--teal-deep);
	font-size: clamp(32px, 3.5vw, 46px);
	font-weight: 300;
	margin-bottom: 18px;
}

.labs-final-cta h2 strong {
	color: var(--teal-deep);
	font-weight: 700;
	font-style: italic;
}

.final-cta-label {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--teal-deep);
	margin-bottom: 18px;
	opacity: 0.8;
}

.labs-final-cta p {
	font-family: var(--font-primary);
	font-size: 18px;
	color: var(--teal-deep);
	line-height: 1.6;
	font-style: italic;
	margin: 0 0 32px 0;
	font-weight: 300;
}

.labs-final-cta .cta-actions {
	margin: 28px 0 14px;
}

.btn-dark-teal {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--teal-deep);
	color: var(--peach-warm);
	padding: 18px 34px !important;
	border-radius: 6px;
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.03em;
	transition: all 0.25s ease;
	box-shadow: 0 8px 20px rgba(15, 58, 74, 0.2);
}

.btn-dark-teal:hover {
	background: #0B2D3A;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(15, 58, 74, 0.28);
}

.btn-large {
	padding: 18px 34px !important;
	font-size: 15px !important;
}

.cta-secondary {
	margin-top: 12px;
}

.cta-secondary a {
	font-family: var(--font-primary);
	font-size: 14px;
	color: var(--teal-deep);
	text-decoration: underline;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	letter-spacing: 0.02em;
}

.cta-secondary a:hover {
	color: #0B2D3A;
}

/* ══════════════════════════════════════════════════════════════
   AUDIT MODAL
   ══════════════════════════════════════════════════════════════ */

.audit-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.audit-modal.is-open {
	display: flex;
	animation: auditFadeIn 0.22s ease;
}

@keyframes auditFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.audit-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 58, 74, 0.72);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.audit-dialog {
	position: relative;
	background: #F5F0E6;
	border-radius: 12px;
	width: 100%;
	max-width: 520px;
	padding: 0;
	box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	animation: auditRise 0.28s ease;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
}

@keyframes auditRise {
	from { transform: translateY(18px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.audit-bar {
	height: 6px;
	background: linear-gradient(90deg, var(--peach-warm), var(--peach-deep));
}

.audit-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(15, 58, 74, 0.08);
	border: none;
	color: var(--teal-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 2;
}

.audit-close:hover {
	background: rgba(15, 58, 74, 0.18);
	transform: rotate(90deg);
}

.audit-body {
	padding: 36px 34px 30px;
}

.audit-label {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--peach-deep);
	margin-bottom: 10px;
}

.audit-body h2 {
	font-family: var(--font-primary);
	font-size: 26px;
	font-weight: 700;
	color: var(--teal-deep);
	margin: 0 0 10px 0;
	line-height: 1.2;
}

.audit-intro {
	font-family: var(--font-body);
	font-size: 14.5px;
	color: rgba(15, 58, 74, 0.72);
	line-height: 1.6;
	margin: 0 0 22px 0;
}

.audit-form .field {
	margin-bottom: 16px;
}

.audit-form label {
	display: block;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	color: var(--teal-deep);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.audit-form input {
	width: 100%;
	padding: 12px 14px;
	background: #ffffff;
	border: 1.5px solid rgba(15, 58, 74, 0.12);
	border-radius: 6px;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--teal-deep);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.audit-form input:focus {
	outline: none;
	border-color: #15587A;
	box-shadow: 0 0 0 3px rgba(21, 88, 122, 0.15);
}

.audit-form .hp-field {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.field-error {
	font-family: var(--font-body);
	font-size: 12.5px;
	color: #C0392B;
	margin-top: 6px;
	font-weight: 500;
}

.field-error.form-error {
	padding: 10px 14px;
	background: rgba(192, 57, 43, 0.08);
	border-radius: 6px;
	margin: 10px 0;
	font-size: 13px;
}

.btn-audit-submit {
	width: 100%;
	padding: 14px 18px !important;
	font-size: 15px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 6px;
}

.audit-form.is-submitting {
	opacity: 0.7;
	pointer-events: none;
}

.audit-privacy {
	font-family: var(--font-body);
	font-size: 12px;
	color: rgba(15, 58, 74, 0.55);
	font-style: italic;
	margin: 14px 0 0 0;
	text-align: center;
	line-height: 1.5;
}

.audit-success {
	text-align: center;
	padding: 20px 0 10px;
}

.audit-check {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(254, 187, 138, 0.28);
	color: #15587A;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.audit-success h3 {
	font-family: var(--font-primary);
	font-size: 24px;
	color: var(--teal-deep);
	margin: 0 0 10px 0;
	font-weight: 700;
}

.audit-success p {
	font-family: var(--font-body);
	font-size: 15px;
	color: rgba(15, 58, 74, 0.75);
	line-height: 1.6;
	margin: 0;
}
