﻿* {
    box-sizing: border-box;
}

:root {
    --bg: #050505;
    --panel: #0b0b0b;
    --panel-hover: #101010;
    --line: #252525;
    --text: #f5f5f5;
    --muted: #b9b9b9;
    --green: #96bf13;
    --max: 1380px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.kiqu-page {
    overflow: hidden;
}

.hero,
.section {
    padding-left: max(24px, calc((100vw - var(--max)) / 2));
    padding-right: max(24px, calc((100vw - var(--max)) / 2));
}

.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid var(--line);
    background: radial-gradient(circle at 82% 42%, rgba(150,191,19,.16), transparent 0 11%, transparent 35%), linear-gradient(135deg, #050505 0%, #050505 60%, #090b04 100%);
}

    .hero::after {
        content: "KQ";
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        font-size: clamp(180px, 28vw, 430px);
        font-weight: 800;
        letter-spacing: -.12em;
        line-height: .8;
        color: transparent;
        -webkit-text-stroke: 1px rgba(150,191,19,.12);
        pointer-events: none;
    }

.hero-inner {
    width: min(820px, 100%);
    position: relative;
    z-index: 1;
}

.kicker {
    margin: 0 0 12px;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 13px;
    font-weight: 700;
}

.hero h1 {
    max-width: 850px;
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.hero-subline {
    margin: 0 0 32px;
    color: var(--green);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 600;
    line-height: 1.3;
}

.hero h2 {
    margin: 0 0 22px;
    max-width: 760px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.lead {
    max-width: 760px;
    margin: 0 0 16px;
    font-size: clamp(18px, 2vw, 23px);
    color: #e6e6e6;
}

.intro {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

    .hero-points span {
        padding: 8px 13px;
        border: 1px solid #314006;
        border-radius: 999px;
        color: #dce7bb;
        background: rgba(150,191,19,.06);
        font-size: 14px;
    }

.section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.section-head {
    max-width: 820px;
    margin-bottom: 42px;
}

    .section-head h2,
    .content-title h2 {
        margin: 0;
        font-size: clamp(34px, 4vw, 54px);
        line-height: 1.1;
        letter-spacing: -.04em;
    }

    .section-head > p:last-child {
        margin: 18px 0 0;
        color: var(--muted);
        font-size: 18px;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.card {
    min-height: 330px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

    .card:hover {
        transform: translateY(-3px);
        border-color: #4a5e0c;
        background: var(--panel-hover);
    }

.number {
    display: inline-block;
    margin-bottom: 54px;
    color: var(--green);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
}

.card h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

    .card h3::after {
        content: "";
        display: block;
        width: 42px;
        height: 3px;
        margin-top: 14px;
        background: var(--green);
        border-radius: 2px;
    }

.card p {
    margin: 0;
    color: var(--muted);
}

.section-soft {
    border-top: 1px solid var(--line);
}

.content-row {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(40px, 8vw, 130px);
    padding: 38px 0;
}

.content-title h2 {
    color: #ffffff;
    font-weight: 700;
}

.info-heading h3 {
    color: var(--green);
    font-weight: 700;
}

.content-copy {
    max-width: 780px;
    color: #d0d0d0;
    font-size: 17px;
}

    .content-copy p:first-child {
        margin-top: 0;
    }

    .content-copy p:last-child {
        margin-bottom: 0;
    }

.divider {
    height: 1px;
    background: var(--line);
}

.facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0;
}

    .facts div {
        padding: 22px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #0d0d0d;
    }

    .facts strong {
        display: block;
        color: var(--green);
        font-size: 32px;
        line-height: 1;
        margin-bottom: 9px;
    }

    .facts span {
        color: var(--muted);
        font-size: 14px;
    }

@media (max-width: 950px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 620px) {
    .hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 90px;
    }

        .hero::after {
            display: none;
        }

    .section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .card {
        min-height: auto;
    }

    .number {
        margin-bottom: 35px;
    }

    .facts {
        grid-template-columns: 1fr;
    }
}

.content-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

    .content-list li {
        position: relative;
        margin-bottom: 14px;
        padding-left: 26px;
        color: #d0d0d0;
    }

        .content-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: .7em;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--green);
        }
