:root {
    --bg: #030303;
    --panel: rgba(15, 15, 16, 0.78);
    --panel-strong: rgba(20, 20, 22, 0.92);
    --text: #f4f4f4;
    --muted: #b7b7b9;
    --dim: #77777b;
    --orange: #ff6a00;
    --orange-2: #ff9b19;
    --line: rgba(255, 106, 0, 0.42);
    --white-line: rgba(255, 255, 255, 0.13);
    --shadow: 0 0 34px rgba(255, 106, 0, 0.20);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg);
}

body.obdbee-coming-soon-body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.obdbee-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 42px 20px 30px;
    background:
        radial-gradient(circle at 50% 12%, rgba(255, 106, 0, 0.13), transparent 28%),
        radial-gradient(circle at 18% 38%, rgba(255, 106, 0, 0.08), transparent 20%),
        radial-gradient(circle at 82% 40%, rgba(255, 106, 0, 0.08), transparent 20%),
        linear-gradient(180deg, #040404 0%, #070707 46%, #030303 100%);
}

.obdbee-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.72;
    background:
        linear-gradient(115deg, transparent 0 27%, rgba(255, 106, 0, 0.16) 27.1%, transparent 27.5% 100%),
        linear-gradient(245deg, transparent 0 33%, rgba(255, 255, 255, 0.07) 33.1%, transparent 33.4% 100%);
    mask-image: radial-gradient(circle at center, black 0, transparent 78%);
}

.obdbee-page::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.18;
}

.landing-shell {
    position: relative;
    z-index: 2;
    width: min(1120px, 100%);
    margin: 0 auto;
    text-align: center;
}

.brand-block {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.brand-logo {
    width: min(540px, 88vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 106, 0, 0.28));
}

.title-block {
    margin-top: -6px;
}

.small-title,
.section-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 900;
}

.small-title span,
.section-label span {
    display: block;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

h1 {
    margin: 12px 0 12px;
    text-transform: uppercase;
    line-height: 0.94;
    font-weight: 950;
    letter-spacing: 0.025em;
    text-shadow: 0 0 22px rgba(255,255,255,0.09);
}

h1 span,
h1 strong {
    display: block;
}

h1 span {
    font-size: clamp(54px, 9vw, 108px);
    color: #f1f1f1;
}

h1 strong {
    font-size: clamp(44px, 7.5vw, 92px);
    color: var(--orange);
    font-style: normal;
    text-shadow: 0 0 26px rgba(255, 106, 0, 0.35);
}

.divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin: 14px auto 20px;
    color: var(--orange);
    font-size: 25px;
}

.divider span {
    width: 210px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.intro,
.subintro {
    margin: 0;
    color: #ededed;
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.45;
    text-shadow: 0 0 18px rgba(255,255,255,0.08);
}

.subintro {
    margin-top: 8px;
    color: #d8d8db;
    font-size: clamp(18px, 2.4vw, 24px);
}

.notify-card {
    width: min(800px, 100%);
    margin: 42px auto 38px;
}

.notify-card h2 {
    margin: 0 0 12px;
    color: #f3f3f3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(20px, 3vw, 26px);
}

.notify-form {
    display: grid;
    grid-template-columns: 1fr 230px;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(0,0,0,0.45);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04), var(--shadow);
    overflow: hidden;
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    border-right: 1px solid rgba(255, 106, 0, 0.34);
}

.input-wrap span {
    color: #fff;
    font-size: 24px;
}

.notify-form input {
    width: 100%;
    height: 70px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 20px;
}

.notify-form input::placeholder {
    color: #9a9a9f;
}

.notify-form button {
    border: 0;
    cursor: pointer;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 18px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.notify-form button:hover {
    filter: brightness(1.08);
}

.notify-form button span {
    margin-left: 10px;
    font-size: 24px;
}

.privacy {
    margin: 12px 0 0;
    color: #96969a;
    font-size: 15px;
}

.form-message {
    margin: 0 0 14px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
}

.form-message.success {
    color: #111;
    background: #ff9b19;
}

.form-message.error {
    color: #fff;
    background: rgba(185, 38, 38, 0.9);
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 36px auto 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 42px rgba(0,0,0,0.45);
}

.features article {
    position: relative;
    padding: 30px 22px 28px;
}

.features article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    bottom: 22px;
    width: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.feature-icon {
    color: var(--orange);
    font-size: 46px;
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(255, 106, 0, 0.24);
}

.features h3 {
    margin: 0 0 12px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.22;
}

.features p {
    margin: 0;
    color: #c7c7ca;
    font-size: 15px;
    line-height: 1.5;
}

.contact-block {
    margin-top: 10px;
}

.contact-line {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin: 24px 0 20px;
    color: #f1f1f1;
    font-size: clamp(18px, 2.5vw, 25px);
}

.contact-line i {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.42);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin: 14px 0 36px;
}

.socials a {
    width: 48px;
    height: 48px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--orange);
    font-weight: 900;
    font-size: 24px;
    transition: background 0.2s ease, color 0.2s ease;
}

.socials a:hover {
    background: var(--orange);
    color: #080808;
}

.launch-box {
    width: min(610px, 100%);
    margin: 0 auto 30px;
    padding: 20px 24px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(15, 15, 16, 0.82);
    box-shadow: var(--shadow);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.045em;
    font-size: clamp(20px, 3vw, 27px);
}

.launch-box span,
.launch-box strong {
    color: var(--orange);
}

.launch-box em {
    font-style: normal;
    color: #fff;
}

.footer-note {
    color: #8e8e92;
    font-size: 15px;
}

.bg-grid {
    position: absolute;
    width: 320px;
    height: 520px;
    opacity: 0.20;
    pointer-events: none;
    background:
        linear-gradient(30deg, transparent 24%, rgba(255, 106, 0, 0.50) 25%, rgba(255, 106, 0, 0.50) 26%, transparent 27%),
        linear-gradient(150deg, transparent 24%, rgba(255, 106, 0, 0.50) 25%, rgba(255, 106, 0, 0.50) 26%, transparent 27%);
    background-size: 72px 42px;
    filter: blur(0.2px);
}

.bg-grid-left {
    left: -90px;
    top: 0;
}

.bg-grid-right {
    right: -80px;
    bottom: 40px;
}

.bg-car,
.bg-scanner {
    position: absolute;
    pointer-events: none;
    opacity: 0.22;
    filter: blur(0.1px);
}

.bg-car {
    right: 3%;
    top: 90px;
    width: 330px;
    height: 120px;
    border: 1px solid rgba(255,255,255,0.10);
    border-top: 2px solid rgba(255,255,255,0.12);
    border-radius: 70% 35% 12% 12%;
    box-shadow: 120px 38px 0 -56px rgba(255, 106, 0, 0.9);
}

.bg-scanner {
    left: 3%;
    top: 180px;
    width: 220px;
    height: 86px;
    border-radius: 18px;
    border: 1px solid rgba(255, 106, 0, 0.24);
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,106,0,0.14), rgba(255,255,255,0.03));
    transform: perspective(420px) rotateY(-25deg) rotateZ(-8deg);
    box-shadow: inset -20px 0 20px rgba(0,0,0,0.55), 0 0 34px rgba(255, 106, 0, 0.10);
}

.bg-scanner::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 13px;
    width: 76px;
    height: 23px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.20);
    box-shadow:
        inset 10px 0 rgba(255,255,255,0.05),
        inset 22px 0 rgba(255,255,255,0.04),
        inset 34px 0 rgba(255,255,255,0.04),
        inset 46px 0 rgba(255,255,255,0.04);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .obdbee-page {
        padding-top: 28px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .features article:nth-child(2)::after {
        display: none;
    }

    .notify-form {
        grid-template-columns: 1fr;
    }

    .input-wrap {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 106, 0, 0.34);
    }

    .notify-form button {
        height: 64px;
    }

    .bg-car,
    .bg-scanner {
        display: none;
    }
}

@media (max-width: 560px) {
    .obdbee-page {
        padding: 20px 14px 26px;
    }

    .brand-logo {
        width: min(410px, 96vw);
    }

    .small-title span,
    .section-label span {
        width: 64px;
    }

    .divider span {
        width: 90px;
    }

    .intro br {
        display: none;
    }

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

    .features article::after {
        display: none;
    }

    .contact-line {
        flex-direction: column;
        gap: 14px;
    }

    .contact-line i {
        display: none;
    }

    .launch-box {
        font-size: 18px;
    }
}
