:root {
	--navy: #0f172a;
	--steel: #4a6fa5;
	--sky: #a7c0d8;
	--grey: #e5e7eb;
	--electric: #3b82f6;
	--sand: #d6c3a3;
	--white: #ffffff;
	--off-white: #f8fafc;
	--text-muted: #64748b;
	--text-body: #334155;
	--border: #e2e8f0;
	--font-head: "Poppins", sans-serif;
	--font-body: "Inter", sans-serif;
	--font-accent: "Playfair Display", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--white);
	color: var(--text-body);
	font-family: var(--font-body);
	overflow-x: hidden;
}

a { color: inherit; }
.site-main { min-height: 60vh; }

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 0 clamp(20px, 5vw, 60px);
	background: rgba(15, 23, 42, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(167, 192, 216, 0.06);
}

.custom-logo-link img {
	display: block;
	width: auto;
	max-height: 42px;
	filter: brightness(0) invert(1);
}

.dg-brand-mark {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	font-family: var(--font-head);
	line-height: 1.15;
	text-transform: uppercase;
}

.dg-brand-the {
	font-size: 9px;
	font-weight: 400;
	letter-spacing: 0.25em;
	color: rgba(167, 192, 216, 0.6);
}

.dg-brand-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: 0.04em;
}

.dg-brand-name span { color: var(--sky); }

.nav-links,
.footer-links {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.nav-links a {
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 500;
	color: var(--sky);
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: color 0.2s;
}

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

.btn-nav,
.btn-primary,
.btn-outline,
.btn-pkg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-family: var(--font-head);
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-nav {
	background: var(--electric);
	color: var(--white);
	font-weight: 600;
	font-size: 13px;
	padding: 10px 22px;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.btn-nav:hover,
.btn-primary:hover {
	background: #2563eb;
	color: var(--white);
	transform: translateY(-1px);
}

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 120px clamp(20px, 5vw, 60px) 80px;
	background: var(--navy);
}

#hero-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.hero-geo-right {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 42%;
	background: linear-gradient(145deg, rgba(74, 111, 165, 0.06) 0%, rgba(15, 23, 42, 0) 100%);
	clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
	z-index: 1;
	pointer-events: none;
}

.hero-inner {
	max-width: 620px;
	position: relative;
	z-index: 2;
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sky);
	margin-bottom: 24px;
	opacity: 0;
	animation: fadeUp 0.7s 0.1s ease forwards;
}

.hero-tag-line {
	width: 28px;
	height: 1px;
	background: var(--steel);
}

.hero h1 {
	font-family: var(--font-head);
	font-size: clamp(38px, 5vw, 52px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--white);
	margin: 0 0 14px;
	opacity: 0;
	animation: fadeUp 0.7s 0.2s ease forwards;
}

.hero h1 em {
	font-style: normal;
	color: var(--electric);
}

.hero-tagline {
	font-family: var(--font-accent);
	font-style: italic;
	font-size: 18px;
	color: var(--sky);
	margin: 0 0 20px;
	opacity: 0;
	animation: fadeUp 0.7s 0.3s ease forwards;
}

.hero-sub {
	font-size: 16px;
	color: rgba(167, 192, 216, 0.75);
	line-height: 1.75;
	max-width: 500px;
	margin: 0 0 40px;
	opacity: 0;
	animation: fadeUp 0.7s 0.4s ease forwards;
	font-weight: 300;
}

.hero-actions,
.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-actions {
	opacity: 0;
	animation: fadeUp 0.7s 0.5s ease forwards;
}

.btn-primary {
	background: var(--electric);
	color: var(--white);
	font-weight: 600;
	font-size: 14px;
	padding: 14px 30px;
	letter-spacing: 0.03em;
}

.btn-outline {
	background: transparent;
	color: var(--white);
	font-weight: 500;
	font-size: 14px;
	padding: 14px 30px;
	border: 1px solid rgba(167, 192, 216, 0.25);
}

.btn-outline:hover {
	color: var(--white);
	border-color: rgba(167, 192, 216, 0.5);
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 44px;
	margin-top: 56px;
	padding-top: 44px;
	border-top: 1px solid rgba(167, 192, 216, 0.1);
	opacity: 0;
	animation: fadeUp 0.7s 0.6s ease forwards;
}

.stat-val {
	font-family: var(--font-head);
	font-size: 30px;
	font-weight: 700;
	color: var(--white);
}

.stat-val span { color: var(--electric); }

.stat-desc {
	font-size: 12px;
	color: rgba(167, 192, 216, 0.6);
	margin-top: 3px;
	letter-spacing: 0.03em;
}

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

.trust {
	display: flex;
	align-items: center;
	gap: 36px;
	padding: 16px clamp(20px, 5vw, 60px);
	background: #f1f5f9;
	border-bottom: 1px solid var(--border);
	overflow-x: auto;
}

.trust-lbl,
.trust-item {
	font-family: var(--font-head);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: #94a3b8;
	text-transform: uppercase;
	white-space: nowrap;
}

.trust-sep {
	width: 1px;
	height: 18px;
	background: var(--border);
	flex: 0 0 auto;
}

.trust-items {
	display: flex;
	gap: 32px;
}

.trust-item {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

section {
	position: relative;
	padding: 88px clamp(20px, 5vw, 60px);
}

.s-chip {
	display: inline-block;
	font-family: var(--font-head);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--steel);
	margin-bottom: 12px;
}

.s-title {
	font-family: var(--font-head);
	font-size: clamp(30px, 4vw, 36px);
	font-weight: 700;
	color: var(--navy);
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0 0 12px;
}

.s-sub {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.8;
	max-width: 500px;
	margin: 0;
}

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

.services-header,
.pkg-intro {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 48px;
	gap: 40px;
}

.svc-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
}

.svc-card {
	position: relative;
	background: var(--white);
	padding: 32px 28px;
	transition: background 0.25s;
}

.svc-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--steel);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s;
}

.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { background: var(--off-white); }

.svc-tier-tag {
	font-family: var(--font-head);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--steel);
	opacity: 0.7;
	margin-bottom: 14px;
}

.svc-icon {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	background: #eff6ff;
	border-radius: 6px;
	font-size: 19px;
}

.svc-card h3 {
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 600;
	color: var(--navy);
	margin: 0 0 8px;
}

.svc-card p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.65;
	margin: 0;
}

.svc-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
	color: var(--electric);
	margin-top: 14px;
	text-decoration: none;
	letter-spacing: 0.03em;
}

.svc-link span {
	font-size: 10px;
	transition: transform 0.2s;
}

.svc-card:hover .svc-link span { transform: translateX(3px); }

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

.pkg-grid,
.proof-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.pkg-card {
	position: relative;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 36px;
	transition: box-shadow 0.3s, transform 0.3s;
}

.pkg-card:hover {
	box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
	transform: translateY(-4px);
}

.pkg-card.featured {
	border-color: var(--electric);
	border-width: 2px;
}

.pkg-card.featured::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--steel), var(--electric));
	border-radius: 10px 10px 0 0;
}

.pkg-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--electric);
	color: var(--white);
	font-family: var(--font-head);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 4px 16px;
	border-radius: 20px;
	white-space: nowrap;
}

.pkg-tier {
	font-family: var(--font-head);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: var(--steel);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.pkg-name {
	font-family: var(--font-head);
	font-size: 24px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 6px;
}

.pkg-price {
	font-family: var(--font-head);
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 24px;
}

.pkg-price strong {
	font-size: 30px;
	color: var(--navy);
	font-weight: 700;
}

.pkg-hr {
	height: 1px;
	background: var(--border);
	margin-bottom: 22px;
}

.pkg-list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}

.pkg-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13px;
	color: var(--text-body);
	padding: 6px 0;
	border-bottom: 1px solid #f8fafc;
}

.chk {
	color: var(--electric);
	flex-shrink: 0;
	margin-top: 1px;
}

.btn-pkg {
	width: 100%;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.04em;
	padding: 12px;
}

.btn-pkg.solid {
	background: var(--navy);
	color: var(--white);
	border: 0;
}

.btn-pkg.solid:hover { background: var(--steel); }

.btn-pkg.border {
	background: transparent;
	color: var(--navy);
	border: 1px solid var(--border);
}

.btn-pkg.border:hover {
	border-color: var(--steel);
	color: var(--steel);
}

.ai-section {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 72px;
	align-items: center;
	background: var(--navy);
	overflow: hidden;
}

.ai-section::before,
.ai-section::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(74, 111, 165, 0.08);
	pointer-events: none;
}

.ai-section::before {
	top: -120px;
	right: -120px;
	width: 400px;
	height: 400px;
}

.ai-section::after {
	bottom: -80px;
	left: 40%;
	width: 260px;
	height: 260px;
	border-color: rgba(59, 130, 246, 0.06);
}

.ai-section .s-chip,
.cta-section .s-chip { color: var(--sand); }
.ai-section .s-title,
.cta-section .s-title { color: var(--white); }

.ai-section .s-sub {
	color: rgba(167, 192, 216, 0.7);
	margin-bottom: 28px;
}

.ai-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 20px 0 32px;
}

.ai-pill {
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 500;
	color: var(--sky);
	padding: 6px 14px;
	border-radius: 20px;
	border: 1px solid rgba(167, 192, 216, 0.18);
	background: rgba(167, 192, 216, 0.05);
	letter-spacing: 0.04em;
}

.ai-visual {
	position: relative;
	z-index: 1;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(167, 192, 216, 0.1);
	border-radius: 10px;
	padding: 28px;
}

.flow-node {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 6px;
	border: 1px solid rgba(167, 192, 216, 0.07);
	margin-bottom: 4px;
}

.flow-icon {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(59, 130, 246, 0.12);
	border-radius: 6px;
	font-size: 15px;
	flex-shrink: 0;
}

.flow-title {
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 600;
	color: var(--white);
}

.flow-desc {
	font-size: 11px;
	color: rgba(167, 192, 216, 0.6);
	margin-top: 2px;
	line-height: 1.5;
}

.flow-arrow {
	text-align: left;
	padding: 3px 0 3px 21px;
	color: rgba(59, 130, 246, 0.35);
	font-size: 11px;
	letter-spacing: 3px;
}

.proof {
	background: var(--white);
	padding-top: 80px;
	padding-bottom: 80px;
}

.proof-header {
	text-align: center;
	margin-bottom: 52px;
}

.proof-header .s-sub {
	margin: 0 auto;
	text-align: center;
}

.proof-card {
	position: relative;
	background: var(--off-white);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 28px;
}

.proof-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 24px;
	right: 24px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--steel), transparent);
}

.proof-quote {
	font-family: var(--font-accent);
	font-style: italic;
	font-size: 15px;
	color: var(--text-body);
	line-height: 1.7;
	margin: 0 0 20px;
}

.proof-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.proof-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--steel);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	color: var(--white);
	flex-shrink: 0;
}

.proof-name {
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
}

.proof-role {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 2px;
}

.cta-section {
	background: var(--navy);
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
}

.cta-bg-line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(74, 111, 165, 0.15), transparent);
}

.cta-section .s-title {
	font-size: clamp(32px, 4vw, 40px);
	max-width: 580px;
	margin: 0 auto 14px;
	letter-spacing: -0.03em;
}

.cta-tagline {
	font-family: var(--font-accent);
	font-style: italic;
	font-size: 16px;
	color: var(--sky);
	margin: 0 0 16px;
}

.cta-section .s-sub {
	margin: 0 auto 36px;
	text-align: center;
	color: rgba(167, 192, 216, 0.65);
	max-width: 460px;
}

.cta-actions { justify-content: center; }

.site-footer {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 40px;
	padding: 36px clamp(20px, 5vw, 60px);
	background: var(--navy);
	border-top: 1px solid rgba(167, 192, 216, 0.07);
}

.footer-tagline {
	font-family: var(--font-accent);
	font-style: italic;
	font-size: 13px;
	color: rgba(167, 192, 216, 0.45);
	margin: 0;
	text-align: center;
}

.site-footer__links { justify-self: end; }

.footer-links {
	justify-content: flex-end;
	gap: 24px;
}

.footer-links a {
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(136, 153, 187, 0.4);
	text-decoration: none;
	transition: color 0.2s;
}

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

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.about-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
	gap: clamp(36px, 6vw, 76px);
	align-items: center;
	min-height: 78vh;
	padding-top: 140px;
	padding-bottom: 84px;
	background:
		linear-gradient(120deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92)),
		radial-gradient(circle at 82% 20%, rgba(59, 130, 246, 0.18), transparent 34%);
	overflow: hidden;
}

.about-hero::after {
	content: "";
	position: absolute;
	inset: auto -12% -35% 45%;
	height: 420px;
	border: 1px solid rgba(167, 192, 216, 0.08);
	transform: rotate(-12deg);
	pointer-events: none;
}

.about-hero__content,
.about-hero__panel {
	position: relative;
	z-index: 1;
}

.about-hero h1 {
	max-width: 760px;
	margin: 0 0 22px;
	font-family: var(--font-head);
	font-size: clamp(42px, 6vw, 68px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--white);
}

.about-hero h1 em {
	font-style: normal;
	color: var(--electric);
}

.about-hero .hero-sub {
	max-width: 650px;
	animation-delay: 0.25s;
}

.about-hero__panel {
	padding: 32px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(167, 192, 216, 0.12);
	border-radius: 10px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.about-panel__eyebrow {
	margin-bottom: 16px;
	font-family: var(--font-head);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--sand);
}

.about-hero__panel p {
	margin: 0 0 28px;
	color: rgba(167, 192, 216, 0.78);
	font-size: 15px;
	line-height: 1.8;
}

.about-panel__stats {
	display: grid;
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(167, 192, 216, 0.1);
	border-radius: 8px;
	background: rgba(167, 192, 216, 0.1);
}

.about-panel__stats div {
	padding: 18px;
	background: rgba(15, 23, 42, 0.78);
}

.about-panel__stats strong,
.about-panel__stats span {
	display: block;
}

.about-panel__stats strong {
	font-family: var(--font-head);
	font-size: 17px;
	color: var(--white);
}

.about-panel__stats span {
	margin-top: 4px;
	font-size: 12px;
	color: rgba(167, 192, 216, 0.62);
}

.about-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(36px, 6vw, 84px);
	align-items: start;
	background: var(--white);
}

.about-intro__text p {
	margin: 0 0 20px;
	color: var(--text-body);
	font-size: 16px;
	line-height: 1.9;
}

.about-intro__text p:last-child { margin-bottom: 0; }

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

.belief-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--border);
}

.belief-card {
	min-height: 260px;
	padding: 30px 26px;
	background: var(--white);
}

.belief-card__num {
	margin-bottom: 40px;
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: var(--electric);
}

.belief-card h3 {
	margin: 0 0 12px;
	font-family: var(--font-head);
	font-size: 18px;
	line-height: 1.25;
	color: var(--navy);
}

.belief-card p {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
	color: var(--text-muted);
}

.about-method {
	display: grid;
	grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
	gap: clamp(36px, 5vw, 68px);
	background: var(--navy);
}

.about-method .s-chip { color: var(--sand); }
.about-method .s-title { color: var(--white); }
.about-method .s-sub { color: rgba(167, 192, 216, 0.72); }

.method-steps {
	display: grid;
	gap: 12px;
}

.method-step {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
	padding: 20px 0;
	border-bottom: 1px solid rgba(167, 192, 216, 0.12);
}

.method-step:first-child { padding-top: 0; }

.method-step span {
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sky);
}

.method-step p {
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: rgba(248, 250, 252, 0.74);
}

.about-focus {
	display: grid;
	grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
	gap: clamp(40px, 6vw, 86px);
	align-items: center;
	background: var(--white);
}

.about-focus__visual {
	position: relative;
	min-height: 420px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background:
		linear-gradient(145deg, #f8fafc, #ffffff),
		linear-gradient(90deg, rgba(74, 111, 165, 0.08), transparent);
	overflow: hidden;
}

.focus-orbit {
	position: absolute;
	border: 1px solid rgba(74, 111, 165, 0.18);
	border-radius: 50%;
}

.focus-orbit--one {
	inset: 64px;
}

.focus-orbit--two {
	inset: 120px 42px;
	transform: rotate(18deg);
}

.focus-core {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 150px;
	height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: translate(-50%, -50%);
	background: var(--navy);
	border-radius: 50%;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}

.focus-core strong,
.focus-core span {
	font-family: var(--font-head);
	color: var(--white);
}

.focus-core strong {
	font-size: 22px;
}

.focus-core span {
	margin-top: 2px;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sky);
}

.focus-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
}

.focus-list span {
	padding: 8px 14px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: var(--off-white);
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
	color: var(--steel);
}

.blog-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
	gap: clamp(36px, 6vw, 72px);
	align-items: end;
	min-height: 70vh;
	padding-top: 140px;
	padding-bottom: 82px;
	background:
		linear-gradient(120deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9)),
		radial-gradient(circle at 75% 22%, rgba(59, 130, 246, 0.16), transparent 34%);
	overflow: hidden;
}

.blog-hero::after {
	content: "";
	position: absolute;
	top: 18%;
	right: -110px;
	width: 340px;
	height: 340px;
	border: 1px solid rgba(167, 192, 216, 0.08);
	border-radius: 50%;
	pointer-events: none;
}

.blog-hero__content,
.blog-hero__topics {
	position: relative;
	z-index: 1;
}

.blog-hero h1 {
	max-width: 850px;
	margin: 0 0 22px;
	font-family: var(--font-head);
	font-size: clamp(42px, 6vw, 66px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--white);
}

.blog-hero h1 em {
	font-style: normal;
	color: var(--electric);
}

.blog-hero .hero-sub {
	max-width: 690px;
	animation-delay: 0.25s;
}

.blog-hero__topics {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 24px;
	border: 1px solid rgba(167, 192, 216, 0.12);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
}

.blog-hero__topics a,
.blog-hero__topics span {
	display: inline-flex;
	padding: 8px 12px;
	border: 1px solid rgba(167, 192, 216, 0.16);
	border-radius: 20px;
	color: var(--sky);
	text-decoration: none;
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
}

.blog-featured {
	background: var(--white);
}

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

.featured-post {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: var(--off-white);
}

.featured-post__media,
.post-card__media {
	display: block;
	position: relative;
	min-height: 320px;
	overflow: hidden;
	background: #eef4fb;
	text-decoration: none;
}

.featured-post__media img,
.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.featured-post__placeholder,
.post-card__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(74, 111, 165, 0.82)),
		linear-gradient(90deg, rgba(59, 130, 246, 0.22), transparent);
	color: var(--white);
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.featured-post__placeholder span {
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 24px;
}

.featured-post__content {
	padding: clamp(32px, 5vw, 54px);
	align-self: center;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
	font-family: var(--font-head);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--steel);
}

.post-meta span + span {
	color: #94a3b8;
}

.featured-post h3,
.post-card h3 {
	margin: 0;
	font-family: var(--font-head);
	color: var(--navy);
	letter-spacing: -0.02em;
}

.featured-post h3 {
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.15;
}

.featured-post h3 a,
.post-card h3 a {
	text-decoration: none;
}

.featured-post p {
	margin: 18px 0 8px;
	font-size: 15px;
	line-height: 1.85;
	color: var(--text-muted);
}

.blog-index {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: clamp(34px, 5vw, 58px);
	align-items: start;
	background: var(--off-white);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.post-card {
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--white);
	transition: transform 0.25s, box-shadow 0.25s;
}

.post-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.post-card__media {
	min-height: 190px;
}

.post-card__placeholder {
	font-size: 10px;
	text-align: center;
	padding: 24px;
}

.post-card__body {
	padding: 24px;
}

.post-card h3 {
	font-size: 20px;
	line-height: 1.28;
}

.post-card p {
	margin: 12px 0 0;
	font-size: 13px;
	line-height: 1.75;
	color: var(--text-muted);
}

.blog-sidebar {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 14px;
}

.sidebar-block {
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--white);
}

.sidebar-label {
	margin-bottom: 10px;
	font-family: var(--font-head);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--steel);
}

.sidebar-block p {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
	color: var(--text-muted);
}

.sidebar-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sidebar-tags span {
	padding: 7px 11px;
	border: 1px solid var(--border);
	border-radius: 18px;
	background: var(--off-white);
	font-family: var(--font-head);
	font-size: 11px;
	font-weight: 600;
	color: var(--steel);
}

.sidebar-cta {
	background: var(--navy);
	border-color: rgba(167, 192, 216, 0.12);
}

.sidebar-cta .sidebar-label {
	color: var(--sand);
}

.sidebar-cta p {
	color: rgba(167, 192, 216, 0.72);
	margin-bottom: 18px;
}

.sidebar-cta .btn-primary {
	width: 100%;
	padding: 12px 18px;
}

@media (max-width: 980px) {
	.site-header__nav { display: none; }
	.services-header,
	.pkg-intro,
	.ai-section {
		grid-template-columns: 1fr;
	}
	.services-header,
	.pkg-intro {
		display: block;
	}
	.services-header .s-sub,
	.pkg-intro .s-sub {
		margin-top: 16px;
	}
	.svc-grid,
	.pkg-grid,
	.proof-grid,
	.belief-grid {
		grid-template-columns: 1fr 1fr;
	}
	.about-hero,
	.about-intro,
	.about-method,
	.about-focus,
	.blog-hero,
	.featured-post,
	.blog-index {
		grid-template-columns: 1fr;
	}
	.about-hero {
		min-height: auto;
	}
	.blog-hero {
		min-height: auto;
	}
	.blog-sidebar {
		position: static;
	}
	.about-focus__visual {
		min-height: 340px;
	}
	.site-footer {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.site-footer__brand,
	.site-footer__links {
		justify-self: center;
	}
	.footer-links {
		justify-content: center;
		flex-wrap: wrap;
	}
}

@media (max-width: 640px) {
	.site-header {
		height: 66px;
	}
	.btn-nav {
		font-size: 12px;
		padding: 9px 12px;
	}
	.hero {
		min-height: auto;
		padding-top: 112px;
	}
	.hero-actions a,
	.cta-actions a {
		width: 100%;
	}
	.hero-stats {
		gap: 24px;
	}
	.svc-grid,
	.pkg-grid,
	.proof-grid,
	.belief-grid,
	.post-grid {
		grid-template-columns: 1fr;
	}
	.about-hero {
		padding-top: 112px;
	}
	.blog-hero {
		padding-top: 112px;
	}
	.blog-section-header {
		display: block;
	}
	.blog-section-header .s-sub {
		margin-top: 14px;
	}
	.featured-post__media,
	.post-card__media {
		min-height: 220px;
	}
	.about-hero__panel,
	.belief-card {
		padding: 24px;
	}
	.method-step {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.about-focus__visual {
		min-height: 280px;
	}
	.focus-core {
		width: 128px;
		height: 128px;
	}
	section {
		padding-top: 64px;
		padding-bottom: 64px;
	}
	.site-footer {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}
