
:root {
	--serif: 'Fraunces', Georgia, serif;
	--sans: 'DM Sans', sans-serif;
	--black: #0A0A0A;
	--ink: #111111;
	--charcoal: #1E1E1E;
	--mid: #3A3A3A;
	--muted: #6B6B6B;
	--rule: #E0E0E0;
	--paper: #F5F4F0;
	--white: #FFFFFF;
	--orange: #D4622A;
	--orange-dim: rgba(212,98,42,0.12);
	--orange-line: rgba(212,98,42,0.3);
}

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

body {
	font-family: var(--sans);
	color: var(--ink);
	background: var(--white);
	overflow-x: hidden;
}
section {
    padding: 15px 15px;
}
/* ─── GLOBAL ──────────────────────────────────── */
.wrap { max-width: 1400px; margin: 0 auto;}
.label {
	font-weight: 600;
	color: var(--orange);
	letter-spacing: 0.22em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.wrap-sec {
    padding: 15px;
    max-width: 1400px;
    margin: 0 auto;
}
/* ─── HERO ────────────────────────────────────── */
.ss-hero {
	background: var(--ink);
	min-height: 75vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
	overflow: hidden;
}

/* Blueprint grid */
.ss-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgb(212 98 42 / 20%) 1px, #00000047 1px), linear-gradient(90deg, rgb(212 98 42 / 31%) 1px, #0000000f 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.ss-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 70% 50%, rgba(212,98,42,0.06) 0%, transparent 60%);
	pointer-events: none;
}
.hero-left {
    padding: 1rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    position: relative;
    /* z-index: 2; */
}
.hero-kicker {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 2rem;
	opacity: 0;
	animation: fadeUp 0.7s ease 0.1s forwards;
}
.hero-tag {opacity: 1;}
.hero-kicker-line {
	width: 32px;
	height: 1px;
	background: var(--orange);
}
.hero-h {opacity: 1;}
.hero-h1 em {
	font-style: italic;
	color: var(--orange);
}
.hero-copy {opacity: 1;}
.hero-actions {
	display: flex;
	gap: 1rem;
	padding-top: 10px;
	opacity: 0;
	animation: fadeUp 0.7s ease 0.55s forwards;
}
.btn-solid {
    padding: 14px 14px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--orange);
    transition: background 0.3s ease, transform 0.2s ease;
}
.btn-solid:hover { background: #bc5524; transform: translateY(-1px); }
.btn-ghost {
	padding: 0.9rem 2rem;
	background: transparent;
	color: rgba(255,255,255,0.7);
	font-family: var(--sans);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.2);
	transition: all 0.3s ease;
	cursor: pointer;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeLeft 0.9s ease 0.4s forwards;
}
.arch-diagram {
	width: 100%;
	max-width: 480px;
	filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.hero-stats {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255,255,255,0.04);
	border-top: 1px solid rgba(255,255,255,0.08);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	z-index: 3;
	opacity: 0;
	animation: fadeUp 0.7s ease 0.7s forwards;
}
.hero-stat {
    padding: 5px 28px;
    display: flex;
    align-items: baseline;
    gap: 14px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
	font-family: var(--serif);
	font-size: 2rem;
	font-weight: 400;
	color: var(--orange);
	line-height: 1;
	display: block;
	margin-bottom: 0.3rem;
}
.hero-stat-lbl {
	font-size: 0.7rem;
	color: rgba(255,255,255,0.4);
	letter-spacing: 1px;
	text-transform: uppercase;
}
/* ─── DISCIPLINE STRIP ────────────────────────── */
.discipline-strip {background: var(--orange);overflow: hidden;padding: 0.9rem 0;}
.discipline-track {display: flex;gap: 3rem;animation: marquee 20s linear infinite;white-space: nowrap;}
.discipline-track span {font-size: 0.7rem;font-weight: 600;letter-spacing: 2px;text-transform: uppercase;color: rgba(255,255,255,0.85);flex-shrink: 0;}
.discipline-track span::before {content: '◆';margin-right: 0.75rem;opacity: 0.5;}
@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
/* ─── APPROACH ────────────────────────────────── */
.approach-section {background: var(--paper);}
.approach-inner {display: grid;grid-template-columns: 1fr 1fr;align-items: start;}
@media (max-width: 992px) {
	.approach-inner {
		grid-template-columns: 1fr;
	}
	.approach-sticky {
		position: relative;
		top: 0;
	}
}
.approach-sticky {
	position: sticky;
	top: 100px;
}
.approach-sticky h2 {font-family: var(--serif);font-size: 40px;font-weight: 100;line-height: 1.2;color: var(--ink);}
.approach-sticky h2 strong {font-weight: 600;color: var(--orange);display: block;}
.approach-sticky p {font-size: 20px;color: var(--muted);line-height: 1.2;}
.approach-rule {width: 40px;height: 2px;background: var(--orange);margin: 1.5rem 0;}
/* Step cards */
.step-list {display: flex;flex-direction: column;gap: 0;}
.step-item {
    display: grid;
    grid-template-columns: 17px 1fr;
    gap: 1.5rem;
    padding: 14px;
    border-bottom: 1px solid var(--rule);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    cursor: default;
}
.step-item:first-child { border-top: 1px solid var(--rule); }
.step-item.visible {opacity: 1;transform: translateY(0);}
.step-item:hover .step-body { padding-left: 0.75rem; }
.step-num {font-family: var(--serif);font-size: 1.1rem;font-weight: 400;color: var(--orange);opacity: 0.6;padding-top: 0.15rem;transition: opacity 0.3s;}
.step-item:hover .step-num { opacity: 1; }
.step-body { transition: padding 0.3s ease; }
.step-body h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 5px;
}
.step-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.2;
}
/* ─── SYSTEMS WE BUILD ────────────────────────── */
.build-section {
	background: var(--ink);
}

.build-header .label { color: rgba(255,255,255,0.4); }

.build-header h2 {
	font-family: var(--serif);
	font-size: 40px;
	font-weight: 400;
	color: var(--white);
}

.build-header h2 strong {
	font-style: italic;
	font-weight: 400;
	color: var(--orange);
}

.build-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255,255,255,0.08);
}

.build-card {
	background: #11111100;
	padding: 1.2rem;
	transition: background 0.3s ease;
	position: relative;
	overflow: hidden;
}

.build-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 0;
	background: var(--orange);
	transition: height 0.4s ease;
}

.build-card:hover { background: rgba(255,255,255,0.03); }
.build-card:hover::before { height: 100%; }

.build-icon {
	height: 40px;
	opacity: 0.6;
}

.build-card h3 {
	font-size: 20px;
	font-weight: 500;
	color: var(--white);
}
.build-card p {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    line-height: 1.2;
}
/* ─── DIAGNOSTIC ──────────────────────────────── */
.diag-section {
	background: var(--white);
}

.diag-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
}
.diag-left h2 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
}
.diag-left h2 strong {
	font-weight: 600;
	color: var(--orange);
	display: block;
}
.diag-left p {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--muted);
    line-height: 1.1;
}
.diag-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.diag-q {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 10px;
	border-bottom: 1px solid var(--rule);
	cursor: pointer;
	transition: all 0.25s ease;
}
.diag-q:first-child { border-top: 1px solid var(--rule); }
.diag-q:hover { padding-left: 0.5rem; }
.diag-check {
	width: 20px;
	height: 20px;
	border: 1.5px solid var(--rule);
	flex-shrink: 0;
	position: relative;
	transition: all 0.3s ease;
}
.diag-q.on .diag-check {
	background: var(--orange);
	border-color: var(--orange);
}
.diag-q.on .diag-check::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 6px;
	width: 5px;
	height: 9px;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(45deg);
}
.diag-q span {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.1;
}
.diag-q.on span { color: var(--ink); }
/* result */
.diag-result {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 14px;
    /* margin-top: 2rem; */
    transition: border-color 0.3s ease;
}
.diag-result.highlight { border-color: var(--orange); }

.result-frac {
	font-family: var(--serif);
	font-size: 3.5rem;
	font-weight: 300;
	color: var(--ink);
	line-height: 1;
	margin-bottom: 0.75rem;
}

.result-frac strong {
	color: var(--orange);
	font-weight: 600;
}
.result-msg {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.1;
    margin-bottom: 10;
}
.btn-orange-out {
	display: inline-block;
	padding: 14px;
	border: 1px solid var(--orange);
	color: var(--orange);
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	background: transparent;
	transition: all 0.3s ease;
}
.btn-orange-out:hover { background: var(--orange); color: white; }

/* ─── TECH STACK ──────────────────────────────── */
.tech-section {
	background: var(--paper);
	padding: 1px;
}

.tech-header {
	align-items: end;
}

.tech-header .label { margin-bottom: 1rem; }

.tech-header h2 {
	font-family: var(--serif);
	font-size: 40px;
	font-weight: 100;
	color: var(--ink);
}

.tech-header h2 strong { color: var(--orange); font-weight: 600; }

.tech-header p {
	font-size: 1.3rem;
	color: var(--muted);
	line-height: 1.8;
	align-self: center;
}

.tech-groups {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border: 1px solid var(--rule);
}

.tech-group {
	padding: 14px;
	border-right: 1px solid var(--rule);
}
.tech-group:last-child { border-right: none; }

.tech-group-label {
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 1.2rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--rule);
}

.tech-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tech-tag {
	font-size: 0.78rem;
	color: var(--mid);
	padding: 0.35rem 0.75rem;
	border: 1px solid var(--rule);
	background: var(--white);
	transition: all 0.25s ease;
	cursor: default;
}

.tech-tag:hover {
	border-color: var(--orange);
	color: var(--orange);
}

/* ─── OUTCOMES ────────────────────────────────── */
.outcomes-section {
	background: var(--ink);
	position: relative;
	overflow: hidden;
}

/* faint blueprint grid */
.outcomes-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(212,98,42,0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(212,98,42,0.05) 1px, transparent 1px);
	background-size: 80px 80px;
	pointer-events: none;
}

.outcomes-inner {
	position: relative;
	z-index: 1;
}

.outcomes-header { margin-bottom: -2rem; }
.outcomes-header .label { color: rgb(255 255 255); margin-bottom: 1rem; }
.outcomes-header h2 {
	font-family: var(--serif);
	font-size: 40px;
	font-weight: 400;
	color: var(--white);
}
.outcomes-header h2 strong { color: var(--orange); }

.outcomes-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1px;
	background: rgba(255,255,255,0.08);
}

.outcome-item {
	background: var(--ink);
	padding: 14px;
	text-align: center;
	transition: background 0.3s ease;
}

.outcome-item:hover { background: rgba(255,255,255,0.03); }
.outcome-num {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 300;
    color: var(--orange);
    opacity: 0.5;
    display: block;
}
.outcome-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.1;
}
.outcome-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    line-height: 1.1;
}
/* ─── CONSULTATION ─────────────────────────────── */
.consult-section {
	background: var(--paper);
}
img.image-sec {
    width: 100%;
}
.consult-inner {
	display: grid;
	grid-template-columns: 380px 1fr;
	align-items: start;
}
.consult-left h2 {
	font-family: var(--serif);
	font-size: 40px;
	font-weight: 400;
	color: var(--ink);
	line-height: 1.2;
	margin-bottom: 1.2rem;
}

.consult-left h2 strong { color: var(--orange); font-weight: 600; display: block; }
.consult-left p {
    font-size: 20px;
    color: var(--muted);
    line-height: 1.2;
}
.consult-trust {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.change{
	display:flex; justify-content:space-between; margin-bottom:10;
	}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 16px;
    color: var(--muted);
}
.trust-dot {
	width: 5px;
	height: 5px;
	background: var(--orange);
	border-radius: 50%;
	flex-shrink: 0;
}

/* Form */
.consult-form {
	background: var(--white);
	border: 1px solid var(--rule);
	padding: 0;
}

.form-band {
	background: var(--orange);
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.form-band-title {
	font-family: var(--serif);
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--white);
}

.form-status {
	font-size: 0.7rem;
	color: rgba(255,255,255,0.7);
	letter-spacing: 1px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.status-dot {
	width: 6px;
	height: 6px;
	background: rgba(255,255,255,0.8);
	border-radius: 50%;
	animation: blink 2s infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.form-body { padding: 12px; }

.f-section {
	margin-bottom: 12px;
	border-bottom: 1px solid var(--rule);
}
.f-section:last-of-type { border-bottom: none; margin-bottom: 0; }

.f-section-head {
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.f-num {
	width: 24px;
	height: 24px;
	border: 1px solid var(--orange);
	color: var(--orange);
	font-size: 0.7rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.f-section-head h4 {
	font-family: var(--sans);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--ink);
	text-transform: uppercase;
	letter-spacing: 1px;
}
.f-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.f-group { margin-bottom: 0.75rem; }
.f-label {
	display: block;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 0.4rem;
}
.f-input {
	width: 100%;
	padding: 8px;
	border: 1px solid var(--rule);
	background: var(--paper);
	font-family: var(--sans);
	font-size: 0.87rem;
	color: var(--ink);
	transition: border-color 0.25s ease;
}
.f-input:focus { outline: none; border-color: var(--orange); background: var(--white); }
.f-check-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
}
.f-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 12px;
    color: var(--mid);
    cursor: pointer;
}
.f-check input { accent-color: var(--orange); cursor: pointer; }
.btn-submit-main {
	display: block;
	width: 100%;
	padding: 1rem;
	background: var(--ink);
	color: var(--white);
	border: none;
	font-family: var(--sans);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	margin-top: 1.5rem;
	transition: background 0.3s ease;
}
.btn-submit-main:hover { background: var(--orange); }

/* ─── PROCESS STRIP ───────────────────────────── */
.process-section {
	background: var(--white);
	padding: 7rem 0;
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
}

.process-header { text-align: center; margin-top: -6rem; }
.process-header h2 {
	font-family: var(--serif);
	font-size: 40px;
	font-weight: 400;
	color: var(--ink);
}
.process-header h2 strong { color: var(--orange); }
.process-header p { font-size: 0.92rem; color: var(--muted); margin-top: -1.25rem; }

.process-flow {
	display: flex;
	align-items: stretch;
	gap: 0;
	margin-bottom: -8rem;
	border: 1px solid var(--rule);
}
.process-node {
    flex: 1;
    padding: 16px;
    border-right: 1px solid #520909;
    position: relative;
    transition: background 0.3s ease;
    cursor: default;
}
.process-node:last-child { border-right: none; }
.process-node:hover { background: var(--paper); }
.process-node-num {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    color: #000000;
    opacity: 0.25;
    line-height: 1.1;
    /* margin-bottom: 1rem; */
    transition: opacity 0.3s ease;
}
.process-node:hover .process-node-num { opacity: 0.6; }

.process-node h3 {
	font-family: var(--serif);
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--ink);
	margin-bottom: 0.5rem;
	line-height: 1.3;
}
.process-node p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.1;
}
.process-arrow {
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-right: 1px solid #111111;
    border-top: 1px solid #111111;
    transform: translateY(-50%) rotate(45deg);
    background: white;
    z-index: 2;
}

/* ─── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
	from { opacity: 0; transform: translateX(40px); }
	to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 992px) {
	.process-flow {
		flex-direction: column;
		margin-bottom: 0;
	}

	.process-node {
		border-right: none;
		border-bottom: 1px solid var(--rule);
	}

	.process-arrow {
		display: none;
	}
}
/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
	.ss-hero { grid-template-columns: 1fr; }
	.hero-right { display: none; }
	.hero-stats { position: relative; }
	.approach-inner, .diag-inner, .consult-inner { grid-template-columns: 1fr; gap: 3rem; }
	.approach-sticky { position: relative; top: 0; }
	.build-grid { grid-template-columns: repeat(2, 1fr); }
	.tech-groups { grid-template-columns: repeat(2, 1fr); }
	.tech-group { border-bottom: 1px solid var(--rule); }
	.outcomes-grid { grid-template-columns: repeat(3, 1fr); }
	.process-flow { flex-direction: column; }
	.process-node { border-right: none; border-bottom: 1px solid var(--rule); }
}

@media (max-width: 768px) {
	.wrap { padding: 0 1.5rem; }
	.build-grid, .outcomes-grid { grid-template-columns: 1fr; }
	.tech-groups { grid-template-columns: 1fr; }
	.f-row, .f-check-grid { grid-template-columns: 1fr; }
	.hero-left { padding: 5rem 1.5rem 3rem; }
}