@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap");
:root {
    --bg: #060606;
    --border: #252525;
    --white: #f2f0eb;
    --red: #b51217;
    --red2: #e3262d;
    --green: #68c989;
    --mono: "JetBrains Mono", monospace;
    --sans: "Inter", sans-serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(150, 0, 0, 0.13),
            transparent 35%
        ),
        var(--bg);
    color: var(--white);
    font-family: var(--sans);
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}
nav {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 78px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
}
.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    font-family: var(--mono);
    font-weight: 700;
    letter-spacing: 5px;
}
.logo-mark {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--red);
    color: var(--red2);
    font-size: 12px;
    transform: rotate(45deg);
}
.logo-mark span {
    transform: rotate(-45deg);
}
.logo-text {
    font-size: 15px;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 17px;
    border: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}
.btn:hover {
    border-color: var(--red);
    color: #fff;
}
.btn-red {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
}
.btn-red:hover {
    background: #d0181e;
}
.mobile-menu-btn,
.mobile-menu-panel {
    display: none;
}
.hero {
    min-height: 720px;
    display: grid;
    place-items: center;
    padding: 100px 0 80px;
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    top: 170px;
    right: 9%;
    width: 1px;
    height: 160px;
    background:
        linear-gradient(
            transparent,
            var(--red),
            transparent
        );
    opacity: 0.5;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}
.eyebrow {
    margin-bottom: 25px;
    color: var(--red2);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 3px;
}
.eyebrow::before {
    content: "// ";
    color: #555;
}
h1 {
    margin: 0;
    font-size: clamp(60px, 9vw, 108px);
    font-weight: 800;
    line-height: 0.83;
    letter-spacing: -7px;
}
h1 span {
    display: block;
}
h1 .red {
    color: var(--red);
}
.hero-copy {
    max-width: 520px;
    margin-top: 32px;
    color: #999;
    font-size: 15px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 35px;
}
.terminal {
    border: 1px solid #272727;
    background: #090909;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(160, 0, 0, 0.05);
}
.terminal-head {
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    border-bottom: 1px solid #222;
}
.dots {
    display: flex;
    gap: 6px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
}
.dot.red {
    background: #ef4444;
}
.dot.yellow {
    background: #facc15;
}
.dot.green {
    background: #22c55e;
}
.terminal-title {
    color: #555;
    font: 10px var(--mono);
}
.terminal-body {
    min-height: 370px;
    padding: 25px;
    color: #8b8b8b;
    font: 12px/2 var(--mono);
}
.term-line {
    min-height: 24px;
}
.term-line.command {
    color: #eee;
}
.term-line.success {
    color: var(--green);
}
.cursor {
    display: inline-block;
    width: 7px;
    height: 14px;
    vertical-align: middle;
    background: var(--red);
    animation: blink 1s infinite;
}
@keyframes blink {
    50% {
        opacity: 0;
    }
}
.section {
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 45px;
}
.section-label {
    margin-bottom: 12px;
    color: #555;
    font: 11px var(--mono);
}
.section h2 {
    margin: 0;
    font-size: 40px;
    letter-spacing: -2px;
}
.section-desc {
    max-width: 400px;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.service {
    min-height: 230px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid #222;
    background:
        linear-gradient(
            145deg,
            rgba(181, 18, 23, 0.06),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #101010,
            #0b0b0b
        );
    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--red);
    transition: height 0.3s ease;
}
.service:hover {
    border-color: #3d2525;
    transform: translateY(-3px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3);
}
.service:hover::before {
    height: 100%;
}
.service-status {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--green);
    font: 9px var(--mono);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.service-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid #333;
    color: var(--red2);
    font-family: var(--mono);
    font-size: 11px;
}
.service h3 {
    margin: 0 0 12px;
    font-size: 18px;
}
.service p {
    max-width: 500px;
    margin: 0 0 22px;
    color: #707070;
    font-size: 12px;
    line-height: 1.8;
}
.brands,
.tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.brands {
    gap: 8px;
    margin-bottom: 20px;
}
.tags {
    gap: 6px;
}
.brand,
.tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border: 1px solid #292929;
    background: rgba(255, 255, 255, 0.02);
    color: #777;
    font: 9px var(--mono);
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}
.brand {
    gap: 7px;
}
.tag {
    gap: 7px;
}
.brand i,
.tag i {
    color: #999;
    transition: color 0.2s ease;
}
.brand i {
    font-size: 14px;
}
.tag i {
    font-size: 13px;
}
.brand:hover,
.tag:hover {
    border-color: #4a2929;
    background: rgba(181, 18, 23, 0.06);
    color: #eee;
}
.brand:hover i,
.tag:hover i {
    color: var(--red2);
}
.service-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    color: #333;
    font: 9px var(--mono);
    letter-spacing: 2px;
}
.service-divider::before,
.service-divider::after {
    content: "";
    height: 1px;
    background: #1c1c1c;
}
.service-divider::before {
    width: 35px;
}
.service-divider::after {
    flex: 1;
}
.quote {
    padding: 120px 20px;
    position: relative;
    text-align: center;
}
.quote-symbol {
    color: var(--red);
    font: 40px Georgia;
    opacity: 0.5;
}
.quote p {
    max-width: 800px;
    margin: 20px auto;
    font-size: clamp(25px, 4vw, 43px);
    line-height: 1.2;
    letter-spacing: -1px;
}
.quote small {
    color: #555;
    font: 10px var(--mono);
    letter-spacing: 3px;
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.step-number {
    margin-bottom: 25px;
    color: var(--red);
    font: 12px var(--mono);
}
.step h3 {
    margin: 0 0 12px;
    font-size: 18px;
}
.step p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}
.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    border: 1px solid #272727;
    background:
        linear-gradient(
            110deg,
            rgba(160, 0, 0, 0.13),
            transparent 55%
        ),
        #0b0b0b;
}
.cta h2 {
    margin: 0 0 10px;
    font-size: 30px;
}
.cta p {
    margin: 0;
    color: #666;
    font-size: 13px;
}
footer {
    padding: 35px 0;
    border-top: 1px solid #171717;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    color: #444;
    font: 10px var(--mono);
}
.footer-inner span:first-child {
    color: #666;
}
.lang-switch {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 8px;
    color: #555;
    font-size: 12px;
    letter-spacing: 1px;
}
.lang-btn {
    padding: 4px 2px;
    border: 0;
    background: transparent;
    color: #666;
    font: inherit;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}
.lang-btn:hover,
.lang-btn.active {
    color: var(--red2);
}
.lang-switch > span {
    color: #333;
}
#hero-title {
    min-height: 1.2em;
}
#hero-title.typing::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 0.85em;
    margin-left: 5px;
    vertical-align: -0.05em;
    background: var(--red2);
    animation: typingCursor 0.7s infinite;
}
@keyframes typingCursor {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}
@media (max-width: 850px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero {
        padding-top: 80px;
    }
    .steps {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    nav {
        height: 68px;
    }
    .nav-inner {
        position: relative;
    }
    .mobile-menu-btn {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        margin-left: auto;
        margin-right: 10px;
        padding: 0;
        border: 1px solid #292929;
        background: #090909;
        cursor: pointer;
        position: relative;
        z-index: 102;
    }
    .mobile-menu-btn span {
        display: block;
        width: 16px;
        height: 1px;
        background: #aaa;
        transition:
            transform 0.25s ease,
            opacity 0.25s ease,
            background 0.25s ease;
    }
    .mobile-menu-btn:hover {
        border-color: var(--red);
    }
    .mobile-menu-btn:hover span {
        background: var(--red2);
    }
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
        background: var(--red2);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
        background: var(--red2);
    }
    .nav-right {
        gap: 0;
        margin: 0;
    }
    .nav-right > .btn {
        display: none;
    }
    .lang-switch {
        margin-left: 0;
        gap: 6px;
        font-size: 11px;
    }
    .lang-btn {
        font-size: 11px;
    }
    nav.menu-open::after {
        content: "";
        position: fixed;
        inset: 68px 0 0;
        z-index: 90;
        background: rgba(0, 0, 0, 0.72);
        backdrop-filter: blur(3px);
    }
    .mobile-menu-panel {
        width: min(420px, calc(100vw - 28px));
        display: block;
        position: fixed;
        top: 78px;
        right: max(
            14px,
            calc((100vw - 1120px) / 2)
        );
        z-index: 101;
        border: 1px solid #292929;
        background:
            linear-gradient(
                145deg,
                rgba(181, 18, 23, 0.08),
                transparent 45%
            ),
            #0b0b0b;
        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.65),
            0 0 50px rgba(160, 0, 0, 0.08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
            opacity 0.22s ease,
            transform 0.22s ease,
            visibility 0.22s ease;
    }
    nav.menu-open .mobile-menu-panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .mobile-menu-head {
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        border-bottom: 1px solid #222;
        color: #666;
        font: 10px var(--mono);
        letter-spacing: 1px;
    }
    .mobile-menu-head strong {
        color: #999;
        font-weight: 500;
    }
    .mobile-menu-index {
        color: #444;
    }
    .mobile-menu-item {
        min-height: 76px;
        display: grid;
        grid-template-columns: 35px 32px 1fr 20px;
        align-items: center;
        padding: 10px 14px;
        position: relative;
        border-bottom: 1px solid #1d1d1d;
        transition:
            background 0.2s ease,
            border-color 0.2s ease;
    }
    .mobile-menu-item:last-child {
        border-bottom: 0;
    }
    .mobile-menu-item::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 2px;
        background: var(--red);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.2s ease;
    }
    .mobile-menu-item:hover,
    .mobile-menu-item:focus-visible {
        background: rgba(181, 18, 23, 0.055);
    }
    .mobile-menu-item:hover::before,
    .mobile-menu-item:focus-visible::before {
        transform: scaleY(1);
    }
    .mobile-menu-number {
        align-self: start;
        padding-top: 8px;
        color: #444;
        font: 10px var(--mono);
    }
    .mobile-menu-icon {
        width: 25px;
        height: 25px;
        display: grid;
        place-items: center;
        border: 1px solid #303030;
        color: var(--red2);
        font-size: 10px;
    }
    .mobile-menu-content {
        min-width: 0;
        padding-left: 8px;
    }
    .mobile-menu-title {
        display: block;
        color: #eee;
        font: 600 11px var(--mono);
        letter-spacing: 0.3px;
        white-space: nowrap;
    }
    .mobile-menu-description {
        display: block;
        margin-top: 6px;
        overflow: hidden;
        color: #555;
        font: 9px var(--mono);
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .mobile-menu-arrow {
        color: #444;
        font: 14px var(--mono);
        transition:
            color 0.2s ease,
            transform 0.2s ease;
    }
    .mobile-menu-item:hover .mobile-menu-arrow {
        color: var(--red2);
        transform: translateX(3px);
    }
    body.mobile-menu-active {
        overflow: hidden;
    }
}
@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1120px);
    }
    nav {
        height: 65px;
    }
    h1 {
        font-size: 65px;
        letter-spacing: -5px;
    }
    .hero {
        min-height: auto;
        padding: 75px 0;
    }
    .section {
        padding: 75px 0;
    }
    .section-head {
        display: block;
    }
    .section-desc {
        margin-top: 18px;
    }
    .services {
        grid-template-columns: 1fr;
    }
    .cta {
        display: block;
        padding: 35px 25px;
    }
    .cta .btn {
        margin-top: 25px;
    }
    .footer-inner {
        display: block;
        line-height: 2;
    }
    nav.menu-open::after {
        inset: 65px 0 0;
    }
    .mobile-menu-panel {
        top: 75px;
        right: 14px;
        width: calc(100vw - 28px);
    }
    .logo {
        gap: 11px;
    }
    .logo-mark {
        width: 30px;
        height: 30px;
    }
    .logo-text {
        font-size: 14px;
        letter-spacing: 4px;
    }
    .mobile-menu-btn {
        width: 36px;
        height: 36px;

        margin-right: 8px;
    }
    .mobile-menu-item {
        min-height: 72px;
    }
    .mobile-menu-title {
        font-size: 10px;
    }
    .mobile-menu-description {
        font-size: 8px;
    }
}