@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Mono:wght@700&display=swap');

:root {
    --primary: #95C11F;
    --primary-light: #b8e63f;
    --dark: #0C1C49;
    --dark-accent: #1a3d5c;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.4);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background-color: var(--dark);
    min-height: 100-vh;
    overflow-x: hidden;
}

.main-container {
    position: relative;
    min-height: 100vh;
    padding: 80px 24px;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
}

/* Background Elements */
.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-accent) 50%, var(--primary) 100%);
    z-index: -2;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background: radial-gradient(circle at 20% 50%, rgba(149, 193, 31, 0.3) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 20% 50%; }
    50% { background-position: 80% 50%; }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Geometric Shapes */
.shape {
    position: absolute;
    border-width: 4px;
    border-style: solid;
    pointer-events: none;
}

.shape-square {
    top: 5%;
    left: 5%;
    width: 128px;
    height: 128px;
    border-color: rgba(149, 193, 31, 0.1);
    transform: rotate(45deg);
    animation: rotateShape 10s ease-in-out infinite;
}

.shape-circle {
    bottom: 10%;
    right: 5%;
    width: 192px;
    height: 192px;
    border-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: scaleShape 7s ease-in-out infinite;
}

@keyframes rotateShape {
    0%, 100% { transform: rotate(45deg); }
    50% { transform: rotate(65deg); }
}

@keyframes scaleShape {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 80px;
}

/* Header Badge */
.badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(149, 193, 31, 0.3);
    border-radius: 9999px;
    margin-bottom: 24px;
}

.badge span {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    text-transform: uppercase;
}

/* Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Form Card */
.form-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    color: #2d3748;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 14px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #2d3748;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(149, 193, 31, 0.1);
}

.btn-primary {
    width: 100%;
    margin-top: 32px;
    padding: 20px;
    background: linear-gradient(to right, var(--primary), #7da319);
    border: none;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(149, 193, 31, 0.3);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(149, 193, 31, 0.5);
}

/* Feature Cards */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-card {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(149, 193, 31, 0.3);
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(149, 193, 31, 0.2), rgba(149, 193, 31, 0.05));
    border: 1px solid rgba(149, 193, 31, 0.2);
    border-radius: 12px;
    font-size: 1.75rem;
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Stats Section */
.stats-grid {
    margin-top: 128px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-family: 'Space Mono', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
