:root {
    --pre-page-bg: #edf3f9;
    --pre-surface: rgba(255, 255, 255, 0.78);
    --pre-surface-strong: #ffffff;
    --pre-border: rgba(20, 47, 79, 0.09);
    --pre-border-strong: rgba(20, 47, 79, 0.14);
    --pre-text: #11263f;
    --pre-muted: #687b91;
    --pre-navy: #0f2742;
    --pre-blue: #2f87ff;
    --pre-blue-deep: #1f64cf;
    --pre-blue-soft: rgba(47, 135, 255, 0.1);
    --pre-shadow: 0 32px 80px rgba(15, 34, 57, 0.12);
    --pre-shadow-soft: 0 22px 46px rgba(15, 34, 57, 0.08);
    --pre-radius-xl: 36px;
    --pre-radius-lg: 28px;
    --pre-radius-md: 22px;
    --pre-radius-sm: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.prelaunch-page {
    position: relative;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--pre-text);
    font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 0% 0%, rgba(47, 135, 255, 0.08), transparent 28%),
        radial-gradient(circle at 100% 10%, rgba(15, 39, 66, 0.08), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, var(--pre-page-bg) 100%);
}

.prelaunch-page a {
    color: inherit;
    text-decoration: none;
}

.prelaunch-page img,
.prelaunch-page svg {
    display: block;
}

.prelaunch-page svg path {
    fill: currentColor;
}

.prelaunch-aura {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    filter: blur(10px);
}

.prelaunch-aura--left {
    top: -120px;
    left: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 135, 255, 0.14), transparent 68%);
}

.prelaunch-aura--right {
    top: 120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 39, 66, 0.1), transparent 72%);
}

.prelaunch-shell {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 32px));
    margin: 20px auto;
    border: 1px solid var(--pre-border);
    border-radius: var(--pre-radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.56)),
        rgba(255, 255, 255, 0.56);
    box-shadow: var(--pre-shadow);
    backdrop-filter: blur(22px);
}

.prelaunch-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at top left, rgba(47, 135, 255, 0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(15, 39, 66, 0.06), transparent 28%);
    pointer-events: none;
}

.prelaunch-nav,
.prelaunch-main,
.prelaunch-footer {
    position: relative;
    z-index: 1;
}

.prelaunch-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px 34px 0;
}

.prelaunch-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.prelaunch-brand__logo {
    height: 36px;
    width: auto;
}

.prelaunch-brand__name {
    color: var(--pre-navy);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.prelaunch-nav__badge {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(135deg, rgba(15, 39, 66, 0.98), rgba(33, 72, 110, 0.96));
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(15, 39, 66, 0.2);
}

.prelaunch-main {
    padding: 0 34px;
}

.prelaunch-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 430px);
    gap: 52px;
    align-items: center;
    padding: 92px 0 88px;
}

.prelaunch-status {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.prelaunch-pill {
    display: inline-flex;
    align-items: center;
    min-height: 35px;
    padding: 0 15px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 39, 66, 0.98), rgba(30, 67, 104, 0.95));
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.prelaunch-pill--soft {
    background: var(--pre-blue-soft);
    color: var(--pre-blue-deep);
}

.prelaunch-title {
    margin: 0;
    max-width: 12.4ch;
    color: var(--pre-navy);
    font-size: clamp(2.75rem, 4.9vw, 4.75rem);
    line-height: 0.98;
    letter-spacing: -0.062em;
    text-wrap: balance;
}

.prelaunch-title__line {
    display: block;
}

.prelaunch-subtitle {
    margin: 22px 0 0;
    max-width: 31rem;
    color: var(--pre-muted);
    font-size: 1.06rem;
    line-height: 1.72;
}

.prelaunch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.prelaunch-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease;
}

.prelaunch-button span,
.prelaunch-contact__mail span {
    display: inline-block;
}

.prelaunch-button svg,
.prelaunch-contact__mail svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.prelaunch-button:hover {
    transform: translateY(-2px);
}

.prelaunch-button--primary {
    background: linear-gradient(135deg, #3d91ff 0%, var(--pre-blue-deep) 100%);
    color: #ffffff;
    box-shadow:
        0 20px 40px rgba(47, 135, 255, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.prelaunch-button--secondary {
    border-color: rgba(20, 47, 79, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--pre-text);
    box-shadow: 0 14px 30px rgba(15, 34, 57, 0.06);
}

.prelaunch-hero__visual {
    position: relative;
}

.prelaunch-platform {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border-radius: 34px;
    background: linear-gradient(180deg, #102c49 0%, #0b1f33 100%);
    box-shadow: 0 36px 70px rgba(10, 24, 40, 0.28);
}

.prelaunch-platform::before {
    content: "";
    position: absolute;
    inset: auto -60px -90px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 135, 255, 0.18), transparent 70%);
}

.prelaunch-platform__chrome {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.prelaunch-platform__chrome span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.52);
}

.prelaunch-platform__toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.prelaunch-platform__chip {
    display: inline-flex;
    align-items: center;
    min-height: 35px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.83rem;
    font-weight: 700;
}

.prelaunch-listing-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: var(--pre-surface-strong);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.prelaunch-listing-card__media {
    position: relative;
    height: 250px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.prelaunch-listing-card__media::before {
    content: "";
    position: absolute;
    inset: auto 42px 26px;
    height: 18px;
    border-radius: 999px;
    background: rgba(15, 39, 66, 0.08);
    filter: blur(10px);
}

.prelaunch-listing-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prelaunch-listing-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 30, 49, 0.04), rgba(12, 30, 49, 0.22)),
        linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08));
}

.prelaunch-listing-card__tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 39, 66, 0.9);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.prelaunch-overlay-card {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    width: 168px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 34px rgba(12, 30, 49, 0.16);
    backdrop-filter: blur(12px);
}

.prelaunch-overlay-card__eyebrow {
    color: var(--pre-navy);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prelaunch-overlay-card__search {
    height: 12px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(47, 135, 255, 0.28), rgba(47, 135, 255, 0.12));
}

.prelaunch-overlay-card__row {
    display: grid;
    gap: 7px;
    margin-top: 12px;
}

.prelaunch-overlay-card__row span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: rgba(15, 39, 66, 0.12);
}

.prelaunch-overlay-card__row span:last-child {
    width: 78%;
}

.prelaunch-overlay-card__row--short span {
    width: 56%;
}

.prelaunch-listing-card__body {
    padding: 22px;
}

.prelaunch-listing-card__topline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--pre-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.prelaunch-listing-card__title {
    margin: 12px 0 0;
    color: var(--pre-navy);
    font-size: 1.34rem;
    line-height: 1.22;
    letter-spacing: -0.04em;
}

.prelaunch-listing-card__price {
    margin-top: 18px;
    color: var(--pre-blue);
    font-size: 2.05rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.prelaunch-listing-card__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.prelaunch-listing-card__facts div {
    display: grid;
    gap: 5px;
    padding: 13px 12px;
    border: 1px solid rgba(20, 47, 79, 0.06);
    border-radius: 16px;
    background: #f7faff;
}

.prelaunch-listing-card__facts span {
    color: var(--pre-muted);
    font-size: 0.79rem;
    font-weight: 600;
}

.prelaunch-listing-card__facts strong {
    color: var(--pre-navy);
    font-size: 0.93rem;
    font-weight: 800;
}

.prelaunch-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 0 0 82px;
}

.prelaunch-feature-card {
    padding: 28px;
    border: 1px solid rgba(20, 47, 79, 0.06);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--pre-shadow-soft);
}

.prelaunch-feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(47, 135, 255, 0.12), rgba(47, 135, 255, 0.05));
    color: var(--pre-blue);
}

.prelaunch-feature-card h3 {
    margin: 20px 0 10px;
    color: var(--pre-navy);
    font-size: 1.16rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.prelaunch-feature-card p {
    margin: 0;
    color: var(--pre-muted);
    font-size: 0.97rem;
    line-height: 1.72;
}

.prelaunch-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 34px;
    border: 1px solid rgba(20, 47, 79, 0.06);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 251, 255, 0.9));
    box-shadow: var(--pre-shadow-soft);
}

.prelaunch-contact__copy {
    max-width: 34rem;
}

.prelaunch-contact__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 39, 66, 0.08);
    color: var(--pre-navy);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.prelaunch-contact__title {
    margin: 16px 0 0;
    color: var(--pre-navy);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.prelaunch-contact__text {
    margin: 12px 0 0;
    color: var(--pre-muted);
    font-size: 1rem;
    line-height: 1.72;
}

.prelaunch-contact__actions {
    display: grid;
    justify-items: end;
    gap: 18px;
}

.prelaunch-contact__mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 39, 66, 0.98), rgba(29, 68, 108, 0.96));
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
    box-shadow:
        0 16px 32px rgba(15, 39, 66, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.prelaunch-button--primary:hover,
.prelaunch-contact__mail:hover {
    box-shadow:
        0 24px 42px rgba(47, 135, 255, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.prelaunch-button--secondary:hover {
    border-color: rgba(47, 135, 255, 0.18);
    box-shadow: 0 18px 34px rgba(15, 34, 57, 0.08);
}

.prelaunch-contact__mail span,
.prelaunch-contact__mail svg {
    color: #ffffff;
}

.prelaunch-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.prelaunch-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(20, 47, 79, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--pre-navy);
    box-shadow: 0 14px 30px rgba(15, 34, 57, 0.08);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease;
}

.prelaunch-social:hover {
    transform: translateY(-2px);
    border-color: rgba(47, 135, 255, 0.22);
    color: var(--pre-blue);
    box-shadow: 0 18px 34px rgba(15, 34, 57, 0.12);
}

.prelaunch-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 34px 34px;
    color: var(--pre-muted);
    font-size: 0.92rem;
}

@media (max-width: 1024px) {
    .prelaunch-hero {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 72px;
    }

    .prelaunch-title {
        max-width: 12ch;
    }

    .prelaunch-features {
        grid-template-columns: 1fr;
    }

    .prelaunch-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .prelaunch-contact__actions,
    .prelaunch-socials {
        justify-items: start;
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .prelaunch-shell {
        width: min(100% - 20px, 100%);
        margin: 10px auto;
        border-radius: 28px;
    }

    .prelaunch-nav {
        padding: 20px 20px 0;
    }

    .prelaunch-main {
        padding: 0 20px;
    }

    .prelaunch-hero {
        gap: 30px;
        padding: 60px 0 72px;
    }

    .prelaunch-title {
        max-width: 12ch;
        font-size: clamp(2.45rem, 9.8vw, 3.7rem);
    }

    .prelaunch-subtitle {
        font-size: 1rem;
        line-height: 1.68;
    }

    .prelaunch-platform {
        padding: 14px;
        border-radius: 28px;
    }

    .prelaunch-listing-card__media {
        height: 220px;
    }

    .prelaunch-overlay-card {
        right: 12px;
        bottom: 12px;
        width: 150px;
        padding: 12px;
    }

    .prelaunch-listing-card__facts {
        grid-template-columns: 1fr;
    }

    .prelaunch-contact {
        padding: 24px;
    }

    .prelaunch-footer {
        flex-direction: column;
        padding: 26px 20px 28px;
    }
}
