﻿﻿	/* ========================================
   RESET & VARIABLES
======================================== */ *,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg-primary: #030303;
	/* Deepest black */
	--bg-secondary: #0a0a0a;
	--bg-card: rgba(18, 18, 18, 0.6);
	/* Translucent for glass effect */
	--bg-card-elevated: #1e1e1e;

	--text-primary: #fafafa;
	/* Brighter white */
	--text-secondary: #a1a1aa;
	--text-muted: #52525b;

	--accent-blue: #3b82f6;
	--accent-purple: #8b5cf6;
	--accent-cyan: #06b6d4;
	--accent-green: #10b981;
	--accent-orange: #f59e0b;
	--accent-pink: #ec4899;

	--border: rgba(255, 255, 255, 0.08);
	--border-hover: rgba(255, 255, 255, 0.2);

	--glow-blue: rgba(59, 130, 246, 0.3);
	--glow-purple: rgba(139, 92, 246, 0.3);

	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 20px;
	--space-6: 24px;
	--space-7: 32px;
	--space-8: 48px;
	/* Increased spacing */

	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 24px;

	--shadow-sm:
		0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-md:
		0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
	--shadow-lg:
		0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
	--shadow-glow: 0 0 20px var(--glow-blue);

	--fs-xs: 0.75rem;
	--fs-sm: 0.875rem;
	--fs-md: 1rem;
	--fs-lg: 1.25rem;
	--fs-xl: 2rem;
	--fs-2xl: clamp(3rem, 5vw, 4.5rem);
	/* Larger hero text */
}

::selection {
	background: var(--accent-blue);
	color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
	background: #333;
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	/* Improved readability */
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

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

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}

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

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(20px);
	}

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

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes scan {
	0% {
		top: 0%;
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		top: 100%;
		opacity: 0;
	}
}

@keyframes pulse-glow {
	0%,
	100% {
		opacity: 0.5;
		transform: scale(1);
	}

	50% {
		opacity: 0.8;
		transform: scale(1.05);
	}
}

.animate-fadeInUp {
	animation: fadeInUp 0.6s ease-out forwards;
	opacity: 0;
}

.animate-fadeInLeft {
	animation: fadeInLeft 0.6s ease-out forwards;
	opacity: 0;
}

.animate-fadeInRight {
	animation: fadeInRight 0.6s ease-out forwards;
	opacity: 0;
}

.delay-100 {
	animation-delay: 0.1s;
}

.delay-200 {
	animation-delay: 0.2s;
}

.delay-300 {
	animation-delay: 0.3s;
}

.delay-400 {
	animation-delay: 0.4s;
}

.delay-500 {
	animation-delay: 0.5s;
}

/* ========================================
   BACKGROUND
======================================== */
.bg-gradient {
	position: fixed;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 50px 50px;
	/* Larger grid */
	mask-image: radial-gradient(ellipse at 50% 0%, black 50%, transparent 90%);
	pointer-events: none;
	z-index: -1;
}

.bg-gradient::after {
	content: "";
	position: absolute;
	top: -20%;
	left: 20%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, var(--glow-blue), transparent 60%);
	filter: blur(80px);
	opacity: 0.6;
	animation: pulse-glow 10s ease-in-out infinite alternate;
}

.bg-gradient::before {
	content: "";
	position: absolute;
	bottom: -20%;
	right: 10%;
	width: 40%;
	height: 40%;
	background: radial-gradient(circle, var(--glow-purple), transparent 60%);
	filter: blur(80px);
	opacity: 0.4;
	animation: pulse-glow 12s ease-in-out infinite alternate-reverse;
}

/* ========================================
   LAYOUT
======================================== */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--space-6);
}

/* ========================================
   NAVIGATION
======================================== */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: var(--space-3) 0;
	background: rgba(3, 3, 3, 0.92);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.7);
}

nav .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	font-weight: 700;
	font-size: var(--fs-lg);
	text-decoration: none;
	color: var(--text-primary);
	letter-spacing: -0.02em;
	transition:
		color 0.25s ease,
		transform 0.25s ease;
}

.logo span {
	color: var(--text-primary);
	opacity: 0.92;
}

.logo:hover {
	transform: translateY(-1px);
}

.logo:hover .logo-icon {
	box-shadow: 0 0 18px rgba(15, 23, 42, 0.9);
}

.logo:hover span {
	filter: brightness(1.05);
}

.logo-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.logo-icon img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: var(--space-6);
}

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: var(--fs-sm);
	font-weight: 500;
	transition: color 0.25s ease;
}

.nav-links a:not(.btn) {
	position: relative;
	padding-bottom: 4px;
}

.nav-links a:not(.btn):hover {
	color: var(--text-primary);
}

.nav-links a:not(.btn)::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
	transition:
		width 0.25s ease-out,
		opacity 0.25s ease-out;
	opacity: 0;
}

.nav-links a:not(.btn):hover::after {
	width: 100%;
	opacity: 1;
}

.nav-links .btn-primary {
	padding: 8px 18px;
	border-radius: 999px;
	font-size: var(--fs-xs);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.12) inset,
		0 4px 14px rgba(15, 23, 42, 0.9);
	color: #ffffff !important;
}

.nav-links .btn-primary:hover {
	transform: translateY(-1px) scale(1.02);
}

.btn:focus-visible,
.nav-links a:focus-visible,
.footer-links a:focus-visible,
.skip-link:focus-visible {
	outline: 2px solid var(--accent-blue);
	outline-offset: 4px;
	border-radius: var(--radius-sm);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	padding: var(--space-3) var(--space-6);
	/* Wider buttons */
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: var(--fs-sm);
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	border: none;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-blue), #6366f1);
	color: white;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.1) inset,
		0 4px 12px var(--glow-blue);
}

.btn-primary::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: 0.5s;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.2) inset,
		0 8px 24px var(--glow-blue);
}

.btn-primary:hover::after {
	left: 100%;
}

.btn.btn-primary.btn-hero-primary {
	background: linear-gradient(135deg, var(--accent-blue), #6366f1);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.1) inset,
		0 4px 12px var(--glow-blue);
	border-radius: 12px;
}

.btn.btn-primary.btn-hero-primary:hover {
	box-shadow:
		0 0 0 1px rgba(16, 185, 129, 0.6) inset,
		0 14px 40px rgba(16, 185, 129, 0.7);
}

.btn.btn-primary.btn-team {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.1) inset,
		0 4px 12px var(--glow-purple);
}

.btn.btn-primary.btn-team:hover {
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.2) inset,
		0 8px 24px var(--glow-purple);
}

.btn.btn-secondary.btn-hero-secondary {
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-primary);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	box-shadow: none;
}

.btn.btn-secondary.btn-hero-secondary:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.22);
	transform: translateY(-1px);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.03);
	color: var(--text-primary);
	border: 1px solid var(--border);
	backdrop-filter: blur(4px);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--text-primary);
	transform: translateY(-2px);
}

/* ========================================
   HERO - Split Layout
======================================== */
.hero {
	min-height: auto;
	/* Remove viewport height forcing */
	padding: 100px 0 var(--space-7);
	/* Significantly reduced padding */
	display: flex;
	align-items: center;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	/* Reduced gap */
	align-items: center;
}

.hero-content {
	max-width: 520px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-2) var(--space-3);
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 100px;
	font-size: var(--fs-xs);
	font-weight: 600;
	color: #60a5fa;
	margin-bottom: var(--space-4);
}

.hero h1 {
	font-size: var(--fs-2xl);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: var(--space-4);
	letter-spacing: -0.03em;
}

.hero h1 .gradient-text {
	background: linear-gradient(to right, #60a5fa, #a78bfa, #f472b6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: var(--space-6);
}

.hero-buttons {
	display: flex;
	gap: var(--space-3);
	flex-wrap: wrap;
}

/* Hero Image & Scanner Effect */
.hero-visual {
	position: relative;
}

.hero-image-wrapper {
	position: relative;
	border-radius: var(--radius-md);
	background: rgba(18, 18, 18, 0.8);
	border: 1px solid var(--border);
	box-shadow:
		var(--shadow-lg),
		0 0 0 1px rgba(255, 255, 255, 0.05);
	overflow: hidden;
	animation: float 6s ease-in-out infinite;
	backdrop-filter: blur(12px);
	font-family: "Fira Code", monospace;
}

.window-header {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid var(--border);
}

.dots {
	display: flex;
	gap: 6px;
	margin-right: 16px;
}

.dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.dots span:nth-child(1) {
	background: #ef4444;
}

.dots span:nth-child(2) {
	background: #eab308;
}

.dots span:nth-child(3) {
	background: #22c55e;
}

.address-bar {
	font-size: 12px;
	color: var(--text-muted);
	background: rgba(0, 0, 0, 0.2);
	padding: 4px 12px;
	border-radius: 4px;
	flex-grow: 1;
	text-align: center;
	font-family: "Inter", sans-serif;
}

.window-content {
	padding: 24px;
	position: relative;
	min-height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.code-line {
	font-family: "Consolas", "Monaco", monospace;
	font-size: 14px;
	line-height: 1.8;
	color: var(--text-secondary);
	white-space: pre;
}

.code-line.highlight {
	background: rgba(59, 130, 246, 0.1);
	border-left: 2px solid var(--accent-blue);
	margin: 8px -24px;
	padding: 8px 24px;
	color: var(--text-primary);
}

.token-keyword {
	color: #c084fc;
}

.token-function {
	color: #60a5fa;
}

.token-string {
	color: #4ade80;
}

.token-comment {
	color: #52525b;
	font-style: italic;
}

.token-number {
	color: #f472b6;
}

.token-key {
	color: #93c5fd;
}

.ai-badge {
	position: absolute;
	bottom: 24px;
	right: 24px;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.2);
	color: #60a5fa;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	animation: pulse-badge 2s infinite;
	z-index: 20;
}

@keyframes pulse-badge {
	0% {
		box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.animate-fadeInUp,
	.animate-fadeInLeft,
	.animate-fadeInRight,
	.hero-image-wrapper {
		animation: none;
	}

	.btn,
	.bento-item {
		transition: none;
	}
}

.hero-image img {
	width: 100%;
	height: auto;
	display: block;
	opacity: 0.9;
}

/* Scanner Overlay */
.hero-image-wrapper::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background: #60a5fa;
	box-shadow:
		0 0 10px #60a5fa,
		0 0 20px #60a5fa;
	animation: scan 4s linear infinite;
	z-index: 10;
}

.hero-image-wrapper::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(59, 130, 246, 0.05) 0%,
		transparent 20%,
		transparent 80%,
		rgba(59, 130, 246, 0.05) 100%
	);
	pointer-events: none;
	z-index: 5;
}

/* ========================================
   FEATURES - Bento Grid
======================================== */
.features {
	padding: var(--space-8) 0;
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: var(--space-8);
}

.section-header h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 800;
	margin-bottom: var(--space-3);
	letter-spacing: -0.03em;
	background: linear-gradient(to bottom, #fff, #aaa);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-header p {
	font-size: var(--fs-lg);
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: var(--space-5);
}

.bento-item {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-7);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-sm);
}

.bento-item::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: var(--radius-lg);
	padding: 1px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
	-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;
	pointer-events: none;
}

.bento-item:hover {
	transform: translateY(-5px);
	box-shadow:
		var(--shadow-lg),
		0 0 0 1px var(--border-hover);
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.03) 0%,
		var(--bg-card) 100%
	);
}

.bento-item h3 {
	font-size: var(--fs-lg);
	font-weight: 700;
	margin-bottom: var(--space-3);
	color: var(--text-primary);
	letter-spacing: -0.01em;
}

.bento-item p {
	font-size: var(--fs-md);
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Dynamic Accents */
.bento-item.accent-blue:hover {
	border-color: var(--accent-blue);
	box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.2);
}

.bento-item.accent-purple:hover {
	border-color: var(--accent-purple);
	box-shadow: 0 10px 40px -10px rgba(139, 92, 246, 0.2);
}

.bento-item.accent-orange:hover {
	border-color: var(--accent-orange);
	box-shadow: 0 10px 40px -10px rgba(245, 158, 11, 0.2);
}

.bento-item.accent-cyan:hover {
	border-color: var(--accent-cyan);
	box-shadow: 0 10px 40px -10px rgba(6, 182, 212, 0.2);
}

.bento-item.accent-green:hover {
	border-color: var(--accent-green);
	box-shadow: 0 10px 40px -10px rgba(16, 185, 129, 0.2);
}

.bento-item.accent-pink:hover {
	border-color: var(--accent-pink);
	box-shadow: 0 10px 40px -10px rgba(236, 72, 153, 0.2);
}

.bento-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-5);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: transform 0.3s ease;
}

.bento-item:hover .bento-icon {
	transform: scale(1.1) rotate(3deg);
}

.bento-icon svg {
	width: 24px;
	height: 24px;
	color: var(--text-primary);
}

/* Icon specific colors on hover */
.bento-item:hover .bento-icon.blue {
	background: rgba(59, 130, 246, 0.2);
	color: var(--accent-blue);
}

.bento-item:hover .bento-icon.purple {
	background: rgba(139, 92, 246, 0.2);
	color: var(--accent-purple);
}

.bento-item:hover .bento-icon.orange {
	background: rgba(245, 158, 11, 0.2);
	color: var(--accent-orange);
}

.bento-item:hover .bento-icon.cyan {
	background: rgba(6, 182, 212, 0.2);
	color: var(--accent-cyan);
}

.bento-item:hover .bento-icon.green {
	background: rgba(16, 185, 129, 0.2);
	color: var(--accent-green);
}

.bento-item:hover .bento-icon.pink {
	background: rgba(236, 72, 153, 0.2);
	color: var(--accent-pink);
}

/* ========================================
   PRICING
======================================== */
.pricing {
	padding: var(--space-8) 0;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-6);
	max-width: 1000px;
	margin: 0 auto;
}

.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-7);
	position: relative;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.pricing-card.featured {
	background: var(--bg-card-elevated);
	border-color: var(--accent-blue);
	transform: scale(1.05);
	z-index: 10;
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.pricing-card:hover {
	transform: translateY(-8px);
	box-shadow:
		var(--shadow-lg),
		0 0 0 1px var(--border-hover);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--accent-blue), #6366f1);
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.pricing-card h3 {
	font-size: var(--fs-lg);
	margin-bottom: var(--space-2);
	color: var(--text-primary);
	font-weight: 600;
}

.pricing-card .price {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: var(--space-2);
	color: var(--text-primary);
	letter-spacing: -0.03em;
	line-height: 1;
}

.pricing-card .price span {
	font-size: 1rem;
	font-weight: 400;
	color: var(--text-muted);
	letter-spacing: normal;
}

.pricing-card .description {
	font-size: var(--fs-sm);
	color: var(--text-secondary);
	margin-bottom: var(--space-6);
	padding-bottom: var(--space-6);
	border-bottom: 1px solid var(--border);
	width: 100%;
}

.pricing-card ul {
	list-style: none;
	margin-bottom: var(--space-6);
	text-align: left;
	flex-grow: 1;
	width: 100%;
}

.pricing-card li {
	display: flex;
	gap: var(--space-3);
	font-size: var(--fs-sm);
	color: var(--text-secondary);
	margin-bottom: var(--space-3);
	align-items: center;
}

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

.pricing-card .btn {
	width: 100%;
	margin-top: auto;
}

/* ========================================
   CTA & FOOTER
======================================== */
.cta {
	padding: var(--space-8) 0;
	text-align: center;
}

.cta-box {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 80px var(--space-6);
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

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

.cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	margin-bottom: var(--space-4);
	letter-spacing: -0.02em;
}

.cta p {
	font-size: var(--fs-lg);
	color: var(--text-secondary);
	margin-bottom: var(--space-7);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

footer {
	padding: 60px 0;
	border-top: 1px solid var(--border);
	text-align: center;
	background: var(--bg-primary);
	position: relative;
}

.footer-logo {
	margin-bottom: 24px;
	display: inline-block;
}

footer p {
	font-size: 0.875rem;
	color: var(--text-muted);
}

.footer-links {
	display: flex;
	gap: var(--space-6);
	justify-content: center;
	margin-top: var(--space-6);
	flex-wrap: wrap;
}

.footer-links a {
	color: var(--text-secondary);
	font-size: 0.875rem;
	text-decoration: none;
	transition: color 0.2s;
}

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

/* ========================================
   RESPONSIVE
======================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
	.hero .container {
		grid-template-columns: 1fr;
		gap: var(--space-7);
	}

	.hero-content {
		text-align: center;
		margin: 0 auto;
	}

	.hero-buttons {
		justify-content: center;
	}

	.pricing-card.featured {
		transform: scale(1.02);
	}
}

/* Tablets */
@media (max-width: 768px) {
	.container {
		padding: 0 var(--space-5);
	}

	nav .container {
		flex-direction: column;
		gap: var(--space-4);
	}

	.nav-links {
		gap: var(--space-4);
		flex-wrap: wrap;
		justify-content: center;
	}

	.nav-links .btn-primary {
		padding: 10px 20px;
	}

	.hero {
		padding: 80px 0 var(--space-7);
	}

	.hero .container {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-content {
		margin: 0 auto;
	}

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

	.bento-item.large {
		grid-column: auto;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero-visual {
		margin-top: var(--space-6);
	}

	.cta h2 {
		font-size: 2rem;
	}

	.cta-box {
		padding: 40px var(--space-5);
	}

	.pricing-card.featured {
		transform: none;
	}

	.pricing-card.featured:hover {
		transform: translateY(-8px);
	}

	.footer-links {
		gap: var(--space-4);
	}
}

/* Small mobile devices */
@media (max-width: 480px) {
	:root {
		--fs-2xl: 2.25rem;
	}

	.container {
		padding: 0 var(--space-4);
	}

	.hero {
		padding: 70px 0 var(--space-6);
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 0.95rem;
	}

	.hero-buttons {
		flex-direction: column;
		gap: var(--space-3);
		width: 100%;
	}

	.hero-buttons .btn {
		width: 100%;
	}

	.window-content {
		padding: 16px;
		min-height: 180px;
	}

	.code-line {
		font-size: 12px;
	}

	.code-line.highlight {
		margin: 8px -16px;
		padding: 8px 16px;
	}

	.section-header h2 {
		font-size: 1.75rem;
	}

	.bento-item {
		padding: var(--space-5);
	}

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

	.pricing-card {
		padding: var(--space-5);
	}

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

	.cta-box {
		padding: 32px var(--space-4);
	}

	.cta h2 {
		font-size: 1.5rem;
	}

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

	footer {
		padding: 40px 0;
	}

	.footer-links {
		flex-direction: column;
		gap: var(--space-3);
	}

	.footer-logo svg {
		width: 100px;
		height: auto;
	}
}

/* Skip link for accessibility */
.skip-link {
	position: absolute;
	top: -100%;
	left: 16px;
	background: var(--bg-card);
	color: var(--text-primary);
	padding: var(--space-2) var(--space-3);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	transition: top 0.2s;
	z-index: 200;
}

.skip-link:focus {
	top: 12px;
}
