:root {
    color-scheme: dark;
    --bg: #070a15;
    --panel: rgba(18, 22, 43, .72);
    --border: rgba(255,255,255,.10);
    --text: #f7f8ff;
    --muted: #a8aec4;
    --violet: #7c3cff;
    --blue: #258cff;
    --cyan: #21c7ff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 75% 35%, rgba(87,55,190,.20), transparent 34%),
        radial-gradient(circle at 20% 70%, rgba(40,82,190,.10), transparent 38%),
        linear-gradient(135deg, #060913 0%, #0a0e1e 48%, #10122d 100%);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image:
        linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
    background-size: 48px 48px;
}

.background-glow {
    position: fixed;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .22;
    pointer-events: none;
}

.glow-one {
    right: -120px;
    top: 80px;
    background: #7040ff;
}

.glow-two {
    left: 10%;
    bottom: -250px;
    background: #006dff;
}

.page {
    width: min(1500px, 94%);
    min-height: 100vh;
    margin: auto;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero {
    max-width: 850px;
    padding: 60px 30px 50px;
    text-align: center;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.brand-mark {
    width: 78px;
    height: 62px;
    display: grid;
    place-items: center;
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 3px #536dff;
    text-shadow: 0 0 25px rgba(88,68,255,.35);
}

.brand-name {
    font-size: 21px;
    letter-spacing: .42em;
    margin-right: -.42em;
    color: #f3f4fb;
}

.separator {
    width: 125px;
    height: 1px;
    margin: 0 auto 38px;
    background: linear-gradient(90deg, transparent, #6340ff, transparent);
}

.eyebrow {
    margin: 0;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 500;
    letter-spacing: .40em;
    margin-right: -.40em;
}

h1 {
    margin: 8px 0 10px;
    font-size: clamp(52px, 7vw, 102px);
    letter-spacing: -.035em;
    line-height: .98;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(
        90deg,
        #8843ff 5%,
        #6165ff 48%,
        #1dc2ff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 8px 30px rgba(76,72,255,.20));
}

.accent {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.accent span {
    display: block;
    width: 46px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, #8348ff, #299cff);
}

.accent i {
    display: block;
    width: 6px;
    height: 6px;
    background: #7581ff;
    border-radius: 50%;
}

.intro {
    max-width: 620px;
    margin: 25px auto 35px;
    color: var(--muted);
    font-size: clamp(17px, 1.7vw, 23px);
    line-height: 1.65;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 20px auto 40px;
    max-width: 760px;
}

.feature {
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,.09);
}

.feature:last-child {
    border-right: 0;
}

.feature .icon {
    min-height: 34px;
    font-size: 29px;
    font-weight: 700;
    color: #704aff;
    text-shadow: 0 0 20px rgba(104,65,255,.45);
}

.feature strong {
    color: #bbc0d4;
    font-size: 12px;
    letter-spacing: .05em;
    line-height: 1.4;
}

.notify {
    max-width: 620px;
    min-height: 105px;
    margin: auto;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        );
    box-shadow:
        0 22px 60px rgba(0,0,0,.20),
        inset 0 1px 0 rgba(255,255,255,.035);
    backdrop-filter: blur(18px);
}

.notify-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 26px;
    color: #f2a8ff;
    background:
        radial-gradient(circle at 35% 25%, #9d4aff, #171934 70%);
    box-shadow: 0 0 30px rgba(126,68,255,.20);
}

.notify-text {
    text-align: left;
}

.notify-text strong {
    display: block;
    margin-bottom: 5px;
    font-size: 17px;
}

.notify-text span {
    color: var(--muted);
    font-size: 14px;
}

footer {
    margin-top: 35px;
    color: #747b94;
    font-size: 13px;
}

.footer-line {
    width: 230px;
    height: 1px;
    margin: 0 auto 18px;
    background: linear-gradient(90deg, transparent, #252b48, transparent);
}

.visual {
    min-height: 760px;
    position: relative;
    align-self: stretch;
}

.cable {
    position: absolute;
    top: 0;
    width: 2px;
    height: 195px;
    background: linear-gradient(#353b69, #171b35);
}

.cable-one {
    left: 44%;
    transform: rotate(27deg);
    transform-origin: top;
}

.cable-two {
    left: 66%;
    transform: rotate(-27deg);
    transform-origin: top;
}

.hook {
    position: absolute;
    top: 68px;
    left: 50%;
    transform: translateX(-50%);
}

.hook-head {
    width: 75px;
    height: 100px;
    border-radius: 18px;
    border: 1px solid #616887;
    transform: rotate(5deg);
    background:
        repeating-linear-gradient(
            -45deg,
            #171a2e 0 13px,
            #4930b9 13px 26px
        );
    box-shadow: 0 18px 35px rgba(0,0,0,.35);
}

.hook-ring {
    width: 32px;
    height: 32px;
    margin: -2px auto;
    border: 8px solid #343956;
    border-radius: 50%;
}

.sign {
    position: absolute;
    top: 260px;
    left: 50%;
    width: min(360px, 85%);
    height: 350px;
    transform: translateX(-50%) rotate(1deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 2px solid #555d7e;
    background: linear-gradient(145deg, #1e223b, #0e1123);
    box-shadow:
        0 40px 70px rgba(0,0,0,.38),
        inset 0 0 60px rgba(64,61,160,.10);
}

.sign p {
    margin: 35px 0 2px;
    color: #d9dced;
    font-size: 19px;
    letter-spacing: .08em;
}

.sign strong {
    font-size: 21px;
    letter-spacing: .08em;
}

.screw {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, #adb2c9, #282c43 65%);
}

.screw-a { left: 14px; top: 14px; }
.screw-b { right: 14px; top: 14px; }
.screw-c { left: 14px; bottom: 14px; }
.screw-d { right: 14px; bottom: 14px; }

.construction-icon {
    width: 100px;
    height: 72px;
    position: relative;
    border: 4px solid #7048ff;
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(111,72,255,.16);
    overflow: hidden;
}

.construction-icon span {
    position: absolute;
    width: 16px;
    height: 130px;
    top: -28px;
    transform: rotate(43deg);
    background: #7048ff;
}

.construction-icon span:nth-child(1) { left: 13px; }
.construction-icon span:nth-child(2) { left: 42px; }
.construction-icon span:nth-child(3) { left: 71px; }

.floor-glow {
    position: absolute;
    bottom: 42px;
    left: 50%;
    width: 460px;
    max-width: 100%;
    height: 100px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(83,54,239,.20);
    filter: blur(45px);
}

.cone {
    position: absolute;
    right: 18%;
    bottom: 50px;
    width: 105px;
}

.cone-top {
    width: 20px;
    height: 14px;
    margin: auto;
    border-radius: 5px 5px 0 0;
    background: #5542b9;
}

.cone-body {
    position: relative;
    width: 72px;
    height: 125px;
    margin: auto;
    clip-path: polygon(34% 0, 66% 0, 100% 100%, 0 100%);
    background: linear-gradient(90deg, #2e2855, #634ad3, #201d41);
}

.cone-body span {
    position: absolute;
    top: 53px;
    left: 3px;
    width: 68px;
    height: 24px;
    transform: rotate(-2deg);
    background: #17182b;
}

.cone-base {
    height: 21px;
    border-radius: 4px;
    background: linear-gradient(90deg, #17192d, #5044a7, #17192d);
}

.plant {
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 135px;
    height: 205px;
}

.pot {
    position: absolute;
    bottom: 0;
    left: 36px;
    width: 75px;
    height: 65px;
    border-radius: 7px 7px 22px 22px;
    background: linear-gradient(90deg, #111424, #252a40);
}

.leaf {
    position: absolute;
    width: 35px;
    height: 85px;
    border-radius: 100% 0 100% 0;
    background: linear-gradient(145deg, #1f754f, #102f27);
    transform-origin: bottom center;
}

.leaf-a {
    bottom: 59px;
    left: 56px;
    transform: rotate(-9deg);
}

.leaf-b {
    bottom: 55px;
    left: 74px;
    transform: rotate(29deg);
}

.leaf-c {
    bottom: 47px;
    left: 39px;
    transform: rotate(-46deg);
}

.leaf-d {
    bottom: 45px;
    left: 84px;
    transform: rotate(53deg);
}

.cookie-banner {
    position: fixed;
    z-index: 50;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: none;
    max-width: 1050px;
    margin: auto;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(10,13,27,.96);
    box-shadow: 0 22px 60px rgba(0,0,0,.40);
    backdrop-filter: blur(20px);
}

.cookie-content {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
}

.cookie-content p {
    margin: 5px 0 0;
    color: #9da4bc;
    font-size: 13px;
}

.cookie-actions {
    display: flex;
    gap: 9px;
    align-items: center;
}

.cookie-actions a,
.cookie-actions button {
    border: 0;
    border-radius: 10px;
    padding: 10px 13px;
    font: inherit;
    font-size: 13px;
    cursor: pointer;
}

.cookie-actions a {
    color: #c5c9db;
    text-decoration: none;
}

.cookie-config {
    color: white;
    background: #252a43;
}

.cookie-accept {
    color: white;
    background: linear-gradient(90deg, #7544ff, #278fff);
}

@media (max-width: 1050px) {
    .page {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .visual {
        min-height: 670px;
    }

    .hero {
        margin: auto;
        padding-top: 50px;
    }
}

@media (max-width: 700px) {
    .page {
        width: 100%;
    }

    .hero {
        padding: 38px 18px 30px;
    }

    .eyebrow {
        font-size: 20px;
    }

    h1 {
        font-size: clamp(42px, 13vw, 70px);
    }

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

    .feature:nth-child(2) {
        border-right: 0;
    }

    .notify {
        max-width: 100%;
        justify-content: flex-start;
    }

    .visual {
        min-height: 610px;
    }

    .sign {
        top: 220px;
        height: 300px;
    }

    .cone {
        right: 8%;
    }

    .plant {
        display: none;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        flex-wrap: wrap;
    }
}
