:root {
    --bg: #08090a;
    --panel: #121416;
    --line: #30353a;
    --text: #f5f5f5;
    --muted: #b8bdc2;
    --red: #d8171e;
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5
}

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

.wrap {
    width: min(var(--max), calc(100% - 36px));
    margin: auto
}

nav {
    position: fixed;
    z-index: 20;
    top: 0;
    width: 100%;
    background: rgba(5, 6, 7, .84);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #24272a
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font-weight: 900;
    font-size: 27px;
    letter-spacing: 3px
}

.links {
    display: flex;
    gap: 26px;
    align-items: center;
    font-size: 14px
}

.btn {
    display: inline-block;
    padding: 14px 20px;
    border: 1px solid #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px
}

.btn.red {
    background: var(--red);
    border-color: var(--red)
}

.hero {
    min-height: 780px;
    display: grid;
    align-items: end;
    padding: 140px 0 80px;
    background: linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .72) 42%, rgba(0, 0, 0, .20) 75%), url('../img/ursus.jpg') center/cover no-repeat
}

.eyebrow {
    color: #ddd;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase
}

.hero h1 {
    font-size: clamp(48px, 7vw, 92px);
    line-height: .93;
    margin: 15px 0 20px;
    max-width: 820px;
    text-transform: uppercase
}

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

.lead {
    font-size: clamp(20px, 2.2vw, 29px);
    max-width: 720px;
    color: #e3e3e3
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px
}

.stats {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #0d0f10
}

.stats-grid {
    display: grid;
    grid-template-columns:repeat(5, 1fr)
}

.stat {
    padding: 27px 15px;
    border-right: 1px solid var(--line);
    text-align: center
}

.stat:last-child {
    border: 0
}

.stat strong {
    display: block;
    font-size: 27px
}

.stat span {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase
}

section {
    padding: 92px 0
}

.kicker {
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px
}

.title {
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.05;
    margin: 8px 0 22px;
    text-transform: uppercase
}

.two {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 60px;
    align-items: center
}

.photo {
    min-height: 420px;
    border: 1px solid #292d30;
    background: url('../img/ursus.jpg') center 29%/cover no-repeat
}

.copy {
    color: var(--muted);
    font-size: 18px
}

.features {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px;
    margin-top: 35px
}

.card {
    background: var(--panel);
    border: 1px solid #2c3033;
    padding: 24px;
    min-height: 150px
}

.card b {
    display: block;
    margin-bottom: 9px;
    font-size: 18px
}

.card p {
    color: var(--muted);
    margin: 0
}

.dark2 {
    background: #0e1012
}

.specs {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

.specbox {
    border: 1px solid #3a4045;
    border-radius: 10px;
    padding: 28px;
    background: #111416
}

.specbox h3 {
    font-size: 24px;
    margin: 0 0 15px;
    text-transform: uppercase
}

.row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #292e32;
    padding: 11px 0;
    color: #c9cdd0
}

.row strong {
    color: #fff
}

.access {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 12px
}

.access div {
    padding: 16px 18px;
    border: 1px solid #303438;
    background: #111315
}

.access div:before {
    content: "•";
    color: var(--red);
    font-size: 22px;
    margin-right: 10px
}

.cta {
    text-align: center;
    background: linear-gradient(135deg, #151719, #08090a);
    border-top: 1px solid #292d30
}

.cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: var(--muted);
    font-size: 18px
}

.contact {
    display: grid;
    grid-template-columns:.8fr 1.2fr;
    gap: 50px
}

.contact-box {
    background: #111315;
    border: 1px solid #2e3235;
    padding: 28px
}

form {
    display: grid;
    gap: 12px
}

.form-required-note {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 13px
}

.form-field {
    display: grid;
    gap: 6px
}

.form-field label {
    font-size: 14px;
    font-weight: 700
}

.required-mark {
    color: var(--red);
    font-size: 1.15em;
    font-weight: 900
}

.optional {
    color: var(--muted);
    font-size: 12px;
    font-weight: 400
}

input, textarea {
    width: 100%;
    padding: 15px;
    background: #090a0b;
    border: 1px solid #3a3f43;
    color: #fff;
    font: inherit
}

input:required, textarea:required {
    border-left: 3px solid var(--red)
}

input:focus, textarea:focus {
    border-color: #767d84;
    outline: 2px solid rgba(216, 23, 30, .35);
    outline-offset: 1px
}

textarea {
    min-height: 120px
}

button {
    cursor: pointer
}

button:disabled {
    cursor: not-allowed;
    opacity: .6
}

.form-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid;
    line-height: 1.45
}

.form-message.success {
    color: #d9f7df;
    background: #102b17;
    border-color: #2f7540
}

.form-message.error {
    color: #ffd9db;
    background: #351316;
    border-color: #8d2f35
}

.form-message ul {
    margin: 8px 0 0;
    padding-left: 20px
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.cf-turnstile {
    min-height: 65px
}

footer {
    border-top: 1px solid #24272a;
    padding: 30px 0;
    color: #9fa4a8
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.small {
    font-size: 13px;
    color: #9da2a6
}

@media (max-width: 800px) {
    .links a:not(.btn) {
        display: none
    }

    .hero {
        min-height: 680px;
        background-position: 58% center
    }

    .stats-grid {
        grid-template-columns:1fr 1fr
    }

    .stat:nth-child(2n) {
        border-right: 0
    }

    .two, .specs, .contact {
        grid-template-columns:1fr
    }

    .features {
        grid-template-columns:1fr
    }

    .photo {
        min-height: 310px
    }

    .access {
        grid-template-columns:1fr
    }

    .foot {
        display: block
    }

    .hero h1 {
        font-size: 52px
    }
}

.model-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 22px;
    margin-top: 42px
}

.model-card {
    background: #111315;
    border: 1px solid #303438;
    overflow: hidden
}

.model-visual {
    height: 290px;
    position: relative;
    background: #17191b;
    overflow: hidden
}

.ursus-visual {
    background: url('../img/ursus.jpg') center/cover no-repeat
}

.lynx-visual {
    background: url('../img/lynx.jpg') center/cover no-repeat
}

.lynx-visual:before {
    display: none
}

.lynx-word {
    display: none
}

.model-tag {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    background: #d8171e;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px
}

.model-content {
    padding: 30px
}

.model-content h3 {
    font-size: 28px;
    text-transform: uppercase;
    margin: 8px 0 12px
}

.model-content p {
    color: #b8bdc2;
    min-height: 100px
}

.mini-specs {
    display: grid;
    grid-template-columns:1fr 1fr;
    border-top: 1px solid #303438;
    border-left: 1px solid #303438;
    margin: 24px 0
}

.mini-specs span {
    padding: 13px;
    border-right: 1px solid #303438;
    border-bottom: 1px solid #303438;
    color: #aeb3b7;
    font-size: 12px;
    text-transform: uppercase
}

.mini-specs strong {
    display: block;
    color: #fff;
    font-size: 18px
}

@media (max-width: 800px) {
    .model-grid {
        grid-template-columns:1fr
    }

    .model-content p {
        min-height: 0
    }

    .model-visual {
        height: 240px
    }
}
