/* ============================= */
/* 3SCAPES DEDICATED STYLESHEET  */
/* ============================= */

/* ============================= */
/* 3SCAPES CSS VARIABLES         */
/* ============================= */
:root {
	/* 3Scapes Primary Colors - Blue Side */
	--clr-3s-blue-light: #4A90B8;
	--clr-3s-blue: #2C5F7C;
	--clr-3s-blue-dark: #1A3A4D;
	--clr-3s-blue-glow: rgba(74, 144, 184, 0.4);

	/* 3Scapes Primary Colors - Orange/Red Side */
	--clr-3s-orange-light: #F39C12;
	--clr-3s-orange: #E67E22;
	--clr-3s-orange-dark: #D35400;
	--clr-3s-red: #C0392B;
	--clr-3s-orange-glow: rgba(230, 126, 34, 0.4);

	/* 3Scapes Background Colors - Darker */
	--clr-3s-void: #050608;
	--clr-3s-bg-dark: #080A0E;
	--clr-3s-bg-main: #0A0E14;

	/* 3Scapes Text Colors */
	--clr-3s-text-heading: #F0E6D3;
	--clr-3s-text-primary: #C8C4BC;
	--clr-3s-text-secondary: #7A8899;
	--clr-3s-text-glow: #F7D24B;

	/* Glassmorphism */
	--glass-bg: rgba(255, 255, 255, 0.03);
	--glass-border: rgba(255, 255, 255, 0.08);
	--glass-blur: blur(10px);

	/* Rift/Portal Effects */
	--rift-glow: 0 0 60px rgba(74, 144, 184, 0.3), 0 0 60px rgba(230, 126, 34, 0.3);
}

.btn-primary {
	background: linear-gradient(90deg, var(--clr-3s-blue) 0%, var(--clr-3s-blue) 20%, var(--clr-3s-orange-dark) 80%, var(--clr-3s-orange-dark) 100%);
	background-size: 120% 100%;
	background-position: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: var(--rift-glow);
	transition: all 0.3s ease;
}

/* ============================= */
/* 3SCAPES HERO - RIFT PORTAL    */
/* ============================= */
.hero-3scapes {
	min-height: 100vh;
	background: var(--clr-3s-void);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: var(--space-2xl) var(--space-lg);
	position: relative;
	overflow: hidden;
}

/* Animated rift background */
.hero-3scapes::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(ellipse at 30% 50%, rgba(44, 95, 124, 0.15) 0%, transparent 50%),
		radial-gradient(ellipse at 70% 50%, rgba(230, 126, 34, 0.15) 0%, transparent 50%);
	animation: riftPulse 8s ease-in-out infinite alternate;
}

@keyframes riftPulse {
	0% {
		opacity: 0.6;
		transform: scale(1);
	}
	100% {
		opacity: 1;
		transform: scale(1.05);
	}
}

/* Central rift line */
.hero-3scapes::after {
	content: "";
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 50%;
	width: 2px;
	background: linear-gradient(
		to bottom,
		transparent,
		var(--clr-3s-blue-light),
		var(--clr-3s-text-glow),
		var(--clr-3s-orange),
		transparent
	);
	box-shadow: var(--rift-glow);
	transform: translateX(-50%);
	opacity: 0.6;
}

.hero-3scapes .hero-content {
	position: relative;
	z-index: 2;
}

.hero-3scapes .hero-title {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: linear-gradient(
		90deg,
		var(--clr-3s-blue-light) 0%,
		var(--clr-3s-text-heading) 50%,
		var(--clr-3s-orange) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: none;
	margin-bottom: var(--space-md);
}

.hero-3scapes .hero-subtitle {
	color: var(--clr-3s-text-secondary);
	font-size: 1.1rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: var(--space-xl);
  border-radius: var(--radius-lg);
}

.hero-3scapes .btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 80px rgba(74, 144, 184, 0.5), 0 0 80px rgba(230, 126, 34, 0.5);
}

/* ============================= */
/* 3SCAPES CONTAINER             */
/* ============================= */
.scapes-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--space-lg);
}

/* ============================= */
/* SPLIT SECTION LAYOUT          */
/* ============================= */
.scapes-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 80vh;
	position: relative;
}

.scapes-split::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 4px;
	background: linear-gradient(
		to bottom,
		transparent,
		var(--clr-3s-blue-light) 20%,
		var(--clr-3s-text-glow) 50%,
		var(--clr-3s-orange) 80%,
		transparent
	);
	transform: translateX(-50%);
	box-shadow: var(--rift-glow);
	z-index: 10;
}

.split-side {
	padding: var(--space-3xl) var(--space-xl);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.split-blue {
	background: linear-gradient(135deg, var(--clr-3s-bg-dark) 0%, rgba(44, 95, 124, 0.1) 100%);
	border-right: none;
}

.split-orange {
	background: linear-gradient(225deg, var(--clr-3s-bg-dark) 0%, rgba(230, 126, 34, 0.1) 100%);
	border-left: none;
}

.split-side h2 {
	font-family: var(--ff-heading);
	font-size: var(--fs-h2);
	margin-bottom: var(--space-lg);
}

.split-blue h2 {
	color: var(--clr-3s-blue-light);
}

.split-orange h2 {
	color: var(--clr-3s-orange);
}

.split-side p {
	color: var(--clr-3s-text-primary);
	line-height: var(--lh-relaxed);
	margin-bottom: var(--space-md);
}

/* ============================= */
/* GLASSMORPHISM CARDS           */
/* ============================= */
.glass-card {
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.glass-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
}

.glass-card:hover {
	border-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card.glow-blue:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--clr-3s-blue-glow);
}

.glass-card.glow-orange:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--clr-3s-orange-glow);
}

/* ============================= */
/* INTRO SECTION WITH LOGO       */
/* ============================= */
.scapes-intro {
	padding: var(--space-3xl) 0;
	background: var(--clr-3s-bg-dark);
	position: relative;
}

.scapes-intro::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(ellipse at 20% 80%, rgba(44, 95, 124, 0.08) 0%, transparent 40%),
		radial-gradient(ellipse at 80% 20%, rgba(230, 126, 34, 0.08) 0%, transparent 40%);
	pointer-events: none;
}

.intro-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: var(--space-2xl);
	align-items: center;
	position: relative;
	z-index: 1;
}

.scapes-logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.scapes-logo {
	max-width: 100%;
	height: auto;
	max-height: 400px;
	filter: drop-shadow(0 0 30px rgba(74, 144, 184, 0.3)) drop-shadow(0 0 30px rgba(230, 126, 34, 0.3));
	transition: filter 0.3s ease;
}

.scapes-logo:hover {
	filter: drop-shadow(0 0 50px rgba(74, 144, 184, 0.5)) drop-shadow(0 0 50px rgba(230, 126, 34, 0.5));
}

.intro-content {
	color: var(--clr-3s-text-primary);
}

.intro-content p {
	font-size: 1.1rem;
	line-height: var(--lh-relaxed);
	margin-bottom: var(--space-lg);
}

.scapes-highlight {
	color: var(--clr-3s-orange);
	font-weight: 600;
}

.scapes-highlight-blue {
	color: var(--clr-3s-blue-light);
	font-weight: 600;
}

/* ============================= */
/* ORIGIN TIMELINE               */
/* ============================= */
.scapes-origin {
	padding: var(--space-3xl) 0;
	background: var(--clr-3s-void);
	position: relative;
	overflow: hidden;
}

.origin-title {
	text-align: center;
	color: var(--clr-3s-text-heading);
	font-size: var(--fs-h2);
	margin-bottom: var(--space-3xl);
	position: relative;
}

.origin-title::after {
	content: "";
	display: block;
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, var(--clr-3s-blue), var(--clr-3s-orange));
	margin: var(--space-md) auto 0;
}

.timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

/* Central timeline rift line */
.timeline::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	background: linear-gradient(
		to bottom,
		var(--clr-3s-blue),
		var(--clr-3s-text-glow),
		var(--clr-3s-orange)
	);
	transform: translateX(-50%);
	box-shadow: 0 0 20px var(--clr-3s-blue-glow), 0 0 20px var(--clr-3s-orange-glow);
}

.timeline-item {
	display: flex;
	margin-bottom: var(--space-2xl);
	position: relative;
}

.timeline-item:nth-child(odd) {
	flex-direction: row;
}

.timeline-item:nth-child(even) {
	flex-direction: row-reverse;
}

.timeline-content {
	width: 45%;
	padding: var(--space-lg);
}

.timeline-item:nth-child(odd) .timeline-content {
	text-align: right;
	padding-right: var(--space-2xl);
}

.timeline-item:nth-child(even) .timeline-content {
	text-align: left;
	padding-left: var(--space-2xl);
}

.timeline-marker {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--clr-3s-bg-dark);
	border: 3px solid;
	z-index: 5;
}

.timeline-item:nth-child(odd) .timeline-marker {
	border-color: var(--clr-3s-blue-light);
	box-shadow: 0 0 15px var(--clr-3s-blue-glow);
}

.timeline-item:nth-child(even) .timeline-marker {
	border-color: var(--clr-3s-orange);
	box-shadow: 0 0 15px var(--clr-3s-orange-glow);
}

.timeline-content h3 {
	font-family: var(--ff-heading);
	font-size: 1.3rem;
	margin-bottom: var(--space-sm);
}

.timeline-item:nth-child(odd) .timeline-content h3 {
	color: var(--clr-3s-blue-light);
}

.timeline-item:nth-child(even) .timeline-content h3 {
	color: var(--clr-3s-orange);
}

.timeline-content p {
	color: var(--clr-3s-text-secondary);
	line-height: var(--lh-normal);
	font-size: 0.95rem;
}

/* ============================= */
/* DIFFERENCES - PORTAL CARDS    */
/* ============================= */
.scapes-differences {
	padding: var(--space-3xl) 0;
	background: linear-gradient(180deg, var(--clr-3s-bg-dark) 0%, var(--clr-3s-void) 100%);
}

.differences-header {
	text-align: center;
	margin-bottom: var(--space-3xl);
}

.differences-header h2 {
	color: var(--clr-3s-text-heading);
	font-size: var(--fs-h2);
	margin-bottom: var(--space-sm);
}

.differences-header p {
	color: var(--clr-3s-text-secondary);
	font-size: 1.1rem;
}

.portal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-lg);
}

.portal-card {
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

/* Alternating glow borders */
.portal-card:nth-child(odd) {
	border-top: 2px solid var(--clr-3s-blue);
}

.portal-card:nth-child(even) {
	border-top: 2px solid var(--clr-3s-orange);
}

.portal-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02));
	transform: translateX(-50%) skewX(-15deg);
	pointer-events: none;
}

.portal-card:hover {
	transform: translateY(-8px) scale(1.02);
}

.portal-card:nth-child(odd):hover {
	box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px var(--clr-3s-blue-glow);
	border-color: var(--clr-3s-blue-light);
}

.portal-card:nth-child(even):hover {
	box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px var(--clr-3s-orange-glow);
	border-color: var(--clr-3s-orange);
}

.portal-card .card-icon {
	font-size: 2.5rem;
	margin-bottom: var(--space-md);
	display: block;
}

.portal-card:nth-child(odd) .card-icon {
	color: var(--clr-3s-blue-light);
}

.portal-card:nth-child(even) .card-icon {
	color: var(--clr-3s-orange);
}

.portal-card h4 {
	color: var(--clr-3s-text-heading);
	font-family: var(--ff-heading);
	font-size: 1.15rem;
	margin-bottom: var(--space-sm);
}

.portal-card p {
	color: var(--clr-3s-text-secondary);
	font-size: 0.9rem;
	line-height: var(--lh-normal);
}

/* ============================= */
/* QUICK TIPS SECTION            */
/* ============================= */
.scapes-tips {
	padding: var(--space-3xl) 0;
	background: var(--clr-3s-void);
	position: relative;
}

.scapes-tips::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 30% 70%, rgba(44, 95, 124, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 70% 30%, rgba(230, 126, 34, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.tips-header {
	text-align: center;
	margin-bottom: var(--space-2xl);
	position: relative;
	z-index: 1;
}

.tips-header h2 {
	color: var(--clr-3s-text-heading);
	font-size: var(--fs-h2);
}

/* Numbered Steps Path */
.tips-path {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
}

/* Connecting line behind steps */
.tips-path::before {
	content: "";
	position: absolute;
	top: 24px;
	left: 40px;
	right: 40px;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--clr-3s-blue),
		var(--clr-3s-blue-light) 33%,
		var(--clr-3s-orange-light) 66%,
		var(--clr-3s-orange)
	);
	z-index: 0;
}

.tip-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
	max-width: 200px;
	position: relative;
}

.step-number {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ff-heading);
	font-size: 1.4rem;
	font-weight: bold;
	margin-bottom: var(--space-md);
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

/* Alternating colors for step numbers */
.tip-step:nth-child(odd) .step-number {
	background: var(--clr-3s-blue);
	color: var(--clr-3s-text-heading);
	box-shadow: 0 0 20px var(--clr-3s-blue-glow);
}

.tip-step:nth-child(even) .step-number {
	background: var(--clr-3s-orange);
	color: var(--clr-3s-text-heading);
	box-shadow: 0 0 20px var(--clr-3s-orange-glow);
}

.tip-step:hover .step-number {
	transform: scale(1.1);
}

.tip-step:nth-child(odd):hover .step-number {
	box-shadow: 0 0 30px var(--clr-3s-blue-glow), 0 0 40px var(--clr-3s-blue-glow);
}

.tip-step:nth-child(even):hover .step-number {
	box-shadow: 0 0 30px var(--clr-3s-orange-glow), 0 0 40px var(--clr-3s-orange-glow);
}

.step-content {
	padding: 0 var(--space-sm);
}

.step-content h4 {
	font-family: var(--ff-heading);
	font-size: 1rem;
	color: var(--clr-3s-text-heading);
	margin-bottom: var(--space-xs);
}

.step-content p {
	color: var(--clr-3s-text-secondary);
	font-size: 0.85rem;
	line-height: var(--lh-normal);
}

.step-content code {
	background: rgba(0, 0, 0, 0.4);
	color: var(--clr-3s-text-glow);
	padding: 0.1rem 0.3rem;
	border-radius: var(--radius-sm);
	font-family: "Courier New", monospace;
	font-size: 0.8rem;
}

/* ============================= */
/* FEATURES TAG CLOUD            */
/* ============================= */
.scapes-features {
	padding: var(--space-3xl) 0;
	background: linear-gradient(180deg, var(--clr-3s-void) 0%, var(--clr-3s-bg-dark) 100%);
}

.features-header {
	text-align: center;
	margin-bottom: var(--space-2xl);
}

.features-header h2 {
	color: var(--clr-3s-text-heading);
	font-size: var(--fs-h2);
}

.features-cloud {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: var(--space-md);
	max-width: 800px;
	margin: 0 auto;
}

.cloud-tag {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-family: var(--ff-heading);
	color: var(--clr-3s-text-heading);
	cursor: default;
	transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;

	/* Frosted glass effect */
	background: rgba(20, 30, 48, 0.6);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);

	/* Gradient border using pseudo-element */
	position: relative;
	border: none;
	z-index: 1;
}

/* Gradient border effect */
.cloud-tag::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(74, 144, 184, 0.5), rgba(230, 126, 34, 0.5));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	z-index: -1;
}

/* Varying sizes for organic feel */
.cloud-tag.size-sm {
	font-size: 0.85rem;
	padding: 0.4rem 1rem;
}

.cloud-tag.size-md {
	font-size: 1rem;
	padding: 0.5rem 1.25rem;
}

.cloud-tag.size-lg {
	font-size: 1.15rem;
	padding: 0.6rem 1.5rem;
	font-weight: 600;
}

/* Staggered opacity for visual depth */
.cloud-tag:nth-child(3n+1) {
	opacity: 1;
}

.cloud-tag:nth-child(3n+2) {
	opacity: 0.85;
}

.cloud-tag:nth-child(3n) {
	opacity: 0.7;
}

/* Alternating colors with shadow depth */
.cloud-tag:nth-child(odd) {
	text-shadow: 0 0 10px var(--clr-3s-blue-glow);
	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.2),
		0 4px 8px rgba(0, 0, 0, 0.15),
		0 0 15px rgba(74, 144, 184, 0.1);
}

.cloud-tag:nth-child(odd)::before {
	background: linear-gradient(135deg, rgba(74, 144, 184, 0.6), rgba(74, 144, 184, 0.2));
}

.cloud-tag:nth-child(even) {
	text-shadow: 0 0 10px var(--clr-3s-orange-glow);
	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.2),
		0 4px 8px rgba(0, 0, 0, 0.15),
		0 0 15px rgba(230, 126, 34, 0.1);
}

.cloud-tag:nth-child(even)::before {
	background: linear-gradient(135deg, rgba(230, 126, 34, 0.6), rgba(230, 126, 34, 0.2));
}

/* Hover effects */
.cloud-tag:hover {
	opacity: 1;
	transform: translateY(-2px);
}

.cloud-tag:nth-child(odd):hover {
	box-shadow:
		0 4px 8px rgba(0, 0, 0, 0.25),
		0 8px 16px rgba(0, 0, 0, 0.2),
		0 0 25px rgba(74, 144, 184, 0.25);
}

.cloud-tag:nth-child(even):hover {
	box-shadow:
		0 4px 8px rgba(0, 0, 0, 0.25),
		0 8px 16px rgba(0, 0, 0, 0.2),
		0 0 25px rgba(230, 126, 34, 0.25);
}

/* ============================= */
/* CTA - DIMENSIONAL RIFT        */
/* ============================= */
.scapes-cta {
	padding: var(--space-3xl) 0;
	background: var(--clr-3s-void);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.scapes-cta::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 150%;
	height: 300px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--clr-3s-blue-glow),
		var(--clr-3s-orange-glow),
		transparent
	);
	transform: translate(-50%, -50%) rotate(-10deg);
	opacity: 0.3;
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
}

.scapes-cta .cta-title {
	color: var(--clr-3s-text-heading);
	font-family: var(--ff-heading);
	font-size: var(--fs-h2);
	margin-bottom: var(--space-md);
}

.scapes-cta .cta-text {
	color: var(--clr-3s-text-secondary);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto var(--space-xl);
}

.scapes-cta .cta-buttons {
	display: flex;
	gap: var(--space-md);
	justify-content: center;
	flex-wrap: wrap;
}

.scapes-cta .btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 60px var(--clr-3s-blue-glow), 0 0 60px var(--clr-3s-orange-glow);
}

.scapes-cta .btn-secondary {
	border-color: var(--clr-3s-text-secondary);
	color: var(--clr-3s-text-secondary);
}

.scapes-cta .btn-secondary:hover {
	border-color: var(--clr-3s-text-heading);
	color: var(--clr-3s-text-heading);
	background: rgba(255,255,255,0.05);
}

/* ============================= */
/* RESPONSIVE STYLES             */
/* ============================= */
@media (max-width: 1024px) {
	.portal-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tips-path {
		flex-wrap: wrap;
		gap: var(--space-xl);
		justify-content: center;
	}

	.tips-path::before {
		display: none;
	}

	.tip-step {
		flex: 0 0 40%;
		max-width: 250px;
	}

	.features-cloud {
		gap: var(--space-sm);
	}

	.cloud-tag.size-lg {
		font-size: 1rem;
		padding: 0.5rem 1.25rem;
	}
}

@media (max-width: 768px) {
	.hero-3scapes {
		min-height: 80vh;
	}

	.hero-3scapes::after {
		width: 1px;
		top: 20%;
		bottom: 20%;
		opacity: 0.4;
	}

	.scapes-split {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.scapes-split::before {
		display: none;
	}

	.split-side {
		padding: var(--space-2xl) var(--space-lg);
	}

	.intro-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.scapes-logo {
		max-height: 280px;
		margin-bottom: var(--space-xl);
	}

	.timeline::before {
		left: 20px;
	}

	.timeline-item,
	.timeline-item:nth-child(odd),
	.timeline-item:nth-child(even) {
		flex-direction: column;
		padding-left: 50px;
	}

	.timeline-content,
	.timeline-item:nth-child(odd) .timeline-content,
	.timeline-item:nth-child(even) .timeline-content {
		width: 100%;
		text-align: left;
		padding: 0;
	}

	.timeline-marker {
		left: 20px;
	}

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

	.tips-path {
		flex-direction: column;
		align-items: center;
		gap: var(--space-lg);
	}

	.tip-step {
		flex: 0 0 auto;
		max-width: 300px;
		width: 100%;
	}

	.features-cloud {
		gap: var(--space-xs);
	}

	.scapes-cta .cta-buttons {
		flex-direction: column;
		align-items: center;
	}
}
