* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root { --primary: 210 75% 45%;
--primary-foreground: 0 0% 100%;
--secondary: 210 30% 20%;
--secondary-foreground: 0 0% 100%;
--accent: 173 80% 40%;
--accent-foreground: 0 0% 100%;
--background: 210 30% 8%;
--foreground: 0 0% 98%;
--card: 210 25% 12%;
--border: 210 20% 25%;
--destructive: 0 84% 60%; --gradient-primary: linear-gradient(135deg, hsl(173, 80%, 40%), hsl(173, 80%, 55%));
--gradient-card: linear-gradient(135deg, hsl(210, 25%, 12%), hsl(210, 20%, 15%)); --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
--shadow-glow: 0 0 30px rgba(20, 184, 166, 0.3), 0 0 60px rgba(20, 184, 166, 0.1);
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background-color: hsl(var(--background));
color: hsl(var(--foreground));
line-height: 1.6;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 1rem;
} h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.2;
}
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
} .btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
font-size: 1rem;
font-weight: 600;
border-radius: 0.5rem;
text-decoration: none;
transition: all 0.3s ease;
cursor: pointer;
border: none;
}
.btn-primary {
background: var(--gradient-primary);
color: hsl(var(--primary-foreground));
box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
transform: scale(1.05);
box-shadow: 0 0 40px rgba(20, 184, 166, 0.4), 0 0 80px rgba(20, 184, 166, 0.2);
}
.btn-hero {
padding: 1.5rem 2rem;
font-size: 1.125rem;
font-weight: 700;
}
.btn-outline {
border: 2px solid hsl(var(--accent));
background: transparent;
color: hsl(var(--foreground));
}
.btn-outline:hover {
background: hsla(var(--accent), 0.1);
} section {
padding: 6rem 1rem;
}
@media (max-width: 768px) {
section {
padding: 3rem 1rem;
}
} .card {
background: var(--gradient-card);
border: 1px solid hsl(var(--border) / 0.5);
border-radius: 1rem;
padding: 1.5rem;
box-shadow: var(--shadow-card);
transition: all 0.3s ease;
}
.card:hover {
box-shadow: var(--shadow-glow);
transform: translateY(-4px);
} .grid {
display: grid;
gap: 1.5rem;
}
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
.grid-cols-2,
.grid-cols-3 {
grid-template-columns: 1fr;
}
} .text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 1rem; }