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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    color: #4a90e2;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */

.navbar {
    background: #2c3e50;
    color: white;
    padding: 1rem 2rem;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: inherit;
    text-decoration: none;
}

.brand svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Hero */

.hero {
    background: linear-gradient(135deg, #eef1f4 0%, #e2e8ee 100%);
    color: #333;
    padding: 5rem 2rem 6rem;
    margin-top: 2rem;
    text-align: center;
}

.badge {
    display: inline-block;
    background: #4a90e2;
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    color: #2c3e50;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.25rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.notify-box {
    background: white;
    color: #333;
    max-width: 440px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.notify-box h2 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 1.25rem;
    text-align: center;
}

.notify-form {
    display: flex;
    gap: 0.5rem;
}

input[type="email"] {
    flex: 1;
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input[type="email"]:focus {
    outline: none;
    border-color: #4a90e2;
}

.notify-btn {
    padding: 0.75rem 1.5rem;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.notify-btn:hover {
    background: #357abd;
}

.notify-btn:disabled,
.notify-btn:disabled:hover {
    background: #999;
    cursor: not-allowed;
}

/* Honeypot: off-screen, not display:none (some bots skip that) */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.notify-status {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    text-align: center;
    min-height: 1.2em;
}

.notify-status.success {
    color: #2e7d32;
}

.notify-status.error {
    color: #c0392b;
}

.notify-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
}

/* Main sections */

main section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.mission {
    text-align: center;
}

.mission h2,
.roles h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.role-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.role-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.role-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.role-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.role-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Legal pages (privacy, terms) */

.legal h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.legal .updated {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.legal h2 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal h2:first-of-type {
    margin-top: 0;
}

.legal p,
.legal ul {
    color: #555;
    margin-bottom: 1rem;
}

.legal ul {
    padding-left: 1.5rem;
}

.legal li {
    margin-bottom: 0.4rem;
}

/* Footer */

footer {
    background: #2c3e50;
    color: #ecf0f1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-brand svg {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.8rem;
    color: #95a5a6;
}

@media (max-width: 600px) {
    .title {
        font-size: 2.75rem;
    }

    .navbar-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .notify-box {
        padding: 1.75rem;
    }

    .notify-form {
        flex-direction: column;
    }
}
