@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@700&display=swap');
:root {
    --color-primary: #2196F3;
    --color-primary-dark: #1565C0;
    --color-primary-light: #43A047;
    --color-accent: #43A047;
    --color-background: #18181B;
    --color-surface: #232329;
    --color-card: #232329;
    --color-text: #F8F9FA;
    --color-text-secondary: #B0B3B8;
    --gradient-primary: linear-gradient(90deg, #2196F3 0%, #43A047 100%);
}
body {
    font-family: 'Inter', sans-serif;
    background:
        repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 32px),
        linear-gradient(120deg, #0a0a0d 0%, #101014 100%);
    color: var(--color-text);
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6, .wordmark {
    font-family: 'Montserrat', 'Inter', sans-serif !important;
    font-weight: 200 !important;
    letter-spacing: 0;
}
.gradient-text {
    background: linear-gradient(90deg, #388E3C 0%, #FFEB3B 50%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.hero-gradient {
    background: var(--gradient-primary);
}
.card {
    background: transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.3);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(33, 150, 243, 0.15), 0 10px 10px -5px rgba(33, 150, 243, 0.08);
}
.feature-icon {
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1);
}
.nav-link {
    position: relative;
    color: var(--color-text-secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary-light);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link:hover {
    color: var(--color-primary-light);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}
.seedling-logo {
    width: 40px;
    height: 40px;
}
.surface {
    background: transparent;
}
.btn-primary {
    background: #1565C0;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.btn-primary:hover {
    background: #0D47A1;
}
.btn-outline {
    border: 2px solid var(--color-primary-light);
    color: var(--color-primary-light);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.btn-outline:hover {
    background: var(--color-primary-light);
    color: var(--color-background);
}
input, textarea {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid #333;
    font-family: 'Inter', sans-serif;
}
input:focus, textarea:focus {
    border-color: var(--color-primary);
    outline: none;
}
.wordmark {
    font-family: 'Montserrat', 'Inter', sans-serif !important;
    font-weight: 100 !important;
    font-stretch: condensed;
    font-size: 3.5rem !important;
    line-height: 0.9 !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.wordmark sup {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
    margin-left: 0.2rem;
} 