:root {
    --bg-color: #fafafa;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent-color: #52796f;
    --surface: rgba(255, 255, 255, 0.7);
    --surface-border: rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #ffffff 0%, #f4f4f8 100%);
}

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

.glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(132,169,140,0.15) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    left: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(82,121,111,0.1) 0%, rgba(255,255,255,0) 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -10s;
}

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

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.header {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 4rem;
    min-height: 80px;
}

/* Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 700px;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.title span {
    background: linear-gradient(135deg, #84a98c 0%, #52796f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
}

.description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 300;
}

/* Form */
.notify-form {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 480px;
    position: relative;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    font-weight: 300;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.notify-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(82, 121, 111, 0.1);
}

.notify-form input::placeholder {
    color: #a0a0a0;
}

.btn {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    background: #111111;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 300;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #000000;
}

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

.form-message {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 300;
}

.form-message.success {
    color: #059669;
    opacity: 1;
}

/* Footer */
.footer {
    padding-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
}
