:root {
    --midnight: #1c2732;
    --indigo: #242851;
    --slate: #434859;
    --steel: #496c84;
    --mist: #e1e9f8;
    --panel: rgba(16, 24, 37, 0.72);
    --panel-border: rgba(225, 233, 248, 0.12);
    --text: #f7f9fc;
    --muted: rgba(225, 233, 248, 0.78);
    --accent: #8bb7da;
    --accent-strong: #b8d7f0;
    --shadow: 0 28px 65px rgba(5, 11, 21, 0.42);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(73, 108, 132, 0.45), transparent 34%),
        radial-gradient(circle at 85% 15%, rgba(36, 40, 81, 0.65), transparent 28%),
        linear-gradient(135deg, #101722 0%, #162131 45%, #1f3040 100%);
    font-family: 'Inter', sans-serif;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    background-image:
        linear-gradient(rgba(225, 233, 248, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(225, 233, 248, 0.04) 1px, transparent 1px);
    background-position: center;
    background-size: 36px 36px;
    content: "";
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
    position: fixed;
    z-index: -2;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: 'Inter', sans-serif;
}

.site-header {
    backdrop-filter: blur(18px);
    background: rgba(12, 18, 28, 0.65);
    border-bottom: 1px solid rgba(225, 233, 248, 0.08);
    left: 0;
    position: sticky;
    right: 0;
    top: 0;
    z-index: 50;
}

.site-nav {
    align-items: center;
    border: 0;
    display: flex;
    justify-content: space-between;
    margin: 0;
    min-height: 78px;
    padding: 12px 0;
}



.brand {
    align-items: center;
    display: inline-flex;
    font-size: 20px;
    font-weight: 700;
    gap: 12px;
    letter-spacing: 0.02em;
}

.brand-mark {
    background: linear-gradient(135deg, var(--mist), var(--accent-strong));
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(184, 215, 240, 0.22);
    color: var(--midnight);
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    min-width: 58px;
    padding: 8px 12px;
}

.brand-copy {
    color: var(--mist);
}

.navbar-collapse {
    flex: 1 1 auto;
    padding: 0;
}

.navbar-nav {
    margin-top: 10px;
}

.navbar-nav .nav-item .nav-link {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 16px 0 16px 28px;
    text-transform: uppercase;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus,
.navbar-nav .nav-item .nav-link.active {
    background: transparent;
    color: var(--mist);
}

.navbar-toggler {
    border: 1px solid rgba(225, 233, 248, 0.2);
    border-radius: 10px;
    padding: 8px 12px;
}

.hero-section,
.content-section {
    padding: 88px 0;
    position: relative;
}

.hero-section {
    overflow: hidden;
    padding-top: 96px;
}

.hero-layout {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
}

.hero-orb {
    border-radius: 999px;
    filter: blur(10px);
    position: absolute;
    z-index: -1;
}

.hero-orb-left {
    background: rgba(73, 108, 132, 0.22);
    height: 280px;
    left: -80px;
    top: 60px;
    width: 280px;
}

.hero-orb-right {
    background: rgba(225, 233, 248, 0.12);
    height: 360px;
    right: -120px;
    top: 40px;
    width: 360px;
}

.eyebrow,
.section-label,
.panel-kicker,
.card-index {
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.hero-section h1,
.content-section h2 {
    color: var(--text);
    font-size: clamp(34px, 6vw, 58px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0 0 24px;
}

.content-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    max-width: 12ch;
}

.hero-copy,
.section-copy,
.launch-list,
.contact-card p,
.contact-list,
.service-card p,
.info-card p,
.form-helper,
.countdown-note {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.hero-actions,
.form-actions,
.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions {
    margin: 30px 0 24px;
}

.btn {
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px 24px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
    color: inherit;
    outline: 0;
    transform: translateY(-1px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 14px 32px rgba(139, 183, 218, 0.28);
    color: var(--midnight);
}

.btn-secondary-outline {
    background: transparent;
    border: 1px solid rgba(225, 233, 248, 0.2);
    color: var(--mist);
}

.hero-points,
.launch-list,
.checklist,
.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-points li,
.launch-list li,
.checklist li,
.contact-list li {
    color: var(--muted);
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
}

.hero-points li::before,
.launch-list li::before,
.checklist li::before {
    color: var(--accent-strong);
    content: "+";
    font-weight: 800;
    left: 0;
    position: absolute;
    top: 0;
}

.panel {
    backdrop-filter: blur(18px);
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.countdown-panel,
.launch-panel,
.checklist-panel,
.contact-card,
.info-card,
.service-card {
    height: 100%;
}

.launch-panel {
    margin-top: 18px;
}

.countdown-panel h2 {
    font-size: 26px;
    margin: 0 0 22px;
    max-width: none;
}

.countdown-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.countdown-card {
    background: linear-gradient(160deg, rgba(225, 233, 248, 0.1), rgba(73, 108, 132, 0.2));
    border: 1px solid rgba(225, 233, 248, 0.08);
    border-radius: 22px;
    min-height: 126px;
    padding: 20px;
}

.countdown-card span {
    color: var(--text);
    display: block;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 12px;
}

.countdown-card small {
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-intro {
    align-items: end;
    margin-bottom: 28px;
}

.feature-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 22px;
}

.feature-strip span,
.social-button {
    background: rgba(225, 233, 248, 0.08);
    border: 1px solid rgba(225, 233, 248, 0.1);
    border-radius: 999px;
    color: var(--mist);
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
}

.alternate-section {
    background: linear-gradient(180deg, rgba(36, 40, 81, 0.25), rgba(28, 39, 50, 0.1));
}

.card-row > div {
    margin-bottom: 24px;
}

.info-card h3,
.service-card h3,
.contact-card h3 {
    color: var(--text);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 14px;
}

.service-card {
    background:
        linear-gradient(160deg, rgba(73, 108, 132, 0.26), rgba(16, 24, 37, 0.78)),
        var(--panel);
}

.panel-form label {
    color: var(--mist);
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.panel-form input,
.panel-form textarea {
    background: rgba(225, 233, 248, 0.06);
    border: 1px solid rgba(225, 233, 248, 0.16);
    border-radius: 18px;
    color: var(--text);
    display: block;
    font-size: 16px;
    margin-bottom: 20px;
    padding: 16px 18px;
    width: 100%;
}

.panel-form input:focus,
.panel-form textarea:focus {
    border-color: rgba(184, 215, 240, 0.55);
    box-shadow: 0 0 0 3px rgba(184, 215, 240, 0.12);
    outline: none;
}

.panel-form input::placeholder,
.panel-form textarea::placeholder {
    color: rgba(225, 233, 248, 0.48);
}

.input-row {
    display: flex;
    gap: 14px;
}

.input-row input {
    margin-bottom: 12px;
}

.input-row .btn {
    flex-shrink: 0;
    margin-top: 1px;
}

.form-helper {
    font-size: 14px;
    margin-bottom: 0;
}

.form-message {
    font-size: 14px;
    font-weight: 600;
    margin-top: 14px;
    min-height: 22px;
}

.form-message.is-error {
    color: #ffd1d1;
}

.form-message.is-success {
    color: #d2f7db;
}

.contact-list strong {
    color: var(--mist);
}

.contact-list a {
    color: var(--accent-strong);
}

.contact-list li {
    padding-left: 0;
}

.social-buttons {
    margin-top: 24px;
}

.social-button:hover,
.social-button:focus {
    background: rgba(184, 215, 240, 0.14);
    border-color: rgba(184, 215, 240, 0.24);
}

.honeypot {
    left: -9999px;
    position: absolute;
}

.site-footer {
    border-top: 1px solid rgba(225, 233, 248, 0.08);
    color: var(--muted);
    padding: 26px 0 32px;
    text-align: center;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 991px) {
    .navbar-collapse {
        border-top: 0;
        box-shadow: none;
        flex: none;
        margin: 0;
        padding: 10px 15px;
        background: rgba(12, 18, 28, 0.95);
        border-radius: 16px;
        margin-top: 10px;
    }

    .navbar-nav {
        margin: 0;
        text-align: left;
    }

    .navbar-nav .nav-item .nav-link {
        padding: 12px 15px;
        margin: 4px 0;
        border-radius: 8px;
    }

    .navbar-nav .nav-item .nav-link:hover {
        background: rgba(225, 233, 248, 0.05);
    }

    .hero-section,
    .content-section {
        padding: 72px 0;
    }

    .hero-layout > div {
        margin-bottom: 24px;
    }

    .content-section h2 {
        max-width: none;
    }

    .input-row {
        flex-direction: column;
    }

    .input-row .btn {
        width: 100%;
    }
}



@media (max-width: 767px) {
    .site-header {
        position: static;
    }

    .hero-section {
        padding-top: 64px;
    }

    .hero-section h1,
    .content-section h2 {
        font-size: 32px;
    }

    .hero-copy,
    .section-copy,
    .launch-list,
    .contact-card p,
    .contact-list,
    .service-card p,
    .info-card p,
    .form-helper,
    .countdown-note {
        font-size: 15px;
    }

    .panel {
        border-radius: 22px;
        padding: 22px;
    }

    .countdown-grid {
        gap: 10px;
    }

    .countdown-card {
        min-height: 112px;
        padding: 16px;
    }

    .countdown-card span {
        font-size: 34px;
    }
}
