:root {
    --primary: #0f4c3a; /* Deep green for Agri */
    --secondary: #d4a373; /* Earthy gold */
    --accent: #219ebc; /* Blue for Industry */
    --bg-color: #f8f9fa;
    --text-main: #2b2d42;
    --text-muted: #6c757d;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    overflow: hidden;
    position: relative;
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    right: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Glass Panel Container */
.container {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* Typography */
.title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rotator-container {
    height: 2.5rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.rotator {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    position: relative;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Elements */
.notify-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.input-group {
    display: flex;
    width: 100%;
    max-width: 500px;
    gap: 0.5rem;
}

input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.2);
}

.btn-primary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 76, 58, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.form-message {
    font-size: 0.9rem;
    height: 1rem;
    color: var(--primary);
    font-weight: 600;
}

/* Footer */
.footer {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .title { font-size: 3rem; }
    .subtitle { font-size: 1.25rem; }
    .input-group { flex-direction: column; }
    .btn-primary { width: 100%; }
}
