:root {
	--blue: #0759B8;
	--navy: #0A2138;
	--ink: #102A43;
	--muted: #61758A;
	--bg: #F5F8FC;
	--mint: #E8F7F1;
	--green: #159A72;
	--line: #DCE6EF;
}

/* ==========================================================================
   FILE 2 SECTION TOKENS — kept separate so File 1 global theme is not broken
   ========================================================================== */
:root {
	--f2-primary: #0759B8;
	--f2-secondary: #0789C9;
	--f2-green: #159A72;
	--f2-navy: #0B1F33;
	--f2-ink: #172B3A;
	--f2-grey: #66788A;
	--f2-light: #F7F9FC;
	--f2-white: #FFFFFF;
	--f2-soft-blue: #EEF6FC;
	--f2-soft-green: #EAF7F2;
	--f2-line: #E4E9F0;
}
/* ==========================================================================
   BASE SETUP & WRAPPER
   ========================================================================== */
* {
	box-sizing: border-box;
}

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

button {
	font: inherit;
}

.wrap {
	width: min(1240px, calc(100% - 48px));
	margin: auto;
}

.mono {
	font-family: 'JetBrains Mono', monospace;
}

/* ==========================================================================
   HEADER / NAVIGATION STYLES
   ========================================================================== */
header {
	position: fixed;
	z-index: 50;
	top: 14px;
	left: 50%;
	transform: translateX(-50%);
	width: min(1240px, calc(100% - 28px));
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(220, 230, 239, 0.9);
	border-radius: 18px;
	box-shadow: 0 10px 35px rgba(16, 42, 67, 0.08);
	font-family: 'DM Sans', sans-serif;
}

.nav {
	height: 68px;
	padding: 0 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 20px;
}

.brand img {
	width: 39px;
	height: 39px;
	object-fit: contain;
}

.brand span span {
	color: var(--blue);
}

.navlinks {
	display: flex;
	gap: 26px;
	font-size: 13px;
	color: #3d5369;
}

.navlinks a:hover {
	color: var(--blue);
}

.navcta {
	background: var(--blue);
	color: #fff;
	padding: 12px 18px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 13px;
	box-shadow: 0 8px 22px rgba(7, 89, 184, 0.22);
	transition: 0.3s;
}

.navcta:hover {
	opacity: 0.9;
}

.menu {
	display: none;
}

/* ==========================================================================
   FINAL CTA SECTION (Before Footer) & BUTTONS
   ========================================================================== */
.btn-primary {
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	font-size: 14.5px;
	color: #fff;
	background: var(--primary);
	padding: 16px 28px;
	border-radius: 32px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: transform .2s, box-shadow .2s, background .2s;
}

.btn-primary:hover {
	background: #064A96;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px -10px rgba(7, 89, 184, 0.55);
}

.btn-ghost {
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	font-size: 14.5px;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
	padding: 16px 28px;
	border-radius: 32px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: transform .2s, background .2s, border-color .2s;
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-2px);
}

.magnetic {
	display: inline-block;
}

.final-cta {
	background: var(--navy-2);
	color: #fff;
	position: relative;
	overflow: hidden;
	text-align: left;
	padding: 120px 0;
}

.fc-curve {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.35;
}

.fc-head {
	font-family: 'Sora', sans-serif;
	font-weight: 800;
	font-size: clamp(34px, 6.4vw, 84px);
	line-height: 1.02;
	letter-spacing: -0.02em;
	position: relative;
	z-index: 2;
}

.fc-head .g {
	color: #34D399;
}

.fc-sub {
	margin-top: 26px;
	font-size: 17px;
	color: rgba(255, 255, 255, 0.68);
	max-width: 480px;
	position: relative;
	z-index: 2;
	line-height: 1.6;
}

.fc-actions {
	margin-top: 40px;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
footer {
	padding: 60px 0 40px;
	background: #fff;
	color: var(--ink);
	font-family: 'Inter', sans-serif;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 26px;
}

.footer-brand-name {
	font-family: 'Sora', sans-serif;
	font-weight: 800;
	font-size: 19px;
	color: var(--ink);
}

.footer-tag {
	font-size: 13px;
	color: var(--grey);
	margin-top: 6px;
}

.footer-services {
	font-size: 11px;
	color: var(--grey);
	margin-top: 10px;
}

.footer-nav {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	font-size: 13.5px;
}

.footer-nav a {
	color: var(--ink);
	opacity: 0.7;
}

.footer-nav a:hover {
	opacity: 1;
	color: var(--primary);
}

.footer-areas {
	font-size: 12px;
	color: var(--grey);
	margin-bottom: 14px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 12.5px;
	color: var(--grey);
}

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 900px) {
	.navlinks, .navcta {
		display: none;
	}

	.menu {
		display: block;
		border: 0;
		background: none;
		font-size: 26px;
		cursor: pointer;
	}
}

@media (max-width: 600px) {
	.wrap {
		width: min(100% - 30px, 1240px);
	}

	header {
		top: 8px;
	}

	.nav {
		height: 60px;
	}
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: 'DM Sans',sans-serif;
	line-height: 1.5;
}

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

button {
	font: inherit;
}

.wrap {
	width: min(1240px,calc(100% - 48px));
	margin: auto;
}

.eyebrow {
	font: 600 12px ui-monospace,monospace;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--blue);
}

header {
	position: fixed;
	z-index: 50;
	top: 14px;
	left: 50%;
	transform: translateX(-50%);
	width: min(1240px,calc(100% - 28px));
	background: rgba(255,255,255,.86);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(220,230,239,.9);
	border-radius: 18px;
	box-shadow: 0 10px 35px rgba(16,42,67,.08);
}

.nav {
	height: 68px;
	padding: 0 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: 'Space Grotesk';
	font-weight: 700;
	font-size: 20px;
}

.brand img {
	width: 39px;
	height: 39px;
	object-fit: contain;
}

.brand span span {
	color: var(--blue);
}

.navlinks {
	display: flex;
	gap: 26px;
	font-size: 13px;
	color: #3d5369;
}

.navlinks a:hover {
	color: var(--blue);
}

.navcta {
	background: var(--blue);
	color: #fff;
	padding: 12px 18px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 13px;
	box-shadow: 0 8px 22px rgba(7,89,184,.22);
}

.menu {
	display: none;
}

.hero {
	min-height: 850px;
	padding: 170px 0 70px;
	background: radial-gradient(circle at 78% 28%,rgba(46,134,215,.16),transparent 28%),linear-gradient(135deg,#F9FBFD 0%,#EEF5FB 55%,#F6FBF8 100%);
	position: relative;
	overflow: hidden;
}

.hero:before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(7,89,184,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(7,89,184,.035) 1px,transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(to bottom,black,transparent 82%);
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 70px;
	align-items: center;
}

.hero h1 {
	font: 700 clamp(58px,7vw,104px)/.91 'Space Grotesk';
	letter-spacing: -.065em;
	margin: 18px 0 24px;
	max-width: 850px;
}

.hero h1 .blue {
	color: var(--blue);
}

.hero p {
	font-size: 19px;
	line-height: 1.65;
	color: #526B82;
	max-width: 650px;
	margin: 0;
}

.hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 34px;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 21px;
	border-radius: 12px;
	font-weight: 700;
	border: 1px solid var(--line);
}

.btn.primary {
	background: var(--blue);
	color: #fff;
	border-color: var(--blue);
	box-shadow: 0 12px 30px rgba(7,89,184,.2);
}

.btn.secondary {
	background: #fff;
}

.hero-proof {
	margin-top: 52px;
	display: flex;
	gap: 0;
	flex-wrap: wrap;
}

.proof {
	padding: 0 26px;
	border-left: 1px solid var(--line);
}

.proof:first-child {
	padding-left: 0;
	border-left: 0;
}

.proof strong {
	display: block;
	font: 700 31px 'Space Grotesk';
}

.proof small {
	color: var(--muted);
}

.hero-art {
	position: relative;
	height: 510px;
}

.orbit {
	position: absolute;
	inset: 20px;
	border-radius: 50%;
	border: 1px solid rgba(7,89,184,.15);
	transform: rotate(-12deg);
}

.orbit.o2 {
	inset: 70px;
	border-color: rgba(21,154,114,.2);
	transform: rotate(24deg);
}

.orbit.o3 {
	inset: 125px;
	border-color: rgba(7,89,184,.13);
}

.hero-node {
	position: absolute;
	right: 11%;
	top: 23%;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: linear-gradient(145deg,#fff,#EAF4FC);
	border: 1px solid #D7E5F1;
	box-shadow: 0 30px 80px rgba(16,42,67,.14);
	display: grid;
	place-items: center;
}

.hero-node-inner {
	width: 116px;
	height: 116px;
	border-radius: 34px;
	background: linear-gradient(145deg,var(--blue),#0D4B93);
	display: grid;
	place-items: center;
	color: #fff;
	font: 700 28px 'Space Grotesk';
	transform: rotate(-8deg);
}

.float {
	position: absolute;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 12px 15px;
	box-shadow: 0 16px 35px rgba(16,42,67,.1);
	font-size: 12px;
}

.f1 {
	top: 12%;
	left: 6%;
}

.f2 {
	right: 2%;
	bottom: 17%;
}

.f3 {
	left: 4%;
	bottom: 10%;
	background: var(--mint);
	border-color: #CDEBDD;
}

.growthline {
	position: absolute;
	left: 5%;
	right: 5%;
	bottom: 12%;
	height: 150px;
}

.growthline svg {
	width: 100%;
	height: 100%;
}

.hero-note {
	position: absolute;
	bottom: 0;
	right: 8%;
	font: 600 11px ui-monospace,monospace;
	color: var(--muted);
}

.section {
	padding: 120px 0;
}

.section.alt {
	background: #fff;
}

.section.mint {
	background: var(--mint);
}

.section.dark {
	background: var(--navy);
	color: #fff;
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 40px;
	margin-bottom: 55px;
}

h2 {
	font: 700 clamp(42px,5vw,72px)/.98 'Space Grotesk';
	letter-spacing: -.05em;
	margin: 12px 0 0;
}

.lead {
	font-size: 17px;
	color: var(--muted);
	max-width: 590px;
}

.dark .lead {
	color: #A8BACB;
}

.logo-wall {
	display: grid;
	grid-template-columns: repeat(6,1fr);
	gap: 12px;
}

.logo-tile {
	min-height: 82px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	display: grid;
	place-items: center;
	padding: 15px;
	text-align: center;
	font: 600 14px 'Space Grotesk';
	color: #37526A;
	transition: .25s;
}

.logo-tile:hover {
	transform: translateY(-4px);
	border-color: #B9D0E5;
	box-shadow: 0 12px 28px rgba(16,42,67,.07);
}

.bento {
	display: grid;
	grid-template-columns: repeat(12,1fr);
	gap: 16px;
}

.bento-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 30px;
	min-height: 220px;
	position: relative;
	overflow: hidden;
	transition: .3s;
}

.bento-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 22px 45px rgba(16,42,67,.09);
}

.bento-card.large {
	grid-column: span 7;
	min-height: 390px;
	background: linear-gradient(145deg,#fff,#EDF5FC);
}

.bento-card.med {
	grid-column: span 5;
}

.bento-card.small {
	grid-column: span 4;
}

.bento-num {
	font: 700 12px ui-monospace,monospace;
	color: var(--blue);
}

.bento-card h3 {
	font: 700 31px 'Space Grotesk';
	margin: 18px 0 10px;
	letter-spacing: -.035em;
}

.bento-card p {
	color: var(--muted);
	max-width: 470px;
}

.tagrow {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 18px;
}

.tag {
	font: 600 11px ui-monospace,monospace;
	border: 1px solid var(--line);
	padding: 7px 9px;
	border-radius: 99px;
	color: #496278;
	background: #FAFCFE;
}

.mini-chart {
	position: absolute;
	right: 25px;
	bottom: 20px;
	width: 48%;
	height: 120px;
}

.mini-chart svg {
	width: 100%;
	height: 100%;
}

.problem {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 60px;
	align-items: start;
}

.problem-list {
	border-top: 1px solid var(--line);
}

.problem-btn {
	width: 100%;
	text-align: left;
	background: none;
	border: 0;
	border-bottom: 1px solid var(--line);
	padding: 22px 0;
	cursor: pointer;
	display: flex;
	gap: 18px;
	align-items: center;
	color: var(--ink);
}

.problem-btn .num {
	color: #8BA1B5;
	font: 600 12px ui-monospace,monospace;
}

.problem-btn strong {
	font: 600 20px 'Space Grotesk';
}

.problem-btn.active strong,.problem-btn:hover strong {
	color: var(--blue);
}

.problem-panel {
	background: var(--navy);
	color: #fff;
	border-radius: 26px;
	padding: 42px;
	min-height: 410px;
	position: sticky;
	top: 110px;
}

.problem-panel .label {
	color: #8FD9C4;
	font: 600 11px ui-monospace,monospace;
}

.problem-panel h3 {
	font: 700 42px 'Space Grotesk';
	letter-spacing: -.04em;
	margin: 18px 0;
}

.problem-panel p {
	color: #B8C7D4;
	font-size: 16px;
	max-width: 560px;
}

.solution {
	display: inline-flex;
	margin-top: 24px;
	background: #fff;
	color: var(--navy);
	padding: 11px 14px;
	border-radius: 10px;
	font-weight: 700;
}

.results {
	background: #0A2138;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.results:after {
	content: '';
	position: absolute;
	width: 550px;
	height: 550px;
	border-radius: 50%;
	border: 1px solid rgba(143,217,196,.12);
	right: -180px;
	top: -180px;
}

.results-grid {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 18px;
}

.result-card {
	border: 1px solid rgba(255,255,255,.12);
	background: rgba(255,255,255,.045);
	border-radius: 26px;
	padding: 34px;
	min-height: 330px;
	position: relative;
	overflow: hidden;
	transition: .3s;
}

.result-card:hover {
	transform: translateY(-5px);
	background: rgba(255,255,255,.07);
}

.result-client {
	font: 600 12px ui-monospace,monospace;
	letter-spacing: .1em;
	color: #8FD9C4;
	text-transform: uppercase;
}

.result-card h3 {
	font: 700 38px 'Space Grotesk';
	margin: 14px 0 8px;
}

.result-desc {
	color: #AFC0D0;
	max-width: 480px;
}

.metrics {
	display: flex;
	gap: 36px;
	margin-top: 34px;
	flex-wrap: wrap;
}

.metric strong {
	font: 700 48px 'Space Grotesk';
	letter-spacing: -.04em;
	color: #fff;
}

.metric span {
	display: block;
	color: #8FA6BA;
	font: 600 10px ui-monospace,monospace;
	text-transform: uppercase;
}

.result-index {
	position: absolute;
	right: 28px;
	top: 24px;
	color: rgba(255,255,255,.18);
	font: 700 12px ui-monospace,monospace;
}

.result-card .arrow {
	position: absolute;
	bottom: 28px;
	right: 30px;
	color: #8FD9C4;
	font-size: 22px;
}

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

.work-card {
	padding: 25px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	min-height: 180px;
	transition: .25s;
}

.work-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 35px rgba(16,42,67,.07);
}

.work-card .client {
	font: 700 20px 'Space Grotesk';
}

.work-card .service {
	margin-top: 10px;
	color: var(--blue);
	font: 600 10px ui-monospace,monospace;
	text-transform: uppercase;
}

.work-card p {
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 0;
}

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

.step {
	padding: 30px 24px;
	border-right: 1px solid var(--line);
}

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

.step .n {
	font: 600 12px ui-monospace,monospace;
	color: var(--blue);
}

.step h3 {
	font: 700 25px 'Space Grotesk';
	margin: 15px 0 8px;
}

.step p {
	font-size: 14px;
	color: var(--muted);
}

.founder {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 60px;
	align-items: center;
}

.portrait {
	min-height: 500px;
	border-radius: 28px;
	background: linear-gradient(145deg,#E7F1F8,#DDEFE8);
	display: grid;
	place-items: center;
	overflow: hidden;
	border: 1px solid var(--line);
}

.portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portrait-placeholder {
	font: 600 12px ui-monospace,monospace;
	color: #6C8295;
	text-align: center;
	padding: 30px;
}

.founder h3 {
	font: 700 48px 'Space Grotesk';
	letter-spacing: -.04em;
	margin: 15px 0;
}

.quote {
	border-left: 3px solid var(--green);
	padding-left: 18px;
	font: 600 24px 'Space Grotesk';
	margin: 30px 0;
}

.cred {
	display: flex;
	gap: 9px;
	flex-wrap: wrap;
}

.cred span {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 99px;
	padding: 9px 12px;
	font-size: 12px;
	color: #52697E;
}

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

.quote-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 26px;
	padding: 42px;
}

.quote-card blockquote {
	font: 600 clamp(25px,3vw,38px)/1.2 'Space Grotesk';
	letter-spacing: -.035em;
	margin: 0;
}

.quote-card cite {
	display: block;
	margin-top: 28px;
	color: var(--muted);
	font-style: normal;
	font-size: 14px;
}

.faq {
	max-width: 900px;
}

details {
	border-top: 1px solid var(--line);
	padding: 22px 0;
}

details:last-child {
	border-bottom: 1px solid var(--line);
}

summary {
	cursor: pointer;
	font: 600 19px 'Space Grotesk';
	list-style: none;
	display: flex;
	justify-content: space-between;
}

summary::-webkit-details-marker {
	display: none;
}

summary:after {
	content: '+';
	color: var(--blue);
	font-size: 25px;
}

details[open] summary:after {
	content: '−';
}

details p {
	color: var(--muted);
	max-width: 760px;
	margin: 15px 0 0;
}

.reach {
	background: var(--navy);
	color: #fff;
	overflow: hidden;
}

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

.reach h2 {
	font-size: clamp(55px,7vw,100px);
}

.reach .lead {
	color: #AFC0D0;
}

.places {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 12px;
}

.place {
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 18px;
	padding: 25px;
	background: rgba(255,255,255,.04);
}

.place strong {
	font: 700 30px 'Space Grotesk';
}

.place small {
	display: block;
	color: #91A7BA;
	margin-top: 5px;
}

.cta {
	padding: 110px 0;
	background: linear-gradient(135deg,#EAF4FF,#E9F8F1);
}

.cta-box {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	align-items: end;
}

.cta h2 {
	max-width: 780px;
}

.cta p {
	color: var(--muted);
	max-width: 620px;
	font-size: 17px;
}

footer {
	padding: 45px 0;
	background: #fff;
	border-top: 1px solid var(--line);
}

.footer {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.footer-brand {
	font: 700 20px 'Space Grotesk';
}

.footer-brand span {
	color: var(--blue);
}

.footer p {
	color: var(--muted);
	max-width: 420px;
	font-size: 13px;
}

.footer-links {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 13px;
	color: #52697E;
}

.reveal {
	opacity: 1;
	transform: translateY(24px);
	transition: opacity .7s ease,transform .7s ease;
}

.reveal.in {
	opacity: 1;
	transform: none;
}

@media(max-width:900px) {
	.navlinks,.navcta {
		display: none;
	}

	.menu {
		display: block;
		border: 0;
		background: none;
		font-size: 26px;
	}

	.hero-grid,.problem,.founder,.testimonial,.reach-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: auto;
		padding-top: 140px;
	}

	.hero-art {
		height: 360px;
		order: -1;
	}

	.hero-node {
		right: 25%;
		width: 190px;
		height: 190px;
	}

	.hero-node-inner {
		width: 90px;
		height: 90px;
		font-size: 22px;
	}

	.bento-card.large,.bento-card.med,.bento-card.small {
		grid-column: span 12;
	}

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

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

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

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

	.step:nth-child(-n+2) {
		border-bottom: 1px solid var(--line);
	}

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

	.cta-box {
		display: block;
	}
}

@media(max-width:600px) {
	.wrap {
		width: min(100% - 30px,1240px);
	}

	header {
		top: 8px;
	}

	.nav {
		height: 60px;
	}

	.hero h1 {
		font-size: 55px;
	}

	.hero p {
		font-size: 16px;
	}

	.hero-art {
		height: 290px;
	}

	.hero-node {
		right: 17%;
		top: 20%;
		width: 160px;
		height: 160px;
	}

	.hero-node-inner {
		width: 72px;
		height: 72px;
		font-size: 18px;
	}

	.float {
		font-size: 10px;
		padding: 9px 11px;
	}

	.hero-proof {
		gap: 22px;
	}

	.proof {
		padding: 0 15px;
	}

	.proof strong {
		font-size: 25px;
	}

	.section {
		padding: 82px 0;
	}

	h2 {
		font-size: 45px;
	}

	.section-head {
		display: block;
		margin-bottom: 38px;
	}

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

	.bento-card {
		padding: 17px;
		min-height: 190px;
	}

	.bento-card.large {
		min-height: 300px;
	}

	.bento-card h3 {
		font-size: 27px;
	}

	.problem-panel {
		position: static;
		min-height: 330px;
		padding: 28px;
	}

	.problem-panel h3 {
		font-size: 33px;
	}

	.result-card {
		min-height: 300px;
		padding: 27px;
	}

	.result-card h3 {
		font-size: 30px;
	}

	.metric strong {
		font-size: 38px;
	}

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

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

	.step {
		border-right: 0!important;
		border-bottom: 1px solid var(--line)!important;
	}

	.step:last-child {
		border-bottom: 0!important;
	}

	.portrait {
		min-height: 360px;
	}

	.founder h3 {
		font-size: 38px;
	}

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

	.cta {
		padding: 80px 0;
	}

	.cta h2 {
		font-size: 45px;
	}
}




/* ==========================================================================
   FILE 2 SECTIONS — restored from file2.html source CSS
   Global File 1 styles are preserved; File 2 tokens are isolated.
   ========================================================================== */

/* ===== SECTION SHELL ===== */
.kicker {
	font-family: 'JetBrains Mono',monospace;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--f2-secondary);
	margin-bottom: 16px;
}

h2.sec-title {
	font-family: 'Sora',sans-serif;
	font-weight: 800;
	font-size: clamp(30px,4.2vw,52px);
	letter-spacing: -0.02em;
	line-height: 1.08;
	color: var(--f2-ink);
}

.sec-sub {
	margin-top: 16px;
	font-size: 17px;
	color: var(--f2-grey);
	line-height: 1.6;
	max-width: 640px;
}

.reveal {
	opacity: 1;
	transform: translateY(24px);
	transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

/* ===== TRUST / MARQUEE ===== */
.trust {
	padding: 70px 0;
}

.trust-head {
	font-family: 'Sora',sans-serif;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	color: var(--f2-ink);
	margin-bottom: 8px;
}

.trust-sub {
	text-align: center;
	font-family: 'JetBrains Mono',monospace;
	font-size: 11.5px;
	color: var(--f2-grey);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 36px;
}

.marquee-row {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent);
	mask-image: linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent);
}

.marquee-track {
	display: flex;
	width: max-content;
	gap: 60px;
	animation: mq 32s linear infinite;
}

.marquee-row:hover .marquee-track {
	animation-play-state: paused;
}

@keyframes mq {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.marquee-track {
		animation: none;
	}
}

.mq-item {
	font-family: 'Sora',sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: var(--f2-ink);
	opacity: 0.32;
	white-space: nowrap;
	transition: opacity .25s;
}

.mq-item:hover {
	opacity: 0.9;
}

.trust-tags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 26px;
	margin-top: 40px;
}

.trust-tags span {
	font-family: 'JetBrains Mono',monospace;
	font-size: 11.5px;
	color: var(--f2-grey);
	letter-spacing: 0.04em;
}

/* ===== PREMIUM CLIENT MARQUEE ===== */
.premium-trust {
	padding: 96px 0 82px;
	overflow: hidden;
}

.trust-big {
	font-family: 'Sora',sans-serif;
	font-weight: 800;
	font-size: clamp(42px,7vw,86px);
	line-height: .98;
	letter-spacing: -.045em;
	color: var(--f2-ink);
	margin: 12px 0 18px;
	max-width: 900px;
}

.trust-big span {
	color: var(--f2-primary);
}

.premium-trust-sub {
	max-width: 720px;
	text-align: left;
	margin: 0 0 42px;
	text-transform: none;
	letter-spacing: 0;
	font-family: 'Inter',sans-serif;
	font-size: 15px;
	line-height: 1.6;
}

.logo-marquee-shell {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 -2px;
}

.logo-marquee-shell .marquee-row {
	padding: 12px 0;
}

.marquee-track {
	align-items: center;
	gap: 18px;
	will-change: transform;
}

.marquee-right {
	animation: mqRight 38s linear infinite;
}

.marquee-left {
	animation: mqLeft 42s linear infinite;
}

@keyframes mqRight {
	from {
		transform: translateX(-33.333%);
	}

	to {
		transform: translateX(0);
	}
}

@keyframes mqLeft {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-33.333%);
	}
}

.mq-item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 15px 20px;
	border: 1px solid rgba(16,42,67,.10);
	border-radius: 999px;
	background: rgba(255,255,255,.72);
	font-size: 15px;
	opacity: .68;
	box-shadow: 0 5px 18px rgba(16,42,67,.035);
}

.mq-item:hover {
	opacity: 1;
	border-color: rgba(7,89,184,.25);
	transform: translateY(-2px);
}

.mq-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--f2-primary);
	opacity: .55;
	flex: 0 0 auto;
}

@media(max-width:700px) {
	.premium-trust {
		padding: 72px 0 64px;
	}

	.trust-big {
		font-size: clamp(38px,12vw,58px);
	}

	.premium-trust-sub {
		font-size: 14px;
	}

	.marquee-right {
		animation-duration: 48s;
	}

	.marquee-left {
		animation-duration: 52s;
	}

	.mq-item {
		font-size: 13px;
		padding: 12px 16px;
		gap: 9px;
	}
}

@media(prefers-reduced-motion:reduce) {
	.marquee-right,.marquee-left {
		animation: none;
	}

	.mq-item {
		transition: none;
	}
}

/* ===== PREMIUM TESTIMONIALS ===== */
.testimonials-premium {
	padding: 110px 0;
}

.testimonial-head-row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 54px;
}

.testimonial-head-row .sec-title span {
	color: var(--f2-green);
}

.testimonial-count {
	font-size: 12px;
	color: var(--f2-grey);
	white-space: nowrap;
	padding-bottom: 7px;
}

.testimonial-stage {
	display: grid;
	grid-template-columns: minmax(0,1.35fr) minmax(240px,.65fr);
	gap: 60px;
	align-items: stretch;
}

.testimonial-main {
	background: rgba(255,255,255,.78);
	border: 1px solid rgba(16,42,67,.09);
	border-radius: 28px;
	padding: 52px;
	min-height: 390px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0 24px 60px rgba(16,42,67,.06);
}

.testimonial-main.t-switch {
	animation: tSwitch .45s ease both;
}

@keyframes tSwitch {
	from {
		opacity: .25;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.tquote-mark {
	font-family: 'Sora',sans-serif;
	font-size: 90px;
	color: var(--f2-green);
	opacity: .35;
	line-height: .5;
	margin-bottom: 22px;
}

.tquote-text {
	font-family: 'Sora',sans-serif;
	font-weight: 600;
	font-size: clamp(22px,3vw,34px);
	line-height: 1.35;
	color: var(--f2-ink);
	max-width: 850px;
	letter-spacing: -.02em;
}

.tquote-attr {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-family: 'Inter',sans-serif;
	color: var(--f2-grey);
	font-size: 13px;
}

.tquote-attr strong {
	font-family: 'Sora',sans-serif;
	color: var(--f2-ink);
	font-size: 15px;
}

.testimonial-side {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
}

.t-preview {
	appearance: none;
	border: 0;
	border-top: 1px solid rgba(16,42,67,.14);
	background: transparent;
	padding: 22px 4px;
	display: grid;
	grid-template-columns: 38px 1fr 24px;
	gap: 12px;
	align-items: center;
	text-align: left;
	cursor: pointer;
	color: var(--f2-ink);
}

.t-preview:last-child {
	border-bottom: 1px solid rgba(16,42,67,.14);
}

.tp-num {
	font: 11px 'JetBrains Mono',monospace;
	color: var(--f2-green);
}

.tp-name {
	font: 700 15px 'Sora',sans-serif;
	line-height: 1.3;
}

.tp-arrow {
	font-size: 18px;
	color: var(--f2-primary);
	transition: transform .2s;
}

.t-preview:hover .tp-arrow {
	transform: translateX(4px);
}

.testimonial-controls {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 28px;
}

.testimonial-controls button {
	border: 1px solid rgba(16,42,67,.16);
	background: rgba(255,255,255,.75);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 17px;
	color: var(--f2-ink);
	transition: .2s;
}

.testimonial-controls button:hover {
	background: var(--f2-primary);
	color: #fff;
	border-color: var(--f2-primary);
}

.testimonial-dots {
	display: flex;
	gap: 6px;
	align-items: center;
	flex: 1;
}

.t-dot {
	width: 18px!important;
	height: 3px!important;
	border-radius: 4px!important;
	padding: 0!important;
	background: rgba(16,42,67,.16)!important;
	border: 0!important;
}

.t-dot.active {
	width: 36px!important;
	background: var(--f2-green)!important;
}

@media(max-width:800px) {
	.testimonials-premium {
		padding: 80px 0;
	}

	.testimonial-head-row {
		align-items: start;
		margin-bottom: 34px;
	}

	.testimonial-stage {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.testimonial-main {
		padding: 32px 26px;
		min-height: 0;
		border-radius: 22px;
	}

	.tquote-text {
		font-size: 22px;
	}

	.testimonial-side {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.t-preview {
		padding: 16px 2px;
		grid-template-columns: 28px 1fr;
	}

	.tp-arrow {
		display: none;
	}
}

@media(max-width:520px) {
	.testimonial-head-row {
		display: block;
	}

	.testimonial-count {
		margin-top: 16px;
	}

	.testimonial-side {
		grid-template-columns: 1fr;
	}

	.t-preview:nth-child(2) {
		display: none;
	}

	.testimonial-main {
		padding: 28px 22px;
	}

	.tquote-mark {
		font-size: 72px;
	}

	.tquote-text {
		font-size: 20px;
	}
}

@media(prefers-reduced-motion:reduce) {
	.testimonial-main.t-switch {
		animation: none;
	}

	.t-preview,.testimonial-controls button {
		transition: none;
	}
}

/* ===== SERVICES — full-screen typography experience ===== */
.svc-wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	transition: background .5s ease;
	border-radius: 24px;
	padding: 20px;
}

@media(max-width:900px) {
	.svc-wrap {
		padding: 0;
	}
}

@media(min-width:900px) {
	.svc-wrap {
		grid-template-columns: 0.85fr 1.15fr;
		gap: 60px;
		align-items: center;
	}
}

.svc-list {
	display: flex;
	flex-direction: column;
}

.svc-row {
	display: flex;
	align-items: baseline;
	gap: 24px;
	padding: 30px 0;
	border-bottom: 1px solid var(--f2-line);
	cursor: pointer;
	transition: padding-left .3s ease;
}

.svc-row:hover, .svc-row.active {
	padding-left: 18px;
}

.svc-row .n {
	font-family: 'JetBrains Mono',monospace;
	font-size: 13px;
	color: var(--f2-grey);
}

.svc-row.active .n {
	color: var(--f2-green);
}

.svc-row .t {
	font-family: 'Sora',sans-serif;
	font-weight: 800;
	font-size: clamp(24px,3.2vw,34px);
	color: var(--f2-ink);
	opacity: 0.32;
	transition: opacity .3s, color .3s;
	letter-spacing: -0.01em;
}

.svc-row:hover .t, .svc-row.active .t {
	opacity: 1;
	color: var(--f2-primary);
}

.svc-panel {
	position: sticky;
	top: 110px;
	padding: 0;
	min-height: 340px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media(max-width:900px) {
	.svc-panel {
		display: none;
	}
}

.svc-panel .p-tags {
	font-family: 'JetBrains Mono',monospace;
	font-size: 12px;
	color: var(--f2-green);
	margin-bottom: 16px;
	letter-spacing: 0.04em;
}

.svc-panel .p-title {
	font-family: 'Sora',sans-serif;
	font-weight: 800;
	font-size: 32px;
	margin-bottom: 16px;
	color: var(--f2-ink);
}

.svc-panel .p-desc {
	font-size: 15px;
	line-height: 1.65;
	color: var(--f2-grey);
	max-width: 400px;
}

.svc-panel .p-outcomes {
	margin-top: 18px;
	font-size: 13.5px;
	color: var(--f2-ink);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.svc-panel .p-outcomes-label {
	font-size: 10.5px;
	color: var(--f2-grey);
	letter-spacing: 0.06em;
}

.svc-panel .p-visual {
	margin-top: 36px;
	height: 140px;
	width: 100%;
	max-width: 340px;
	color: var(--f2-primary);
	opacity: 0.85;
	transition: color .4s;
}
/* mobile accordion */
.svc-accordion {
	display: none;
}

@media(max-width:900px) {
	.svc-accordion {
		display: block;
	}

	.svc-list {
		display: none;
	}

	.svc-acc-item {
		border-bottom: 1px solid var(--f2-line);
		padding: 4px 0;
	}

	.svc-acc-item summary {
		list-style: none;
		cursor: pointer;
		padding: 20px 30px 20px 0;
		position: relative;
		font-family: 'Sora',sans-serif;
		font-weight: 700;
		font-size: 18px;
	}

	.svc-acc-item summary::-webkit-details-marker {
		display: none;
	}

	.svc-acc-item summary::after {
		content: '+';
		position: absolute;
		right: 0;
		top: 16px;
		font-size: 22px;
		color: var(--f2-primary);
	}

	.svc-acc-item[open] summary::after {
		content: '–';
	}

	.svc-acc-item .acc-tags {
		font-family: 'JetBrains Mono',monospace;
		font-size: 11.5px;
		color: var(--f2-grey);
		margin-bottom: 8px;
	}

	.svc-acc-item .acc-desc {
		font-size: 14.5px;
		color: var(--f2-grey);
		line-height: 1.6;
		padding-bottom: 12px;
	}

	.svc-acc-item .acc-outcomes {
		font-size: 11px;
		color: var(--f2-primary);
		padding-bottom: 22px;
	}
}

/* ===== DIAGNOSTIC — "What's Holding Your Business Back?" ===== */
.diag-wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

@media(min-width:860px) {
	.diag-wrap {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 50px;
		align-items: start;
	}
}

.diag-list {
	display: flex;
	flex-direction: column;
}

.diag-row {
	display: flex;
	align-items: baseline;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid rgba(11,31,51,0.1);
	cursor: pointer;
	transition: padding-left .25s ease;
}

.diag-row:hover, .diag-row.active {
	padding-left: 14px;
}

.diag-row .n {
	font-family: 'JetBrains Mono',monospace;
	font-size: 12.5px;
	color: var(--f2-grey);
}

.diag-row.active .n {
	color: var(--f2-primary);
}

.diag-row .t {
	font-family: 'Sora',sans-serif;
	font-weight: 700;
	font-size: clamp(16px,2vw,19px);
	color: var(--f2-ink);
	opacity: 0.45;
	transition: opacity .25s, color .25s;
}

.diag-row:hover .t, .diag-row.active .t {
	opacity: 1;
	color: var(--f2-ink);
}

.diag-panel {
	position: sticky;
	top: 110px;
	background: #fff;
	border-radius: 18px;
	padding: 34px 30px;
	margin-top: 24px;
}

@media(min-width:860px) {
	.diag-panel {
		margin-top: 0;
	}
}

.diag-panel-label {
	font-size: 11px;
	color: var(--f2-grey);
	letter-spacing: 0.06em;
	margin-bottom: 10px;
}

.diag-panel-title {
	font-family: 'Sora',sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: var(--f2-ink);
	line-height: 1.4;
	margin-bottom: 24px;
}

.diag-panel-solution {
	font-size: 11px;
	color: var(--f2-green);
	letter-spacing: 0.06em;
	margin-bottom: 8px;
}

.diag-panel-services {
	font-family: 'Sora',sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: var(--f2-primary);
	margin-bottom: 24px;
}

.diag-panel-link {
	font-family: 'JetBrains Mono',monospace;
	font-size: 13px;
	font-weight: 600;
	color: var(--f2-ink);
	border-bottom: 1px solid var(--f2-line);
	padding-bottom: 3px;
}

/* ===== PROOF / SELECTED WORK ===== */
.numbers-section {
	background: var(--f2-ink);
	color: #fff;
	position: relative;
	overflow: hidden;
	padding: 118px 0 112px;
}

.numbers-section .kicker {
	color: #79C7FF;
}

.proof-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 42px;
}

.proof-head-copy {
	max-width: 760px;
}

.numbers-head {
	font-family: 'Sora',sans-serif;
	font-weight: 800;
	font-size: clamp(46px,7.2vw,104px);
	line-height: .94;
	letter-spacing: -.045em;
	color: #fff;
}

.numbers-head .g {
	color: #66D7AE;
}

.proof-intro {
	max-width: 650px;
	color: rgba(255,255,255,.66);
	font-size: 16px;
	line-height: 1.65;
	margin-top: 20px;
}

.proof-stat-strip {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 0;
	margin-top: 58px;
	border-top: 1px solid rgba(255,255,255,.14);
	border-bottom: 1px solid rgba(255,255,255,.14);
}

.proof-stat {
	padding: 22px 24px 24px;
	border-right: 1px solid rgba(255,255,255,.12);
}

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

.proof-stat .num-fig {
	font-family: 'Sora',sans-serif;
	font-weight: 800;
	font-size: clamp(34px,4vw,56px);
	color: #fff;
}

.proof-stat .num-fig .u {
	color: #66D7AE;
}

.proof-stat .num-lbl {
	font-size: 12px;
	color: rgba(255,255,255,.55);
	margin-top: 5px;
}

.proof-showcase {
	position: relative;
	margin-top: 64px;
}

.proof-showcase-label {
	font: 11px 'JetBrains Mono',monospace;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255,255,255,.5);
	margin-bottom: 18px;
}

.proof-track-wrap {
	overflow: hidden;
	margin: 0 -2px;
	padding: 2px 2px 24px;
	-webkit-mask-image: linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);
	mask-image: linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);
}

.proof-track {
	display: flex;
	gap: 20px;
	width: max-content;
	will-change: transform;
	animation: proofDrift 46s linear infinite;
}

.proof-track:hover {
	animation-play-state: paused;
}

@keyframes proofDrift {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.proof-card {
	width: min(520px,72vw);
	flex: 0 0 auto;
	background: #F7FAFC;
	color: var(--f2-ink);
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.14);
	box-shadow: 0 22px 70px rgba(0,0,0,.22);
	transition: transform .35s ease,box-shadow .35s ease;
}

.proof-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 85px rgba(0,0,0,.28);
}

.proof-browser {
	height: 260px;
	background: #E8F1F8;
	position: relative;
	padding: 42px 18px 18px;
	overflow: hidden;
}

.proof-browser-bar {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 38px;
	background: #F8FBFD;
	border-bottom: 1px solid #D9E4EC;
	display: flex;
	align-items: center;
	padding: 0 14px;
	gap: 6px;
}

.proof-browser-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #B7C7D5;
}

.proof-browser-url {
	height: 18px;
	border-radius: 9px;
	background: #EAF0F5;
	flex: 1;
	margin-left: 8px;
}

.proof-screen {
	height: 100%;
	border-radius: 10px;
	background: linear-gradient(135deg,#DCEEFF 0%,#F7FAFC 54%,#E8F7F2 100%);
	position: relative;
	overflow: hidden;
	padding: 28px;
}

.proof-screen::before {
	content: '';
	position: absolute;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	right: -90px;
	top: -100px;
	background: rgba(7,89,184,.13);
}

.proof-screen::after {
	content: '';
	position: absolute;
	width: 190px;
	height: 190px;
	border-radius: 50%;
	left: -80px;
	bottom: -120px;
	background: rgba(24,167,122,.12);
}

.proof-ui-top {
	height: 10px;
	width: 90px;
	border-radius: 5px;
	background: #102A43;
	opacity: .82;
	position: relative;
	z-index: 1;
}

.proof-ui-title {
	width: 74%;
	height: 28px;
	border-radius: 7px;
	background: #102A43;
	opacity: .12;
	margin-top: 24px;
	position: relative;
	z-index: 1;
}

.proof-ui-lines {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 14px;
	position: relative;
	z-index: 1;
}

.proof-ui-lines span {
	display: block;
	height: 6px;
	border-radius: 3px;
	background: #102A43;
	opacity: .11;
}

.proof-ui-lines span:nth-child(1) {
	width: 82%;
}

.proof-ui-lines span:nth-child(2) {
	width: 60%;
}

.proof-ui-lines span:nth-child(3) {
	width: 68%;
}

.proof-ui-cta {
	width: 100px;
	height: 28px;
	border-radius: 14px;
	background: #0759B8;
	margin-top: 20px;
	position: relative;
	z-index: 1;
}

.proof-card-body {
	padding: 22px 24px 24px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 16px;
	align-items: end;
}

.proof-client {
	font: 800 19px 'Sora',sans-serif;
	letter-spacing: -.02em;
}

.proof-service {
	font: 11px 'JetBrains Mono',monospace;
	color: #66788A;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-top: 7px;
}

.proof-result {
	text-align: right;
	font-family: 'Sora',sans-serif;
	font-weight: 800;
	color: #159A72;
	font-size: 25px;
	line-height: 1;
}

.proof-result small {
	display: block;
	font: 10px 'JetBrains Mono',monospace;
	color: #66788A;
	text-transform: uppercase;
	letter-spacing: .04em;
	margin-top: 5px;
}

.proof-note {
	margin-top: 26px;
	color: rgba(255,255,255,.46);
	font-size: 12px;
}

.proof-note strong {
	color: rgba(255,255,255,.78);
}

@media(max-width:760px) {
	.numbers-section {
		padding: 82px 0 78px;
	}

	.proof-head {
		display: block;
	}

	.proof-stat-strip {
		grid-template-columns: 1fr;
	}

	.proof-stat {
		border-right: 0;
		border-bottom: 1px solid rgba(255,255,255,.12);
		padding: 18px 0;
	}

	.proof-stat:last-child {
		border-bottom: 0;
	}

	.proof-card {
		width: 82vw;
	}

	.proof-browser {
		height: 210px;
		padding: 34px 12px 12px;
	}

	.proof-screen {
		padding: 20px;
	}

	.proof-card-body {
		padding: 18px;
	}

	.proof-result {
		font-size: 20px;
	}
}

@media(prefers-reduced-motion:reduce) {
	.proof-track {
		animation: none;
	}

	.proof-card {
		transition: none;
	}
}

/* ===== CASE STUDIES — scalable featured + filterable grid system ===== */
.cs-count {
	font-family: 'JetBrains Mono',monospace;
	font-size: 12.5px;
	color: var(--f2-grey);
	margin-top: 8px;
}

/* Featured — editorial alternating layout */
.featured-label {
	font-family: 'Sora',sans-serif;
	font-weight: 800;
	font-size: 22px;
	color: var(--f2-ink);
	margin: 70px 0 26px;
}

.featured-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media(min-width:820px) {
	.featured-grid {
		grid-template-columns: repeat(2,1fr);
	}
}

.featured-card {
	grid-column: span 1;
	background: #fff;
	border: 1px solid var(--f2-line);
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
}

@media(min-width:820px) {
	.featured-card.full {
		grid-column: 1 / -1;
		flex-direction: row;
	}

	.featured-card.full .fc-visual {
		flex: 0 0 42%;
	}

	.featured-card.full .fc-content {
		flex: 1;
	}
}

.featured-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 48px -20px rgba(11,31,51,0.14);
}

@media (prefers-reduced-motion: reduce) {
	.featured-card {
		transition: none;
	}
}

.fc-visual {
	background: var(--f2-soft-blue);
	min-height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	overflow: hidden;
}

.fc-visual svg {
	width: 100%;
	max-width: 220px;
	color: var(--f2-primary);
	opacity: 0.8;
	transition: transform .35s ease;
}

.featured-card:hover .fc-visual svg {
	transform: scale(1.05);
}

.fc-content {
	padding: 30px 28px;
}

.fc-client {
	font-family: 'Sora',sans-serif;
	font-weight: 800;
	font-size: 24px;
	color: var(--f2-ink);
}

.fc-service {
	font-family: 'JetBrains Mono',monospace;
	font-size: 11.5px;
	color: var(--f2-grey);
	letter-spacing: 0.04em;
	margin-top: 6px;
	margin-bottom: 20px;
}

.fc-before-after {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.ba-before, .ba-after {
	display: flex;
	flex-direction: column;
}

.ba-label {
	font-size: 10px;
	letter-spacing: 0.08em;
	color: var(--f2-grey);
	margin-bottom: 4px;
}

.ba-before .ba-value {
	font-family: 'Sora',sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: var(--f2-grey);
	opacity: 0.6;
}

.ba-arrow {
	color: var(--f2-green);
	font-size: 20px;
	font-weight: 700;
}

.ba-after .ba-value {
	font-family: 'Sora',sans-serif;
	font-weight: 800;
	font-size: 32px;
	color: var(--f2-green);
}

.ba-after .ba-unit {
	font-size: 14px;
	font-weight: 600;
	color: var(--f2-grey);
}

.fc-metrics {
	display: flex;
	gap: 36px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.fc-metric-val {
	font-family: 'Sora',sans-serif;
	font-weight: 800;
	font-size: 34px;
	color: var(--f2-green);
}

.fc-metric-lbl {
	font-size: 12px;
	color: var(--f2-grey);
	margin-top: 2px;
}

.fc-desc {
	font-size: 14px;
	color: var(--f2-grey);
	line-height: 1.6;
	margin-bottom: 18px;
	max-width: 420px;
}

.fc-link {
	font-family: 'JetBrains Mono',monospace;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--f2-primary);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.fc-link .arrow {
	transition: transform .25s ease;
}

.featured-card:hover .fc-link .arrow {
	transform: translateX(4px);
}

/* ===== GROWTH ENGINE ===== */
.engine-wrap {
	position: relative;
	padding-top: 20px;
}

.engine-line {
	width: 100%;
	height: 70px;
	margin-bottom: 10px;
}

@media(max-width:800px) {
	.engine-line {
		display: none;
	}
}

.engine-stages {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	width: 100%;
	padding: 20px 0 0;
}

@media(min-width:800px) {
	.engine-stages {
		grid-template-columns: repeat(5,1fr);
		gap: 20px;
	}
}

.stage {
	padding: 20px 0 0;
	border-top: 1px solid var(--f2-line);
	opacity: 0.35;
	transition: opacity .4s ease, transform .4s ease, border-color .3s ease;
	cursor: default;
}

.stage.active {
	opacity: 1;
	transform: translateY(-4px);
}

.stage.active .stage-num {
	color: var(--f2-green);
}

@media(hover:hover) {
	.stage:hover {
		opacity: 1;
		border-color: var(--f2-green);
		transform: translateY(-4px);
	}

	.stage:hover .stage-num {
		color: var(--f2-green);
	}
}

.stage-num {
	font-family: 'JetBrains Mono',monospace;
	font-size: 12px;
	color: var(--f2-grey);
	margin-bottom: 8px;
	transition: color .3s;
}

.stage-title {
	font-family: 'Sora',sans-serif;
	font-weight: 800;
	font-size: 19px;
	color: var(--f2-ink);
	margin-bottom: 8px;
}

.stage-body {
	font-size: 13.5px;
	color: var(--f2-grey);
	line-height: 1.55;
}

#framework {
	padding: 120px;
}

@media(max-width:730px) {
	#framework {
		padding: 35px;
	}

	#fit {
		padding: 35px !important;
	}

	.bento {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 16px;
	}
}

#fit {
	padding: 120px;
}

/* ===== WHO WE HELP — typography wall ===== */
.help-wall {
	display: flex;
	flex-direction: column;
}

.help-row {
	border-top: 1px solid var(--line);
	padding: 26px 0;
	cursor: pointer;
}

.help-row:last-child {
	border-bottom: 1px solid var(--line);
}

.help-row-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.help-row-title {
	font-family: 'Sora',sans-serif;
	font-weight: 800;
	font-size: clamp(24px,3.6vw,38px);
	color: var(--ink);
	opacity: 0.5;
	transition: opacity .3s, color .3s;
}

.help-row:hover .help-row-title, .help-row.active .help-row-title {
	opacity: 1;
	color: var(--primary);
}

.help-row-num {
	font-family: 'JetBrains Mono',monospace;
	font-size: 13px;
	color: var(--grey);
}

.help-row-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease, opacity .3s ease;
	opacity: 0;
}

.help-row.active .help-row-body {
	max-height: 120px;
	opacity: 1;
	margin-top: 14px;
}

.help-row-body p {
	font-size: 14.5px;
	color: var(--grey);
	line-height: 1.6;
	max-width: 520px;
}