:root {
    --ink: #f7f7f2;
    --muted: rgba(240, 245, 238, 0.67);
    --dark: #07140f;
    --dark-soft: #0c1b15;
    --line: rgba(255, 255, 255, 0.14);
    --brand: #f2a12b;
    --brand-bright: #ffb84c;
    --green: #8ecf6a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--dark);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.site-shell {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.site-header {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 20;
}

.site-header .navbar {
    border-bottom: 1px solid var(--line);
}

.navbar-brand img {
    display: block;
    height: 72px;
    object-fit: contain;
    object-position: left center;
    width: 188px;
}

.status-pill {
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(7, 20, 15, 0.46);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.72rem;
    font-weight: 700;
    gap: 0.55rem;
    letter-spacing: 0.09em;
    padding: 0.62rem 0.9rem;
    text-transform: uppercase;
}

.status-dot {
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(142, 207, 106, 0.12);
    height: 7px;
    position: relative;
    width: 7px;
}

.status-dot::after {
    animation: ping 2s infinite;
    border: 1px solid var(--green);
    border-radius: 50%;
    content: "";
    inset: -5px;
    position: absolute;
}

.icon-button {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    text-decoration: none;
    transition: 180ms ease;
    width: 42px;
}

.icon-button:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #1a1308;
    transform: translateY(-2px);
}

.hero-section {
    min-height: 100svh;
    position: relative;
}

.hero-photo,
.hero-overlay,
.hero-grid {
    inset: 0;
    position: absolute;
}

.hero-photo {
    background-image: url("../../577770230_122140596506907507_3321327814465797324_n.jpg");
    background-position: 44% center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: saturate(0.68) contrast(1.06);
    transform: scale(1.015);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(5, 17, 12, 0.97) 0%, rgba(5, 17, 12, 0.86) 42%, rgba(5, 17, 12, 0.56) 70%, rgba(5, 17, 12, 0.76) 100%),
        linear-gradient(0deg, rgba(4, 13, 9, 0.93) 0%, transparent 39%);
}

.hero-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(to right, #000, transparent 72%);
}

.hero-copy {
    padding-bottom: 7.5rem;
    padding-top: 8.5rem;
    position: relative;
    z-index: 2;
}

.eyebrow {
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    font-size: 0.72rem;
    font-weight: 700;
    gap: 0.65rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.65rem;
    text-transform: uppercase;
}

.eyebrow i {
    color: var(--brand-bright);
    font-size: 0.9rem;
}

.display-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(3.1rem, 6.2vw, 6.9rem);
    font-weight: 700;
    letter-spacing: -0.065em;
    line-height: 0.96;
    margin: 0 0 1.8rem;
    max-width: 960px;
}

.display-title span {
    color: var(--brand-bright);
}

.hero-description {
    color: var(--muted);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.78;
    margin-bottom: 1.7rem;
    max-width: 690px;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.service-row span {
    align-items: center;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.79);
    display: flex;
    font-size: 0.76rem;
    font-weight: 600;
    gap: 0.45rem;
    padding: 0.55rem 0.78rem;
}

.service-row b {
    font-size: 0.95rem;
    font-weight: normal;
}

.btn-brand,
.btn-quiet {
    align-items: center;
    border-radius: 2px;
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 700;
    gap: 1.1rem;
    min-height: 51px;
    padding: 0.8rem 1.2rem;
}

.btn-brand {
    background: var(--brand);
    border-color: var(--brand);
    color: #1a1308;
}

.btn-brand:hover,
.btn-brand:focus {
    background: var(--brand-bright);
    border-color: var(--brand-bright);
    color: #1a1308;
    transform: translateY(-2px);
}

.btn-quiet {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--ink);
}

.btn-quiet:hover,
.btn-quiet:focus {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--ink);
}

.launch-card {
    backdrop-filter: blur(22px);
    background: linear-gradient(145deg, rgba(13, 29, 22, 0.91), rgba(7, 18, 13, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.17);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
    margin-bottom: 7rem;
    margin-top: 8.5rem;
    overflow: hidden;
    padding: clamp(1.6rem, 3vw, 2.35rem);
    position: relative;
    z-index: 3;
}

.launch-card::before {
    background: linear-gradient(90deg, var(--brand), transparent);
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.card-topline {
    align-items: center;
    color: rgba(255, 255, 255, 0.52);
    display: flex;
    font-size: 0.62rem;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: 0.13em;
    margin-bottom: 2.5rem;
}

.mono-label {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.live-label {
    align-items: center;
    display: flex;
    gap: 0.4rem;
}

.live-label i {
    background: var(--green);
    border-radius: 50%;
    height: 5px;
    width: 5px;
}

.launch-icon {
    align-items: center;
    background: rgba(242, 161, 43, 0.12);
    border: 1px solid rgba(242, 161, 43, 0.32);
    border-radius: 50%;
    display: flex;
    font-size: 1.3rem;
    height: 50px;
    justify-content: center;
    margin-bottom: 1.25rem;
    width: 50px;
}

.card-kicker {
    color: var(--brand-bright);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}

.launch-card h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.16;
    margin-bottom: 1rem;
}

.card-copy {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.form-label {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.55rem;
    text-transform: uppercase;
}

.email-control {
    align-items: center;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    min-height: 53px;
    padding: 0.35rem 0.4rem 0.35rem 0.9rem;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.email-control:focus-within {
    border-color: rgba(242, 161, 43, 0.68);
    box-shadow: 0 0 0 3px rgba(242, 161, 43, 0.1);
}

.email-control > i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.92rem;
}

.email-control input {
    background: transparent;
    border: 0;
    color: #fff;
    flex: 1;
    font-size: 0.82rem;
    min-width: 0;
    outline: none;
    padding: 0.5rem 0.65rem;
}

.email-control input::placeholder {
    color: rgba(255, 255, 255, 0.37);
}

.email-control button {
    background: var(--brand);
    border: 0;
    color: #171108;
    font-size: 0.74rem;
    font-weight: 800;
    min-height: 39px;
    min-width: 66px;
    padding: 0.55rem 0.8rem;
    text-transform: uppercase;
}

.email-control button:hover:not(:disabled) {
    background: var(--brand-bright);
}

.email-control button:disabled,
.email-control input:disabled {
    cursor: wait;
    opacity: 0.72;
}

.form-message {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
    line-height: 1.4;
    margin: 0.55rem 0 0;
    min-height: 1.05rem;
}

.form-message.success {
    color: #a9e589;
}

.form-message.error {
    color: #ff9b8e;
}

.build-track {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.6rem;
    padding-top: 1.4rem;
}

.track-line {
    background: rgba(255, 255, 255, 0.12);
    height: 2px;
    margin: 0 0 0.75rem;
    overflow: hidden;
}

.track-line span {
    animation: progressGlow 3s ease-in-out infinite alternate;
    background: linear-gradient(90deg, var(--green), var(--brand));
    display: block;
    height: 100%;
    width: 64%;
}

.track-labels {
    color: rgba(255, 255, 255, 0.37);
    display: flex;
    font-size: 0.62rem;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.track-labels span {
    align-items: center;
    display: flex;
    gap: 0.35rem;
}

.track-labels .done,
.track-labels .active {
    color: rgba(255, 255, 255, 0.7);
}

.track-labels .active i {
    animation: pulse 1.6s infinite;
    background: var(--brand-bright);
    border-radius: 50%;
    height: 5px;
    width: 5px;
}

.bottom-bar {
    bottom: 0;
    left: 0;
    padding: 1.3rem 0;
    position: absolute;
    right: 0;
    z-index: 5;
}

.bottom-bar::before {
    background: var(--line);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.location-link {
    align-items: center;
    color: rgba(255, 255, 255, 0.64);
    display: inline-flex;
    font-size: 0.75rem;
    gap: 0.65rem;
    text-decoration: none;
    transition: color 180ms ease;
}

.location-link i {
    color: var(--brand-bright);
}

.location-link:hover,
.footer-email:hover {
    color: #fff;
}

.footer-email,
.copyright {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.75rem;
    text-decoration: none;
}

.copyright {
    border-left: 1px solid var(--line);
    margin-left: 0.85rem;
    padding-left: 0.85rem;
}

.ambient {
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.ambient-one {
    background: rgba(242, 161, 43, 0.12);
    height: 300px;
    right: -100px;
    top: 15%;
    width: 300px;
}

.reveal-item {
    animation: revealUp 700ms both;
}

.hero-copy .reveal-item:nth-child(2) { animation-delay: 80ms; }
.hero-copy .reveal-item:nth-child(3) { animation-delay: 150ms; }
.hero-copy .reveal-item:nth-child(4) { animation-delay: 220ms; }
.hero-copy .reveal-item:nth-child(5) { animation-delay: 290ms; }
.launch-card.reveal-item { animation-delay: 260ms; }

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

@keyframes ping {
    0% { opacity: 0.7; transform: scale(0.7); }
    75%, 100% { opacity: 0; transform: scale(1.6); }
}

@keyframes pulse {
    50% { box-shadow: 0 0 0 5px rgba(255, 184, 76, 0.1); }
}

@keyframes progressGlow {
    from { filter: brightness(0.85); }
    to { filter: brightness(1.25); }
}

@media (max-width: 991.98px) {
    .hero-photo {
        background-position: 58% center;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(5, 17, 12, 0.84) 0%, rgba(5, 17, 12, 0.88) 38%, rgba(5, 17, 12, 0.97) 100%);
    }

    .hero-copy {
        padding-bottom: 0;
        padding-top: 10rem;
    }

    .launch-card {
        margin-bottom: 8.5rem;
        margin-top: 0;
    }

    .bottom-bar {
        background: rgba(5, 15, 10, 0.72);
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 58px;
        width: 152px;
    }

    .display-title {
        font-size: clamp(2.75rem, 13.5vw, 4.2rem);
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .hero-grid {
        background-size: 54px 54px;
    }

    .service-row {
        gap: 0.5rem;
    }

    .service-row span {
        font-size: 0.69rem;
        padding: 0.48rem 0.66rem;
    }

    .btn-brand,
    .btn-quiet {
        justify-content: center;
        width: 100%;
    }

    .launch-card {
        padding: 1.4rem;
    }

    .bottom-bar {
        position: absolute;
    }

    .footer-email {
        display: inline-block;
        max-width: calc(100vw - 120px);
        overflow-wrap: anywhere;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
