:root {
	--bg-primary: #0F172A;
	--bg-secondary: #1E293B;
	--bg-tertiary: #334155;
	--bg-card: #1a2438;
	--accent: #EF4444;
	--accent-dark: #DC2626;
	--accent-glow: rgba(239, 68, 68, 0.15);
	--text-primary: #F8FAFC;
	--text-secondary: #94A3B8;
	--text-muted: #64748B;
	--border: #334155;
	--border-light: #475569;
	--font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

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

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s;
}

a:hover {
	color: #f87171;
}

code {
	font-family: var(--font-mono);
	background: var(--bg-tertiary);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.875em;
}

[class*="avatar"] {
	overflow: hidden;
}

[class*="avatar"] img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}

/* ---- NAV ---- */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	transition: background 0.3s;
}

.nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--text-primary);
	letter-spacing: 0.05em;
}

.nav-logo:hover {
	color: var(--text-primary);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
}

.nav-links a {
	color: var(--text-secondary);
	font-size: 0.875rem;
	font-weight: 500;
	transition: color 0.2s;
}

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

.nav-cta {
	background: var(--accent) !important;
	color: var(--text-primary) !important;
	padding: 8px 16px !important;
	border-radius: 6px;
	font-weight: 600 !important;
}

.nav-cta:hover {
	background: var(--accent-dark) !important;
}

.nav-cta-secondary {
	border: 1px solid var(--border-light) !important;
	padding: 7px 16px !important;
	border-radius: 6px;
	color: var(--text-primary) !important;
}

.nav-cta-secondary:hover {
	border-color: var(--accent) !important;
	color: var(--accent) !important;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.nav-toggle span {
	width: 22px;
	height: 2px;
	background: var(--text-secondary);
	transition: 0.2s;
}

/* ---- HERO ---- */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 24px 80px;
	overflow: hidden;
}

.hero-bg-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(51, 65, 85, 0.3) 1px, transparent 1px),
		linear-gradient(90deg, rgba(51, 65, 85, 0.3) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
	position: relative;
	text-align: center;
	max-width: 800px;
	z-index: 2;
}

.hero-badge {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--accent);
	border: 1px solid rgba(239, 68, 68, 0.3);
	background: rgba(239, 68, 68, 0.08);
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 32px;
	letter-spacing: 0.03em;
}

.hero h1 {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 24px;
	letter-spacing: -0.02em;
}

.hero-sub {
	font-size: 1.125rem;
	color: var(--text-secondary);
	max-width: 640px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.hero-ctas {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-note {
	font-size: 0.8125rem;
	color: var(--text-muted);
	margin-top: 20px;
	font-family: var(--font-mono);
}

.hero-cards {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.hero-card {
	position: absolute;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-card-label {
	font-size: 0.6875rem;
	color: var(--text-muted);
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hero-card-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent);
	font-family: var(--font-mono);
}

.hero-card-1 {
	top: 18%;
	left: 6%;
	animation: float-1 6s ease-in-out infinite;
}

.hero-card-2 {
	top: 28%;
	right: 6%;
	animation: float-2 7s ease-in-out infinite;
}

.hero-card-3 {
	bottom: 22%;
	left: 8%;
	animation: float-3 8s ease-in-out infinite;
}

.hero-card-4 {
	bottom: 18%;
	right: 8%;
	animation: float-4 6.5s ease-in-out infinite;
}

@keyframes float-1 {
	0%, 100% { transform: translateY(0) rotate(-1deg); }
	50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes float-2 {
	0%, 100% { transform: translateY(0) rotate(1deg); }
	50% { transform: translateY(-16px) rotate(-1deg); }
}

@keyframes float-3 {
	0%, 100% { transform: translateY(0) rotate(0.5deg); }
	50% { transform: translateY(-10px) rotate(-1.5deg); }
}

@keyframes float-4 {
	0%, 100% { transform: translateY(0) rotate(-0.5deg); }
	50% { transform: translateY(-14px) rotate(1deg); }
}

/* ---- BUTTONS ---- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9375rem;
	font-family: var(--font-sans);
	cursor: pointer;
	transition: all 0.2s;
	border: none;
	text-decoration: none;
}

.btn-primary {
	background: var(--accent);
	color: white;
}

.btn-primary:hover {
	background: var(--accent-dark);
	color: white;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.btn-secondary {
	background: var(--bg-tertiary);
	color: var(--text-primary);
	border: 1px solid var(--border-light);
}

.btn-secondary:hover {
	background: var(--border-light);
	color: var(--text-primary);
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--text-primary);
	border: 1px solid var(--border-light);
}

.btn-outline:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-1px);
}

/* ---- TRUST BAR ---- */
.trust-bar {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 32px 0;
}

.trust-label {
	text-align: center;
	font-size: 0.8125rem;
	color: var(--text-muted);
	margin-bottom: 20px;
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.trust-badges {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-secondary);
}

/* ---- SECTIONS ---- */
.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 56px;
}

.section-tag {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
}

.section-header h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	font-weight: 700;
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.section-header p {
	color: var(--text-secondary);
	font-size: 1.0625rem;
	line-height: 1.7;
}

/* ---- FEATURES ---- */
.features {
	padding: 100px 0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.feature-card {
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 28px;
	transition: all 0.3s;
	position: relative;
}

.feature-card:hover {
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-icon {
	font-size: 1.5rem;
	margin-bottom: 16px;
}

.feature-card h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.feature-card p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 16px;
}

.feature-flag {
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	color: var(--accent);
	background: var(--accent-glow);
	padding: 3px 10px;
	border-radius: 4px;
	border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
	padding: 100px 0;
	background: var(--bg-secondary);
}

.steps {
	display: flex;
	align-items: flex-start;
	gap: 0;
}

.step {
	flex: 1;
	text-align: center;
	padding: 0 20px;
}

.step-number {
	font-family: var(--font-mono);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 16px;
	opacity: 0.6;
}

.step h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.step p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

.step-connector {
	width: 48px;
	min-width: 48px;
	height: 2px;
	background: var(--border);
	margin-top: 30px;
	position: relative;
}

.step-connector::after {
	content: '→';
	position: absolute;
	top: -10px;
	right: -4px;
	color: var(--text-muted);
	font-size: 0.875rem;
}

/* ---- STATS ---- */
.stats {
	padding: 80px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.stat-value {
	font-size: 3rem;
	font-weight: 700;
	color: var(--accent);
	font-family: var(--font-mono);
	display: inline;
}

.stat-unit {
	font-size: 1.25rem;
	color: var(--text-muted);
	font-family: var(--font-mono);
	margin-left: 4px;
}

.stat-label {
	font-size: 0.8125rem;
	color: var(--text-secondary);
	margin-top: 8px;
	font-weight: 500;
}

/* ---- DEMO ---- */
.demo {
	padding: 100px 0;
}

.demo-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
	align-items: start;
}

.terminal {
	background: #0a0f1a;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.terminal-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: #111827;
	border-bottom: 1px solid var(--border);
}

.terminal-dots {
	display: flex;
	gap: 6px;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.terminal-title {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--text-muted);
}

.terminal-body {
	padding: 20px;
	font-family: var(--font-mono);
	font-size: 0.8125rem;
	line-height: 1.8;
}

.terminal-line {
	white-space: pre-wrap;
}

.terminal-line.spacer {
	height: 8px;
}

.prompt {
	color: var(--accent);
	margin-right: 8px;
	user-select: none;
}

.terminal-output {
	color: var(--text-secondary);
	padding-left: 20px;
}

.comment {
	color: var(--text-muted);
	font-style: italic;
}

.demo-callouts {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.demo-callout {
	display: flex;
	gap: 16px;
	padding: 20px;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: 10px;
	transition: border-color 0.2s;
}

.demo-callout:hover {
	border-color: var(--accent);
}

.demo-callout-icon {
	color: var(--accent);
	font-size: 0.625rem;
	margin-top: 6px;
	flex-shrink: 0;
}

.demo-callout h4 {
	font-size: 0.9375rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.demo-callout p {
	font-size: 0.8125rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ---- COMPARISON ---- */
.comparison {
	padding: 100px 0;
	background: var(--bg-secondary);
}

.comparison-table-wrap {
	overflow-x: auto;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.comparison-table th,
.comparison-table td {
	padding: 16px 20px;
	text-align: left;
	border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
	font-weight: 600;
	color: var(--text-muted);
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: var(--font-mono);
}

.comparison-table thead th.highlight {
	color: var(--accent);
	background: var(--accent-glow);
}

.comparison-table tbody td:first-child {
	font-weight: 500;
	color: var(--text-primary);
}

.negative {
	color: #f87171;
}

.warning {
	color: #fbbf24;
}

.positive {
	color: #34d399;
	font-weight: 600;
	background: rgba(52, 211, 153, 0.05);
}

/* ---- PRICING ---- */
.pricing {
	padding: 100px 0;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: start;
}

.pricing-card {
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	position: relative;
}

.pricing-card-featured {
	border-color: var(--accent);
	box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(239, 68, 68, 0.15);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: white;
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 4px 16px;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pricing-tier {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: var(--font-mono);
}

.pricing-price {
	margin-bottom: 8px;
}

.pricing-amount {
	font-size: 2.5rem;
	font-weight: 700;
}

.pricing-period {
	font-size: 0.875rem;
	color: var(--text-muted);
}

.pricing-desc {
	font-size: 0.8125rem;
	color: var(--text-secondary);
	margin-bottom: 24px;
	line-height: 1.5;
}

.pricing-features {
	list-style: none;
	margin-bottom: 28px;
	flex-grow: 1;
}

.pricing-features li {
	padding: 8px 0;
	font-size: 0.875rem;
	color: var(--text-secondary);
	border-bottom: 1px solid rgba(51, 65, 85, 0.5);
	position: relative;
	padding-left: 22px;
}

.pricing-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #34d399;
	font-weight: 700;
	font-size: 0.75rem;
}

.pricing-features li.disabled {
	color: var(--text-muted);
}

.pricing-features li.disabled::before {
	content: '—';
	color: var(--text-muted);
}

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

/* ---- TESTIMONIALS ---- */
.testimonials {
	padding: 100px 0;
	background: var(--bg-secondary);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.testimonial-card {
	background: var(--bg-primary);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 32px;
}

.testimonial-stars {
	color: #fbbf24;
	font-size: 0.875rem;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.testimonial-quote {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 24px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	flex-shrink: 0;
}

.testimonial-name {
	font-weight: 600;
	font-size: 0.9375rem;
}

.testimonial-title {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

/* ---- TEAM ---- */
.team {
	padding: 100px 0;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.team-card {
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 36px 28px;
	text-align: center;
}

.team-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 20px;
	border: 2px solid var(--accent);
}

.team-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.team-role {
	font-size: 0.8125rem;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: 16px;
	font-family: var(--font-mono);
}

.team-bio {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 16px;
}

.team-quote {
	font-size: 0.8125rem;
	color: var(--text-muted);
	font-style: italic;
	border-top: 1px solid var(--border);
	padding-top: 16px;
}

/* ---- CHANGELOG ---- */
.changelog {
	padding: 100px 0;
	background: var(--bg-secondary);
}

.changelog-entries {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.changelog-entry {
	background: var(--bg-primary);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 28px;
}

.changelog-version {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.changelog-tag {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--accent);
	background: var(--accent-glow);
	padding: 2px 10px;
	border-radius: 4px;
	border: 1px solid rgba(239, 68, 68, 0.2);
	margin-bottom: 12px;
}

.changelog-entry h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.changelog-entry p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ---- FAQ ---- */
.faq {
	padding: 100px 0;
}

.faq-list {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.faq-item {
	border: 1px solid var(--border);
	border-radius: 10px;
	overflow: hidden;
	background: var(--bg-secondary);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 0.9375rem;
	font-weight: 600;
	font-family: var(--font-sans);
	cursor: pointer;
	text-align: left;
	transition: color 0.2s;
}

.faq-question:hover {
	color: var(--accent);
}

.faq-chevron {
	font-size: 0.75rem;
	color: var(--text-muted);
	transition: transform 0.3s;
	flex-shrink: 0;
	margin-left: 16px;
}

.faq-item.active .faq-chevron {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-answer p {
	padding: 0 24px 20px;
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* ---- FINAL CTA ---- */
.final-cta {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1025 50%, var(--bg-primary) 100%);
	text-align: center;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.final-cta h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	font-weight: 700;
	margin-bottom: 16px;
}

.final-cta p {
	color: var(--text-secondary);
	font-size: 1.0625rem;
	max-width: 560px;
	margin: 0 auto 32px;
	line-height: 1.7;
}

/* ---- PORTFOLIO BANNER ---- */
.portfolio-banner {
	padding: 64px 0;
	background: var(--bg-secondary);
	border-top: 1px solid var(--border);
}

.portfolio-banner h2 {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 32px;
	color: var(--text-secondary);
}

.portfolio-banner h2 a {
	color: var(--accent);
	font-weight: 700;
}

.portfolio-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 16px;
	font-size: 0.8125rem;
}

.portfolio-links a {
	color: var(--text-muted);
	transition: color 0.2s;
	white-space: nowrap;
}

.portfolio-links a:hover {
	color: var(--accent);
}

.portfolio-current {
	color: var(--accent);
	font-weight: 700;
	white-space: nowrap;
}

/* ---- FOOTER ---- */
.footer {
	padding: 64px 0 32px;
	border-top: 1px solid var(--border);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 48px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 1rem;
	color: var(--text-primary);
	margin-bottom: 12px;
	letter-spacing: 0.05em;
}

.footer-brand p {
	font-size: 0.8125rem;
	color: var(--text-muted);
	margin-bottom: 8px;
	line-height: 1.5;
}

.footer-backed a {
	color: var(--accent);
	font-weight: 600;
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col h4 {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 4px;
	font-family: var(--font-mono);
}

.footer-col a {
	font-size: 0.8125rem;
	color: var(--text-muted);
	transition: color 0.2s;
}

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

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	font-size: 0.75rem;
	color: var(--text-muted);
}

/* ---- MODAL ---- */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

.modal-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.modal {
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 48px;
	max-width: 420px;
	width: 90%;
	text-align: center;
	position: relative;
	transform: translateY(20px) scale(0.95);
	transition: transform 0.3s;
}

.modal-overlay.active .modal {
	transform: translateY(0) scale(1);
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	color: var(--text-muted);
	font-size: 1.5rem;
	cursor: pointer;
	transition: color 0.2s;
}

.modal-close:hover {
	color: var(--text-primary);
}

.modal-icon {
	margin-bottom: 20px;
}

.modal h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.modal p {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	margin-bottom: 28px;
	line-height: 1.6;
}

.modal-dismiss {
	font-family: var(--font-sans);
}

/* ---- ANIMATIONS ---- */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

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

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

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

	.footer-brand {
		grid-column: 1 / -1;
	}

	.hero-cards {
		display: none;
	}

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

@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: var(--bg-primary);
		border-bottom: 1px solid var(--border);
		flex-direction: column;
		padding: 16px 24px;
		gap: 12px;
	}

	.nav-links.active {
		display: flex;
	}

	.nav-toggle {
		display: flex;
	}

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

	.steps {
		flex-direction: column;
		gap: 32px;
	}

	.step-connector {
		width: 2px;
		height: 32px;
		min-width: 2px;
		margin: 0 auto;
	}

	.step-connector::after {
		content: '↓';
		top: 8px;
		right: -6px;
	}

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

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

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

	.team-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

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

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

	.comparison-table {
		font-size: 0.8125rem;
	}

	.comparison-table th,
	.comparison-table td {
		padding: 12px 10px;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 100px 16px 60px;
	}

	.stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.stat-value {
		font-size: 2rem;
	}

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