:root {
    --primary-blue: #2c5ba9;
    --accent-orange: #f37021;
    --dark-grey: #333;
    --light-grey: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #fff;
    color: var(--dark-grey);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.container {
    padding: 20px;
    z-index: 2;
}

/* Logo Styling */
.logo {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.s-blue { color: var(--primary-blue); }
.g-orange { color: var(--accent-orange); }

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -10px;
}

.highlight { color: var(--accent-orange); }

/* Typography */
h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-grey);
}

.subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
}

/* Status Box */
.status-box {
    display: inline-block;
    padding: 10px 20px;
    background: var(--light-grey);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 40px;
    border: 1px solid #ddd;
}

.status-box i {
    color: var(--accent-orange);
    margin-right: 8px;
}

/* Form Styling */
.cta-form p {
    margin-bottom: 15px;
    font-weight: 600;
}

input[type="email"] {
    padding: 12px 20px;
    width: 300px;
    border: 2px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}

button {
    padding: 12px 25px;
    background: var(--accent-orange);
    color: white;
    border: 2px solid var(--accent-orange);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background: #d45d17;
}

/* Socials & Footer */
.social-links {
    margin-top: 40px;
}

.social-links a {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--accent-orange);
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    color: #999;
}

/* Responsive */
@media (max-width: 600px) {
    h2 { font-size: 1.8rem; }
    input[type="email"] { width: 200px; }
}