* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --eye-cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='none' stroke='%23ff9a2e' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M3 16s5-8 13-8 13 8 13 8-5 8-13 8S3 16 3 16Z'/%3E%3Ccircle cx='16' cy='16' r='4' fill='%23ff9a2e'/%3E%3Ccircle cx='17.5' cy='14.5' r='1.2' fill='%23fff3d8'/%3E%3C/svg%3E") 16 16, auto;
}

body {
    min-height: 100vh;
    background: #08090c;
    color: #f7f7f7;
    overflow-x: hidden;
    cursor: var(--eye-cursor);
}

body.modal-open {
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 8%;
    isolation: isolate;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    z-index: -4;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.04);
    filter: saturate(1.18) contrast(1.12) brightness(1.06);
    transition: opacity 1.1s ease, transform 5.5s ease;
}

.slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.slide-one {
    background-image: url("../fuck.png");
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(8, 9, 12, 0.86) 0%, rgba(8, 9, 12, 0.56) 42%, rgba(8, 9, 12, 0.14) 100%),
        linear-gradient(0deg, rgba(8, 9, 12, 0.68) 0%, rgba(8, 9, 12, 0.04) 50%, rgba(8, 9, 12, 0.48) 100%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 76% 24%, rgba(255, 128, 0, 0.34), transparent 20%),
        radial-gradient(circle at 57% 76%, rgba(255, 78, 0, 0.3), transparent 20%),
        rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

canvas#fireCanvas {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: screen;
}

.copy {
    width: min(100%, 760px);
    position: relative;
    z-index: 1;
    text-align: center;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 122, 0, 0.7);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(7, 8, 11, 0.72) 48%, rgba(255, 185, 92, 0.12)),
        rgba(7, 8, 11, 0.7);
    color: #ffd29a;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 14px 34px rgba(0, 0, 0, 0.32),
        0 0 32px rgba(255, 122, 0, 0.18);
    backdrop-filter: blur(12px);
}

.status::before {
    content: "";
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: #ff9a2e;
    box-shadow:
        0 0 0 5px rgba(255, 122, 0, 0.13),
        0 0 20px rgba(255, 122, 0, 0.95);
    animation: statusPulse 1.8s ease-in-out infinite;
}

@keyframes statusPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.78);
        opacity: 0.72;
    }
}

h1 {
    max-width: 820px;
    margin-bottom: 24px;
    font-size: clamp(2.35rem, 7vw, 5.6rem);
    line-height: 1.02;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    text-shadow: 0 8px 34px rgba(0, 0, 0, 0.72);
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

p {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 34px;
    color: #d0d0d0;
    font-size: 1.12rem;
    line-height: 1.7;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 8px;
    background: #ff7a00;
    color: #141414;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(255, 122, 0, 0.34);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    cursor: var(--eye-cursor);
}

.btn-cta:hover {
    background: #ff9a2e;
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(255, 122, 0, 0.42);
}

footer {
    position: absolute;
    right: 24px;
    left: 24px;
    bottom: 30px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.82rem;
    text-align: center;
}

.technical-info-button {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: var(--eye-cursor);
}

.technical-info-button:hover {
    color: rgba(255, 210, 154, 0.92);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    cursor: var(--eye-cursor);
}

.modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: min(720px, calc(100vh - 48px));
    overflow-y: auto;
    overflow-x: hidden;
    padding: 40px 28px 28px;
    border: 1px solid rgba(255, 122, 0, 0.36);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 122, 0, 0.12), rgba(18, 19, 24, 0.96) 38%),
        #121318;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.62);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: var(--eye-cursor);
}

.modal-kicker {
    margin-bottom: 10px;
    color: #ffbe72;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.modal h2 {
    margin: 0 0 16px;
    font-size: clamp(1.55rem, 5vw, 2.35rem);
    line-height: 1.12;
    overflow-wrap: break-word;
}

.modal p {
    margin: 0 auto 14px;
    max-width: 460px;
    color: #c9cbd0;
    font-size: 1rem;
    line-height: 1.62;
    text-shadow: none;
    overflow-wrap: break-word;
}

.contact-form {
    margin-top: 22px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(6, 7, 10, 0.72);
    color: #fff;
    font: inherit;
    text-align: center;
    margin-bottom: 12px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
    font: inherit;
    line-height: 1.5;
    cursor: var(--eye-cursor);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(255, 122, 0, 0.58);
    outline-offset: 2px;
}

.contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
}

.contact-submit:disabled {
    cursor: wait;
    opacity: 0.68;
}

.form-status {
    margin: 0;
    color: #c9cbd0;
    font-size: 0.92rem;
}

.form-status.is-success {
    color: #90e0b0;
}

.form-status.is-error {
    color: #ffb2b2;
}

.honeypot,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .hero {
        align-items: center;
        padding: 44px 6% 98px;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(8, 9, 12, 0.78) 0%, rgba(8, 9, 12, 0.52) 45%, rgba(8, 9, 12, 0.84) 100%),
            linear-gradient(90deg, rgba(8, 9, 12, 0.62), rgba(8, 9, 12, 0.16));
    }

    .copy {
        padding-top: 0;
    }

    footer {
        bottom: 30px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 100svh;
        padding: 28px 20px 100px;
    }

    h1 {
        font-size: clamp(2rem, 13vw, 3.3rem);
    }

    .status {
        max-width: 100%;
        font-size: 0.72rem;
        letter-spacing: 0.9px;
    }

    p {
        font-size: 1rem;
    }

    .btn-cta {
        width: 100%;
        padding: 0 18px;
    }

    footer {
        right: 24px;
        left: 24px;
        bottom: 24px;
    }

    .modal {
        padding: 14px;
    }

    .modal-dialog {
        padding: 36px 22px 22px;
    }

    .contact-actions {
        align-items: center;
        flex-direction: column;
    }
}
