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

:root {
	--_base---colors--system--yellow-100: #fef3d4;
	--_base---colors--system--green-300: #adecbb;
	--colors--primary--200: #89efec;
	--purple: #6145ff;
	--purple-hover: #4f35e8;
	--mint: #89efec;
	--lilac: #ab9dff;
	--dark: #0a0618;
	--ink: #0d0c54;
	--body: #40406a;
	--muted: #7a6fa8;
	--lav-50: #f8f6ff;
	--lav-100: #ebe7ff;
	--lav-border: #dad2fd;
	--white: #ffffff;
	--max-w: 1290px;
	--cube: url("assets/cube-background.png");
	--font: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
	scroll-behavior: smooth;
	background: var(--white);
}
body {
	background: transparent;
	color: var(--body);
	font-family: var(--font);
	font-size: 18px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	isolation: isolate;
}
body::after {
	content: "";
	position: fixed;
	inset: 0;
	background:
		var(--cube) right top -419px / 1330px auto no-repeat,
		#050308;
	z-index: -1;
	pointer-events: none;
}

a {
	color: inherit;
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
.page {
	display: none;
}
.page.active {
	display: block;
}
.container {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 40px;
}

.subtitle {
	letter-spacing: -0.03px;
	text-transform: capitalize;
	-webkit-text-fill-color: transparent;
	background-image: linear-gradient(45deg, #6145ff, #ba9dff);
	-webkit-background-clip: text;
	background-clip: text;
	display: inline-block;
}

.subtitle.eyebrow {
	font-weight: 700;
}

.subtitle.eyebrow.dark-mode-5 {
	background-image: linear-gradient(45deg, var(--colors--primary--200), var(--_base---colors--system--green-300) 51%, var(--_base---colors--system--yellow-100));
}

/* ===================== NAV ===================== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}
.nav::before {
	content: "";
	position: absolute;
	inset: 0;
	background: transparent;
	transition:
		background 0.4s,
		backdrop-filter 0.4s,
		-webkit-backdrop-filter 0.4s;
	z-index: -1;
	pointer-events: none;
}
.nav.scrolled::before {
	background: rgba(5, 3, 8, 0.82);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}
.nav-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-logo {
	height: 34px;
	cursor: pointer;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.nav-logo img {
	height: 100%;
	width: auto;
}
.nav-right {
	display: flex;
	align-items: center;
	gap: 8px;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
}
.nav-links a {
	padding: 8px 14px;
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
	border-radius: 8px;
	cursor: pointer;
	transition:
		color 0.2s,
		background 0.2s;
}
.nav-links a:hover {
	background: rgba(255, 255, 255, 0.08);
}
.nav-links a.active {
	background: rgba(255, 255, 255, 0.1);
}
.nav-btn {
	margin-left: 12px;
	padding: 9px 22px !important;
	background: #6145ff !important;
	color: #fff !important;
	border-radius: 100px !important;
	font-weight: 500 !important;
	font-size: 14px !important;
	transition:
		background 0.25s,
		transform 0.25s !important;
}
.nav-btn:hover {
	background: #5038d9 !important;
	color: #fff !important;
	transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	width: 40px;
	height: 40px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	position: relative;
	z-index: 1002;
	-webkit-tap-highlight-color: transparent;
}
.hamburger-line {
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition:
		transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.25s;
	transform-origin: center;
}
.hamburger.active .hamburger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
	opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 860px) {
	.nav-inner {
		padding: 0 24px;
	}
	.hamburger {
		display: flex;
	}
	.nav-links {
		position: fixed;
		inset: 0;
		background: #050308;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 4px;
		opacity: 0;
		visibility: hidden;
		transition:
			opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
			visibility 0.4s;
		z-index: 1001;
		padding: 100px 32px 60px;
	}
	.nav-links.open {
		opacity: 1;
		visibility: visible;
	}
	.nav-links a {
		font-size: 28px;
		font-weight: 500;
		padding: 16px 24px;
		color: rgba(255, 255, 255, 0.8);
		border-radius: 12px;
		width: auto;
		min-width: 200px;
		text-align: center;
		transform: translateY(12px);
		opacity: 0;
		transition:
			transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
			opacity 0.4s,
			color 0.2s,
			background 0.2s;
	}
	.nav-links.open a {
		transform: translateY(0);
		opacity: 1;
	}
	.nav-links.open a:nth-child(1) {
		transition-delay: 0.06s;
	}
	.nav-links.open a:nth-child(2) {
		transition-delay: 0.12s;
	}
	.nav-links.open a:nth-child(3) {
		transition-delay: 0.18s;
	}
	.nav-links.open a:nth-child(4) {
		transition-delay: 0.24s;
	}
	.nav-links.open a:nth-child(5) {
		transition-delay: 0.3s;
	}
	.nav-links.open a:nth-child(6) {
		transition-delay: 0.36s;
	}
	.nav-links a:hover {
		color: #fff;
		background: rgba(255, 255, 255, 0.08);
	}
	.nav-btn {
		margin-left: 0;
		margin-top: 16px;
		padding: 14px 36px !important;
		font-size: 17px !important;
	}
	body.menu-open {
		overflow: hidden;
	}
	.container {
		padding: 0 24px;
	}
	section {
		padding: 60px 24px;
	}
	.hero-panel {
		padding: 100px 24px 0;
		border-radius: 0 0 24px 24px;
	}
	.hero-btns {
		margin-bottom: 48px;
	}
	.quote-band {
		padding: 100px 24px;
	}
	.pillar-section {
		padding: 60px 24px;
	}
	.pillar-cta {
		padding: 20px 24px 60px;
	}
	.cc-body {
		padding: 28px 24px;
	}
	.cc-body h3 {
		font-size: 26px;
		margin-bottom: 18px;
	}
	.cc-tile {
		min-height: 200px;
		padding: 24px;
	}
	.cc-rows {
		gap: 40px;
	}
	.cc-cta {
		margin-top: 48px;
	}
	.blog-section {
		padding: 80px 24px;
	}
	footer {
		padding: 60px 24px 36px;
		border-radius: 24px 24px 0 0;
	}
	.footer-cta {
		padding: 48px 32px;
		margin-bottom: 72px;
	}
	.footer-bottom {
		margin-top: 60px;
	}
	.hero-panel.short {
		padding-bottom: 100px;
	}
	.hero-panel.short.contact-hero-panel {
		padding-bottom: 60px;
	}
}

/* ===================== HERO ===================== */
.hero-panel {
	position: relative;
	display: flow-root;
	background:
		linear-gradient(180deg, rgba(5, 3, 8, 0.22) 0%, rgba(5, 3, 8, 0.3) 38%, transparent 72%),
		radial-gradient(ellipse 100% 72% at 50% 112%, rgba(76, 46, 214, 0.5) 0%, rgba(64, 38, 180, 0.25) 50%, transparent 78%),
		radial-gradient(ellipse 65% 42% at 50% 104%, rgba(104, 74, 246, 0.35) 0%, transparent 72%), linear-gradient(rgba(6, 4, 12, 0.42), rgba(6, 4, 12, 0.62));
	border-radius: 0 0 40px 40px;
	text-align: center;
	padding: 132px 40px 0;
	overflow: visible;
}
.hero-eyebrow {
	font-size: 18px;
	font-weight: 500;
	color: var(--mint);
	margin-bottom: 20px;
	letter-spacing: 0.01em;
}
.hero-panel h1 {
	font-size: clamp(44px, 5.6vw, 76px);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.025em;
	color: #fff;
	max-width: 940px;
	margin: 0 auto 24px;
}
.hero-sub {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.92);
	max-width: 560px;
	margin: 0 auto 40px;
	line-height: 1.5;
	min-height: 54px;
}
.typewriter-cursor {
	display: inline-block;
	width: 2px;
	height: 1.05em;
	background: #fff;
	margin-left: 2px;
	vertical-align: text-bottom;
	animation: blink 0.9s step-end infinite;
}
@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}
.hero-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 84px;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 36px;
	border-radius: 100px;
	font-size: 17px;
	font-weight: 500;
	cursor: pointer;
	border: none;
	font-family: var(--font);
	transition: all 0.25s;
}
.btn-white {
	background: linear-gradient(135deg, #ffffff 0%, #e4f5f4 100%);
	color: var(--dark);
}
.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(137, 239, 236, 0.25);
}
.btn-outline {
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-outline:hover {
	background: rgba(255, 255, 255, 0.12);
}
.btn-purple {
	background: linear-gradient(45deg, #6145ff, #ba9dff);
	color: #fff;
}
.btn-purple:hover {
	background: linear-gradient(45deg, #5038d9, #a084f0);
	transform: translateY(-1px);
}

.hero-tablet {
	max-width: 800px;
	margin: 0 auto -195px;
	position: relative;
	z-index: 5;
}
.hero-tablet img {
	width: 100%;
}

/* ===================== CLOUD STRIP (marquee) ===================== */
.cloud-strip {
	background: var(--white);
	padding: 315px 0 30px;
	overflow: hidden;
}
.cloud-strip-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.cloud-track {
	display: flex;
	align-items: center;
	gap: 190px;
	width: max-content;
	animation: cloudScroll 30s linear infinite;
	padding: 10px 0;
}
.cloud-track img {
	height: 30px;
	width: auto;
	opacity: 0.85;
	flex-shrink: 0;
	filter: brightness(0) saturate(100%) invert(9%) sepia(14%) saturate(2094%) hue-rotate(202deg) brightness(94%) contrast(101%);
}
@keyframes cloudScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
@media (max-width: 860px) {
	.cloud-strip {
		padding-top: 220px;
	}
	.cloud-track {
		gap: 80px;
	}
}

/* ===================== SECTION BASICS ===================== */
section {
	padding: 100px 40px;
}
.sec-inner {
	max-width: var(--max-w);
	margin: 0 auto;
}
.sec-label {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--ink);
}
.sec-label .lt {
	color: var(--purple);
}
.sec-label.solo {
	color: var(--purple);
}
.sec-title {
	font-size: clamp(38px, 4.6vw, 64px);
	font-weight: 500;
	color: var(--dark);
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}
.sec-desc {
	font-size: 18px;
	color: var(--body);
	max-width: 620px;
	line-height: 1.6;
}
.center {
	text-align: center;
}
.center .sec-desc {
	margin-left: auto;
	margin-right: auto;
}

/* ===================== CONTROL PLANE / ARCHITECTURE ===================== */
.arch-section {
	background: transparent;
	padding-bottom: 0;
}
.arch-img {
	max-width: 630px;
	margin: 56px auto 0;
}
.arch-img img {
	width: 100%;
}
.arch-vbg {
	background: linear-gradient(rgba(151, 133, 255, 0.1), rgba(151, 133, 255, 0.1));
	clip-path: polygon(0 0, 50% 12%, 100% 0, 100% 100%, 0 100%);
}

/* ===================== PILLARS ===================== */
.pillar-section {
	padding: 110px 40px;
	position: relative;
}
.pillars-band {
	position: relative;
	background: var(--white);
	overflow: hidden;
}
.pillars-band > * {
	position: relative;
	z-index: 1;
}
.pillars-cube {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}
.pillar-row {
	max-width: var(--max-w);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
@media (max-width: 860px) {
	.pillar-row {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}
.pillar-row h3 {
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 500;
	color: var(--dark);
	line-height: 1.15;
	letter-spacing: -0.015em;
	margin-bottom: 36px;
	max-width: 420px;
}
.pillar-bullet {
	display: flex;
	gap: 16px;
	margin-bottom: 28px;
}
.pillar-bullet img {
	width: 26px;
	height: 22px;
	flex-shrink: 0;
	margin-top: 3px;
	object-fit: contain;
}
.pillar-bullet strong {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
}
.pillar-bullet p {
	font-size: 17px;
	color: var(--body);
	line-height: 1.55;
}
.pillar-graphic {
	display: flex;
	align-items: center;
	justify-content: center;
}
.pillar-graphic img {
	max-width: 100%;
	max-height: 420px;
}
.pillar-cta {
	text-align: center;
	padding: 20px 40px 90px;
}

/* ===================== DARK QUOTE ===================== */
.quote-band {
	background: linear-gradient(rgba(6, 4, 12, 0.5), rgba(6, 4, 12, 0.5));
	padding: 170px 40px;
	text-align: center;
}
.quote-band h2 {
	font-size: clamp(30px, 3.6vw, 52px);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	letter-spacing: -0.015em;
	max-width: 1200px;
	margin: 0 auto;
}

/* ===================== CLUSTER CONTROL CARDS (sticky stack) ===================== */
.cc-section {
	background: white;
}
.cc-rows {
	display: flex;
	flex-direction: column;
	gap: 80px;
	margin-top: 72px;
}
.cc-card {
	background: #f9f8ff;
	border: 1px solid #eceaf4;
	border-radius: 24px;
	padding: 26px;
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 26px;
	align-items: stretch;
	position: sticky;
	top: calc(150px + var(--si, 0px));
	transform-origin: top center;
	will-change: transform;
	/* box-shadow: 0 -14px 34px rgba(10, 6, 24, 0.1); */
}
@media (max-width: 860px) {
	.cc-card {
		grid-template-columns: 1fr;
		position: static;
	}
}
@media (prefers-reduced-motion: reduce) {
	.cc-card {
		position: static;
		transform: none !important;
	}
}
.cc-tile {
	background: #16151c;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
	min-height: 250px;
}
.cc-tile img {
	max-width: 82%;
	max-height: 200px;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cc-card:hover .cc-tile img {
	transform: scale(1.08);
}
.cc-body {
	background: #ffffff;
	border: 1px solid #eeedf5;
	border-radius: 18px;
	padding: 44px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cc-body h3 {
	font-size: 32px;
	font-weight: 500;
	color: var(--dark);
	margin-bottom: 26px;
	letter-spacing: -0.01em;
}
.cc-point {
	display: flex;
	gap: 14px;
}
.cc-point img {
	width: 24px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 4px;
	object-fit: contain;
}
.cc-point p {
	font-size: 17px;
	color: var(--dark);
	line-height: 1.6;
}
.cc-cta {
	text-align: center;
	margin-top: 72px;
}

/* ===================== USE CASES (marquee) ===================== */
.uc-section {
	background: var(--lav-50);
	padding: 110px 0 120px;
	overflow: hidden;
	position: relative;
}
.uc-section::before,
.uc-section::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 140px;
	z-index: 2;
	pointer-events: none;
}
.uc-section::before {
	left: 0;
	background: linear-gradient(90deg, var(--lav-50), transparent);
}
.uc-section::after {
	right: 0;
	background: linear-gradient(270deg, var(--lav-50), transparent);
}
.uc-section .sec-head {
	padding: 0 40px;
	margin-bottom: 64px;
}
.uc-row {
	display: flex;
	gap: 28px;
	width: max-content;
	animation: ucScroll 45s linear infinite;
	padding: 14px 0;
}
.uc-row.reverse {
	animation-direction: reverse;
}
.uc-row:hover {
	animation-play-state: paused;
}
@keyframes ucScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
.uc-card {
	background: var(--white);
	border: 1px solid var(--lav-border);
	border-radius: 20px;
	padding: 28px 32px;
	width: 400px;
	flex-shrink: 0;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}
.uc-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 34px rgba(97, 69, 255, 0.12);
}
.uc-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}
.uc-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.uc-role {
	font-size: 17px;
	font-weight: 700;
	color: var(--dark);
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}
.uc-role .vbadge {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}
.uc-role .ind {
	color: var(--body);
	font-weight: 500;
}
.uc-text {
	font-size: 16px;
	color: var(--body);
	line-height: 1.5;
}

/* ===================== BLOG ===================== */
.blog-section {
	background: var(--white);
	padding: 120px 40px;
}
.blog-head {
	max-width: var(--max-w);
	margin: 0 auto 64px;
}
.blog-head .sec-title {
	font-size: clamp(44px, 5vw, 72px);
}
.blog-grid {
	max-width: var(--max-w);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
@media (max-width: 960px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.blog-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
	}
}
.blog-card {
	background: var(--lav-50);
	border: 1px solid var(--lav-border);
	border-radius: 24px;
	overflow: hidden;
	cursor: pointer;
	transition:
		transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.4s;
}
.blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 50px rgba(97, 69, 255, 0.14);
}
.blog-thumb {
	width: 100%;
	aspect-ratio: 2/1;
	overflow: hidden;
}
.blog-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .blog-thumb img {
	transform: scale(1.05);
}
.blog-body {
	padding: 28px;
}
.blog-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}
.blog-date {
	font-size: 16px;
	color: var(--body);
}
.blog-chip {
	font-size: 14px;
	color: var(--body);
	border: 1px solid var(--lav-border);
	border-radius: 100px;
	padding: 6px 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--white);
}
.blog-card h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--dark);
	line-height: 1.25;
	letter-spacing: -0.01em;
}
.blog-cta {
	text-align: center;
	margin-top: 64px;
}

/* ===================== BLOG HERO ===================== */
.blog-hero {
	position: relative;
	background:
		linear-gradient(180deg, rgba(5, 3, 8, 0.82) 0%, rgba(5, 3, 8, 0.3) 38%, transparent 72%),
		radial-gradient(ellipse 100% 72% at 50% 112%, rgba(76, 46, 214, 0.5) 0%, rgba(64, 38, 180, 0.25) 50%, transparent 78%),
		radial-gradient(ellipse 65% 42% at 50% 104%, rgba(104, 74, 246, 0.35) 0%, transparent 72%), linear-gradient(rgba(6, 4, 12, 0.62), rgba(6, 4, 12, 0.62));
	padding: 120px 40px 100px;
	overflow: hidden;
}
.blog-hero-content {
	position: relative;
	z-index: 1;
	max-width: var(--max-w);
	margin: 0 auto;
}
.blog-hero-content h1 {
	font-size: clamp(44px, 5.6vw, 76px);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.025em;
	color: #fff;
	max-width: 700px;
	margin-bottom: 24px;
}
.blog-hero-sub {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	max-width: 560px;
	line-height: 1.6;
}
@media (max-width: 860px) {
	.blog-hero {
		padding: 100px 24px 72px;
	}
}

/* ===================== BLOG POST HERO ===================== */
.bp-hero .blog-hero-content h1 {
	font-size: clamp(36px, 4.5vw, 60px);
	max-width: 800px;
}
.bp-socials {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}
.bp-socials a {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(45deg, #6145ff, #ba9dff);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.25s,
		transform 0.25s;
	cursor: pointer;
}
.bp-socials a:hover {
	background: linear-gradient(45deg, #5038d9, #a084f0);
	transform: translateY(-2px);
}
.bp-socials svg {
	width: 18px;
	height: 18px;
	fill: #fff;
}

/* ===================== BLOG POST ===================== */
.bp-wrap {
	max-width: var(--max-w);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 60px;
	align-items: start;
}
@media (max-width: 960px) {
	.bp-wrap {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}
.bp-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 500;
	color: var(--purple);
	cursor: pointer;
	margin-bottom: 32px;
	transition: opacity 0.2s;
}
.bp-back:hover {
	opacity: 0.7;
}
.bp-article {
	min-width: 0;
}
.bp-date {
	font-size: 15px;
	color: var(--body);
	margin-bottom: 12px;
}
.bp-title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	color: var(--dark);
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin-bottom: 32px;
}
.bp-hero-img {
	width: 100%;
	border-radius: 16px;
	margin-bottom: 40px;
	aspect-ratio: 2/1;
	object-fit: cover;
	background: linear-gradient(135deg, #1b1145, #3b2f8a);
}
.bp-img {
	width: 100%;
	border-radius: 12px;
	margin: 24px 0;
}
.bp-body {
	font-size: 18px;
	line-height: 1.7;
	color: var(--body);
}
.bp-body h2 {
	font-size: 28px;
	font-weight: 700;
	color: var(--dark);
	margin: 48px 0 16px;
	line-height: 1.2;
}
.bp-body h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--dark);
	margin: 36px 0 12px;
	line-height: 1.25;
}
.bp-body p {
	margin-bottom: 20px;
}
.bp-body ul,
.bp-body ol {
	margin: 0 0 20px 24px;
}
.bp-body li {
	margin-bottom: 8px;
}
.bp-body strong {
	color: var(--dark);
	font-weight: 600;
}
.bp-body blockquote {
	border-left: 4px solid var(--purple);
	padding: 16px 24px;
	margin: 28px 0;
	background: var(--lav-50);
	border-radius: 0 12px 12px 0;
	font-style: italic;
	color: var(--dark);
}
.bp-body table {
	width: 100%;
	border-collapse: collapse;
	margin: 28px 0;
	font-size: 15px;
	overflow-x: auto;
	display: block;
}
.bp-body thead th {
	background: var(--dark);
	color: #fff;
	padding: 14px 16px;
	text-align: left;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.bp-body thead th:first-child {
	border-radius: 12px 0 0 0;
}
.bp-body thead th:last-child {
	border-radius: 0 12px 0 0;
}
.bp-body tbody td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--lav-border);
	vertical-align: top;
}
.bp-body tbody tr:nth-child(even) {
	background: var(--lav-50);
}
.bp-body .bp-cta {
	margin: 48px 0;
	padding: 40px;
	background: linear-gradient(135deg, var(--lav-50), var(--lav-100));
	border-radius: 20px;
	text-align: center;
}
.bp-body .bp-cta p {
	font-size: 20px;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 16px;
}
.bp-wrap aside {
	position: sticky;
	top: 120px;
}
.bp-sidebar-box {
	margin-bottom: 32px;
}
.bp-sidebar-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--lav-border);
}
.bp-latest-card {
	display: flex;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--lav-border);
	cursor: pointer;
	transition: opacity 0.2s;
}
.bp-latest-card:hover {
	opacity: 0.7;
}
.bp-latest-card:last-child {
	border-bottom: none;
}
.bp-latest-thumb {
	width: 72px;
	height: 48px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
	background: linear-gradient(135deg, #1b1145, #3b2f8a);
}
.bp-latest-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bp-latest-info h4 {
	font-size: 14px;
	font-weight: 600;
	color: var(--dark);
	line-height: 1.3;
	margin-bottom: 4px;
}
.bp-latest-info span {
	font-size: 12px;
	color: var(--muted);
}
.bp-body .step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(45deg, #6145ff, #ba9dff);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	margin-right: 10px;
	flex-shrink: 0;
}
.bp-body .step-row {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

/* ===================== FOOTER ===================== */
footer {
	background:
		linear-gradient(155deg, rgba(97, 69, 255, 0.12) 0%, transparent 45%), linear-gradient(300deg, rgba(97, 69, 255, 0.16) 0%, transparent 40%),
		linear-gradient(rgba(6, 4, 12, 0.5), rgba(6, 4, 12, 0.5));
	padding: 90px 40px 48px;
	border-radius: 40px 40px 0 0;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.footer-cta {
	max-width: var(--max-w);
	margin: 0 auto 110px;
	background: linear-gradient(115deg, rgba(120, 100, 220, 0.38) 0%, rgba(70, 50, 160, 0.32) 40%, rgba(25, 15, 60, 0.55) 100%);
	border: 1px solid rgba(171, 157, 255, 0.28);
	border-radius: 24px;
	padding: 88px 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	flex-wrap: wrap;
	backdrop-filter: blur(10px);
}
.footer-cta h2 {
	font-size: clamp(32px, 3.6vw, 52px);
	font-weight: 400;
	color: #fff;
	line-height: 1.15;
	letter-spacing: -0.01em;
}
.footer-cta h2 em {
	font-style: italic;
	font-weight: 700;
}
.nl-form {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 100px;
	padding: 7px 7px 7px 26px;
	min-width: 380px;
}
@media (max-width: 560px) {
	.nl-form {
		min-width: 100%;
	}
}
.nl-form input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	color: #fff;
	font-size: 16px;
	font-family: var(--font);
}
.nl-form input::placeholder {
	color: rgba(255, 255, 255, 0.75);
}
.nl-form button {
	padding: 13px 30px;
	border-radius: 100px;
	background: linear-gradient(45deg, #6145ff, #ba9dff);
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	border: none;
	cursor: pointer;
	font-family: var(--font);
	white-space: nowrap;
	transition: background 0.2s;
}
.nl-form button:hover {
	background: linear-gradient(45deg, #5038d9, #a084f0);
}

.footer-cols {
	max-width: var(--max-w);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}
@media (max-width: 860px) {
	.footer-cols {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 520px) {
	.footer-cols {
		grid-template-columns: 1fr;
	}
}
.footer-col h4 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 24px;
}
.footer-col a {
	display: block;
	font-size: 17px;
	color: rgba(255, 255, 255, 0.85);
	padding: 7px 0;
	transition: color 0.2s;
	cursor: pointer;
}
.footer-col a:hover {
	color: var(--lilac);
}
.footer-socials {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.footer-socials a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.25s,
		transform 0.25s;
}
.footer-socials a:hover {
	background: linear-gradient(45deg, #5038d9, #a084f0);
	transform: translateY(-2px);
}
.footer-socials svg {
	width: 16px;
	height: 16px;
	fill: #fff;
}
.footer-bottom {
	max-width: var(--max-w);
	margin: 90px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.footer-bottom img {
	height: 30px;
	cursor: pointer;
}
.footer-bottom p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
}

/* ===================== SUBPAGES (light) ===================== */
.subpage-pad {
	padding-top: 190px;
}

/* PRICING — dark hero with plan panel */
.hero-panel.short {
	padding-bottom: 150px;
	background:
		linear-gradient(180deg, rgba(5, 3, 8, 0.82) 0%, rgba(5, 3, 8, 0.3) 38%, transparent 62%),
		radial-gradient(ellipse 80% 55% at 50% 118%, rgba(97, 69, 255, 0.32) 0%, rgba(50, 28, 130, 0.18) 45%, transparent 75%),
		linear-gradient(rgba(6, 4, 12, 0.62), rgba(6, 4, 12, 0.62));
	box-shadow: inset 0 -70px 120px -70px rgba(97, 69, 255, 0.18);
}
.hero-sub-lilac {
	font-size: 18px;
	color: var(--lilac);
	margin: 0 auto 84px;
	max-width: 600px;
}
.plans-wrap {
	max-width: 1040px;
	margin: 0 auto;
	text-align: left;
	background: #0c0a11;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 24px;
	padding: 40px 44px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 28px;
	align-items: center;
}
@media (max-width: 960px) {
	.plans-wrap {
		grid-template-columns: 1fr;
		padding: 40px 28px;
	}
}
.plan {
	display: flex;
	flex-direction: column;
}
.plan.pro {
	background: #1b1920;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 36px 28px 28px;
	margin: -32px -8px;
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
}
@media (max-width: 960px) {
	.plan.pro {
		margin: 0;
	}
}
.plan-chip {
	align-self: flex-start;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 100px;
	padding: 4px 13px;
	margin-bottom: 18px;
}
.plan h3 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}
.plan-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.5;
	min-height: 66px;
	margin-bottom: 20px;
}
.plan-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	color: #fff;
	min-height: 52px;
	margin-bottom: 22px;
}
.plan-num {
	font-size: 44px;
	font-weight: 700;
	letter-spacing: -0.02em;
}
.plan-per {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.2;
}
.plan-btn {
	display: block;
	width: 100%;
	text-align: center;
	background: linear-gradient(45deg, #6145ff, #ba9dff);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 13px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	font-family: var(--font);
	transition: background 0.2s;
}
.plan-btn:hover {
	background: linear-gradient(45deg, #5038d9, #a084f0);
}

/* PRICING — feature comparison */
.feat-section {
	background: var(--white);
	padding: 110px 40px 60px;
}
.feat-scroll {
	overflow-x: visible;
}
.feat-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	min-width: 0;
}
.feat-grid-head {
	display: grid;
	grid-template-columns: 1fr 205px 205px 205px;
	align-items: end;
	margin-bottom: 0;
}
.fh-cell {
	text-align: center;
	padding: 20px 12px 16px;
}
.fh-cell.pro {
	background: #f3f0ff;
	border-radius: 24px 24px 0 0;
}
.fh-name {
	font-size: 18px;
	font-weight: 500;
	color: var(--dark);
	margin-bottom: 12px;
}
.fh-price {
	font-size: 27px;
	font-weight: 700;
	color: var(--dark);
	letter-spacing: -0.01em;
}
.fh-price span {
	font-size: 14px;
	font-weight: 400;
	color: var(--body);
	margin-left: 3px;
}
.feat-cat {
	background: var(--lav-50);
	border-radius: 16px;
	margin-bottom: 18px;
	padding-bottom: 10px;
	overflow: hidden;
}
.feat-cat-title {
	font-size: 22px;
	font-weight: 500;
	color: var(--dark);
	padding: 18px 28px;
	border-bottom: 1px solid #e4dff5;
	margin-bottom: 0;
}
.feat-row {
	display: grid;
	grid-template-columns: 1fr 205px 205px 205px;
	align-items: center;
	padding: 12px 0;
}
.feat-row .fname {
	font-size: 16px;
	color: var(--dark);
	padding-left: 28px;
}
.fcheck {
	display: flex;
	justify-content: center;
}
.fcheck .dot {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: linear-gradient(45deg, #6145ff, #ba9dff);
	display: flex;
	align-items: center;
	justify-content: center;
}
.fcheck .dot svg {
	width: 12px;
	height: 12px;
}

/* CONTACT */
/* CONTACT HERO */
.hero-panel.short.contact-hero-panel {
	text-align: left;
	padding-bottom: 100px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(5, 3, 8, 0.82) 0%, rgba(5, 3, 8, 0.3) 38%, transparent 62%),
		radial-gradient(ellipse 80% 55% at 50% 118%, rgba(97, 69, 255, 0.32) 0%, rgba(50, 28, 130, 0.18) 45%, transparent 75%),
		linear-gradient(rgba(6, 4, 12, 0.62), rgba(6, 4, 12, 0.62)), var(--cube), #050308;
	background-attachment: scroll, scroll, scroll, scroll, scroll;
	background-size:
		auto,
		auto,
		auto,
		700px auto,
		auto;
	background-position:
		0 0,
		0 0,
		0 0,
		right -80px bottom -120px,
		0 0;
	background-repeat: no-repeat;
	box-shadow: inset 0 -70px 120px -70px rgba(97, 69, 255, 0.18);
}
.contact-grid {
	max-width: var(--max-w);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 72px;
	align-items: start;
}
@media (max-width: 860px) {
	.contact-hero-panel {
		padding-bottom: 60px;
	}
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}
.contact-info h2 {
	font-size: clamp(38px, 4.5vw, 56px);
	font-weight: 500;
	color: var(--white);
	letter-spacing: -0.02em;
	margin-bottom: 20px;
	line-height: 1.15;
}
.contact-info > p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 40px;
	font-size: 18px;
	line-height: 1.6;
}
.contact-socials h4 {
	font-size: 20px;
	font-weight: 700;
	background-clip: text;
	background-image: linear-gradient(45deg, var(--colors--primary--200), var(--_base---colors--system--green-300) 51%, var(--_base---colors--system--yellow-100));
	margin-bottom: 16px;
	-webkit-text-fill-color: transparent;
}
.contact-socials .bp-socials {
	justify-content: flex-start;
}
.contact-socials .bp-socials a {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-socials .bp-socials a:hover {
	background: rgba(255, 255, 255, 0.15);
}

/* CONTACT FORM */
.contact-form {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
}
.btn-contact-send {
	width: 100%;
	justify-content: center;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 60px;
	font-family: var(--font);
	font-size: 16px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	background: linear-gradient(45deg, #6145ff, #ba9dff);
	color: #fff;
	transition: opacity 0.2s;
}
.btn-contact-send:hover {
	background: linear-gradient(45deg, #5038d9, #a084f0);
}
.cf-heading {
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 6px;
}
.cf-sub {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 28px;
}
.form-group {
	margin-bottom: 18px;
}
.form-group label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--white);
}
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 14px 18px;
	border-radius: 14px;
	border: 1px solid rgba(171, 157, 255, 0.22);
	background: rgba(97, 69, 255, 0.12);
	color: var(--white);
	font-family: var(--font);
	font-size: 16px;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
	outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}
.form-group select {
	color: rgba(255, 255, 255, 0.85);
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}
.form-group select option {
	background: var(--dark);
	color: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--lilac);
	box-shadow: 0 0 0 3px rgba(171, 157, 255, 0.18);
}
.form-group textarea {
	resize: vertical;
	min-height: 120px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
@media (max-width: 520px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}

/* REACH US DIRECTLY */
.reach-section {
	background: var(--lav-50);
	padding: 100px 40px 120px;
}
.reach-head {
	max-width: var(--max-w);
	margin: 0 auto 56px;
}
.reach-head h2 {
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 500;
	color: var(--dark);
	letter-spacing: -0.02em;
	margin-bottom: 12px;
}
.reach-head p {
	font-size: 18px;
	color: var(--body);
}
.reach-cards {
	max-width: var(--max-w);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
@media (max-width: 860px) {
	.reach-cards {
		grid-template-columns: 1fr;
	}
	.reach-section {
		padding: 60px 20px 80px;
	}
}
.reach-card {
	background: var(--white);
	border: 1px solid var(--lav-border);
	border-radius: 20px;
	padding: 40px 32px;
	text-align: center;
	transition: box-shadow 0.3s;
}
.reach-card:hover {
	box-shadow: 0 8px 32px rgba(97, 69, 255, 0.08);
}
.reach-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.reach-icon-docs {
	background: linear-gradient(45deg, #6145ff, #ba9dff);
}
.reach-icon-docs svg {
	stroke: var(--white);
}
.reach-icon-slack {
	background: transparent;
}
.reach-icon-slack img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}
.reach-icon-email {
	background: rgba(97, 69, 255, 0.08);
	border: 2px solid var(--purple);
}
.reach-card h4 {
	font-size: 22px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 12px;
}
.reach-card p {
	font-size: 15px;
	color: var(--body);
	line-height: 1.6;
	margin-bottom: 20px;
}
.reach-card a {
	font-size: 15px;
	font-weight: 600;
	color: var(--dark);
	text-decoration: none;
	transition: color 0.2s;
}
.reach-card a:hover {
	color: var(--purple);
}

/* PRICING FEATURES — mobile */
@media (max-width: 860px) {
	.feat-section {
		padding: 80px 20px 40px;
	}
	.feat-grid-head {
		display: none;
	}
	.feat-cat-title {
		font-size: 18px;
		padding: 14px 20px;
	}
	.feat-row {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 14px 20px;
		border-bottom: 1px solid #ebe7ff;
	}
	.feat-row:last-child {
		border-bottom: none;
	}
	.feat-row .fname {
		padding-left: 0;
		font-weight: 500;
		margin-bottom: 10px;
	}
	.feat-row .fcheck {
		display: none;
	}
	.feat-row .fcheck:has(.dot) {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 8px;
		padding: 3px 0;
	}
	.feat-row .fcheck:has(.dot)::before {
		content: attr(data-plan);
		font-size: 13px;
		color: var(--muted);
		min-width: 90px;
		order: -1;
	}
	.feat-row .fcheck .dot {
		width: 20px;
		height: 20px;
	}
	.feat-row .fcheck .dot svg {
		width: 10px;
		height: 10px;
	}
}
@media (max-width: 480px) {
	.feat-section {
		padding: 60px 12px 32px;
	}
	.feat-cat {
		border-radius: 12px;
		margin-bottom: 12px;
	}
	.feat-cat-title {
		font-size: 16px;
		padding: 12px 16px;
	}
	.feat-row {
		padding: 12px 16px;
	}
	.feat-row .fname {
		font-size: 14px;
	}
}

/* ===================== ANIMATIONS ===================== */
@media (prefers-reduced-motion: no-preference) {
	.anim {
		opacity: 0;
		transform: translateY(36px);
		transition:
			opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
			transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
	}
	.anim.vis {
		opacity: 1;
		transform: translateY(0);
	}
	.anim-d1 {
		transition-delay: 0.12s;
	}
	.anim-d2 {
		transition-delay: 0.24s;
	}
	.anim-d3 {
		transition-delay: 0.36s;
	}
}
@media (prefers-reduced-motion: reduce) {
	.anim {
		opacity: 1;
		transform: none;
	}
	.uc-row {
		animation: none;
	}
}

.page.active {
	animation: pageFadeIn 0.45s ease-out;
}
@keyframes pageFadeIn {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

:focus-visible {
	outline: 2px solid var(--purple);
	outline-offset: 2px;
}

/* ===================== BLOG SECTION CLASSES ===================== */
.blog-listing-section,
.blog-post-section {
	background: var(--white);
	padding: 80px 40px 120px;
}
@media (max-width: 860px) {
	.blog-listing-section,
	.blog-post-section {
		padding: 48px 24px 80px;
	}
}
@media (max-width: 480px) {
	.blog-listing-section,
	.blog-post-section {
		padding: 40px 16px 60px;
	}
}

/* ===================== SMALL SCREEN (480px) ===================== */
@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}
	section {
		padding: 48px 16px;
	}
	.hero-panel {
		padding: 90px 16px 0;
	}
	.hero-btns {
		margin-bottom: 36px;
		gap: 12px;
	}
	.btn {
		padding: 13px 28px;
		font-size: 16px;
	}
	.quote-band {
		padding: 72px 16px;
	}
	.cloud-track {
		gap: 60px;
	}
	.cloud-track img {
		height: 22px;
	}
	.pillar-section {
		padding: 48px 16px;
	}
	.pillar-cta {
		padding: 16px 16px 48px;
	}
	.cc-card {
		padding: 16px;
		border-radius: 18px;
	}
	.cc-body {
		padding: 24px 20px;
	}
	.cc-body h3 {
		font-size: 24px;
	}
	.cc-tile {
		min-height: 180px;
	}
	.blog-section {
		padding: 60px 16px;
	}
	.uc-card {
		width: 300px;
		padding: 22px 24px;
	}
	.uc-section {
		padding: 72px 0 80px;
	}
	.uc-section .sec-head {
		padding: 0 16px;
	}
	.uc-row {
		gap: 16px;
	}
	footer {
		padding: 48px 16px 32px;
	}
	.footer-cta {
		padding: 36px 24px;
		margin-bottom: 56px;
		border-radius: 18px;
	}
	.footer-cta h2 {
		font-size: clamp(24px, 6vw, 32px);
	}
	.footer-bottom {
		margin-top: 48px;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.nl-form {
		flex-direction: column;
		border-radius: 18px;
		padding: 16px;
		gap: 12px;
	}
	.nl-form input {
		text-align: center;
	}
	.nl-form button {
		width: 100%;
	}
	.hero-panel.short {
		padding-bottom: 80px;
	}
	.hero-panel.short.contact-hero-panel {
		padding-bottom: 48px;
	}
	.cf-heading {
		font-size: 20px;
	}
}
