/* Main Styles */
:root {
	--ink: #0A0A0A;
	--paper: #F5F2EC;
	--gold: #C8622A;
	--gold-light: #E07545;
	--gold-pale: #F5D0B8;
	--navy: #0F1B2D;
	--navy-mid: #1C2E40;
	--stone: #8A8278;
	--rule: rgba(200, 98, 42, .28);
	--serif: "Cormorant Garamond", Georgia, serif;
	--mono: "DM Mono", monospace;
	--sans: "Helvetica Neue", Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth
}

body {
	background: var(--ink);
	color: var(--paper);
	font-family: var(--sans);
	overflow-x: hidden;
	cursor: none
}

.cursor {
	position: fixed;
	width: 8px;
	height: 8px;
	background: var(--gold);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: width .3s, height .3s
}

.cursor-ring {
	position: fixed;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(200, 98, 42, .5);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9998;
	transform: translate(-50%, -50%);
	transition: width .3s, height .3s
}

.page {
	display: none;
	min-height: 100vh;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1)
}

.page.active {
	display: block
}

.page.visible {
	opacity: 1;
	transform: translateY(0)
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

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

.reveal-left {
	opacity: 0;
	transform: translateX(-40px);
	transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1)
}

.reveal-left.visible {
	opacity: 1;
	transform: translateX(0)
}

.reveal-right {
	opacity: 0;
	transform: translateX(40px);
	transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1)
}

.reveal-right.visible {
	opacity: 1;
	transform: translateX(0)
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 22px 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background .4s, padding .4s
}

nav.scrolled {
	background: rgba(10, 10, 10, .94);
	backdrop-filter: blur(16px);
	padding: 14px 56px;
	border-bottom: 1px solid var(--rule)
}

.nav-logo {
	font-family: var(--serif);
	font-size: 19px;
	font-weight: 300;
	letter-spacing: .15em;
	color: var(--paper);
	text-decoration: none;
	text-transform: lowercase;
	cursor: pointer;
	display: flex;
}

.nav-logo img {
	max-width: 230px;
}

.nav-logo span {
	color: var(--gold)
}

.nav-links {
	display: flex;
	gap: 0;
	list-style: none;
	align-items: center
}

.nav-links li {
	position: relative
}

.nav-links a,
.nav-links button {
	background: none;
	border: none;
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--stone);
	text-decoration: none;
	padding: 8px 12px;
	cursor: pointer;
	transition: color .2s;
	display: block
}

.nav-links a:hover,
.nav-links button:hover {
	color: var(--gold)
}

.nav-links a.active,
.nav-links button.active {
	color: var(--paper)
}

.nav-links .has-sub:hover .nav-sub {
	display: block
}

.nav-sub {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(10, 10, 10, .97);
	border: 1px solid var(--rule);
	min-width: 220px;
	z-index: 200;
	padding: 8px 0
}

.nav-sub a {
	font-size: 11px;
	padding: 10px 20px;
	white-space: nowrap;
	display: block;
	font-family: var(--mono);
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--stone)
}

.nav-sub a:hover {
	color: var(--gold)
}

.nav-cta {
	border: 1px solid var(--gold) !important;
	color: var(--gold) !important;
	padding: 9px 22px !important;
	margin-left: 12px;
	transition: background .2s, color .2s !important
}

.nav-cta:hover {
	background: var(--gold) !important;
	color: var(--ink) !important
}

.nav-mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--paper);
	cursor: pointer;
	font-size: 20px;
	padding: 4px
}

.c-logos {
	height: 80px;
}

/* ══════════ MARQUEE ══════════ */
.marquee-wrap {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 16px 0;
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
}

.marquee-track {
	display: flex;
	align-items: center;
	gap: 45px;
	width: max-content;
	white-space: nowrap;
	will-change: transform;
}

.marquee-item {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	padding: 0 20px;
}

.marquee-item img {
	display: block;
	max-height: 30px;
	width: auto;
}

.marquee-item.img-sz-rd img {
	max-height: 22px;
}

.logo-wall {
	padding: 24px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px 24px;
	align-items: center
}

.logo-wall .wall-logo {
	width: calc((100% - 96px) / 5)
}

.logo-wall.cols-4 .wall-logo {
	width: calc((100% - 72px) / 4)
}

.wall-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: .7;
	transition: opacity .3s, filter .3s;
	filter: grayscale(100%) brightness(1.3)
}

.wall-logo:hover {
	opacity: 1;
	filter: grayscale(0%) brightness(1)
}

.wall-logo img {
	display: block;
	max-height: 100px;
	max-width: 100%;
	width: auto;
	object-fit: contain
}

.wall-logo.wall-text {
	font-family: var(--serif);
	font-size: 18px;
	color: var(--paper);
	text-align: center;
	line-height: 1.3;
	filter: none;
	opacity: .85
}

.wall-logo.wall-text:hover {
	opacity: 1
}

.endorse-feature .endorse-quote-lg {
	font-family: var(--serif);
	font-size: 24px;
	line-height: 1.5;
	color: var(--paper);
	font-weight: 300;
	font-style: italic;
	flex: 1;
	display: flex;
	align-items: center
}

.endorse-feature .endorse-attr .endorse-name {
	font-family: var(--serif);
	font-size: 18px;
	color: var(--gold);
	margin-bottom: 4px
}

.endorse-feature .endorse-attr .endorse-title {
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .05em;
	color: var(--stone);
	line-height: 1.5
}

.quote-rotator .endorse-quote-lg {
	font-family: var(--serif);
	font-size: 26px;
	line-height: 1.5;
	color: var(--paper);
	font-weight: 300;
	font-style: italic
}

.quote-rotator .endorse-name {
	font-family: var(--serif);
	font-size: 22px;
	color: var(--gold);
	margin-bottom: 4px
}

.quote-rotator .endorse-title {
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .05em;
	color: var(--stone);
	line-height: 1.5
}

.section-wrap {
	padding: 100px 80px;
	max-width: 1280px;
	margin: 0 auto
}

.section-label {
	font-family: var(--mono);
	font-size: 16px;
	letter-spacing: .25em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px
}

.section-label::after {
	content: "";
	flex: 0 0 28px;
	height: 1px;
	background: var(--gold)
}

.section-title {
	font-family: var(--serif);
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 300;
	line-height: 1.08;
	margin-bottom: 24px
}

.section-title em {
	font-style: italic;
	color: var(--gold)
}

.section-body {
	font-size: 16px;
	line-height: 1.75;
	color: var(--stone);
	max-width: 580px
}

.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: end;
	margin-bottom: 54px
}

.btn-primary {
	background: var(--gold);
	color: var(--ink);
	padding: 15px 36px;
	font-family: var(--sans);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .15em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background .25s, transform .2s;
	display: inline-block;
	border: none
}

.btn-primary:hover {
	background: var(--gold-light);
	transform: translateY(-1px)
}

.btn-ghost {
	border: 1px solid rgba(245, 242, 236, .2);
	color: var(--paper);
	padding: 14px 32px;
	font-family: var(--sans);
	font-size: 14px;
	letter-spacing: .15em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all .25s;
	display: inline-block;
	background: none
}

.btn-ghost:hover {
	border-color: var(--gold);
	color: var(--gold)
}

.hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
	overflow: hidden
}

.hero-bg {
	display: none
}

.hero-img-zone {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden
}

#heroImg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block
}

.hero-img-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(to right, rgba(10, 10, 10, .97) 0%, rgba(10, 10, 10, .88) 30%, rgba(10, 10, 10, .55) 55%, rgba(10, 10, 10, .2) 75%, rgba(10, 10, 10, .1) 100%)
}

.hero-img-zone::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 55% 70% at 18% 60%, rgba(200, 98, 42, .12) 0%, transparent 60%);
	z-index: 1;
	pointer-events: none
}

.hero-img-zone::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(10, 10, 10, .35) 0%, transparent 25%, transparent 70%, rgba(10, 10, 10, .45) 100%);
	pointer-events: none
}

.hero-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 140px 48px 80px 56px;
	position: relative;
	z-index: 5
}

.hero-eyebrow {
	font-family: var(--mono);
	font-size: 16px;
	letter-spacing: .22em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 32px;
	display: flex;
	align-items: center;
	gap: 16px
}

.hero.hm-main .hero-eyebrow {
	font-size: 15px;
	font-weight: 600;
}

.hero-eyebrow::before {
	content: "";
	display: block;
	width: 40px;
	height: 1px;
	background: var(--gold)
}

.hero-headline {
	font-family: var(--serif);
	font-size: clamp(40px, 5.2vw, 82px);
	font-weight: 300;
	line-height: 1.05;
	letter-spacing: -.01em;
	margin-bottom: 32px
}

.hero-headline em {
	font-style: italic;
	color: var(--gold)
}

.hero-sub {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(245, 242, 236, .75);
	max-width: 420px;
	margin-bottom: 48px
}

.hero-actions {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap
}

.hero-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 140px 56px 80px 48px;
	position: relative;
	z-index: 5
}

.stat-stack {
	display: flex;
	flex-direction: column
}

.stat-item {
	border-top: 1px solid var(--rule);
	padding: 26px 0;
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 20px;
	align-items: start;
	transition: border-color .3s;
	cursor: default
}

.stat-item:last-child {
	border-bottom: 1px solid var(--rule)
}

.stat-item:hover {
	border-color: rgba(200, 98, 42, .5)
}

.stat-num {
	font-family: var(--serif);
	font-size: 46px;
	font-weight: 300;
	color: var(--gold);
	line-height: 1
}

.stat-label {
	font-size: 13px;
	line-height: 1.55;
	color: var(--stone);
	padding-top: 6px
}

.stat-label strong {
	display: block;
	color: var(--paper);
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 4px
}

.problem-band {
	background: var(--navy);
	padding: 80px
}

.problem-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto
}

.pullquote {
	font-family: var(--serif);
	font-size: clamp(18px, 2vw, 30px);
	font-weight: 300;
	font-style: italic;
	line-height: 1.5;
	color: var(--gold-pale);
	border-left: 2px solid var(--gold);
	padding-left: 28px
}

.pullquote cite {
	display: block;
	font-family: var(--mono);
	font-size: 15px;
	font-style: normal;
	letter-spacing: .15em;
	color: var(--stone);
	text-transform: uppercase;
	margin-top: 20px
}

.problem-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px
}

.p-stat {
	background: rgba(245, 242, 236, .03);
	border: 1px solid rgba(245, 242, 236, .06);
	padding: 28px 24px;
	transition: background .3s, border-color .3s;
	cursor: default
}

.p-stat:hover {
	background: rgba(200, 98, 42, .06);
	border-color: var(--rule)
}

.p-stat-num {
	font-family: var(--serif);
	font-size: 42px;
	font-weight: 300;
	color: var(--gold);
	display: block;
	margin-bottom: 8px
}

.p-stat-text {
	font-size: 16px;
	line-height: 1.55;
	color: var(--stone)
}

.offer-section {
	background: var(--ink);
	padding: 100px 80px
}

.offer-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	max-width: 1280px;
	margin: 0 auto
}

.offer-card {
	background: rgba(245, 242, 236, .03);
	border: 1px solid rgba(245, 242, 236, .06);
	padding: 48px 36px;
	position: relative;
	overflow: hidden;
	transition: background .4s, border-color .4s, transform .3s;
	cursor: default;
	display: flex;
	flex-direction: column
}

.offer-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.offer-card:hover {
	background: rgba(200, 98, 42, .05);
	border-color: var(--rule);
	transform: translateY(-3px)
}

.offer-card:hover::before {
	transform: scaleX(1)
}

.offer-num {
	font-family: var(--serif);
	font-size: 60px;
	font-weight: 300;
	color: rgba(200, 98, 42, .2);
	line-height: 1;
	margin-bottom: 20px
}

.offer-title {
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 400;
	color: var(--paper);
	margin-bottom: 14px;
	line-height: 1.25
}

.offer-body {
	font-size: 16px;
	line-height: 1.7;
	color: var(--stone);
	margin-bottom: 24px
}

.offer-tag {
	font-family: var(--mono);
	font-size: 12.5px;
	letter-spacing: .12em;
	color: var(--gold);
	text-transform: uppercase;
	border: 1px solid var(--rule);
	padding: 6px 12px;
	display: inline-block;
	margin-top: auto;
	align-self: flex-start
}

.programs-hero {
	background: var(--navy);
	padding: 140px 80px 80px;
	position: relative;
	overflow: hidden
}

.programs-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200, 98, 42, .06) 0%, transparent 70%)
}

.programs-hero-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1
}

.programs-hero-right {
	display: flex;
	flex-direction: column;
	gap: 16px
}

.prog-choose-card {
	border: 1px solid rgba(245, 242, 236, .08);
	padding: 28px 32px;
	transition: background .3s, border-color .3s;
	cursor: pointer
}

.prog-choose-card:hover,
.prog-choose-card.active-card {
	background: rgba(200, 98, 42, .06);
	border-color: var(--rule)
}

.prog-choose-num {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: .15em;
	color: var(--gold);
	margin-bottom: 8px;
	text-transform: uppercase
}

.prog-choose-title {
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 400;
	color: var(--paper);
	margin-bottom: 6px
}

.prog-choose-desc {
	font-size: 13px;
	color: var(--stone);
	line-height: 1.6
}

.programs-subnav {
	background: rgba(10, 10, 10, .95);
	border-bottom: 1px solid var(--rule);
	padding: 0 80px;
	display: flex;
	gap: 0;
	align-items: center;
	position: sticky;
	top: 56px;
	z-index: 50
}

.programs-subnav button {
	background: none;
	border: none;
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--stone);
	padding: 18px 20px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: all .25s
}

.programs-subnav button:hover {
	color: var(--paper)
}

.programs-subnav button.active {
	color: var(--gold);
	border-bottom-color: var(--gold)
}

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

.six-card {
	background: rgba(245, 242, 236, .03);
	border: 1px solid rgba(245, 242, 236, .06);
	padding: 40px 32px;
	position: relative;
	overflow: hidden;
	transition: background .4s, border-color .4s;
	cursor: default;
	display: flex;
	flex-direction: column
}

.six-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.six-card:hover {
	background: rgba(200, 98, 42, .05);
	border-color: var(--rule)
}

.six-card:hover::before {
	transform: scaleX(1)
}

.six-num {
	font-family: var(--serif);
	font-size: 52px;
	font-weight: 300;
	color: rgba(200, 98, 42, .2);
	line-height: 1;
	margin-bottom: 18px
}

.six-title {
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 400;
	color: var(--paper);
	margin-bottom: 6px;
	line-height: 1.25
}

.six-subtitle {
	font-family: var(--mono);
	font-size: 15px;
	letter-spacing: .1em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 14px
}

.six-desc {
	font-size: 16px;
	line-height: 1.7;
	color: var(--stone);
	margin-bottom: auto;
	padding-bottom: 20px
}

.six-tools {
	display: flex;
	flex-direction: column;
	gap: 5px
}

.six-tool {
	font-family: var(--mono);
	font-size: 14.5px;
	letter-spacing: .03em;
	color: rgba(138, 130, 120, .7);
	display: flex;
	align-items: center;
	gap: 8px
}

.six-tool::before {
	content: "—";
	color: rgba(200, 98, 42, .4);
	flex-shrink: 0
}

.six-buy {
	display: inline-block;
	align-self: flex-start;
	margin-top: 24px;
	border: 1px solid rgba(200, 98, 42, .4);
	color: var(--gold);
	padding: 10px 22px;
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	background: none;
	transition: all .25s
}

.six-buy:hover {
	background: var(--gold);
	color: var(--ink);
	border-color: var(--gold)
}

.assets-row {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 2px
}

.asset-item {
	background: rgba(245, 242, 236, .03);
	border: 1px solid rgba(245, 242, 236, .06);
	padding: 24px 18px;
	text-align: center;
	transition: background .3s
}

.asset-item:hover {
	background: rgba(200, 98, 42, .05)
}

.asset-letter {
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 300;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 8px
}

.asset-name {
	font-family: var(--serif);
	font-size: 18px;
	letter-spacing: .1em;
	color: var(--paper);
	text-transform: uppercase;
	margin-bottom: 4px
}

.asset-desc {
	font-size: 16px;
	color: var(--stone);
	line-height: 1.5
}

.entry-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px
}

.entry-step {
	background: rgba(245, 242, 236, .03);
	border: 1px solid rgba(245, 242, 236, .06);
	padding: 36px 32px;
	transition: background .3s
}

.entry-step:last-child {
	background: rgba(200, 98, 42, .05);
	border-color: var(--rule)
}

.entry-step-num {
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .2em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 12px
}

.entry-step-title {
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 400;
	color: var(--paper);
	margin-bottom: 10px
}

.entry-step-body {
	font-size: 16px;
	line-height: 1.7;
	color: var(--stone)
}

.fw-hero {
	background: var(--navy);
	padding: 140px 80px 80px;
	position: relative;
	overflow: hidden
}

.fw-hero::after {
	content: "OPEN";
	position: absolute;
	right: -60px;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--serif);
	font-size: 280px;
	font-weight: 300;
	color: rgba(200, 98, 42, .04);
	pointer-events: none;
	line-height: 1
}

.fw-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2px
}

.fw-card {
	background: rgba(245, 242, 236, .03);
	border: 1px solid rgba(245, 242, 236, .06);
	padding: 48px 36px;
	position: relative;
	overflow: hidden;
	transition: background .4s, border-color .4s;
	cursor: default;
	display: flex;
	flex-direction: column
}

.fw-card:hover {
	background: rgba(200, 98, 42, .05);
	border-color: var(--rule)
}

.fw-label {
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .15em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 14px;
	height: 14px;
	line-height: 1
}

.fw-name {
	font-family: var(--serif);
	font-size: 40px;
	font-weight: 300;
	color: var(--paper);
	line-height: 1;
	margin: 0 0 15px;
	letter-spacing: -.02em;
	height: 40px;
	display: flex;
	align-items: center
}

.fw-subtitle {
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .1em;
	color: var(--stone);
	text-transform: uppercase;
	margin-bottom: 18px
}

.fw-desc {
	font-size: 16px;
	line-height: 1.7;
	color: var(--stone);
	margin-bottom: 28px;
	min-height: 170px
}

.fw-dimensions {
	display: flex;
	flex-direction: column;
	gap: 14px
}

.fw-dim {
	display: grid;
	grid-template-columns: 36px 1fr;
	gap: 12px;
	align-items: start
}

.fw-dim-letter {
	width: 36px;
	height: 36px;
	background: rgba(200, 98, 42, .12);
	border: 1px solid var(--rule);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-size: 19px;
	font-weight: 400;
	color: var(--gold);
	flex-shrink: 0
}

.fw-dim-name {
	font-size: 20px;
	font-weight: 500;
	color: var(--paper);
	font-family: var(--serif);
	margin-bottom: 4px
}

.fw-dim-desc {
	font-size: 15px;
	color: var(--stone);
	line-height: 1.5
}

.platform-hero {
	padding: 140px 80px 80px;
	background: var(--navy)
}

.platform-hero-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 5fr 6fr;
	gap: 100px;
	align-items: start
}

.platform-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 44px;
	border: 1px solid rgba(245, 242, 236, .15)
}

.platform-feat {
	padding: 36px 24px;
	border-right: 1px solid rgba(245, 242, 236, .15);
	transition: background .35s;
	cursor: default;
	display: flex;
	flex-direction: column;
	gap: 12px
}

.platform-feat:last-child {
	border-right: none
}

.platform-feat:nth-child(4),
.platform-feat:nth-child(5),
.platform-feat:nth-child(6) {
	border-top: 1px solid rgba(245, 242, 236, .15)
}

.platform-feat:hover {
	background: rgba(200, 98, 42, .07)
}

.platform-feat-title {
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 400;
	color: var(--paper);
	line-height: 1.2
}

.platform-feat-desc {
	font-size: 13px;
	line-height: 1.75;
	color: var(--stone)
}

.pipeline-mockup {
	background: rgba(10, 10, 10, .7);
	border: 1px solid rgba(245, 242, 236, .08);
	padding: 28px
}

.mockup-bar {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%
}

.dot-r {
	background: #ff5f56
}

.dot-y {
	background: #ffbd2e
}

.dot-g {
	background: #27c93f
}

.pipeline-label {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: .18em;
	color: var(--stone);
	text-transform: uppercase;
	margin-bottom: 14px
}

.pipeline-stages {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin-bottom: 14px
}

.pipe-stage {
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .06);
	padding: 10px
}

.pipe-stage-label {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: .1em;
	color: var(--stone);
	text-transform: uppercase;
	margin-bottom: 8px
}

.pipe-card {
	background: rgba(255, 255, 255, .05);
	padding: 7px 9px;
	margin-bottom: 5px;
	border-left: 2px solid var(--gold)
}

.pipe-card.done {
	border-left-color: #27c93f
}

.pipe-card-text {
	font-size: 12px;
	color: rgba(245, 242, 236, .7);
	line-height: 1.4
}

.pipe-card-sub {
	font-size: 11px;
	color: var(--stone);
	margin-top: 2px
}

.pipe-bar {
	height: 2px;
	background: rgba(255, 255, 255, .06);
	border-radius: 1px;
	margin-top: 7px
}

.pipe-fill {
	height: 100%;
	background: var(--gold);
	border-radius: 1px
}

.ai-advisor {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 11px 13px;
	background: rgba(200, 98, 42, .08);
	border: 1px solid rgba(200, 98, 42, .2)
}

.ai-pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
	margin-top: 3px;
	animation: pulse 1.8s ease-in-out infinite
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1
	}

	50% {
		opacity: .3
	}
}

.ai-text {
	font-size: 13px;
	color: rgba(245, 242, 236, .55);
	font-style: italic;
	line-height: 1.5
}

/* ── CREDENTIAL WALL ── */
.cred-wall {
	border: 1px solid rgba(245, 242, 236, .15);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: rgba(8, 8, 8, .88);
	backdrop-filter: blur(12px)
}

.cred-indictment {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 20px 24px;
	background: rgba(200, 98, 42, .18);
	border-bottom: 1px solid rgba(200, 98, 42, .25)
}

.cred-pct {
	font-family: var(--serif);
	font-size: 52px;
	font-weight: 300;
	color: var(--gold);
	line-height: 1;
	flex-shrink: 0
}

.cred-indict-text {
	display: flex;
	flex-direction: column;
	gap: 4px
}

.cred-indict-bold {
	font-size: 20px;
	font-weight: 500;
	color: var(--paper);
	line-height: 1.3;
	font-family: var(--serif);
}

.cred-indict-rest {
	font-size: 16px;
	color: rgba(245, 242, 236, .65);
	font-style: italic;
	font-family: var(--serif)
}

.cred-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-bottom: 1px solid rgba(245, 242, 236, .1)
}

.cred-stat {
	padding: 22px 24px;
	border-right: 1px solid rgba(245, 242, 236, .1);
	border-bottom: 1px solid rgba(245, 242, 236, .1);
	transition: background .2s;
	cursor: default
}

.cred-stat:nth-child(2n) {
	border-right: none
}

.cred-stat:nth-child(n+3) {
	border-bottom: none
}

.cred-stat:hover {
	background: rgba(200, 98, 42, .1)
}

.cred-stat-num {
	font-family: var(--serif);
	font-size: 40px;
	font-weight: 300;
	color: var(--paper);
	line-height: 1;
	margin-bottom: 6px
}

.cred-stat-label {
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .06em;
	color: rgba(245, 242, 236, .55);
	line-height: 1.4
}

.pub-carousel-wrap {
	border-top: 1px solid rgba(245, 242, 236, .1);
	background: rgba(255, 255, 255, .03);
	position: relative;
	overflow: hidden
}

.pub-carousel {
	position: relative;
	height: 96px
}

.pub-slide {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 52px 0 22px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1);
	pointer-events: none;
	gap: 6px
}

.pub-slide.active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto
}

.pub-slide.exit {
	opacity: 0;
	transform: translateY(-10px)
}

.pub-slide-outlet {
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .15em;
	color: var(--gold);
	text-transform: uppercase
}

.pub-slide-title {
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 300;
	color: var(--paper);
	line-height: 1.3
}

.pub-dots {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 5px
}

.pub-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	border: 1px solid rgba(200, 98, 42, .4);
	cursor: pointer;
	transition: background .2s
}

.pub-dot.active {
	background: var(--gold)
}

.books-hero {
	background: var(--navy);
	padding: 140px 80px 80px
}

.books-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 2px;
	margin-bottom: 48px
}

.book-card .book-content img {
	margin-bottom: 20px;
	max-width: 190px !important;
}

.book-card {
	background: rgba(245, 242, 236, .03);
	border: 1px solid rgba(245, 242, 236, .06);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: background .4s, border-color .4s;
	cursor: default
}

.book-card:hover {
	background: rgba(200, 98, 42, .05);
	border-color: var(--rule)
}

.book-featured {
	background: rgba(200, 98, 42, .06);
	border-color: var(--rule)
}

.book-spine {
	height: 4px;
	background: var(--gold);
	flex-shrink: 0
}

.book-content {
	padding: 32px 28px;
	flex: 1;
	display: flex;
	flex-direction: column
}

.book-eyebrow {
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .18em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 12px;
	display: none;
}

.book-title {
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 300;
	color: var(--paper);
	line-height: 1;
	margin-bottom: 15px;
	letter-spacing: -.01em;
	height: 45px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.book-featured .book-title {
	font-size: 24px
}

.book-sub {
	font-size: 16px;
	color: var(--stone);
	line-height: 1.5;
	margin-bottom: 14px;
	font-style: italic
}

.book-desc {
	font-size: 16px;
	line-height: 1.7;
	color: var(--stone);
	flex: 1;
	margin-bottom: 20px
}

.book-awards {
    display: flex;
    gap: 10px;
    margin-top: auto;
    align-items: center;
    justify-content: center;
}
.book-card .book-award img {
    width: 100%;
    height: 45px;
    margin: 0;
    object-fit: contain;
}
a.books-grid-btn {
	display: block;
	text-align: right;
	margin-top: 20px;
	font-family: var(--mono);
	font-size: 15px;
	letter-spacing: .12em;
	color: var(--gold);
	text-transform: uppercase;
	text-decoration: none;
	padding-bottom: 2px;
	transition: color .2s;
}

a.books-grid-btn:hover {
	color: var(--paper);
}

.endorse-featured-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
	margin-bottom: 2px;
}

.endorse-feature {
	background: rgba(200, 98, 42, .06);
	border: 1px solid var(--rule);
	padding: 44px 40px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: background .3s
}

.endorse-feature:hover {
	background: rgba(200, 98, 42, .1)
}

.endorse-quote-lg {
	font-family: var(--serif);
	font-size: clamp(16px, 1.6vw, 24px);
	font-style: italic;
	font-weight: 300;
	line-height: 1.55;
	color: var(--gold-pale)
}

.endorse-attr {
	border-top: 1px solid var(--rule);
	padding-top: 12px
}

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

.endorsement {
	background: rgba(245, 242, 236, .03);
	border: 1px solid rgba(245, 242, 236, .06);
	padding: 36px 32px;
	transition: background .3s
}

.endorsement:hover {
	background: rgba(200, 98, 42, .04)
}

.endorse-quote {
	font-family: var(--serif);
	font-size: 18px;
	font-style: italic;
	line-height: 1.65;
	color: var(--gold-pale);
	margin-bottom: 20px
}

.endorse-name {
	font-size: 20px;
	font-weight: 500;
	color: var(--paper);
	font-family: var(--serif);
	margin-bottom: 4px
}

.endorse-title {
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .08em;
	color: var(--stone);
	text-transform: uppercase;
	line-height: 1.5
}

.client-logos {
	border-top: 1px solid var(--rule);
	padding-top: 48px;
	margin-top: 72px
}

.client-label {
	font-family: var(--mono);
	font-size: 16px;
	letter-spacing: .2em;
	color: var(--stone);
	text-transform: uppercase;
	margin-bottom: 24px
}

.client-logos .marquee-wrap {
	padding: 0 !IMPORTANT;
	border: 0 !important;
}

.logos-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px
}

.logo-chip {
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .1em;
	color: var(--stone);
	text-transform: uppercase;
	border: 1px solid rgba(245, 242, 236, .1);
	padding: 7px 14px;
	transition: border-color .2s, color .2s;
	cursor: default
}

.logo-chip:hover {
	border-color: var(--gold);
	color: var(--gold-pale)
}

.bio-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.8fr;
	gap: 80px;
	align-items: center;
	padding: 140px 80px 80px
}

.bio-portrait-frame {
	width: 100%;
	aspect-ratio: 3/4;
	background: linear-gradient(135deg, var(--navy) 0%, rgba(28, 46, 64, .5) 100%);
	border: 1px solid var(--rule);
	position: relative;
	overflow: hidden
}

.bio-portrait-frame::after {
	content: "FH";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-size: 110px;
	font-weight: 300;
	color: rgba(200, 98, 42, .1);
	letter-spacing: -.05em
}

.bio-portrait-accent {
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 60%;
	height: 60%;
	border: 1px solid var(--rule);
	z-index: -1
}

.bio-name {
	font-family: var(--serif);
	font-size: clamp(34px, 3.5vw, 50px);
	font-weight: 300;
	line-height: 1.1;
	margin-bottom: 8px
}

.bio-role {
	font-family: var(--mono);
	font-size: 16px;
	letter-spacing: .15em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 12px
}

.bio-role::after {
	content: "";
	flex: 0 0 36px;
	height: 1px;
	background: var(--gold)
}

.bio-text {
	font-size: 16px;
	line-height: 1.75;
	color: var(--stone);
	margin-bottom: 24px
}

.bio-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 32px
}

.bio-tag {
	font-family: var(--mono);
	font-size: 12.5px;
	letter-spacing: .1em;
	color: var(--stone);
	border: 1px solid rgba(245, 242, 236, .1);
	padding: 7px 14px;
	text-transform: uppercase;
	transition: all .2s;
	cursor: default
}

.bio-tag:hover {
	border-color: var(--gold);
	color: var(--gold)
}

.team-section-inner {
	padding: 0 80px 100px;
	max-width: 1280px;
	margin: 0 auto
}

.team-grid-full {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px
}

.team-card-featured {
	background: rgba(200, 98, 42, .06);
	border: 1px solid var(--rule);
	padding: 40px 36px;
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 20px;
	align-items: start
}

.team-card {
	background: rgba(245, 242, 236, .03);
	border: 1px solid rgba(245, 242, 236, .06);
	padding: 36px 30px;
	transition: background .3s
}

.team-card:hover {
	background: rgba(200, 98, 42, .04)
}

.team-initial {
	width: 80px;
	height: 80px;
	background: rgba(200, 98, 42, .12);
	border: 1px solid var(--rule);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	flex-shrink: 0;
	overflow: hidden;
}

.team-initial-gold {
	background: rgba(200, 98, 42, .2) !important;
	border-color: var(--gold) !important
}

.team-initial img {
	width: 60px;
	height: 60px;
	object-fit: cover;
}

.team-initial span {
	font-family: var(--serif);
	font-size: 17px;
	font-weight: 300;
	color: var(--gold-light)
}

.team-name {
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 400;
	color: var(--paper);
	margin-bottom: 6px
}

.team-role {
	font-family: var(--mono);
	font-size: 15px;
	letter-spacing: .1em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 14px
}

.team-bio {
	font-size: 16px;
	color: var(--stone);
	line-height: 1.7
}

.insights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	margin-bottom: 48px
}

.insight-card {
	background: rgba(245, 242, 236, .03);
	border: 1px solid rgba(245, 242, 236, .06);
	padding: 32px 28px;
	cursor: pointer;
	transition: background .3s, border-color .3s;
	text-decoration: none;
	display: block
}

.insight-card:hover {
	background: rgba(200, 98, 42, .05);
	border-color: var(--rule)
}

.insight-tag {
	font-family: var(--mono);
	font-size: 15px;
	letter-spacing: .15em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 14px;
	display: none;
}

.insight-title {
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 400;
	color: var(--paper);
	line-height: 1.35;
	margin-bottom: 10px
}

.insight-body {
	font-size: 16px;
	color: var(--stone);
	line-height: 1.65
}

.insights-cta {
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .15em;
	color: var(--gold);
	text-transform: uppercase;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: gap .2s
}

.insights-cta::after {
	content: "→"
}

.insights-cta:hover {
	gap: 20px
}

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

.challenge-card {
	background: rgba(245, 242, 236, .03);
	border: 1px solid rgba(245, 242, 236, .06);
	padding: 32px 28px;
	transition: background .3s, border-color .3s;
	cursor: default
}

.challenge-card:hover {
	background: rgba(200, 98, 42, .04);
	border-color: var(--rule)
}

.challenge-icon {
	font-size: 14px;
	color: var(--gold);
	opacity: .5;
	margin-bottom: 12px;
	display: block
}

.challenge-title {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 400;
	color: var(--paper);
	margin-bottom: 10px;
	line-height: 1.3
}

.challenge-body {
	font-size: 16px;
	color: var(--stone);
	line-height: 1.7
}

.contact-main {
	flex: 1;
	padding: 140px 80px 80px;
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center
}

.contact-title {
	font-family: var(--serif);
	font-size: clamp(40px, 5vw, 70px);
	font-weight: 300;
	line-height: 1.08;
	margin-bottom: 24px
}

.contact-title em {
	font-style: italic;
	color: var(--gold)
}

.contact-sub {
	font-size: 16px;
	line-height: 1.75;
	color: var(--stone);
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 2px
}

.contact-method {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 20px;
	padding: 20px 24px;
	background: rgba(245, 242, 236, .03);
	border: 1px solid rgba(245, 242, 236, .06);
	align-items: center;
	transition: background .3s, border-color .3s
}

.contact-method:hover {
	background: rgba(200, 98, 42, .05);
	border-color: var(--rule)
}

.contact-method-label {
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .12em;
	color: var(--stone);
	text-transform: uppercase
}

.contact-method-value {
	font-size: 16px;
	color: var(--gold);
	text-decoration: none;
	transition: color .2s
}

.contact-method-value:hover {
	color: var(--gold-light)
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 8px
}

.form-label {
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: .15em;
	color: var(--stone);
	text-transform: uppercase
}

.form-input,
.form-textarea {
	background: rgba(245, 242, 236, .05);
	border: 1px solid rgba(245, 242, 236, .12);
	color: var(--paper);
	font-family: var(--sans);
	font-size: 15.5px;
	padding: 14px 18px;
	outline: none;
	transition: border-color .2s;
	width: 100%
}

.contact-form .form-field select.form-input {
	background: #1a2637;
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: rgba(138, 130, 120, .5)
}

.form-input:focus,
.form-textarea:focus {
	border-color: var(--gold)
}

.form-textarea {
	resize: vertical;
	min-height: 120px
}

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

.site-footer {
	background: var(--ink);
	border-top: 1px solid var(--rule);
	padding: 40px 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px
}

.footer-logo img {
	max-width: 230px ! IMPORTANT;
}

.footer-logo a {
	font-family: var(--serif);
	font-size: 17px;
	font-weight: 300;
	letter-spacing: .15em;
	color: var(--paper);
	text-transform: lowercase;
	cursor: pointer;
	text-decoration: unset;
}

.footer-logo span {
	color: var(--gold)
}

.footer-links {
	display: flex;
	gap: 28px;
	list-style: none
}

.footer-links a {
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: .1em;
	color: var(--stone);
	text-transform: uppercase;
	background: none;
	border: none;
	cursor: pointer;
	transition: color .2s;
	padding: 0;
	text-decoration: unset;
}

.footer-links a:hover {
	color: var(--gold)
}

.footer-copy {
	font-family: var(--mono);
	font-size: 12.5px;
	letter-spacing: .06em;
	color: rgba(138, 130, 120, .4)
}

@media(max-width:960px) {
	a.books-grid-btn {
		text-align: left !important;
	}

	.grnd-sc,
	.seq-sc,
	.programs-hero,
	.pd-rdc-mob {
		padding-left: 28px ! IMPORTANT;
		padding-right: 28px !important;
	}

	.team-name {
		font-size: 20px !important;
	}

	.team-role {
		font-size: 12px !important;
	}

	.fw-desc {
		min-height: unset !important;
	}

	.fw-label {
		display: inline-table;
	}

	.books-hero .hero-headline,
	.crndtl-main .hero-headline,
	.inght-hero .hero-headline {
		margin: 0 !important;
	}

	.inght-hero-inr,
	.ins-ftr-col {
		padding-left: 0 !IMPORTANT;
		padding-right: 0 !important;
	}

	a.abn-featured {
		grid-template-columns: 1fr !important;
		gap: 20px ! IMPORTANT;
		margin-bottom: 40px ! IMPORTANT;
	}

	nav {
		padding: 18px 28px
	}

	nav.scrolled {
		padding: 12px 28px
	}

	.bio-inner {
		grid-template-columns: 1fr;
	}

	.bio-inner .bio-portrait-frame {
		width: fit-content;
	}

	.bio-portrait-accent {
		left: 0px;
	}

	.bio-inner .bio-portrait-frame img {
		width: 100%;
	}

	.btn-primary {
		padding: 15px 20px !important;
	}

	.btn-ghost {
		padding: 14px 20px;
	}

	.two-col .section-title {
		margin-bottom: 0;
	}

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

	.hero,
	.programs-hero-inner,
	.contact-main {
		grid-template-columns: 1fr
	}

	.hero-left,
	.hero-right {
		padding: 100px 28px 48px
	}

	.hero-right {
		padding-top: 0
	}

	.section-wrap,
	.offer-section,
	.problem-band,
	.books-hero,
	.fw-hero,
	.platform-hero,
	.bio-inner {
		padding-left: 28px;
		padding-right: 28px
	}

	.two-col {
		grid-template-columns: 1fr;
		gap: 40px
	}

	.offer-cards,
	.six-grid,
	.fw-grid,
	.books-grid,
	.endorsements,
	.insights-grid,
	.challenges-grid,
	.entry-row {
		grid-template-columns: 1fr
	}

	.assets-row {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.platform-hero-inner {
		grid-template-columns: 1fr;
		gap: 48px
	}

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

	.team-grid-full {
		grid-template-columns: 1fr
	}

	.team-card-featured {
		grid-template-columns: 1fr
	}

	.books-grid {
		grid-template-columns: 1fr
	}

	.endorse-featured-grid {
		grid-template-columns: 1fr
	}

	.programs-subnav {
		padding: 0 28px;
		overflow-x: auto
	}

	.site-footer {
		padding: 32px 28px;
		flex-direction: column;
		align-items: flex-start
	}

	.team-section-inner {
		padding: 0 28px 80px
	}

	.contact-main {
		padding: 120px 28px 60px;
		gap: 40px !important;
	}

	.form-row {
		grid-template-columns: 1fr
	}

	.pipeline-stages {
		grid-template-columns: repeat(2, 1fr)
	}

	.hero-img-zone {
		width: 100%;
		opacity: .12
	}
}


@media only screen and (max-width:767px) {
	.footer-links {
		gap: 15px;
		flex-direction: column;
	}

	.grnd-col,
	.programs-hero-inner,
	.labs-sc,
	.prct-tool-sc {
		grid-template-columns: 1fr !important;
	}

	.logo-wall .wall-logo,
	.logo-wall.cols-4 .wall-logo {
		width: calc((100% - 24px) / 2) !important;
	}

	.endorse-featured-grid {
		grid-template-columns: 1fr !important;
	}

	.contact-method {
		grid-template-columns: 80px 1fr;
		padding: 20px 15px !important;
	}

	section.fw-hero {
		gap: 40px !important;
		flex-direction: column;
	}
}

@media only screen and (max-width:1024px) {
	.nav-mobile-toggle {
		display: block
	}

	.nav-links {
		display: none
	}

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

@media (min-width:768px) and (max-width:960px) {
	section.fw-hero {
		gap: 35px !important;
	}
}

@media (min-width:981px) and (max-width:1200px) {

	.nav-links a,
	.nav-links button {
		font-size: 11px !important;
		padding: 8px 5px !important;
	}

	.nav-logo img,
	.footer-logo img {
		max-width: 170px !important;
	}

	.footer-links a {
		font-size: 13px !important;
	}

	.footer-links {
		gap: 20px;
	}

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

@media (min-width: 961px) and (max-width: 1200px) {
	.book-content {
		padding: 20px !important;
	}

	.fw-label {
		display: inline-table;
	}

	.team-name {
		font-size: 20px !important;
	}

	.team-role {
		font-size: 13px !important;
	}

	.contact-main {
		gap: 40px !important;
	}

	section.fw-hero {
		gap: 50px !important;
	}
}

@media (min-width: 1201px) and (max-width: 1366px) {

	.nav-links a,
	.nav-links button {
		font-size: 11px !important;
		padding: 8px 10px !important;
	}

	section.fw-hero {
		gap: 60px !important;
	}
}

@media (min-width: 1367px) and (max-width: 1500px) {

	.nav-links a,
	.nav-links button {
		font-size: 13px !important;
		padding: 8px 10px !important;
	}

	section.fw-hero {
		gap: 100px !important;
	}
}