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

:root {
	--navy: #0b1f3a;
	--navy-mid: #132b50;
	--navy-light: #1e3d6e;
	--gold: #c9a84c;
	--gold-light: #e2c47a;
	--gold-pale: #f7edd4;
	--white: #fafaf8;
	--off-white: #f2efe8;
	--text-dark: #0b1f3a;
	--text-mid: #3a4f6a;
	--text-muted: #6b7f96;
	--border: rgba(11, 31, 58, 0.12);
	--serif: "Instrument Serif", Georgia, serif;
	--sans: "DM Sans", system-ui, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--sans);
	background: var(--white);
	color: var(--text-dark);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────────────── */

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(250, 250, 248, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	padding: 0 2rem;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	font-family: var(--serif);
	font-size: 1.4rem;
	color: var(--navy);
	text-decoration: none;
	letter-spacing: -0.01em;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

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

.nav-logo-img {
	height: 32px;
	width: auto;
	display: block;
}

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

.nav-links a {
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--text-mid);
	text-decoration: none;
	letter-spacing: 0.01em;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--navy);
}

.nav-cta {
	background: var(--navy) !important;
	color: var(--white) !important;
	padding: 0.5rem 1.25rem;
	border-radius: 4px;
	font-weight: 500 !important;
	transition: background 0.2s !important;
}

.nav-cta:hover {
	background: var(--navy-light) !important;
}

/* ─── BUTTONS ─────────────────────────────────────── */

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--gold);
	color: var(--navy);
	padding: 0.875rem 1.75rem;
	border-radius: 4px;
	font-weight: 500;
	font-size: 0.9375rem;
	text-decoration: none;
	letter-spacing: 0.01em;
	transition:
		background 0.2s,
		transform 0.15s;
}

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

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	color: rgba(250, 250, 248, 0.75);
	padding: 0.875rem 1.75rem;
	border-radius: 4px;
	border: 1px solid rgba(250, 250, 248, 0.2);
	font-weight: 400;
	font-size: 0.9375rem;
	text-decoration: none;
	transition:
		border-color 0.2s,
		color 0.2s;
}

.btn-ghost:hover {
	border-color: rgba(250, 250, 248, 0.5);
	color: var(--white);
}

/* ─── SHARED SECTION ELEMENTS ─────────────────────── */

section {
	padding: 6rem 2rem;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
}

.section-label {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
}

.section-title {
	font-family: var(--serif);
	font-size: clamp(2rem, 3vw, 2.75rem);
	line-height: 1.2;
	color: var(--navy);
	letter-spacing: -0.02em;
	margin-bottom: 1.25rem;
}

.section-title em {
	font-style: italic;
}

.section-body {
	font-size: 1.0625rem;
	color: var(--text-mid);
	font-weight: 300;
	line-height: 1.8;
	max-width: 600px;
}

/* ─── HERO ────────────────────────────────────────── */

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 7rem 2rem 5rem;
	background: var(--navy);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: -20%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(201, 168, 76, 0.08) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	bottom: 10%;
	left: -5%;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(30, 61, 110, 0.6) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.hero-inner {
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-eyebrow {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.25rem;
}

.hero h1 {
	font-family: var(--serif);
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	line-height: 1.15;
	color: var(--white);
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

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

.hero-sub {
	font-size: 1.0625rem;
	color: rgba(250, 250, 248, 0.7);
	line-height: 1.75;
	margin-bottom: 2.5rem;
	font-weight: 300;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 2rem;
}

.hero-card-label {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.25rem;
}

.question-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.question-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(250, 250, 248, 0.8);
	font-size: 0.9375rem;
	font-weight: 300;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 4px;
	border-left: 2px solid var(--gold);
}

/* ─── ANIMATIONS ──────────────────────────────────── */

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

.hero-left > * {
	animation: fadeUp 0.7s ease both;
}
.hero-eyebrow {
	animation-delay: 0.1s;
}
.hero h1 {
	animation-delay: 0.2s;
}
.hero-sub {
	animation-delay: 0.3s;
}
.hero-actions {
	animation-delay: 0.4s;
}
.hero-card {
	animation: fadeUp 0.7s 0.5s ease both;
}

/* ─── DIFF SECTION (navy-mid background) ──────────── */

.diff {
	background: var(--navy-mid);
	padding: 5rem 2rem;
}

.diff .section-label {
	color: var(--gold);
}
.diff .section-title {
	color: var(--white);
}

.diff-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
	margin-top: 2rem;
}

.diff-text p {
	font-size: 1rem;
	color: rgba(250, 250, 248, 0.68);
	font-weight: 300;
	line-height: 1.85;
	margin-bottom: 1.1rem;
}

.hero-diff-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.hdiff-card {
	border-radius: 6px;
	padding: 1.25rem;
}

.hdiff-card--other {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.hdiff-card--pci {
	background: rgba(201, 168, 76, 0.08);
	border: 1px solid rgba(201, 168, 76, 0.25);
}

.hdiff-label {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 0.875rem;
}

.hdiff-card--other .hdiff-label {
	color: rgba(250, 250, 248, 0.35);
}
.hdiff-card--pci .hdiff-label {
	color: var(--gold);
}

.hdiff-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hdiff-card--other .hdiff-list li,
.hdiff-card--pci .hdiff-list li {
	font-size: 0.8125rem;
	font-weight: 300;
	padding-left: 1.1rem;
	position: relative;
	line-height: 1.4;
}

.hdiff-card--other .hdiff-list li {
	color: rgba(250, 250, 248, 0.4);
}
.hdiff-card--pci .hdiff-list li {
	color: rgba(250, 250, 248, 0.8);
	font-weight: 400;
}

.hdiff-card--other .hdiff-list li::before {
	content: "✕";
	position: absolute;
	left: 0;
	top: 2px;
	color: rgba(250, 250, 248, 0.2);
	font-size: 0.7rem;
}

.hdiff-card--pci .hdiff-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 2px;
	color: var(--gold);
	font-size: 0.7rem;
}

/* ─── PROBLEM SECTION ─────────────────────────────── */

.problem {
	background: var(--off-white);
}

.problem-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
	margin-top: 3.5rem;
}

.problem-statement {
	padding-top: 0.5rem;
}

.problem-statement p {
	font-size: 1.0625rem;
	color: var(--text-mid);
	font-weight: 300;
	line-height: 1.85;
	margin-bottom: 1.5rem;
}

.result-callout {
	background: var(--navy);
	color: var(--white);
	padding: 1.5rem;
	border-radius: 6px;
	font-size: 0.9375rem;
	line-height: 1.75;
	font-weight: 300;
}

.result-callout strong {
	display: block;
	font-family: var(--serif);
	font-size: 1.125rem;
	font-style: italic;
	font-weight: 400;
	color: var(--gold-light);
	margin-bottom: 0.5rem;
}

.problem-challenges {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.pq-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 6px;
	font-size: 0.9375rem;
	color: var(--text-dark);
	font-weight: 400;
	transition:
		border-color 0.2s,
		transform 0.2s;
}

.pq-item:hover {
	border-color: var(--gold);
	transform: translateX(4px);
}

.pq-num {
	font-family: var(--serif);
	font-size: 1.25rem;
	font-style: italic;
	color: var(--gold);
	min-width: 1.5rem;
}

/* ─── SOLUTION SECTION ────────────────────────────── */

.solution {
	background: var(--white);
}

.solution-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	margin-top: 3.5rem;
}

.checkmarks {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 2rem;
}

.check-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	font-size: 1rem;
	color: var(--text-dark);
	font-weight: 400;
}

.check-icon {
	width: 22px;
	height: 22px;
	background: var(--gold-pale);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--gold);
	font-size: 12px;
	font-weight: 700;
}

.origin-block {
	background: var(--navy);
	border-radius: 8px;
	padding: 2.5rem;
	color: rgba(250, 250, 248, 0.85);
}

.origin-block blockquote {
	font-family: var(--serif);
	font-size: 1.375rem;
	font-style: italic;
	line-height: 1.5;
	color: var(--white);
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.origin-block p {
	font-size: 0.9375rem;
	font-weight: 300;
	line-height: 1.8;
}

/* ─── HOW IT WORKS ────────────────────────────────── */

.how {
	background: var(--off-white);
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 3.5rem;
}

.step-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 1.75rem 1.5rem;
}

.step-num {
	font-family: var(--serif);
	font-size: 3rem;
	font-style: italic;
	color: var(--gold-pale);
	line-height: 1;
	margin-bottom: 1rem;
}

.step-title {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 0.75rem;
}

.step-body {
	font-size: 0.9375rem;
	color: var(--text-mid);
	font-weight: 300;
	line-height: 1.7;
}

.step-example {
	margin-top: 0.875rem;
	padding: 0.75rem;
	background: var(--off-white);
	border-radius: 4px;
	font-size: 0.875rem;
	color: var(--text-mid);
	font-style: italic;
}

/* ─── WHO IT'S FOR ────────────────────────────────── */

.who {
	background: var(--white);
}

.audience-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 3.5rem;
}

.audience-card {
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 2rem;
	transition:
		border-color 0.2s,
		transform 0.2s;
}

.audience-card:hover {
	border-color: var(--gold);
	transform: translateY(-3px);
}

.audience-icon {
	width: 44px;
	height: 44px;
	background: var(--navy);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	font-size: 1.25rem;
}

.audience-title {
	font-family: var(--serif);
	font-size: 1.25rem;
	color: var(--navy);
	margin-bottom: 0.75rem;
}

.audience-body {
	font-size: 0.9375rem;
	color: var(--text-mid);
	font-weight: 300;
	line-height: 1.75;
}

/* ─── CTA SECTION ─────────────────────────────────── */

.cta-section {
	background: var(--navy);
	padding: 6rem 2rem;
	text-align: center;
}

.cta-section h2 {
	font-family: var(--serif);
	font-size: clamp(2rem, 3vw, 2.75rem);
	color: var(--white);
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

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

.cta-section p {
	font-size: 1.0625rem;
	color: rgba(250, 250, 248, 0.65);
	font-weight: 300;
	max-width: 520px;
	margin: 0 auto 2.5rem;
	line-height: 1.8;
}

/* ─── FOOTER ──────────────────────────────────────── */

footer {
	background: var(--navy);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 2rem;
	text-align: center;
	font-size: 0.875rem;
	color: rgba(250, 250, 248, 0.35);
}

footer a {
	color: rgba(250, 250, 248, 0.5);
	text-decoration: none;
	margin: 0 0.75rem;
}

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

/* ─── HERO CARD HIGHLIGHT ─────────────────────────── */

.question-list__highlight {
	flex-direction: column;
	align-items: flex-start !important;
	gap: 0.5rem !important;
	border-left-color: var(--gold-light) !important;
	background: rgba(201, 168, 76, 0.08) !important;
}

.question-list__cta {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--gold-light);
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: color 0.2s;
}

.question-list__cta:hover {
	color: var(--white);
}

/* ─── FREE TOOLS SECTION ──────────────────────────── */

.tools-section {
	background: var(--navy-mid);
}
.tools-section .section-title {
	color: var(--white);
}
.tools-section .section-body {
	color: rgba(250, 250, 248, 0.65);
	max-width: 580px;
}

.tools-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.tool-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	transition:
		border-color 0.2s,
		transform 0.2s;
}

.tool-card:hover {
	border-color: var(--gold);
	transform: translateY(-3px);
}

.tool-card--coming {
	opacity: 0.6;
}
.tool-card--coming:hover {
	transform: none;
	border-color: rgba(255, 255, 255, 0.1);
}

.tool-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.25rem;
}

.tool-icon {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
}

.tool-badge {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: var(--gold);
	color: var(--navy);
	padding: 0.25rem 0.625rem;
	border-radius: 3px;
}

.tool-badge--soon {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(250, 250, 248, 0.5);
}

.tool-title {
	font-family: var(--serif);
	font-size: 1.25rem;
	color: var(--white);
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.tool-body {
	font-size: 0.9375rem;
	color: rgba(250, 250, 248, 0.65);
	font-weight: 300;
	line-height: 1.75;
	flex: 1;
	margin-bottom: 1.5rem;
}

.tool-cta {
	display: inline-flex;
	align-items: center;
	background: var(--gold);
	color: var(--navy);
	padding: 0.625rem 1.125rem;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	align-self: flex-start;
	transition:
		background 0.2s,
		transform 0.15s;
}

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

.tool-cta--disabled {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(250, 250, 248, 0.35);
	cursor: default;
	pointer-events: none;
}

.tools-footer-note {
	margin-top: 2rem;
	text-align: right;
}

.tools-all-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(250, 250, 248, 0.5);
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: color 0.2s;
}

.tools-all-link:hover {
	color: var(--gold);
}

/* ─── CONTACT SECTION ─────────────────────────────── */

.contact-section {
	background: var(--off-white);
}

.contact-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	margin-top: 3rem;
}

.contact-text p {
	font-size: 1.0625rem;
	color: var(--text-mid);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.contact-link {
	color: var(--navy);
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.contact-link:hover {
	color: var(--gold);
}

.contact-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 2.5rem;
	text-align: center;
}

.contact-card-label {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
}

.contact-email-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--navy);
	color: var(--white);
	padding: 1rem 1.75rem;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 400;
	text-decoration: none;
	transition:
		background 0.2s,
		transform 0.15s;
	margin-bottom: 1.25rem;
}

.contact-email-btn:hover {
	background: var(--navy-light);
	transform: translateY(-1px);
}

.contact-email-icon {
	font-size: 1.1rem;
}

.contact-card-note {
	font-size: 0.8125rem;
	color: var(--text-muted);
	font-weight: 300;
}

/* ─── RESPONSIVE ──────────────────────────────────── */

/* ─── HAMBURGER BUTTON ────────────────────────────── */

.nav-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	z-index: 200;
}

.nav-hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
	transform-origin: center;
}

/* Animate to X when open */
.nav-hamburger.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.nav-hamburger.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
	.hero-inner,
	.diff-inner,
	.problem-grid,
	.solution-inner,
	.contact-inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.hero-diff-cards {
		grid-template-columns: 1fr 1fr;
	}
	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.audience-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.tools-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	nav {
		padding: 0 1.25rem;
	}

	.nav-hamburger {
		display: flex;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: rgba(250, 250, 248, 0.98);
		backdrop-filter: blur(12px);
		border-bottom: 1px solid var(--border);
		flex-direction: column;
		gap: 0;
		padding: 0.5rem 0 1rem;
		box-shadow: 0 8px 24px rgba(11, 31, 58, 0.1);
		z-index: 150;
	}

	.nav-links.is-open {
		display: flex;
	}

	.nav-links li {
		width: 100%;
	}

	.nav-links a {
		display: block;
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
		border-bottom: 1px solid var(--border);
	}

	.nav-links li:last-child a {
		border-bottom: none;
	}

	.nav-cta {
		display: block;
		margin: 0.75rem 1.5rem 0 !important;
		text-align: center;
		padding: 0.875rem !important;
		border-radius: 4px;
	}
}

@media (max-width: 600px) {
	.steps-grid,
	.audience-grid,
	.tools-grid,
	.hero-diff-cards {
		grid-template-columns: 1fr;
	}
	section {
		padding: 4rem 1.25rem;
	}
	.hero {
		padding: 6rem 1.25rem 4rem;
	}
}
