/* ================================================
       ROOT VARIABLES & RESET
       ================================================ */
:root {
	/* Background Colors */
	--color-bg: #fdfbf6;
	--color-surface: #ffffff;

	/* Text Colors */
	--color-text: #3a4a60;
	--color-text-subtle: #7b8a9e;

	/* Border & Accent Colors */
	--color-border: #e8e6e1;
	--color-accent-green: #2ecb7e;
	--color-accent-blue: #4a90e2;
	--color-accent-pink: #f472b6;
	--color-accent-yellow: #facc15;
	--color-accent-teal: #00a99d;

	/* Typography */
	--font-primary:
		"Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
		Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	background: var(--color-bg);
	color: var(--color-text);
	line-height: 1.6;
	overflow-x: hidden;
}

img,
video,
iframe {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ================================================
       ANIMATED BACKGROUND
       ================================================ */
body::before {
	content: "";
	position: fixed;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background:
		radial-gradient(
			circle at 20% 50%,
			rgba(46, 203, 126, 0.05) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(244, 114, 182, 0.05) 0%,
			transparent 40%
		);
	animation: backgroundMove 50s linear infinite alternate;
	pointer-events: none;
	z-index: -1;
}

@keyframes backgroundMove {
	0% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-10%, 5%);
	}

	100% {
		transform: translate(-20%, 10%);
	}
}

/* ================================================
       LAYOUT & TYPOGRAPHY
       ================================================ */
.container {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 1;
}

section {
	padding: 50px 0;
	position: relative;
}

h1,
h2,
h3,
h4 {
	color: var(--color-text);
	line-height: 1.3;
	font-weight: 800;
}

h1 {
	font-size: 3.25rem;
	max-width: 900px;
	margin-bottom: 24px;
}

h2 {
	font-size: 2.75rem;
	text-align: center;
	margin-bottom: 40px;
}

p {
	color: var(--color-text-subtle);
	margin-bottom: 24px;
	max-width: 650px;
}

p.subheadline {
	font-size: 1.25rem;
	color: var(--color-text);
	max-width: 800px;
	margin-bottom: 32px;
}

/* ================================================
       BUTTONS
       ================================================ */
.cta-button {
	display: inline-block;
	padding: 14px 32px;
	background: var(--color-accent-green);
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	border-radius: 12px;
	transition: all 0.2s ease;
	box-shadow:
		0 4px 15px rgba(46, 203, 126, 0.3),
		0 1px 3px rgba(46, 203, 126, 0.2);
	position: relative;
	border: none;
	cursor: pointer;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow:
		0 6px 20px rgba(46, 203, 126, 0.35),
		0 2px 5px rgba(46, 203, 126, 0.25);
}

.cta-button:active {
	transform: translateY(1px);
	box-shadow: 0 2px 8px rgba(46, 203, 126, 0.3);
}

.secondary-button {
	display: inline-block;
	padding: 12px 30px;
	border: 2px solid var(--color-border);
	color: #fcfaf7;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	border-radius: 12px;
	transition: all 0.3s ease;
	background: #2ecb7e;
}

.secondary-button:hover {
	background: #fcfaf7;
	border-color: #2ecb7e;
	color: #333;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(58, 74, 96, 0.05);
}

.secondary-button.book-demo-button {
	background: linear-gradient(135deg, #4b87ff 0%, #4b75a2 100%);
	border: none;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(110, 175, 215, 0.415);
}

.secondary-button.book-demo-button:hover {
	background: linear-gradient(135deg, #5b6fe2 0%, #4261f9 100%);
	border: none;
	color: #ffffff;
	box-shadow: 0 10px 25px rgba(74, 86, 139, 0.45);
}

.ghost-button {
	display: inline-block;
	padding: 12px 30px;
	border: 2px solid var(--color-accent-green);
	background: #ffffff;
	color: var(--color-text);
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.ghost-button:hover {
	background: var(--color-accent-green);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(46, 203, 126, 0.25);
}

.button-group {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}

.hero .button-group {
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
}

/* ================================================
       NAVBAR
       ================================================ */
.navbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	border-bottom: 2px solid var(--color-border);
	transition:
		background 0.3s ease,
		box-shadow 0.3s ease;
}

.navbar.scrolled {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 4px 20px rgba(58, 74, 96, 0.08);
}

.navbar-content {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--color-text);
	line-height: 1.2;
}

.navbar-logo .logo-icon {
	width: 32px;
	height: 32px;
	color: var(--color-accent-teal);
}

.link-button {
	background: none;
	border: none;
	color: inherit;
	font: inherit;
	padding: 0;
	cursor: pointer;
}

.navbar-links {
	display: flex;
	gap: 32px;
	align-items: center;
}

.nav-current {
	position: relative;
	color: var(--color-accent-green);
	font-weight: 800;
}

.nav-current::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 2px;
	background: var(--color-accent-green);
	border-radius: 999px;
}

.nav-highlight {
	color: var(--color-accent-green);
	font-weight: 800;
	position: relative;
	font-size: 1.05rem;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 6px 18px rgba(255, 255, 255, 0.25);
}

.navbar-links .link-button.nav-highlight,
.mobile-menu-links .link-button.nav-highlight {
	color: var(--color-accent-green);
}

@media (max-width: 1200px) {
	.navbar-links {
		gap: 18px;
	}

	.navbar-links .link-button {
		font-size: 0.95rem;
	}
}

.navbar-dropdown {
	position: relative;
}

.navbar-dropdown-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid transparent;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.navbar-dropdown-toggle:hover,
.navbar-dropdown.open .navbar-dropdown-toggle {
	background: rgba(46, 203, 126, 0.08);
	border-color: var(--color-border);
	color: #0f172a;
}

.navbar-dropdown-chevron {
	font-size: 0.8rem;
	transition: transform 0.2s ease;
}

.navbar-dropdown-menu {
	position: absolute;
	left: 0;
	top: calc(100% + 10px);
	background: #fffdf9;
	border: 1px solid #e6e3dd;
	border-radius: 12px;
	padding: 10px;
	box-shadow: 0 18px 40px rgba(58, 74, 96, 0.12);
	display: none;
	min-width: 160px;
	z-index: 102;
}

.navbar-dropdown.open .navbar-dropdown-menu {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.navbar-dropdown.open .navbar-dropdown-chevron {
	transform: rotate(180deg);
}

.navbar-dropdown-menu .link-button {
	width: 100%;
	text-align: left;
	padding: 8px 10px;
	border-radius: 8px;
	border-left: 2px solid transparent;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-text);
	transition:
		background 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}

.navbar-dropdown-menu .link-button:hover {
	background: #f5f3f0;
	color: #0f172a;
	border-left-color: var(--color-accent-green);
}

.navbar-links a,
.navbar-links .link-button {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 700;
	transition: color 0.2s ease;
}

.navbar-links a:hover,
.navbar-links .link-button:hover {
	color: var(--color-accent-green);
}

.navbar-links .navbar-cta {
	padding: 12px 30px;
	background: #2ecb7e;
	color: #fcfaf7;
	font-weight: 700;
	border-radius: 12px;
	border: 2px solid var(--color-border);
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(46, 203, 126, 0.25);
}

.navbar-links .navbar-cta:hover {
	background: #fcfaf7;
	border-color: #2ecb7e;
	color: #333;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(46, 203, 126, 0.3);
}

.navbar-links .navbar-cta--outline {
	background: transparent;
	color: #1f2a37;
	font-weight: 850;
	border-width: 2px;
	border-color: var(--color-accent-green);
	box-shadow: 0 0 0 2px rgba(46, 203, 126, 0.15);
}

.navbar-links .navbar-cta--outline:hover {
	background: var(--color-accent-green);
	color: #fdfbf6;
}

.mobile-menu-links .navbar-cta {
	width: 100%;
	text-align: center;
	margin-top: 4px;
}

@media (max-width: 1024px) {
	.mobile-menu-links a,
	.mobile-menu-links .link-button,
	.mobile-menu-links .navbar-cta {
		font-size: 1.1rem;
		padding: 10px 0;
		border: none;
		border-bottom: 1px solid var(--color-border);
		background: none;
		box-shadow: none;
		text-align: left;
		margin-top: 0;
		color: var(--color-text);
	}
}

.section-focus {
	outline: 2px solid var(--color-accent-green);
	outline-offset: 8px;
	transition:
		outline-color 0.3s ease,
		outline-offset 0.3s ease;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	border: none;
	background: none;
	padding: 0;
	width: 40px;
	height: 32px;
	cursor: pointer;
	position: relative;
	z-index: 101;
}

.mobile-menu-toggle:focus-visible {
	outline: 2px solid var(--color-accent-green);
	outline-offset: 4px;
}

.mobile-menu-toggle .burger-line {
	display: block;
	width: 100%;
	height: 3px;
	border-radius: 999px;
	background: var(--color-text);
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
	position: absolute;
	left: 0;
}

.mobile-menu-toggle .burger-line:nth-child(1) {
	top: 4px;
}

.mobile-menu-toggle .burger-line:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.mobile-menu-toggle .burger-line:nth-child(3) {
	bottom: 4px;
}

.mobile-menu-toggle.is-active .burger-line:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.is-active .burger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.is-active .burger-line:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-surface);
	z-index: 99;
	display: none;
	flex-direction: column;
	padding: 80px 24px 24px;
	opacity: 0;
	transform: translateX(100%);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.mobile-menu-overlay.open {
	display: flex;
	opacity: 1;
	transform: translateX(0);
}

.mobile-menu-links {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mobile-menu-links a,
.mobile-menu-links .link-button {
	font-size: 1.2rem;
	color: var(--color-text);
	text-decoration: none;
	padding: 12px 0;
	border-bottom: 1px solid var(--color-border);
	font-weight: 700;
	text-align: left;
}

.mobile-menu-links .navbar-dropdown-toggle {
	font-size: 1.2rem;
	color: var(--color-text-subtle);
	padding: 10px 0;
}

.mobile-menu-links .navbar-dropdown-menu .link-button {
	font-size: 1rem;
	color: var(--color-text-subtle);
}

.mobile-menu-close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	color: var(--color-text);
	font-size: 2rem;
	cursor: pointer;
}

/* ================================================
       HERO SECTION
       ================================================ */
.hero {
	padding: 70px 0 60px;
	text-align: center;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	padding: 4px 14px;
	border-radius: 999px;
	background: rgba(46, 203, 126, 0.12);
	color: var(--color-accent-teal);
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero h1,
.hero p.subheadline {
	margin-left: auto;
	margin-right: auto;
}

.hero-layout {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	gap: 36px;
	width: 100%;
}

.hero-text {
	width: 100%;
	animation: fadeInUp 0.8s ease;
	text-align: center;
}

.hero-image {
	animation: fadeInUp 0.8s ease 0.2s backwards;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.hero-video-frame {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	border-radius: 24px;
	overflow: hidden;
	background: #000;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (min-width: 992px) {
	.hero {
		text-align: center;
	}

	.hero-layout {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.hero-text {
		max-width: 900px;
		text-align: center;
	}

	.hero h1,
	.hero p.subheadline,
	.hero-eyebrow {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	.hero .button-group {
		justify-content: center;
	}

	.hero-image {
		width: 100%;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
	}
}

.hero-video-heading {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--color-text);
	text-align: center;
	margin-bottom: 16px;
}

.hero-video-subtitle {
	font-size: 1.2rem;
	color: var(--color-text-subtle);
	text-align: center;
	max-width: 620px;
	margin: 0 auto 20px;
}

.hero-video-wrapper {
	position: relative;
}

.hero-video-wrapper video {
	width: 100%;
	display: block;
}

.hero-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: transparent;
	border: none;
	width: 300px;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-accent-green);
	cursor: pointer;
	transition:
		transform 0.3s ease,
		color 0.3s ease;
}

.hero-video-play:hover {
	transform: translate(-50%, -50%) scale(1.08);
	color: #1ea96c;
}

.hero-video-play svg {
	width: 140px;
	height: 140px;
}

.hero-video-wrapper.playing .hero-video-play {
	display: none;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ================================================
       PRODUCT SCREENSHOT CONTAINER
       ================================================ */
.product-screenshot-container {
	background: var(--color-surface);
	border: 2px solid var(--color-border);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(58, 74, 96, 0.08);
	overflow: hidden;
	transition: all 0.3s ease;
}

.product-screenshot-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(58, 74, 96, 0.12);
}

.product-screenshot-container img {
	width: 100%;
	display: block;
}

/* ================================================
       FEATURES SECTION
       ================================================ */
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.feature-card {
	background: var(--color-surface);
	border: 2px solid var(--color-border);
	border-radius: 20px;
	padding: 32px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(58, 74, 96, 0.08);
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(58, 74, 96, 0.12);
	border-color: var(--color-accent-green);
}

.feature-card .icon-wrapper {
	width: 80px;
	height: 80px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	background: var(--icon-bg-color, #f0f0f0);
	border: 2px solid var(--icon-border-color, #e0e0e0);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature-card .icon-wrapper svg {
	width: 40px;
	height: 40px;
	color: var(--icon-color, #333);
}

.feature-card .icon-wrapper img {
	width: 90px;
	height: 90px;
	object-fit: contain;
}

.feature-card h3 {
	font-size: 1.25rem;
	color: var(--color-text);
}

.feature-card p {
	color: var(--color-text-subtle);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 0;
}

/* ================================================
       FLOW CHART ANIMATION SECTION
       ================================================ */
.animation-section {
	padding: clamp(50px, 7vw, 120px) 0;
}

.animation-layout {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: clamp(32px, 6vw, 120px);
}

.animation-layout .content {
	flex: 1 1 45%;
	max-width: 540px;
}

.animation-layout .content .eyebrow {
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--color-accent-green);
	margin-bottom: 12px;
}

.animation-layout .content h2 {
	text-align: left;
	margin-bottom: 24px;
}

.animation-layout .content .lede {
	max-width: 100%;
	margin-bottom: 24px;
	font-size: 1.125rem;
	color: var(--color-text);
}

.content-steps {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.content-step {
	display: flex;
	gap: 16px;
	padding-top: 20px;
	border-top: 1px solid var(--color-border);
}

.content-step:first-child {
	border-top: none;
	padding-top: 0;
}

.content-step__number {
	font-weight: 800;
	color: var(--color-accent-green);
	font-size: 1rem;
	letter-spacing: 0.1em;
	min-width: 38px;
}

.content-step__body h3 {
	font-size: 1.25rem;
	margin-bottom: 6px;
}

.content-step__body p {
	margin: 0;
}

.animation-layout .animation {
	flex: 1 1 420px;
	display: flex;
	justify-content: center;
	position: sticky;
	top: 80px;
	max-width: 600px;
	width: 100%;
}

/* Flow Chart Styles */
.flow-chart {
	position: relative;
	width: 100%;
	min-height: clamp(380px, 45vw, 640px);
	padding: 0;
	display: block;
	border-radius: 0;
	background: radial-gradient(
		circle at top,
		rgba(255, 255, 255, 0.25),
		transparent 55%
	);
	border: 1px solid rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

.flow-chart__connections {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	mix-blend-mode: multiply;
}

.flow-node {
	position: absolute;
	--node-top: 50%;
	--node-left: 50%;
	top: var(--node-top);
	left: var(--node-left);
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 0;
	border-radius: 50%;
	text-decoration: none;
	color: inherit;
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
	opacity: 0.45;
	z-index: 1;
}

.flow-node:focus-visible {
	outline: 2px solid var(--color-accent-green);
	outline-offset: 6px;
}

.flow-node:hover,
.flow-node:focus-visible {
	transform: translate(-50%, -50%) scale(1.05);
	opacity: 1;
	z-index: 5;
}

.flow-node.is-active,
.flow-node.is-connected {
	opacity: 0.85;
	z-index: 3;
}

.flow-node__icon {
	width: clamp(58px, 6.5vw, 78px);
	height: clamp(58px, 6.5vw, 78px);
	border-radius: 50%;
	background: transparent;
	border: none;
	padding: 0;
	box-shadow: none;
	object-fit: contain;
	filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
	animation: nodeSwim 7s ease-in-out infinite;
	animation-delay: calc(var(--node-index, 0) * -0.35s);
	will-change: transform;
}

.flow-node--hub {
	--node-top: 50%;
	--node-left: 50%;
}

.flow-node--hub .flow-node__icon {
	width: clamp(90px, 11vw, 110px);
	height: clamp(90px, 11vw, 110px);
}

.flow-node__label {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translate(-50%, -20px);
	font-weight: 700;
	color: var(--color-text);
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
	text-shadow: 0 6px 20px rgba(253, 250, 247, 0.9);
	white-space: nowrap;
}

.flow-node[data-label-position="right"] .flow-node__label {
	top: 50%;
	left: calc(100% + 16px);
	transform: translate(0, -50%);
}

.flow-node[data-label-position="left"] .flow-node__label {
	top: 50%;
	left: auto;
	right: calc(100% + 16px);
	transform: translate(0, -50%);
	text-align: right;
}

.flow-node[data-label-position="bottom"] .flow-node__label {
	top: calc(100% + 12px);
	left: 50%;
	transform: translate(-50%, 0);
}

.flow-node:hover .flow-node__label,
.flow-node:focus-visible .flow-node__label {
	opacity: 1;
	transform: translate(-50%, -32px);
}

.flow-node[data-label-position="right"]:hover .flow-node__label,
.flow-node[data-label-position="right"]:focus-visible .flow-node__label,
.flow-node[data-label-position="left"]:hover .flow-node__label,
.flow-node[data-label-position="left"]:focus-visible .flow-node__label {
	transform: translate(0, -50%);
}

.flow-node[data-label-position="bottom"]:hover .flow-node__label,
.flow-node[data-label-position="bottom"]:focus-visible .flow-node__label {
	transform: translate(-50%, 0);
}

.flow-connection {
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke: #e0e0e0;
	opacity: 0.7;
	transition:
		stroke-width 0.35s ease,
		opacity 0.35s ease,
		stroke 0.35s ease;
}

.flow-connection.is-active {
	stroke-width: 2.6;
	stroke: var(--gradient-url);
	opacity: 1;
	filter: drop-shadow(0 0 12px rgba(46, 203, 126, 0.35));
}

@keyframes nodeSwim {
	0% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, -6px, 0) scale(1.02);
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}

/* ================================================
       SHOWCASE SECTION
       ================================================ */
.showcase-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	margin-top: 32px;
}

.showcase-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.showcase-item--reverse .showcase-text {
	order: 1;
}

.showcase-item--reverse .showcase-image {
	order: 2;
}

.showcase-text h3 {
	font-size: 2rem;
	color: #2ecb7e;
}

.showcase-text p {
	font-size: 1.1rem;
	margin-bottom: 0;
	color: var(--color-text);
}

.beta-card {
	margin: 40px auto 0;
	padding: 28px;
	border-radius: 24px;
	border: 1px solid rgba(46, 203, 126, 0.35);
	background: linear-gradient(
		140deg,
		rgba(46, 203, 126, 0.12),
		rgba(255, 255, 255, 0.95)
	);
	box-shadow: 0 25px 65px rgba(46, 203, 126, 0.18);
	width: min(620px, 100%);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.beta-card__header {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.beta-card__body {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.beta-card__left,
.beta-card__right {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.beta-eyebrow {
	font-weight: 800;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-accent-green);
	margin: 0;
}

.beta-title {
	font-size: 2rem;
	margin: 0;
	line-height: 1.25;
}

.beta-lede {
	margin: 0;
	color: var(--color-text);
	line-height: 1.5;
}

.beta-subtitle {
	margin: 0;
	font-size: 1.1rem;
	color: rgba(33, 56, 66, 0.9);
}

.beta-list {
	margin: 4px 0 0;
	padding-left: 0;
	list-style: none;
	display: grid;
	gap: 8px;
	color: var(--color-text);
}

.beta-list li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.beta-list li svg {
	width: 16px;
	height: 16px;
	color: var(--color-accent-green);
	flex-shrink: 0;
}

.beta-footnote {
	margin: 6px 0 0;
	font-size: 0.9rem;
	color: var(--color-text-subtle);
}

.beta-cta {
	align-self: flex-start;
	background: linear-gradient(135deg, #4b87ff 0%, #4261f9 100%);
	border: none;
	color: #ffffff;
	font-weight: 700;
	padding: 12px 24px;
	border-radius: 16px;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.beta-cta--full {
	width: 100%;
	text-align: center;
}

.beta-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(75, 135, 255, 0.3);
}

@media (min-width: 900px) {
	.beta-card__body {
		flex-direction: row;
		align-items: flex-start;
		gap: 32px;
	}

	.beta-card__left,
	.beta-card__right {
		flex: 1;
	}
}

@media (max-width: 768px) {
	.beta-card {
		padding: 24px;
	}

	.beta-list {
		padding-left: 10px;
	}
}

.showcase-heading {
	margin-bottom: 30px;
}

/* ================================================
       DOCS CTA SECTION
       ================================================ */
.docs-cta {
	padding: 36px 0;
	text-align: center;
	background: var(--color-surface);
	border-top: 2px solid var(--color-border);
	border-bottom: 2px solid var(--color-border);
	margin-top: clamp(24px, 4vw, 48px);
}

.docs-cta h2 {
	color: var(--color-text);
	font-size: 2.2rem;
	margin-bottom: 20px;
	background: none;
}

.docs-cta h2::before,
.docs-cta h2::after {
	content: none;
}

.docs-cta p {
	font-size: 1.1rem;
	color: var(--color-text-subtle);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 32px;
	max-width: 600px;
}

/* ================================================
       PRICING SECTION
       ================================================ */
#pricing {
	position: relative;
	padding-bottom: clamp(4px, 2vw, 16px);
	margin-top: 0;
}

.pricing-callout {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	justify-content: space-between;
	background: linear-gradient(135deg, #4b87ff 0%, #4b75a2 100%);
	border: 2px solid #32427a;
	border-radius: 20px;
	padding: 22px 24px;
	box-shadow: 0 12px 28px rgba(75, 117, 162, 0.35);
	color: #ffffff;
	margin-bottom: 22px;
}

.pricing-callout__text h3 {
	margin: 4px 0 6px;
	color: #ffffff;
	font-size: 1.65rem;
}

.pricing-callout__text p {
	margin: 2px 0;
	color: rgba(255, 255, 255, 0.92);
	max-width: 720px;
}

.pricing-callout__eyebrow {
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 0.9rem;
	color: #dfe8ff;
}

.pricing-callout__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	background: #ffffff;
	color: #32427a;
	text-decoration: none;
	font-weight: 800;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(50, 66, 122, 0.28);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
	white-space: nowrap;
	border: 2px solid transparent;
}

.pricing-callout__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(50, 66, 122, 0.35);
	border-color: rgba(50, 66, 122, 0.2);
}

.pricing-matrix {
	background: var(--color-surface);
	border: 2px solid var(--color-border);
	border-radius: 20px;
	padding: 16px;
	box-shadow: 0 10px 30px rgba(58, 74, 96, 0.08);
}

.pricing-tiles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 16px;
}

.price-card {
	border: 1px solid var(--color-border);
	border-radius: 16px;
	padding: 18px;
	background: #fbfaf5;
}

.price-card .package-name {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--color-text);
}

.price-card .package-note {
	font-size: 0.95rem;
	color: var(--color-text-subtle);
	margin-top: 4px;
}

.price-card .price {
	margin-top: 10px;
	margin-bottom: 6px;
}

.price-meta {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--color-text-subtle);
}

.pricing-statlist {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pricing-statlist li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	padding: 10px 12px;
	font-weight: 700;
	color: var(--color-text);
}

.pricing-statlist .label {
	color: var(--color-text-subtle);
	font-weight: 700;
	font-size: 0.95rem;
}

.pricing-note {
	margin-top: 14px;
	font-weight: 700;
	color: var(--color-text);
	background: #f7f5ee;
	border: 1px dashed var(--color-border);
	border-radius: 12px;
	padding: 12px 14px;
}

/* ========================================
       9. PRICING SECTION (GRID LAYOUT)
       ======================================== */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	justify-content: center;
	align-items: stretch;
	grid-auto-rows: auto;
	max-width: 1400px;
	margin: 0 auto;
}

.home-pricing .container {
	max-width: 1200px;
}

.home-pricing .pricing-grid {
	max-width: 920px;
	padding: 0 12px;
	margin: 0 auto;
	grid-template-columns: repeat(auto-fit, minmax(360px, 420px));
	gap: 18px;
}

.home-pricing-card {
	padding: 22px;
	min-height: 480px;
}

/* ====== PRICING: Spawn server banner row ====== */
.spawn-banner {
	grid-column: 1 / -1;
	width: 100%;
	margin: 0 0 6px;
	background: linear-gradient(135deg, #4b87ff 0%, #4b75a2 100%);
	border: 2px solid #32427a;
	color: #fff;
	border-radius: 14px;

	/* row feel */
	padding: 12px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	box-shadow: 0 6px 14px rgba(75, 117, 162, 0.25);
}

.spawn-banner h3 {
	font-size: 1.1rem;
	font-weight: 800;
	margin: 0 0 2px;
	color: #fff;
	white-space: normal;
	line-height: 1.2;
}

.spawn-banner p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	max-width: 640px;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.35;
}

.spawn-banner .secondary-button {
	width: auto;
	white-space: nowrap;
	margin: 0;
	height: 48px;
	padding: 0 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;

	background: #2ecb7e;
	color: #ffffff;
	border: 2px solid #2ecb7e;
	font-weight: 800;
	box-shadow: none;
	border-radius: 12px;
}

.spawn-banner .secondary-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(46, 203, 126, 0.28);
}

@media (max-width: 640px) {
	.spawn-banner {
		flex-direction: column;
		align-items: stretch;
		padding: 10px 12px;
		gap: 8px;
	}

	.spawn-banner .secondary-button {
		width: 100%;
		margin-top: 6px;
	}
}

.pricing-card {
	flex: none;
	min-width: 0;
	height: 100%;
	background: var(--color-surface);
	border: 2px solid var(--color-border);
	border-radius: 20px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 30px rgba(58, 74, 96, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.pricing-card.is-open {
	z-index: 10;
	box-shadow: 0 18px 35px rgba(58, 74, 96, 0.18);
}

/* Hobbyist Card Custom Styling */
.pricing-card.hobbyist-card {
	border-color: #2ecb7e;
}

.pricing-card.hobbyist-card h3 {
	color: #2ecb7e;
}

.pricing-card.hobbyist-card .secondary-button {
	border-color: #2ecb7e;
	color: #e0f7fa;
}

.pricing-card.hobbyist-card .secondary-button:hover {
	background: #fcfaf7;
	color: #333;
	box-shadow: 0 4px 15px rgba(74, 144, 226, 0.1);
}

/* Pro Card Styling */
.pricing-card.popular {
	border-color: var(--color-accent-green);
	background: #f8fffb;
}

.pricing-card .cta-button,
.pricing-card .secondary-button {
	width: 100%;
	text-align: center;
	margin-bottom: 16px;
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.primary-button {
	width: 100%;
	min-height: 48px;
	border-radius: 14px;
	border: none;
	font-weight: 800;
	font-size: 1rem;
	letter-spacing: 0.01em;
	cursor: pointer;
	background: linear-gradient(135deg, #2ecb7e, #15a366);
	color: #ffffff;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
	box-shadow: 0 10px 30px rgba(46, 203, 126, 0.25);
}

.primary-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 34px rgba(21, 163, 102, 0.3);
}

.primary-button:active {
	transform: translateY(0);
	box-shadow: 0 6px 18px rgba(21, 163, 102, 0.22);
}

.purchase-flow-overlay {
	position: absolute;
	inset: 0;
	padding: 0;
	display: flex;
	align-items: stretch;
	justify-content: center;
	background: transparent;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	z-index: 15;
}

.purchase-flow-overlay.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.pricing-card.is-purchasing > *:not(.purchase-flow-overlay) {
	opacity: 0;
	pointer-events: none;
	user-select: none;
}

.pricing-card .purchase-flow {
	width: 100%;
	background: #ffffff;
	border-radius: 20px;
	border: 2px solid rgba(46, 203, 126, 0.35);
	padding: 20px;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.purchase-flow__billing {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.purchase-flow__billing span {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--color-text);
}

.billing-toggle {
	display: flex;
	padding: 4px;
	border-radius: 14px;
	border: 1px solid rgba(58, 74, 96, 0.12);
	background: rgba(244, 242, 236, 0.9);
	gap: 6px;
}

.billing-toggle__option {
	flex: 1;
	border: none;
	border-radius: 10px;
	background: transparent;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 8px 10px;
	cursor: pointer;
	color: var(--color-text-subtle);
	transition:
		background 0.2s ease,
		box-shadow 0.2s ease,
		color 0.2s ease;
}

.billing-toggle__option.is-active {
	background: #fff;
	color: var(--color-text);
	box-shadow: 0 10px 18px rgba(58, 74, 96, 0.15);
}

.purchase-flow__billing-note {
	font-size: 0.85rem;
	color: var(--color-text-subtle);
}

.purchase-flow__seat-control label {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--color-text);
	margin-bottom: 6px;
	display: block;
}

.purchase-flow__seat-input {
	display: flex;
	gap: 10px;
	align-items: center;
}

.purchase-flow__seat-input input {
	flex: 1;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-text);
	background: #fff;
}

.purchase-flow__seat-hint {
	font-size: 0.85rem;
	color: var(--color-text-subtle);
	margin-top: 4px;
	display: block;
}

.purchase-flow__price-preview {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--color-accent-green);
	margin-top: 8px;
}

.purchase-flow__summary {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	font-weight: 700;
	color: var(--color-text);
}

.purchase-flow__summary-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.purchase-flow__summary-item span {
	font-size: 0.85rem;
	color: var(--color-text-subtle);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.purchase-flow__summary-item strong {
	font-size: 1.1rem;
	color: var(--color-text);
}

.purchase-flow__summary-item strong[data-role="seat-lock"] {
	font-size: 1rem;
}

/* Pricing Card Text */
.pricing-card h3 {
	font-size: 1.35rem;
	color: var(--color-accent-green);
	font-weight: 800;
}

.pricing-card .price {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--color-text);
	margin: 12px 0 8px;
	line-height: 1.2;
}

.pricing-card .price span {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--color-text-subtle);
}

.pricing-card .description {
	color: var(--color-text-subtle);
	margin-bottom: 8px;
	min-height: 0;
	font-weight: 600;
	font-size: 0.9rem;
	flex-grow: 1;
}

/* Seat lines */
.pricing-card .seats-group {
	margin: 0 0 20px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.pricing-card .seat-line {
	color: var(--color-text-subtle);
	font-weight: 600;
	font-size: 0.9rem;
	margin: 0;
}

/* Pricing Details Toggle */
.pricing-card .details-toggle {
	border: none;
	border-top: 1px solid var(--color-border);
	padding: 16px 0 0;
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	width: 100%;
	background: none;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
	text-align: left;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--color-text);
	cursor: pointer;
}

.pricing-card .pricing-indicator {
	width: 24px;
	height: 24px;
	color: var(--color-text-subtle);
	transition: transform 0.3s ease;
}

.pricing-card .pricing-indicator.rotated {
	transform: rotate(180deg);
}

.pricing-details-content {
	display: block;
	border-top: 1px solid var(--color-border);
	padding-top: 6px;
	margin-top: 6px;
	font-size: 0.95rem;
}

.pricing-details-content.open {
	display: block;
}

.plan-limits-label {
	margin: 4px 0 4px;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--color-text);
}

.scaling-card {
	border: 2px solid var(--color-accent-green);
	background: linear-gradient(135deg, rgba(46, 203, 126, 0.12), #fff);
}

.scaling-card .price-inline {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--color-text-subtle);
	margin-left: 4px;
}

.pricing-subhead {
	font-size: 1rem;
	color: var(--color-text-subtle);
	margin-bottom: 16px;
}

.pricing-feature-list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-weight: 600;
	color: var(--color-text-subtle);
}

.pricing-price-anchor {
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 18px;
	font-size: 0.95rem;
}

.pricing-card.demo-card {
	background: linear-gradient(135deg, #4b87ff 0%, #4b75a2 100%);
	border-color: #32427a;
	color: #ffffff;
	box-shadow: 0 12px 28px rgba(75, 117, 162, 0.35);
}

.pricing-card.demo-card h3,
.pricing-card.demo-card .price,
.pricing-card.demo-card .price span,
.pricing-card.demo-card .description {
	color: #ffffff;
}

.pricing-card.demo-card .details-toggle {
	color: #ffffff;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-card.demo-card .pricing-indicator {
	color: #ffffff;
}

.pricing-card.demo-card .pricing-details-content {
	background: linear-gradient(
		135deg,
		rgba(75, 135, 255, 0.95) 0%,
		rgba(75, 117, 162, 0.95) 100%
	);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
	border-top: none;
	box-shadow: 0 15px 35px rgba(75, 117, 162, 0.35);
}

.pricing-details-content ul {
	list-style: none;
	padding-top: 10px;
	margin: 0;
}

.pricing-details-content li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-text-subtle);
}

.pricing-details-content li svg {
	width: 16px;
	height: 16px;
	color: var(--color-accent-green);
	flex-shrink: 0;
}

.pricing-card.demo-card .pricing-details-content li {
	color: rgba(255, 255, 255, 0.9);
}

.pricing-card.demo-card .pricing-details-content li svg {
	color: #ffffff;
}

/* Beta access card styling */
.pricing-card.beta-access {
	height: fit-content;
	border: 1px solid rgba(46, 203, 126, 0.35);
	background: linear-gradient(
		140deg,
		rgba(46, 203, 126, 0.12),
		rgba(255, 255, 255, 0.95)
	);
	box-shadow: 0 25px 65px rgba(46, 203, 126, 0.18);
	padding: 18px;
	gap: 10px;
}

.pricing-card.beta-access .plan-limits-label {
	margin: 2px 0 4px;
}

.pricing-card.beta-access .pricing-details-content li {
	margin-bottom: 8px;
}

.pricing-card.beta-access .pricing-details-content {
	padding-top: 2px;
	margin-top: 2px;
}

.pricing-card.beta-access .beta-footnote {
	margin-top: 4px;
}

@media (max-width: 768px) {
	.pricing-card.beta-access {
		padding: 20px;
	}
}

/* ================================================
       FOOTER
       ================================================ */
.footer {
	background: #f4f2ed;
	padding: 80px 0 40px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-text-subtle);
	border-top: 2px solid var(--color-border);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 32px;
	align-items: flex-start;
}

.footer-info {
	max-width: 420px;
}

.footer-links h4 {
	font-size: 1.1rem;
	color: var(--color-text);
	margin-bottom: 20px;
	font-weight: 700;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links a,
.footer-links .link-button {
	color: var(--color-text-subtle);
	text-decoration: none;
	display: block;
	margin-bottom: 12px;
	transition: all 0.2s ease;
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
}

.footer-links a:hover,
.footer-links .link-button:hover {
	color: var(--color-accent-green);
	transform: translateX(4px);
}

.footer-info .footer-logo {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--color-text);
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-info .logo-icon {
	width: 32px;
	height: 32px;
	color: var(--color-accent-teal);
}

.footer-info p {
	font-size: 0.9rem;
	margin: 0 0 16px;
	max-width: 320px;
}

.footer-bottom {
	margin-top: 60px;
	padding-top: 32px;
	border-top: 2px solid var(--color-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
}

.footer-legal-links {
	display: flex;
	align-items: center;
	gap: 32px;
}

.footer-legal-links a,
.footer-legal-links .link-button {
	color: var(--color-text-subtle);
	text-decoration: none;
	margin-left: 0;
}

.footer-legal-links a:hover,
.footer-legal-links .link-button:hover {
	color: var(--color-text);
}

@media (max-width: 1280px) {
	.footer-content {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 28px;
	}

	.footer-info,
	.footer-links {
		text-align: left;
	}
}

@media (min-width: 1200px) {
	.footer-info {
		grid-column: span 2;
	}
}

/* ================================================
       RESPONSIVE DESIGN
       ================================================ */
@media (max-width: 1024px) {
	.animation-layout {
		flex-direction: column;
		gap: 40px;
	}

	.animation-layout .animation {
		position: static;
		max-width: 100%;
	}

	.flow-chart {
		min-height: 520px;
	}
}

@media (max-width: 992px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2.15rem;
	}

	.pricing-card {
		height: auto;
	}

	.pricing-details-content {
		box-shadow: none;
	}

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

	.showcase-item,
	.showcase-item:nth-child(even) {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.showcase-item .showcase-image {
		order: 1;
	}

	.showcase-item .showcase-text {
		order: 2;
	}

	.showcase-text h3 {
		font-size: 1.75rem;
	}

	.pricing-grid {
		grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
		max-width: min(700px, 100%);
		margin: 0 auto;
	}

	.footer-content {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		justify-items: stretch;
		text-align: left;
	}

	.footer-info {
		max-width: none;
	}

	.navbar-logo {
		font-size: 2.2rem;
		line-height: 1.2;
		font-weight: 900;
	}
}

@media (max-width: 1024px) {
	.navbar-logo {
		font-size: 1.8rem;
		line-height: 1.2;
		font-weight: 900;
	}
}

@media (max-width: 1024px) {
	.navbar-dropdown--mobile {
		width: 100%;
	}

	.navbar-dropdown--mobile .navbar-dropdown-toggle {
		width: 100%;
		justify-content: space-between;
		padding: 12px 0;
		border-bottom: 1px solid var(--color-border);
		border-radius: 0;
	}

	.navbar-dropdown--mobile .navbar-dropdown-menu {
		position: static;
		padding: 12px 0 0 0;
		box-shadow: none;
		border: none;
		background: transparent;
		gap: 10px;
	}

	.navbar-dropdown--mobile.open .navbar-dropdown-menu {
		gap: 10px;
	}

	.navbar-links {
		display: none;
	}

	.mobile-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.docs-cta {
		padding: 80px 24px;
	}

	.docs-cta h2 {
		font-size: 1.8rem;
	}

	.docs-cta p {
		font-size: 1rem;
	}

	.flow-chart {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.flow-lane {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

	.flow-lane--center {
		order: -1;
	}

	.flow-node {
		flex: 1 1 140px;
		width: auto;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.pricing-card {
		padding: 20px;
	}

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

	.footer-content {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-template-areas:
			"info info info"
			"product company community";
		justify-items: start;
		gap: 20px;
	}

	.footer-info {
		grid-area: info;
	}

	.footer-links--product {
		grid-area: product;
	}

	.footer-links--community {
		grid-area: community;
	}

	.footer-links--company {
		grid-area: company;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
		align-items: center;
	}

	.animation-layout .content {
		text-align: center;
	}

	.animation-layout .content .eyebrow,
	.animation-layout .content h2,
	.animation-layout .content .lede {
		text-align: center;
	}

	.content-step {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.content-step__number {
		min-width: auto;
	}
}

@media (max-width: 768px) {
	.features-grid {
		justify-items: center;
	}

	.feature-card {
		max-width: 480px;
		width: 100%;
	}

	.feature-card p {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 640px) {
	.pricing-grid {
		gap: 16px;
		max-width: 520px;
	}

	.pricing-card {
		padding: 18px;
	}

	.pricing-card h3 {
		font-size: 1.25rem;
	}

	.pricing-card .price {
		font-size: 1.9rem;
	}

	.pricing-card .description,
	.pricing-details-content li,
	.plan-limits-label {
		font-size: 0.95rem;
	}

	.beta-list li {
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 18px;
	}

	h1 {
		font-size: 1.9rem;
	}

	.button-group {
		flex-direction: column;
		width: 100%;
	}

	.button-group > * {
		width: 100%;
		text-align: center;
	}
}

/* ================================================
       DEDICATED PAGE LAYOUTS
       ================================================ */
.page-main {
	padding-top: 80px;
}

body.features-page .page-main {
	padding-top: 30px;
}

.page-hero {
	padding: 110px 0 60px;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.page-hero h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 900;
	margin-bottom: 18px;
	color: var(--color-text);
}

.page-hero-lead {
	font-size: 1.2rem;
	color: var(--color-text-subtle);
	line-height: 1.7;
}

.page-section {
	padding: 40px 0 80px;
}

/* Pricing page specific layout tweaks */
body.pricing-page .page-main {
	padding-top: 24px;
}

body.pricing-page .page-hero {
	padding: 20px 0 8px;
	max-width: 760px;
}

body.pricing-page .page-hero .hero-eyebrow,
body.pricing-page .page-hero h1,
body.pricing-page .page-hero .page-hero-lead {
	margin-left: auto;
	margin-right: auto;
}

body.pricing-page .page-hero h1 {
	margin-bottom: 2px;
}

body.pricing-page .page-hero .page-hero-lead {
	max-width: 720px;
}

body.pricing-page #pricing {
	padding-top: clamp(10px, 2.5vw, 30px);
	padding-bottom: clamp(70px, 10vw, 110px);
}

body.pricing-page #pricing .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.pricing-section-lead {
	font-size: 1.05rem;
	max-width: 760px;
	color: var(--color-text-subtle);
	text-align: center;
	margin: 0 auto 36px;
}

body.pricing-page .pricing-grid {
	width: 100%;
	max-width: 1040px;
	gap: 28px;
	margin-top: 8px;
}

body.pricing-page .pricing-card {
	padding: 26px 28px 32px;
	align-items: flex-start;
}

body.pricing-page .pricing-card .price {
	margin: 12px 0 20px;
}

body.pricing-page .pricing-card .price span {
	display: block;
	margin-top: 4px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.pricing-page .pricing-card .description {
	color: var(--color-text);
	margin-bottom: 16px;
	flex-grow: 0;
}

body.pricing-page .plan-limits-label {
	margin: 12px 0 8px;
}

body.pricing-page .pricing-details-content {
	padding-top: 10px;
}

body.pricing-page .pricing-details-content li {
	align-items: flex-start;
	line-height: 1.45;
}

body.pricing-page .pricing-details-content li svg {
	margin-top: 1px;
}

body.pricing-page .pricing-get-button {
	margin-top: auto;
}

.pricing-footnote {
	text-align: center;
	max-width: 900px;
	margin: 30px auto 0;
	line-height: 1.5;
}

.pricing-contact {
	margin: 40px auto 0;
	padding: 48px 60px;
	border-radius: 30px;
	border: 1px solid rgba(46, 203, 126, 0.35);
	background: linear-gradient(
		145deg,
		rgba(46, 203, 126, 0.14),
		rgba(255, 255, 255, 0.98)
	);
	text-align: center;
	max-width: 1040px;
	width: 100%;
	min-height: 200px;
	box-shadow: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pricing-contact__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 40px;
	border-radius: 999px;
	border: 2px solid transparent;
	background: linear-gradient(135deg, #2ecb7e, #15a366);
	color: #fff;
	font-weight: 800;
	font-size: 1.2rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	box-shadow: none;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
	min-width: 240px;
}

.pricing-contact__button:hover {
	transform: translateY(-2px);
	box-shadow: none;
	background: #fff;
	color: var(--color-accent-green);
	border-color: var(--color-accent-green);
}

@media (max-width: 640px) {
	.pricing-contact {
		padding: 32px;
	}

	.pricing-contact__button {
		width: 100%;
	}
}

@media (max-width: 640px) {
	body.pricing-page .page-hero {
		padding: 15px 0 6px;
	}

	body.pricing-page .pricing-section-lead {
		margin-bottom: 28px;
	}

	body.pricing-page .pricing-grid {
		max-width: 560px;
	}
}

@media (max-width: 480px) {
	body.pricing-page .page-hero {
		padding: 12px 0 6px;
	}
}

/* ================================================
       BLOG PAGE LAYOUT
       ================================================ */
body.blogs-page .page-main {
	padding-top: 12px;
}

body.blogs-page .page-hero {
	padding: 20px 0 10px;
	max-width: 840px;
}

body.blogs-page .page-hero .page-hero-lead {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.blog-section {
	padding-top: 4px;
}

.blog-intro {
	text-align: center;
	max-width: 860px;
	margin: 0 auto 6px;
}

.blog-intro__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 4px 16px;
	border-radius: 999px;
	background: rgba(46, 203, 126, 0.1);
	color: var(--color-accent-teal);
	font-weight: 800;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px;
}

.blog-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 24px;
	padding: 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	box-shadow: 0 18px 38px rgba(58, 74, 96, 0.08);
	min-height: 280px;
}

.blog-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--color-text-subtle);
	gap: 8px;
	flex-wrap: wrap;
}

.blog-card__category {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	color: var(--color-accent-teal);
}

.blog-card h3 {
	font-size: 1.35rem;
	margin-bottom: 2px;
}

.blog-card p {
	margin-bottom: 0;
	flex-grow: 1;
	max-width: none;
}

.blog-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.blog-card__tag {
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(90, 120, 255, 0.12);
	color: #5a78ff;
	font-weight: 700;
	font-size: 0.85rem;
}

.blog-card__link {
	border: none;
	background: none;
	color: var(--color-accent-green);
	font-weight: 800;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 4px 0;
}

.blog-card__link::after {
	content: "↗";
	font-size: 1rem;
	line-height: 1;
}

@media (max-width: 768px) {
	.blog-intro {
		text-align: left;
	}

	.blog-card {
		padding: 22px;
	}
}

@media (max-width: 640px) {
	body.blogs-page .page-hero {
		padding: 18px 0 10px;
	}

	.blog-intro {
		text-align: center;
	}
}

.docs-section,
.tutorials-section {
	background: rgba(255, 255, 255, 0.65);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

/* ================================================
       FEATURES PAGE
       ================================================ */
.features-page {
	background: var(--color-bg);
}

.features-hero {
	padding: 2px 0 20px;
	text-align: center;
	margin-top: 10px;
}

.features-hero .container {
	max-width: 960px;
}

.features-hero-visual {
	margin-top: 32px;
	border-radius: 24px;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	box-shadow: 0 25px 60px rgba(58, 74, 96, 0.08);
	padding: 20px;
}

.feature-rows {
	padding: 30px 0 40px;
}

.feature-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
	margin-bottom: 60px;
}

.feature-row:last-child {
	margin-bottom: 0;
}

.feature-row.reverse {
	flex-direction: row-reverse;
}

.feature-row__text {
	flex: 1 1 320px;
	max-width: 420px;
}

.feature-row__visual {
	flex: 1 1 420px;
}

.feature-row__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 800;
	color: var(--color-accent-teal);
	margin-bottom: 12px;
}

.feature-row__text h3 {
	font-size: 1.75rem;
	margin-bottom: 14px;
}

.feature-row__text p {
	margin-bottom: 18px;
	max-width: none;
}

.feature-learn {
	border: none;
	background: none;
	color: var(--color-accent-green);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.feature-learn::after {
	content: "↗";
	font-size: 1rem;
}

.feature-visual-card {
	border-radius: 20px;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	padding: 18px;
	box-shadow: 0 25px 60px rgba(58, 74, 96, 0.08);
}

.feature-visual-card img {
	border-radius: 16px;
}

.features-cta {
	padding: 60px 0 100px;
	text-align: center;
}

.features-cta p {
	margin: 4px auto 24px;
	max-width: 560px;
}

.features-cta .primary-button {
	width: auto;
	min-width: 0;
	padding: 14px 38px;
	font-size: 1.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 900px) {
	.feature-row {
		flex-direction: column;
	}

	.feature-row.reverse {
		flex-direction: column;
	}

	.feature-row__text,
	.feature-row__visual {
		max-width: none;
	}
}

.docs-grid,
.tutorials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
}

.docs-card,
.tutorial-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 25px 60px rgba(58, 74, 96, 0.08);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.docs-card h2,
.tutorial-card h2 {
	font-size: 1.4rem;
	color: var(--color-text);
}

.docs-label,
.tutorial-meta {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-accent-teal);
	font-weight: 800;
}

.docs-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	color: var(--color-text-subtle);
}

.tutorial-card .link-button {
	align-self: flex-start;
	margin-top: auto;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid var(--color-border);
}
