:root {
    --bg: #07090d;
    --surface: #10151c;
    --surface-2: #151d25;
    --line: rgba(183, 202, 223, 0.16);
    --text: #d8e2ee;
    --muted: #97a8ba;
    --white: #ffffff;
    --cyan: #00d7ff;
    --mint: #2cf6b3;
    --violet: #7c5cff;
    --amber: #ffc857;
    --danger: #ff6b6b;
    --ok: #2cf6b3;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

main,
section,
.header-inner,
.hero-grid,
.intro-grid,
.process-grid,
.ai-grid,
.compliance-grid,
.contact-grid,
.footer-grid,
.hero-copy,
.hero-panel,
.service-card,
.form-shell {
    min-width: 0;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
    display: block;
}

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

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: 84px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 9, 13, 0.78);
    backdrop-filter: blur(14px);
    transition: height 180ms ease, background 180ms ease;
}

.site-header.scrolled {
    height: 72px;
    background: rgba(7, 9, 13, 0.94);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    width: 270px;
    min-width: 210px;
    flex-shrink: 1;
}

.brand img {
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border-radius: 6px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}

.site-nav .nav-cta {
    color: #061016;
    background: var(--mint);
}

.site-nav .nav-cta:hover {
    color: #061016;
    background: #70ffd3;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    cursor: pointer;
    flex: 0 0 46px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 9, 13, 0.96) 0%, rgba(7, 9, 13, 0.88) 34%, rgba(7, 9, 13, 0.32) 68%, rgba(7, 9, 13, 0.62) 100%),
        linear-gradient(180deg, rgba(7, 9, 13, 0.12), var(--bg)),
        url("assets/hotfix-shield-hero.png") center right / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 215, 255, 0.75), rgba(44, 246, 179, 0.65), transparent);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: 48px;
    align-items: end;
}

.hero-copy {
    max-width: 710px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--mint);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 0.82rem;
}

h1,
h2,
h3,
p,
li,
a,
button,
span,
strong {
    overflow-wrap: anywhere;
    word-break: break-word;
}

h1,
h2,
h3 {
    color: var(--white);
    line-height: 1.08;
    margin: 0;
    letter-spacing: 0;
}

h1 {
    font-size: 4.4rem;
    max-width: 740px;
}

h2 {
    font-size: 2.65rem;
}

h3 {
    font-size: 1.2rem;
}

.hero-lead {
    max-width: 670px;
    margin: 24px 0 0;
    color: #e9f2fb;
    font-size: 1.24rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 6px;
    padding: 0 22px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.primary {
    background: var(--cyan);
    color: #041017;
    box-shadow: 0 14px 35px rgba(0, 215, 255, 0.22);
}

.btn.primary:hover {
    background: #7beeff;
}

.btn.secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
}

.btn.secondary:hover {
    border-color: var(--mint);
}

.btn.full {
    width: 100%;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.hero-facts span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.92rem;
}

.hero-panel {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 30px;
    background: rgba(10, 15, 21, 0.8);
    box-shadow: var(--shadow);
}

.panel-label {
    margin: 0 0 12px;
    color: var(--amber);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-panel h2 {
    font-size: 1.7rem;
}

.hero-panel p {
    margin: 18px 0 0;
    color: var(--text);
}

.hero-panel ul {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.hero-panel li {
    position: relative;
    padding-left: 24px;
    margin: 12px 0;
    color: var(--muted);
}

.hero-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mint);
}

.section {
    padding: 96px 0;
}

.intro {
    background: #0a0d12;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.intro-grid p:last-child {
    margin: 0;
    color: var(--text);
    font-size: 1.12rem;
}

.section-head {
    max-width: 720px;
    margin-bottom: 42px;
}

.section-head p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.05rem;
}

.services {
    background:
        linear-gradient(180deg, #07090d, #0c1016),
        repeating-linear-gradient(90deg, transparent 0, transparent 78px, rgba(255, 255, 255, 0.03) 79px);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    min-width: 0;
}

.service-card {
    min-height: 300px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 215, 255, 0.55);
    background: linear-gradient(180deg, rgba(0, 215, 255, 0.11), rgba(255, 255, 255, 0.03));
}

.card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 8px;
    color: var(--mint);
    background: rgba(44, 246, 179, 0.1);
}

.card-icon svg {
    width: 27px;
    height: 27px;
}

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

.process {
    background: #0b0f14;
}

.process-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 64px;
}

.sticky-head {
    position: sticky;
    top: 120px;
    align-self: start;
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline article {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 22px;
    padding: 26px 0 26px 26px;
    border-left: 1px solid rgba(0, 215, 255, 0.25);
}

.timeline span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #041017;
    background: var(--cyan);
    font-weight: 900;
    grid-row: 1 / span 2;
}

.timeline h3,
.timeline p {
    grid-column: 2;
}

.timeline p {
    margin: 10px 0 0;
    color: var(--muted);
}

.ai-band {
    background:
        linear-gradient(135deg, rgba(0, 215, 255, 0.12), rgba(124, 92, 255, 0.12)),
        #0a0d12;
}

.ai-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 54px;
    align-items: center;
}

.ai-grid p:not(.eyebrow) {
    margin: 20px 0 0;
    color: var(--text);
    font-size: 1.1rem;
}

.ai-list {
    display: grid;
    gap: 14px;
}

.ai-list div {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.ai-list strong,
.ai-list span {
    display: block;
}

.ai-list strong {
    color: var(--white);
}

.ai-list span {
    margin-top: 6px;
    color: var(--muted);
}

.compliance {
    background: #07090d;
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 44px;
    align-items: center;
}

.compliance-box {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.compliance-box p:last-child {
    color: var(--muted);
    margin-bottom: 0;
}

.link-list {
    display: grid;
    gap: 12px;
}

.link-list a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 800;
}

.link-list a:hover {
    border-color: var(--mint);
    color: var(--white);
}

.contact {
    background: #0b0f14;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 54px;
    align-items: start;
}

.contact-copy p:not(.eyebrow) {
    color: var(--text);
    font-size: 1.08rem;
}

.contact-data {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.contact-data a,
.contact-data span {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding-left: 16px;
    border-left: 3px solid var(--cyan);
    color: var(--white);
    font-weight: 800;
}

.form-shell {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

form {
    display: grid;
    gap: 12px;
}

label {
    color: var(--white);
    font-weight: 800;
    font-size: 0.92rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 14px 15px;
    color: var(--white);
    background: #0a0f15;
    font: inherit;
}

textarea {
    resize: vertical;
    min-height: 140px;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(0, 215, 255, 0.34);
    border-color: var(--cyan);
}

.honeypot {
    display: none;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.form-note a {
    color: var(--cyan);
    font-weight: 800;
}

.message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 6px;
    font-weight: 800;
}

.message.success {
    color: #062016;
    background: var(--ok);
}

.message.error {
    color: #2c0505;
    background: var(--danger);
}

.site-footer {
    padding: 58px 0 24px;
    border-top: 1px solid var(--line);
    background: #06080b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.9fr;
    gap: 40px;
}

.footer-logo {
    width: 240px;
    margin-bottom: 16px;
}

.site-footer h2 {
    margin-bottom: 14px;
    font-size: 1rem;
}

.site-footer a,
.site-footer span {
    display: block;
    color: var(--muted);
    margin: 7px 0;
}

.site-footer a:hover {
    color: var(--cyan);
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #77889b;
    font-size: 0.88rem;
}

.legal-nav {
    transform: none;
}

.legal-page {
    padding-top: 150px;
    min-height: 72vh;
    background: #0b0f14;
}

.legal-content {
    max-width: 860px;
}

.legal-content h1 {
    margin-bottom: 36px;
    font-size: 3rem;
}

.legal-content h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 1.35rem;
}

.legal-content p {
    color: var(--text);
}

.legal-content a {
    color: var(--cyan);
    font-weight: 800;
}

.legal-footer {
    margin-top: 0;
}

@media (max-width: 980px) {
    .site-header {
        height: 72px;
    }

    .brand {
        width: 220px;
        min-width: 180px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        display: grid;
        gap: 8px;
        padding: 18px 20px 24px;
        border-bottom: 1px solid var(--line);
        background: rgba(7, 9, 13, 0.98);
        transform: translateY(-130%);
        transition: transform 200ms ease;
    }

    .site-nav.open {
        transform: translateY(0);
    }

    .legal-nav {
        position: static;
        display: flex;
        padding: 0;
        border: 0;
        background: transparent;
        transform: none;
    }

    .site-nav a {
        justify-content: flex-start;
        min-height: 48px;
    }

    .hero {
        min-height: auto;
        padding: 118px 0 64px;
    }

    .hero-media {
        background:
            linear-gradient(180deg, rgba(7, 9, 13, 0.78), rgba(7, 9, 13, 0.94) 50%, var(--bg) 100%),
            url("assets/hotfix-shield-hero.png") center top / cover no-repeat;
    }

    .hero-grid,
    .intro-grid,
    .process-grid,
    .ai-grid,
    .compliance-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: none;
    }

    h1 {
        font-size: 3.1rem;
    }

    h2 {
        font-size: 2.12rem;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sticky-head {
        position: static;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .brand {
        width: 190px;
        min-width: 0;
    }

    .hero {
        padding-top: 108px;
    }

    h1 {
        font-size: 2.22rem;
    }

    h2 {
        font-size: 1.86rem;
    }

    .hero-lead {
        font-size: 1.08rem;
        max-width: 100%;
    }

    .eyebrow {
        font-size: 0.76rem;
    }

    .hero-copy,
    .hero-panel,
    .contact-copy,
    .form-shell {
        overflow: hidden;
    }

    .hero-actions,
    .btn {
        width: 100%;
        max-width: 100%;
    }

    .hero-panel h2 {
        font-size: 1.45rem;
    }

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

    .service-card {
        min-height: auto;
    }

    .timeline article {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-left: 18px;
    }

    .timeline span,
    .timeline h3,
    .timeline p {
        grid-column: 1;
    }

    .timeline span {
        grid-row: auto;
    }

    .form-shell,
    .hero-panel,
    .compliance-box {
        padding: 22px;
    }

    .section {
        padding: 70px 0;
    }

    .legal-page {
        padding-top: 120px;
    }

    .legal-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.68rem;
    }

    .brand {
        width: 165px;
    }

    .btn {
        padding: 0 14px;
        font-size: 0.94rem;
    }

    .hero-panel h2 {
        font-size: 1.32rem;
    }
}
