:root {
	color-scheme: light;
	/* Bold color palette - Dropbox-inspired */
	--bg: #ffffff;
	--bg-secondary: #FFF5E1;
	--bg-tertiary: #E8F5E9;
	--text: #1a1a1a;
	--text-secondary: #4a4a4a;
	--text-tertiary: #6a6a6a;
	
	/* Strong brand colors - no gradients */
	--primary: #0061FF;
	--primary-dark: #0047CC;
	--primary-light: #4D94FF;
	--secondary: #FF6B00;
	--accent: #00D4AA;
	--purple: #7B61FF;
	--pink: #FF3D8E;
	--yellow: #FFD233;
	--success: #00C853;
	--warning: #FF8F00;
	
	/* Legacy gradient support (minimal use) */
	--gradient-primary: linear-gradient(135deg, #0061FF 0%, #7B61FF 100%);
	--gradient-blue: linear-gradient(135deg, #0061FF 0%, #0047CC 100%);
	--gradient-cyan: linear-gradient(135deg, #00D4AA 0%, #00A67E 100%);
	--gradient-purple: linear-gradient(135deg, #7B61FF 0%, #5E47CC 100%);
	--gradient-hero: #ffffff;
	--gradient-feature: rgba(0, 97, 255, 0.08);
	
	/* Bold borders and dramatic shadows */
	--border: #000000;
	--border-light: #d0d0d0;
	--shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
	--shadow-md: 0 6px 12px 0 rgba(0, 0, 0, 0.2);
	--shadow-lg: 0 12px 24px 0 rgba(0, 0, 0, 0.25);
	--shadow-xl: 0 20px 40px 0 rgba(0, 0, 0, 0.3);
	--shadow-bold: 8px 8px 0 0 rgba(0, 0, 0, 1);
	--shadow-colored: 8px 8px 0 0 var(--secondary);
	--shadow-glow: 0 0 30px rgba(0, 97, 255, 0.4);
	
	/* Spacing */
	--radius: 12px;
	--radius-lg: 16px;
	--spacing-xs: 8px;
	--spacing-sm: 16px;
	--spacing-md: 24px;
	--spacing-lg: 48px;
	--spacing-xl: 72px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	font-weight: 700;
	color: var(--text);
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: -0.01em;
	margin-bottom: 1rem;
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 0.75rem;
}

p {
	font-size: 1.125rem;
	color: var(--text-secondary);
	line-height: 1.75;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--primary);
}

/* Container */
.container {
	width: min(1280px, 92%);
	margin: 0 auto;
	padding: 0 var(--spacing-sm);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid var(--border-light);
	box-shadow: var(--shadow-sm);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--spacing-sm) 0;
	gap: var(--spacing-md);
}

.logo {
	font-weight: 900;
	font-size: 1.75rem;
	letter-spacing: -0.02em;
	color: var(--text);
	text-transform: uppercase;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	flex-wrap: wrap;
	font-weight: 500;
	font-size: 0.95rem;
}

.nav-links a:not(.cta) {
	color: var(--text-secondary);
	position: relative;
	padding: 4px 0;
}

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

.nav-links a:not(.cta)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s ease;
}

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

/* Buttons - Bold Style */
.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 18px 36px;
	border-radius: var(--radius);
	border: 3px solid var(--border);
	background: var(--primary);
	color: white;
	font-weight: 700;
	font-size: 1.125rem;
	cursor: pointer;
	box-shadow: var(--shadow-bold);
	transition: all 0.2s ease;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.cta:hover {
	transform: translate(4px, 4px);
	box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 1);
	background: var(--primary-dark);
}

.cta:active {
	transform: translate(8px, 8px);
	box-shadow: none;
}

.cta.secondary {
	background: var(--secondary);
	color: white;
	box-shadow: var(--shadow-colored);
}

.cta.secondary:hover {
	background: #E55F00;
	transform: translate(4px, 4px);
	box-shadow: 4px 4px 0 0 var(--secondary);
}

/* Hero Section - Bold Style */
.hero {
	position: relative;
	padding: var(--spacing-xl) 0;
	background: var(--yellow);
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60%;
	background: var(--primary);
	clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-lg);
	align-items: center;
	z-index: 1;
}

@media (max-width: 768px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
	}
}

.hero-content h1 {
	color: var(--text);
	text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.badge-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-sm);
	margin: var(--spacing-md) 0;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	background: var(--text);
	border: 3px solid var(--text);
	border-radius: var(--radius);
	font-size: 0.875rem;
	font-weight: 700;
	color: white;
	box-shadow: 4px 4px 0 0 var(--secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.badge::before {
	content: '✓';
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: var(--accent);
	color: var(--text);
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 900;
}

.cta-row {
	display: flex;
	gap: var(--spacing-sm);
	margin-top: var(--spacing-md);
	flex-wrap: wrap;
}

/* Hero Card - Bold Style */
.hero-card {
	background: white;
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	box-shadow: var(--shadow-bold);
	border: 4px solid var(--border);
	position: relative;
	overflow: hidden;
}

.hero-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background: var(--accent);
}

/* Section */
.section {
	padding: var(--spacing-xl) 0;
}

.section-alt {
	background: var(--bg-secondary);
}

.section-title {
	text-align: center;
	margin-bottom: var(--spacing-lg);
}

.section-subtitle {
	text-align: center;
	font-size: 1.25rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto var(--spacing-lg);
}

/* Grid Layouts */
.grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-md);
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-md);
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--spacing-md);
}

/* Cards - Bold Style */
.card {
	background: white;
	border-radius: var(--radius);
	padding: var(--spacing-lg);
	border: 4px solid var(--border);
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-bold);
}

.card::after {
	display: none;
}

.card:hover {
	transform: translate(-4px, -4px);
	box-shadow: 12px 12px 0 0 rgba(0, 0, 0, 1);
}

.card > * {
	position: relative;
	z-index: 1;
}

.card h3 {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	margin-bottom: var(--spacing-sm);
}

.card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: var(--primary);
	color: white;
	border-radius: var(--radius);
	font-size: 1.75rem;
	margin-bottom: var(--spacing-sm);
	border: 3px solid var(--border);
	box-shadow: 4px 4px 0 0 var(--secondary);
}

/* Feature Cards */
.feature-card {
	text-align: center;
}

.feature-card .card-icon {
	margin: 0 auto var(--spacing-sm);
}

/* Stats */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--spacing-md);
	text-align: center;
}

.stat {
	padding: var(--spacing-md);
}

.stat-value {
	font-size: 3.5rem;
	font-weight: 900;
	color: var(--primary);
	line-height: 1;
	margin-bottom: var(--spacing-xs);
	text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.stat-label {
	font-size: 1rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* Testimonials - Bold Style */
.testimonial {
	background: white;
	padding: var(--spacing-lg);
	border-radius: var(--radius);
	border: 4px solid var(--border);
	box-shadow: var(--shadow-bold);
	transition: all 0.2s ease;
}

.testimonial:hover {
	transform: translate(-4px, -4px);
	box-shadow: 12px 12px 0 0 rgba(0, 0, 0, 1);
}

.testimonial p {
	font-style: italic;
	margin-bottom: var(--spacing-sm);
	color: var(--text);
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	font-size: 0.9rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* Footer */
.footer {
	background: var(--text);
	color: white;
	padding: var(--spacing-lg) 0 var(--spacing-md);
	margin-top: var(--spacing-xl);
}

.footer a {
	color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
	color: white;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--spacing-lg);
	margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
	color: white;
	margin-bottom: var(--spacing-sm);
	font-size: 1rem;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-xs);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: var(--spacing-md);
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
	text-align: center;
}

.text-gradient {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
