
:root {
    --bg: #080b10;
    --bg-soft: #0c1016;
    --panel: #10151d;
    --panel-2: #121923;
    --panel-3: #161e29;
    --line: rgba(255,255,255,.075);
    --line-strong: rgba(255,255,255,.12);
    --text: #f4f7fb;
    --muted: #8f99a8;
    --muted-2: #687383;
    --blue: #4d8dff;
    --blue-2: #74a7ff;
    --blue-soft: rgba(77,141,255,.12);
    --green: #54ca96;
    --red: #ec7479;
    --yellow: #dfb76f;
    --radius: 14px;
    --shadow: 0 30px 80px rgba(0,0,0,.36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 50% -20%, rgba(77,141,255,.08), transparent 33rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.page-noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 20;
    opacity: .02;
    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='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease;
}
.site-header.scrolled {
    background: rgba(8,11,16,.82);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}
.brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 9px;
}
.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-copy strong {
    font-size: 14px;
    letter-spacing: -.02em;
}
.brand-copy span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    gap: 31px;
    margin-left: auto;
}
.desktop-nav a,
.text-link {
    color: var(--muted);
    font-size: 13px;
    font-weight: 550;
    transition: color .15s ease;
}
.desktop-nav a:hover,
.text-link:hover { color: var(--text); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid rgba(77,141,255,.28);
    border-radius: 9px;
    background: var(--blue);
    color: white;
    font-size: 13px;
    font-weight: 680;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(77,141,255,.15);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.button:hover { transform: translateY(-1px); background: #5a96ff; }
.button span { font-size: 16px; }
.button-small { min-height: 36px; padding: 0 14px; font-size: 12px; }
.button-secondary {
    background: rgba(255,255,255,.025);
    border-color: var(--line-strong);
    box-shadow: none;
    color: #d7dde7;
}
.button-secondary:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.17); }
.button.full { width: 100%; }

.mobile-menu {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    color: var(--text);
    cursor: pointer;
}
.mobile-nav {
    display: none;
    padding: 8px 24px 18px;
    border-top: 1px solid var(--line);
    background: rgba(8,11,16,.98);
}
.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: #c2c9d4;
    font-size: 13px;
}

.section { position: relative; padding: 110px 0; }
.hero {
    min-height: 800px;
    display: flex;
    align-items: center;
    padding-top: 150px;
    overflow: hidden;
}
.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 56px;
}
.hero-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(10px);
}
.glow-one {
    width: 600px;
    height: 600px;
    top: 80px;
    right: -260px;
    background: radial-gradient(circle, rgba(77,141,255,.11), transparent 68%);
}
.glow-two {
    width: 500px;
    height: 500px;
    left: -270px;
    top: 300px;
    background: radial-gradient(circle, rgba(77,141,255,.045), transparent 68%);
}

.eyebrow {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255,255,255,.018);
    color: #9ba5b3;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.status-dot, .server-live i, .online-pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(84,202,150,.09);
}

.hero h1,
.section-heading h2,
.protection-copy h2,
.pricing-heading h2,
.cta h2,
.faq-heading h2 {
    margin: 0;
    letter-spacing: -.055em;
    font-weight: 690;
}
.hero h1 {
    max-width: 600px;
    font-size: clamp(52px, 6vw, 78px);
    line-height: .98;
}
.hero h1 span,
.section-heading h2 span,
.protection-copy h2 span,
.cta h2 span {
    color: #798595;
}
.hero-text {
    max-width: 570px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}
.hero-meta {
    display: flex;
    gap: 34px;
    margin-top: 44px;
}
.hero-meta div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hero-meta strong { font-size: 12px; font-weight: 650; }
.hero-meta span { color: var(--muted-2); font-size: 10px; }

.hero-visual { position: relative; min-width: 0; }
.dashboard-window {
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: #0d1117;
    box-shadow: var(--shadow);
    transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
}
.window-top {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
    background: #0f141b;
}
.window-brand { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 650; }
.window-brand img { width: 26px; height: 26px; border-radius: 6px; object-fit: contain; }
.online-pill, .server-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #9ea8b6;
    font-size: 9px;
}
.dashboard-layout {
    display: grid;
    grid-template-columns: 145px 1fr;
    min-height: 410px;
}
.mock-sidebar {
    padding: 18px 10px;
    border-right: 1px solid var(--line);
    background: #0e1319;
}
.mock-nav {
    min-height: 36px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 9px;
    border-radius: 7px;
    color: #697483;
    font-size: 9px;
}
.mock-nav span { width: 14px; text-align: center; }
.mock-nav b {
    margin-left: auto;
    min-width: 17px;
    padding: 2px 5px;
    border-radius: 99px;
    background: rgba(236,116,121,.11);
    color: #e88c91;
    text-align: center;
    font-size: 7px;
}
.mock-nav.active { background: var(--blue-soft); color: #b9cbef; }
.mock-content { min-width: 0; padding: 22px; }
.mock-heading { display: flex; align-items: flex-start; justify-content: space-between; }
.mock-heading small { color: var(--muted-2); font-size: 7px; letter-spacing: .08em; }
.mock-heading h3 { margin: 5px 0 0; font-size: 14px; font-weight: 650; }
.mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 19px;
}
.mock-stats > div {
    min-height: 84px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #111720;
}
.mock-stats span, .mock-stats small { display: block; }
.mock-stats span { color: #8e98a7; font-size: 8px; }
.mock-stats strong { display: block; margin: 7px 0; font-size: 20px; }
.mock-stats small { color: var(--muted-2); font-size: 7px; }
.mock-table {
    margin-top: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #111720;
}
.mock-table-title {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 13px;
    border-bottom: 1px solid var(--line);
    font-size: 9px;
}
.mock-table-title small { color: #80a7ff; font-size: 7px; }
.mock-row {
    min-height: 48px;
    display: grid;
    grid-template-columns: 27px 74px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border-bottom: 1px solid var(--line);
}
.mock-row:last-child { border-bottom: 0; }
.avatar {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    color: #a6b0bf;
    font-size: 7px;
}
.mock-player { display: flex; flex-direction: column; gap: 2px; }
.mock-player strong { font-size: 8px; font-weight: 620; }
.mock-player span, .detect-name { color: var(--muted-2); font-size: 7px; }
.risk {
    padding: 3px 5px;
    border-radius: 4px;
    font-size: 7px;
    font-weight: 650;
}
.risk.high { color: #e88f93; background: rgba(236,116,121,.1); }
.risk.medium { color: #e0bf86; background: rgba(223,183,111,.1); }
.risk.low { color: #99a8bc; background: rgba(137,153,176,.1); }

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    background: rgba(16,21,29,.94);
    box-shadow: 0 18px 40px rgba(0,0,0,.3);
    backdrop-filter: blur(12px);
}
.floating-card div { display: flex; flex-direction: column; gap: 3px; }
.floating-card strong { font-size: 9px; font-weight: 650; }
.floating-card div span { color: var(--muted-2); font-size: 7px; }
.floating-icon {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: rgba(236,116,121,.1);
    color: #e8888e;
    font-size: 10px;
    font-weight: 800;
}
.floating-icon.blue { background: var(--blue-soft); color: var(--blue-2); }
.detection-card { right: -24px; top: 80px; animation: float 5s ease-in-out infinite; }
.server-card { left: -32px; bottom: 42px; animation: float 5.4s ease-in-out infinite .7s; }
@keyframes float { 50% { transform: translateY(-7px); } }

.trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.012);
}
.trust-grid {
    min-height: 78px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 20px;
    color: #697484;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .065em;
    text-align: center;
    text-transform: uppercase;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 42px;
}
.section-kicker {
    display: block;
    margin-bottom: 15px;
    color: var(--blue-2);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .12em;
}
.section-heading h2,
.protection-copy h2,
.cta h2 { font-size: clamp(36px, 4vw, 52px); line-height: 1.05; }
.section-heading p {
    max-width: 430px;
    margin: 0 0 3px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.feature-card {
    min-height: 255px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,.012));
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(77,141,255,.22);
    background: linear-gradient(180deg, rgba(77,141,255,.045), rgba(255,255,255,.012));
}
.feature-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 44px 1fr 170px;
    align-items: start;
    gap: 14px;
}
.feature-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 30px;
}
.feature-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(77,141,255,.18);
    border-radius: 9px;
    background: var(--blue-soft);
    color: #8bb2ff;
    font-size: 15px;
}
.feature-card h3 {
    margin: 17px 0 8px;
    font-size: 16px;
    font-weight: 650;
    letter-spacing: -.02em;
}
.feature-large h3 { margin-top: 2px; }
.feature-card p {
    max-width: 450px;
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.75;
}
.mini-chart {
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-top: 10px;
}
.mini-chart span {
    flex: 1;
    height: var(--h);
    min-height: 10px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, rgba(77,141,255,.85), rgba(77,141,255,.13));
}
.code-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #0b0f14;
}
.code-card > div {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    color: #a7b0be;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 9px;
}
.code-card > div:last-child { border-bottom: 0; }
.code-card span { color: #566171; }
.code-card .code-success { color: #73cba2; }

.protection-section {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #0a0e13;
}
.protection-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 80px;
}
.protection-copy p {
    max-width: 490px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}
.check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    margin-top: 29px;
}
.check-list div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b1bac7;
    font-size: 10px;
}
.check-list span {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    background: var(--blue-soft);
    color: var(--blue-2);
    font-size: 9px;
}
.config-demo {
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    background: var(--panel);
    box-shadow: var(--shadow);
}
.config-header {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
}
.config-header div { display: flex; flex-direction: column; gap: 4px; }
.config-header small { color: var(--muted-2); font-size: 7px; letter-spacing: .08em; }
.config-header strong { font-size: 12px; font-weight: 650; }
.config-header > span { color: #6eca9a; font-size: 8px; }
.config-item {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
}
.config-item:last-child { border-bottom: 0; }
.config-item > div:first-child { display: flex; flex-direction: column; gap: 5px; }
.config-item strong { font-size: 10px; font-weight: 620; }
.config-item div > span { color: var(--muted-2); font-size: 8px; }
.config-actions { display: flex; align-items: center; gap: 10px; }
.response-pill {
    min-width: 38px;
    padding: 4px 6px;
    border-radius: 5px;
    background: var(--blue-soft);
    color: #a9c2ff !important;
    font-size: 7px !important;
    text-align: center;
}
.response-pill.muted { background: rgba(255,255,255,.04); color: #8994a4 !important; }
.toggle {
    position: relative;
    width: 30px;
    height: 17px;
    border-radius: 99px;
    background: #262e39;
}
.toggle i {
    position: absolute;
    width: 11px;
    height: 11px;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    background: #707c8c;
    transition: transform .2s ease;
}
.toggle.active { background: rgba(77,141,255,.35); }
.toggle.active i { transform: translateX(13px); background: var(--blue-2); }

.pricing-heading { text-align: center; margin-bottom: 40px; }
.pricing-heading h2 { font-size: clamp(38px, 4vw, 52px); }
.pricing-heading p { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.pricing-grid {
    width: min(840px, 100%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 0 auto;
}
.price-card {
    position: relative;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}
.price-card.featured {
    border-color: rgba(77,141,255,.3);
    background: linear-gradient(180deg, rgba(77,141,255,.055), var(--panel) 42%);
    box-shadow: 0 18px 60px rgba(0,0,0,.2);
}
.popular-badge {
    position: absolute;
    top: 17px;
    right: 17px;
    padding: 5px 7px;
    border-radius: 5px;
    background: var(--blue-soft);
    color: #91b5ff;
    font-size: 7px;
    font-weight: 750;
    letter-spacing: .06em;
}
.price-label { font-size: 15px; font-weight: 670; }
.price-top p {
    min-height: 38px;
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}
.price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 25px 0;
}
.price strong { font-size: 37px; letter-spacing: -.05em; }
.price span { color: var(--muted-2); font-size: 9px; }
.price-card ul {
    display: grid;
    gap: 12px;
    margin: 0 0 25px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}
.price-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #aeb7c4;
    font-size: 10px;
}
.price-card li span { color: #79a6ff; }
.pricing-note {
    margin: 18px 0 0;
    color: var(--muted-2);
    font-size: 9px;
    text-align: center;
}

.cta {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 50px;
    overflow: hidden;
    border: 1px solid rgba(77,141,255,.18);
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 20%, rgba(77,141,255,.13), transparent 25rem),
        linear-gradient(145deg, #111821, #0d1219);
}
.cta p {
    max-width: 480px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 9px; }

.faq-section { padding-top: 45px; }
.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 80px;
}
.faq-heading h2 { font-size: 38px; }
.faq-heading p { max-width: 330px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #d4dae3;
    font-size: 12px;
    font-weight: 560;
    cursor: pointer;
    list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary span { color: var(--muted-2); font-size: 18px; font-weight: 300; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p {
    max-width: 700px;
    margin: -3px 0 20px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.75;
}

footer {
    padding: 55px 0 28px;
    border-top: 1px solid var(--line);
    background: #070a0e;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}
.footer-brand p {
    max-width: 300px;
    margin: 17px 0 0;
    color: var(--muted-2);
    font-size: 10px;
    line-height: 1.7;
}
.footer-links {
    display: flex;
    gap: 90px;
}
.footer-links > div { display: flex; flex-direction: column; gap: 11px; }
.footer-links strong {
    margin-bottom: 3px;
    color: #c6ced9;
    font-size: 10px;
}
.footer-links a {
    color: var(--muted-2);
    font-size: 9px;
    transition: color .15s ease;
}
.footer-links a:hover { color: #b8c1cd; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: #596371;
    font-size: 8px;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
    .desktop-nav, .text-link { display: none; }
    .mobile-menu { display: grid; place-items: center; }
    .mobile-nav.open { display: block; }
    .hero { min-height: auto; padding-top: 135px; }
    .hero-grid,
    .protection-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid { gap: 65px; }
    .hero-copy { text-align: center; }
    .eyebrow, .hero-actions { margin-left: auto; margin-right: auto; justify-content: center; }
    .hero-text { margin-left: auto; margin-right: auto; }
    .hero-meta { justify-content: center; }
    .dashboard-window { transform: none; }
    .section-heading { align-items: start; flex-direction: column; gap: 18px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-large, .feature-wide { grid-column: span 2; }
    .protection-grid { gap: 45px; }
    .cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 28px, 1180px); }
    .nav-actions .button-small { display: none; }
    .section { padding: 78px 0; }
    .hero { padding-top: 120px; }
    .hero h1 { font-size: 48px; }
    .hero-meta { gap: 20px; }
    .hero-visual { margin: 0 -6px; }
    .dashboard-layout { grid-template-columns: 1fr; }
    .mock-sidebar { display: none; }
    .mock-content { padding: 14px; }
    .mock-row { grid-template-columns: 27px 64px 1fr; }
    .risk { display: none; }
    .floating-card { display: none; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 19px 0; }
    .trust-grid span:last-child { grid-column: span 2; }
    .feature-grid,
    .pricing-grid,
    .check-list {
        grid-template-columns: 1fr;
    }
    .feature-large,
    .feature-wide {
        grid-column: span 1;
        display: block;
    }
    .mini-chart { margin-top: 28px; }
    .code-card { margin-top: 26px; }
    .cta { padding: 30px 23px; }
    .footer-grid, .footer-bottom { align-items: flex-start; flex-direction: column; }
    .footer-links { gap: 60px; }
}
