@font-face {
    font-family: "LeadShield Display";
    src: url("assets/local-fonts/bicubik-regular.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "LeadShield Sans";
    src: url("assets/local-fonts/montserrat-medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "LeadShield Mono";
    src: url("assets/local-fonts/kraft-mono-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    color-scheme: dark;
    --bg: #08090b;
    --panel: rgba(17, 19, 23, 0.88);
    --line: rgba(255, 255, 255, 0.11);
    --text: #f6efe6;
    --muted: #ab9f90;
    --signal: #ff6a00;
    --signal-soft: #ffb067;
    --acid: #d6ff4f;
    --max: 1440px;
    --radius: 28px;
    --radius-sm: 18px;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "LeadShield Sans", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 106, 0, 0.14), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(214, 255, 79, 0.12), transparent 24%),
        linear-gradient(180deg, #08090b 0%, #0b0d11 42%, #07080b 100%);
    color: var(--text);
    overflow-x: hidden;
}

a {
    color: inherit;
}

.noise,
.grid-scan,
.orb {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.noise {
    z-index: -4;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px);
    background-size: 18px 18px, 22px 22px;
}

.grid-scan {
    z-index: -3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, black 48%, transparent 100%);
}

.orb {
    z-index: -2;
    filter: blur(80px);
}

.orb-a {
    background: radial-gradient(circle at 18% 14%, rgba(255, 106, 0, 0.18), transparent 24%);
}

.orb-b {
    background: radial-gradient(circle at 82% 44%, rgba(214, 255, 79, 0.16), transparent 22%);
}

.masthead,
main,
.site-footer {
    width: min(calc(100vw - 36px), var(--max));
    margin: 0 auto;
}

.masthead {
    position: sticky;
    top: 14px;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    margin-top: 18px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(8, 10, 12, 0.86);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 106, 0, 0.34);
    background:
        linear-gradient(135deg, rgba(255, 106, 0, 0.22) 0%, rgba(214, 255, 79, 0.08) 100%),
        #111318;
    color: var(--signal-soft);
    font-family: "LeadShield Display", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.16em;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong,
.hero-headline h1,
.section-head h2,
.threat-card h2,
.difference-card h3,
.fit-card h3,
.offer-card strong,
.request-copy h2,
.faq-card h3,
.site-footer strong {
    font-family: "LeadShield Display", "LeadShield Sans", sans-serif;
}

.brand-copy strong {
    font-size: 1.3rem;
    letter-spacing: 0.06em;
}

.brand-copy small,
.eyebrow,
.threat-tag,
.signal-row span,
.flow-card span,
.fit-card span,
.offer-card span,
.mini-stack span,
.compare-table th,
.compare-table td:first-child,
.hero-stamp {
    font-family: "LeadShield Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.topnav {
    display: inline-flex;
    justify-content: center;
    gap: 22px;
}

.topnav a,
.micro-link,
.masthead-cta .signal-link,
.button,
.site-footer nav a,
.mini-stack a {
    text-decoration: none;
}

.topnav a,
.micro-link {
    color: var(--muted);
}

.masthead-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.signal-link {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 106, 0, 0.28);
    background: linear-gradient(90deg, rgba(255, 106, 0, 0.18), rgba(255, 106, 0, 0.08));
}

.nav-toggle {
    display: none;
    padding: 0;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
}

main {
    padding: 40px 0 80px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(420px, 0.72fr);
    gap: 18px;
}

.hero-panel,
.threat-card,
.flow-card,
.difference-card,
.fit-card,
.offer-block,
.offer-card,
.request-shell,
.faq-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(18, 20, 24, 0.92) 0%, rgba(11, 13, 17, 0.97) 100%);
    box-shadow: var(--shadow);
    min-width: 0;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.hero-panel-main {
    padding: clamp(26px, 4vw, 56px);
    border-radius: 34px 18px 34px 34px;
}

.hero-panel-main::before {
    content: "LEADSHIELD";
    position: absolute;
    top: 26px;
    right: -12px;
    color: rgba(255, 255, 255, 0.04);
    font-family: "LeadShield Display", sans-serif;
    font-size: clamp(4.8rem, 10vw, 11rem);
    line-height: 0.88;
    letter-spacing: 0.08em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hero-panel-side {
    display: grid;
    gap: 18px;
    padding: clamp(20px, 3vw, 28px);
    border-radius: 18px 34px 34px 18px;
    align-content: start;
}

.eyebrow {
    color: var(--signal-soft);
    font-size: 0.67rem;
}

.hero-headline {
    display: grid;
    gap: 18px;
    margin: 22px 0 16px;
    max-width: 54rem;
    min-width: 0;
}

.hero-stamp {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgba(214, 255, 79, 0.22);
    background: rgba(214, 255, 79, 0.08);
    color: var(--acid);
    font-size: 0.62rem;
}

.hero-headline h1 {
    margin: 0;
    font-size: clamp(1.96rem, 4.15vw, 4.45rem);
    line-height: 0.95;
    letter-spacing: 0.012em;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
    hyphens: none;
    text-transform: uppercase;
}

.section-head h2,
.request-copy h2 {
    margin: 0;
    font-size: clamp(1.72rem, 2.9vw, 3.15rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.018em;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
    hyphens: none;
}

.hero-headline h1 span,
.section-head h2,
.request-copy h2 {
    color: var(--signal-soft);
}

.hero-deck,
.request-copy p,
.threat-card p,
.flow-card p,
.difference-card li,
.fit-card p,
.offer-block p,
.offer-card p,
.faq-card p,
.site-footer p,
.breach-strip p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: "LeadShield Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible,
.signal-link:hover,
.signal-link:focus-visible,
.topnav a:hover,
.topnav a:focus-visible,
.micro-link:hover,
.micro-link:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(90deg, var(--signal) 0%, #ff8f3f 100%);
    color: #100d0a;
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.hero-ledger,
.difference-grid,
.fit-grid,
.faq-grid {
    display: grid;
    gap: 12px;
}

.hero-ledger {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-ledger article,
.signal-row,
.offer-card,
.mini-stack,
.faq-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.hero-ledger span,
.offer-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--signal-soft);
    font-family: "LeadShield Display", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 0.9;
}

.radar {
    position: relative;
    width: min(100%, 336px);
    justify-self: center;
    aspect-ratio: 1 / 1;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(circle, rgba(255, 106, 0, 0.18) 0%, rgba(255, 106, 0, 0) 34%),
        linear-gradient(180deg, rgba(16, 17, 20, 0.95) 0%, rgba(10, 11, 14, 0.88) 100%);
}

.radar,
.signal-row,
.threat-card,
.flow-card,
.difference-card,
.fit-card,
.offer-card,
.request-shell,
.faq-card {
    border-radius: var(--radius-sm);
}

.radar-core,
.radar-ring,
.radar-node {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
}

.radar-core {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--acid);
    box-shadow: 0 0 0 10px rgba(214, 255, 79, 0.08);
}

.radar-ring {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.ring-1 {
    width: 120px;
    height: 120px;
}

.ring-2 {
    width: 220px;
    height: 220px;
}

.ring-3 {
    width: 320px;
    height: 320px;
}

.radar-sweep {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255, 106, 0, 0.34), transparent 92deg);
    mix-blend-mode: screen;
    animation: sweep 7s linear infinite;
}

.radar-node {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--signal-soft);
    box-shadow: 0 0 0 8px rgba(255, 106, 0, 0.08);
}

.node-a {
    top: 29%;
    left: 58%;
}

.node-b {
    top: 67%;
    left: 26%;
}

.node-c {
    top: 77%;
    left: 73%;
}

.signal-board {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.signal-row {
    min-width: 0;
    padding: 14px 16px;
}

.signal-row strong {
    display: block;
    margin-top: 7px;
    font-size: clamp(0.84rem, 0.77rem + 0.06vw, 0.92rem);
    line-height: 1.32;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
    hyphens: none;
}

.breach-strip {
    margin: 20px 0 26px;
    padding: 18px 22px;
    border-top: 1px solid rgba(255, 106, 0, 0.26);
    border-bottom: 1px solid rgba(255, 106, 0, 0.26);
    background: linear-gradient(90deg, rgba(255, 106, 0, 0.12), rgba(255, 255, 255, 0.02));
}

.threat-grid,
.flow-grid,
.offer-section,
.request-section {
    display: grid;
    gap: 14px;
}

.threat-grid,
.offer-section {
    grid-template-columns: 1.12fr 1fr 1fr;
}

.threat-card,
.flow-card,
.difference-card,
.fit-card,
.offer-block,
.offer-card,
.faq-card {
    padding: 24px;
}

.threat-accent {
    background: linear-gradient(180deg, rgba(255, 106, 0, 0.12) 0%, rgba(12, 13, 16, 0.96) 100%);
}

.threat-tag,
.flow-card span,
.fit-card span,
.offer-card span,
.mini-stack span {
    color: var(--signal-soft);
    font-size: 0.65rem;
}

.threat-card h2,
.section-head h2,
.difference-card h3,
.fit-card h3,
.faq-card h3 {
    margin: 10px 0 14px;
    font-size: clamp(1.6rem, 2.5vw, 2.8rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.system-flow,
.difference-board,
.faq-section {
    padding-top: 48px;
}

.section-head {
    display: grid;
    gap: 10px;
    max-width: 960px;
    margin-bottom: 18px;
    min-width: 0;
}

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

.flow-card span {
    display: inline-flex;
    margin-bottom: 42px;
}

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

.difference-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
}

.difference-card li + li {
    margin-top: 10px;
}

.difference-hot {
    border-color: rgba(255, 106, 0, 0.32);
    background: linear-gradient(180deg, rgba(255, 106, 0, 0.08) 0%, rgba(15, 16, 19, 0.97) 100%);
}

.difference-muted {
    border-style: dashed;
}

.compare-table-wrap {
    margin-top: 16px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.compare-table th,
.compare-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.compare-table th {
    color: var(--signal-soft);
    font-size: 0.67rem;
    background: rgba(255, 255, 255, 0.04);
}

.fit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
}

.offer-section {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
    margin-top: 40px;
}

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

.offer-card {
    min-width: 0;
    display: grid;
    align-content: start;
}

.offer-card strong {
    font-size: clamp(1.22rem, 1.9vw, 2.05rem);
    line-height: 0.96;
    letter-spacing: 0.01em;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.offer-card.accent {
    border-color: rgba(214, 255, 79, 0.24);
    background: linear-gradient(180deg, rgba(214, 255, 79, 0.08) 0%, rgba(11, 13, 16, 0.98) 100%);
}

.request-section {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
    margin-top: 44px;
}

.request-shell {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 14px;
    padding: 24px;
}

form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field {
    display: grid;
    gap: 8px;
}

.field span {
    color: var(--signal-soft);
    font-size: 0.7rem;
    font-family: "LeadShield Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.field input,
.field textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
}

.field textarea {
    min-height: 132px;
    resize: vertical;
}

.field-wide,
.form-consent-shell,
.button-submit,
.form-status {
    grid-column: 1 / -1;
}

.form-consent-shell {
    display: grid;
    gap: 10px;
}

.consent-check {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.consent-check-required {
    border-color: rgba(214, 255, 79, 0.18);
    background: linear-gradient(180deg, rgba(214, 255, 79, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
}

.consent-check input {
    margin: 2px 0 0;
    accent-color: var(--acid);
}

.consent-copy {
    color: var(--text);
    line-height: 1.45;
}

.consent-copy a {
    color: var(--signal);
    text-decoration: underline;
}

.button-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.button-submit[disabled] {
    opacity: 0.72;
    cursor: progress;
}

.consent-error,
.form-status {
    margin: 0;
    line-height: 1.6;
}

.consent-error {
    min-height: 20px;
    color: #ff9d85;
}

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

.form-status {
    min-height: 24px;
}

.form-status[data-state="success"] {
    color: var(--acid);
}

.form-status[data-state="error"] {
    color: #ff9d85;
}

.mini-stack {
    display: grid;
    gap: 8px;
}

.bot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 24px;
    padding: 0 0 40px;
    color: var(--muted);
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: start;
}

.footer-links {
    display: grid;
    gap: 8px;
    justify-items: end;
    min-width: 0;
    max-width: 72rem;
}

.footer-links nav {
    justify-content: flex-end;
}

.site-footer nav a,
.footer-settings-button {
    font-size: clamp(0.82rem, 0.76rem + 0.08vw, 0.92rem);
    line-height: 1.32;
    text-wrap: pretty;
}

.footer-settings-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--signal-soft);
    font: inherit;
    cursor: pointer;
}

.footer-legal-note {
    max-width: 40rem;
    font-size: 0.92rem;
    line-height: 1.42;
    text-align: right;
    text-wrap: pretty;
}

body.legal-modal-open {
    overflow-x: hidden;
}

.legal-banner {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 18px;
    width: min(920px, calc(100vw - 24px));
    transform: translateX(-50%);
    z-index: 60;
    pointer-events: none;
}

.legal-banner__panel {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(18, 20, 24, 0.95) 0%, rgba(10, 12, 16, 0.98) 100%);
    box-shadow: var(--shadow);
    pointer-events: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) auto;
    gap: 18px;
    align-items: center;
}

.legal-banner__copy {
    display: grid;
    gap: 4px;
}

.legal-banner__eyebrow {
    margin: 0;
    color: var(--signal-soft);
    font-family: "LeadShield Mono", monospace;
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.legal-banner__title {
    display: block;
    margin: 0;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.08;
    letter-spacing: 0.015em;
}

.legal-banner__lead,
.legal-banner__status {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.legal-banner__lead a {
    color: var(--signal);
}

.legal-banner__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 10px;
}

.legal-banner__actions .button {
    min-height: 40px;
    padding-inline: 18px;
    white-space: nowrap;
}

.legal-banner__link {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--signal);
    font: inherit;
    line-height: 1;
    cursor: pointer;
    text-decoration: underline;
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@keyframes sweep {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1180px) {
    .hero,
    .request-section,
    .offer-section,
    .threat-grid,
    .flow-grid,
    .fit-grid,
    .faq-grid,
    .offer-cards,
    .hero-ledger,
    .difference-grid,
    .request-shell,
    form {
        grid-template-columns: 1fr;
    }

    .masthead {
        grid-template-columns: auto auto;
    }

    .topnav,
    .masthead-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
        justify-self: end;
    }

    body.nav-open .topnav {
        position: fixed;
        inset: 86px 18px auto 18px;
        display: grid;
        gap: 12px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(10, 12, 16, 0.95);
        box-shadow: var(--shadow);
    }
}

@media (max-width: 720px) {
    .masthead,
    main,
    .site-footer {
        width: min(calc(100vw - 20px), var(--max));
    }

    .masthead {
        top: 10px;
        margin-top: 10px;
        padding: 12px 14px;
    }

    main {
        padding-top: 26px;
    }

    .hero-panel-main,
    .hero-panel-side,
    .threat-card,
    .flow-card,
    .difference-card,
    .fit-card,
    .offer-block,
    .offer-card,
    .request-shell,
    .faq-card {
        padding: 18px;
    }

    .hero {
        gap: 12px;
    }

    .hero-headline {
        gap: 12px;
        margin: 16px 0 12px;
    }

    .eyebrow,
    .threat-tag,
    .flow-card span,
    .fit-card span,
    .offer-card span,
    .mini-stack span {
        letter-spacing: 0.1em;
        overflow-wrap: anywhere;
    }

    .hero-headline h1 {
        font-size: clamp(1.22rem, 6.8vw, 1.88rem);
        line-height: 0.96;
    }

    .section-head h2,
    .request-copy h2 {
        font-size: clamp(1.14rem, 6vw, 1.68rem);
        line-height: 0.98;
    }

    .hero-deck,
    .breach-strip p {
        font-size: 0.95rem;
        line-height: 1.68;
    }

    .hero-actions {
        gap: 10px;
        margin: 20px 0 24px;
    }

    .hero-actions .button {
        width: 100%;
        justify-content: center;
    }

    .brand-copy small,
    .hero-panel-main::before,
    .radar {
        display: none;
    }

    .hero-panel-side {
        gap: 10px;
        padding: 14px;
    }

    .signal-row {
        padding: 12px 14px;
    }

    .signal-row strong {
        margin-top: 6px;
        font-size: 0.84rem;
        line-height: 1.34;
    }

    .site-footer nav a,
    .footer-settings-button,
    .footer-legal-note {
        font-size: 0.84rem;
    }

    .hero-ledger {
        gap: 10px;
    }

    .breach-strip {
        margin: 16px 0 20px;
        padding: 14px 16px;
    }

    .compare-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .compare-table,
    .compare-table tbody {
        display: grid;
        gap: 12px;
        min-width: 0;
    }

    .compare-table thead {
        display: none;
    }

    .compare-table tr {
        display: grid;
        gap: 12px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(18, 20, 24, 0.92) 0%, rgba(11, 13, 17, 0.97) 100%);
    }

    .compare-table td {
        display: grid;
        gap: 6px;
        padding: 0;
        border: 0;
    }

    .compare-table td:first-child {
        color: var(--signal-soft);
        font-size: 0.62rem;
        letter-spacing: 0.14em;
    }

    .compare-table td:not(:first-child)::before {
        content: attr(data-label);
        color: var(--muted);
        font-family: "LeadShield Mono", monospace;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .site-footer {
        flex-direction: column;
    }

    .consent-check {
        grid-template-columns: 18px minmax(0, 1fr);
        padding: 14px;
    }

    .footer-links {
        justify-items: start;
    }

    .footer-links nav {
        justify-content: flex-start;
    }

    .footer-legal-note {
        text-align: left;
    }

    .legal-banner__panel {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }

    .legal-banner__title {
        font-size: 0.94rem;
    }

    .legal-banner__lead,
    .legal-banner__status {
        font-size: 0.8rem;
    }

    .legal-banner__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .legal-banner__actions .button {
        width: 100%;
    }

    .legal-banner__link {
        align-self: flex-start;
    }
}
