@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Roboto+Mono:wght@400;500;600;700&display=swap');


:root {
    --black: #060606;
    --black-2: #0b0b0b;
    --black-3: #111111;

    --orange: #ff6500;
    --orange-light: #ff8a00;

    --red: #e51b23;

    --white: #ffffff;
    --gray: #8b8b8b;

    --border: rgba(255, 101, 0, 0.18);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(255, 60, 0, 0.08),
            transparent 30%
        ),
        var(--black);

    color: var(--white);

    font-family: 'Montserrat', sans-serif;
}


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


button,
input,
textarea {
    font-family: inherit;
}


.container {
    width: min(
        1150px,
        calc(100% - 40px)
    );

    margin: 0 auto;
}


/* =====================================
   TOP BAR
===================================== */

.top-bar {
    height: 38px;

    background: #040404;

    border-bottom:
        1px solid rgba(255, 101, 0, 0.1);
}


.top-bar-content {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.top-server {
    display: flex;

    align-items: center;

    gap: 8px;

    font-family: 'Roboto Mono', monospace;
}


.online-dot {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 8px var(--orange);
}


.top-label {
    color: #505050;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


.copy-ip {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #c7c7c7;

    font-family: 'Roboto Mono', monospace;

    font-size: 10px;

    cursor: pointer;

    transition: 0.2s;
}


.copy-ip:hover {
    color: var(--orange);
}


.copy-small {
    color: #555;

    font-size: 13px;
}


.copy-ip:hover .copy-small {
    color: var(--orange);
}


.top-forum {
    color: #666;

    font-family: 'Roboto Mono', monospace;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.2s;
}


.top-forum:hover {
    color: var(--orange);
}


/* =====================================
   HEADER
===================================== */

.header {
    height: 78px;

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(7, 7, 7, 0.94);

    border-bottom:
        1px solid rgba(255, 101, 0, 0.14);

    backdrop-filter: blur(16px);
}


.nav {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =====================================
   LOGO
===================================== */

.brand {
    display: flex;

    align-items: center;

    gap: 13px;
}


.brand-mark {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--red)
        );

    color: #fff;

    font-size: 25px;

    font-weight: 900;

    font-style: italic;

    transform: skew(-5deg);

    box-shadow:
        0 0 25px rgba(255, 70, 0, 0.25);
}


.brand-mark::after {
    content: "";

    position: absolute;

    inset: 4px;

    border:
        1px solid rgba(255,255,255,0.3);
}


.brand-text {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.brand-text strong {
    font-size: 21px;

    font-weight: 900;

    letter-spacing: 2px;

    line-height: 1;

    background:
        linear-gradient(
            90deg,
            #fff,
            var(--orange),
            var(--red)
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.brand-text span {
    color: #4e4e4e;

    font-family: 'Roboto Mono', monospace;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


/* =====================================
   NAVIGATION
===================================== */

.main-nav {
    display: flex;

    align-items: center;

    gap: 28px;
}


.main-nav a {
    color: #777;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: 0.2s;
}


.main-nav a:hover {
    color: var(--orange);
}


/* =====================================
   COPY NOTIFICATION
===================================== */

.copy-notification {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 5000;

    padding: 13px 18px;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--red)
        );

    color: white;

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.4);

    transform:
        translateY(100px);

    opacity: 0;

    transition: 0.3s;
}


.copy-notification.show {
    transform:
        translateY(0);

    opacity: 1;
}


/* =====================================
   HERO
===================================== */

.hero {
    min-height: 690px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    border-bottom:
        1px solid var(--border);
}


.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}


.hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    right: -200px;
    top: 30px;

    background: var(--red);

    filter: blur(190px);

    opacity: 0.15;
}


.hero-content {
    position: relative;

    z-index: 2;
}


.badge {
    display: inline-block;

    padding: 9px 15px;

    background:
        rgba(255, 101, 0, 0.07);

    border:
        1px solid rgba(255,101,0,0.35);

    color: var(--orange);

    font-family: 'Roboto Mono', monospace;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.hero h1 {
    max-width: 900px;

    margin-top: 28px;

    font-size:
        clamp(48px, 7vw, 88px);

    line-height: 0.98;

    font-weight: 900;

    letter-spacing: -4px;
}


.hero h1 span {
    color: var(--orange);
}


.hero-text {
    max-width: 620px;

    margin-top: 28px;

    color: var(--gray);

    font-size: 16px;

    line-height: 1.7;
}


.domain-preview {
    display: inline-block;

    margin-top: 32px;

    padding: 17px 22px;

    background: #0d0d0d;

    border:
        1px solid rgba(255,101,0,0.35);

    font-family: 'Roboto Mono', monospace;

    font-size: 18px;

    box-shadow:
        0 0 30px rgba(255,60,0,0.05);
}


.domain-preview b {
    color: var(--orange);
}


.main-button,
.submit-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    padding: 16px 23px;

    margin-top: 28px;

    border: 0;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--red)
        );

    color: white;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;

    cursor: pointer;

    box-shadow:
        0 12px 35px rgba(255,60,0,0.16);

    transition: 0.25s;
}


.main-button:hover,
.submit-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 17px 40px rgba(255,60,0,0.28);
}


.main-button span,
.submit-button span {
    font-size: 19px;
}


.hero-info {
    display: flex;

    gap: 55px;

    margin-top: 55px;
}


.hero-info div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.hero-info strong {
    color: var(--orange);

    font-family: 'Roboto Mono', monospace;

    font-size: 19px;
}


.hero-info small {
    color: #555;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =====================================
   SECTIONS
===================================== */

.section {
    padding: 105px 0;
}


.section-title span {
    color: var(--orange);

    font-family: 'Roboto Mono', monospace;

    font-size: 10px;

    letter-spacing: 2px;
}


.section-title h2 {
    margin-top: 12px;

    font-size: 40px;

    font-weight: 900;

    letter-spacing: -1px;
}


/* =====================================
   CARDS
===================================== */

.cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 50px;
}


.card {
    min-height: 245px;

    padding: 32px;

    background:
        linear-gradient(
            145deg,
            #111,
            #090909
        );

    border:
        1px solid #202020;

    transition: 0.25s;
}


.card:hover {
    border-color: var(--orange);

    transform: translateY(-5px);
}


.card-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 23px;

    background:
        rgba(255,101,0,0.08);

    border:
        1px solid rgba(255,101,0,0.3);

    color: var(--orange);

    font-size: 21px;
}


.card h3 {
    margin-bottom: 13px;

    font-size: 17px;
}


.card p {
    color: #818181;

    font-size: 13px;

    line-height: 1.7;
}


.card p b {
    color: var(--orange);
}


/* =====================================
   ADVERTISING
===================================== */

.advertising {
    padding-bottom: 105px;
}


.advertising-box {
    display: flex;

    align-items: center;

    gap: 23px;

    padding: 28px;

    background:
        linear-gradient(
            90deg,
            rgba(255,101,0,0.08),
            rgba(229,27,35,0.03)
        );

    border-left:
        4px solid var(--orange);
}


.warning-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--orange);

    color: #000;

    font-size: 24px;

    font-weight: 900;
}


.advertising-box h3 {
    margin-bottom: 8px;

    font-size: 16px;
}


.advertising-box p {
    color: #888;

    font-size: 13px;

    line-height: 1.6;
}


.advertising-box b {
    color: var(--orange);
}


/* =====================================
   STEPS
===================================== */

.steps {
    display: grid;

    gap: 14px;

    margin-top: 50px;
}


.step {
    display: flex;

    align-items: center;

    gap: 28px;

    padding: 24px;

    background: #0c0c0c;

    border:
        1px solid #1d1d1d;
}


.step-number {
    color: var(--orange);

    font-family: 'Roboto Mono', monospace;

    font-size: 19px;

    font-weight: 700;
}


.step h3 {
    margin-bottom: 6px;

    font-size: 15px;
}


.step p {
    color: #777;

    font-size: 12px;
}


.step b {
    color: var(--orange);
}


/* =====================================
   REQUEST
===================================== */

.request-section {
    padding: 100px 0;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(255,80,0,0.1),
            transparent 30%
        ),
        #090909;

    border-top:
        1px solid #171717;

    border-bottom:
        1px solid #171717;
}


.request-box {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 70px;

    padding: 55px;

    background: #0d0d0d;

    border:
        1px solid #222;
}


.request-left h2 {
    margin-top: 23px;

    font-size: 46px;

    line-height: 1.05;

    font-weight: 900;
}


.request-left h2 span {
    color: var(--orange);
}


.request-left > p {
    margin-top: 22px;

    color: #858585;

    font-size: 13px;

    line-height: 1.7;
}


.contact {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-top: 45px;
}


.contact span {
    color: #4f4f4f;

    font-family: 'Roboto Mono', monospace;

    font-size: 9px;
}


.contact a {
    color: var(--orange);

    font-family: 'Roboto Mono', monospace;

    font-size: 13px;
}


/* =====================================
   FORM
===================================== */

.request-form {
    display: flex;

    flex-direction: column;
}


.request-form > label {
    margin-bottom: 7px;

    color: #999;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.request-form input,
.request-form textarea {
    width: 100%;

    padding: 15px;

    margin-bottom: 19px;

    outline: none;

    background: #070707;

    border:
        1px solid #292929;

    color: white;

    font-family: 'Roboto Mono', monospace;

    font-size: 12px;

    transition: 0.2s;
}


.request-form textarea {
    min-height: 115px;

    resize: vertical;
}


.request-form input:focus,
.request-form textarea:focus {
    border-color: var(--orange);

    box-shadow:
        0 0 0 2px
        rgba(255,101,0,0.07);
}


.checkbox {
    display: flex !important;

    align-items: flex-start;

    gap: 9px;

    margin-top: 2px;

    color: #707070 !important;

    font-size: 10px !important;

    font-weight: 400 !important;

    line-height: 1.5;

    text-transform: none !important;

    letter-spacing: 0 !important;
}


.checkbox input {
    width: auto;

    margin: 2px 0 0;

    accent-color: var(--orange);
}


.submit-button {
    width: 100%;

    margin-top: 14px;
}


.hidden-field {
    display: none !important;
}


/* =====================================
   FAQ
===================================== */

.faq {
    max-width: 850px;

    margin-top: 50px;
}


details {
    border-bottom:
        1px solid #222;
}


summary {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 23px 0;

    cursor: pointer;

    font-size: 14px;

    font-weight: 700;

    list-style: none;
}


summary::-webkit-details-marker {
    display: none;
}


summary span {
    color: var(--orange);

    font-size: 21px;
}


details p {
    padding:
        0 40px 23px 0;

    color: #808080;

    font-size: 12px;

    line-height: 1.7;
}


details p b,
details p a {
    color: var(--orange);
}


/* =====================================
   FOOTER
===================================== */

.footer {
    padding-top: 55px;

    background: #040404;

    border-top:
        1px solid #151515;
}


.footer-content {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    padding-bottom: 45px;
}


.footer p {
    margin-top: 10px;

    color: #555;

    font-size: 11px;
}


.footer-links {
    display: flex;

    gap: 24px;
}


.footer-links a {
    color: #666;

    font-size: 11px;

    transition: 0.2s;
}


.footer-links a:hover {
    color: var(--orange);
}


.copyright {
    padding: 19px;

    text-align: center;

    color: #3e3e3e;

    border-top:
        1px solid #111;

    font-family: 'Roboto Mono', monospace;

    font-size: 9px;
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 800px) {

    .container {
        width:
            calc(100% - 28px);
    }


    .top-label {
        display: none;
    }


    .header {
        height: auto;

        padding: 15px 0;
    }


    .nav {
        flex-direction: column;

        gap: 15px;
    }


    .main-nav {
        gap: 16px;
    }


    .main-nav a {
        font-size: 8px;
    }


    .hero {
        min-height: 630px;
    }


    .hero h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }


    .hero-text {
        font-size: 14px;
    }


    .domain-preview {
        max-width: 100%;

        word-break: break-word;

        font-size: 14px;
    }


    .hero-info {
        gap: 25px;
    }


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


    .section {
        padding: 75px 0;
    }


    .section-title h2 {
        font-size: 32px;
    }


    .request-box {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 30px;
    }


    .request-left h2 {
        font-size: 38px;
    }


    .footer-content {
        flex-direction: column;

        gap: 30px;
    }


    .footer-links {
        flex-direction: column;

        gap: 14px;
    }

}


@media (max-width: 500px) {

    .top-bar {
        height: 35px;
    }


    .top-server {
        font-size: 9px;
    }


    .copy-ip {
        font-size: 9px;
    }


    .top-forum {
        font-size: 8px;
    }


    .brand-mark {
        width: 41px;
        height: 41px;

        font-size: 22px;
    }


    .brand-text strong {
        font-size: 17px;
    }


    .brand-text span {
        font-size: 7px;
    }


    .main-nav {
        gap: 11px;
    }


    .main-nav a {
        font-size: 7px;
    }


    .hero h1 {
        font-size: 42px;
    }


    .hero-info {
        flex-wrap: wrap;

        gap: 20px;
    }


    .advertising-box {
        align-items: flex-start;

        padding: 22px;
    }


    .step {
        align-items: flex-start;

        gap: 18px;
    }

}