:root {
    --bg: #050505;
    --bg-alt: #0c0c0e;
    --surface: #111114;
    --surface-2: #16161a;
    --border: #22222a;
    --text: #f2f2f4;
    --text-dim: #9a9aa3;
    --accent: #00ff9d;
    --accent-dim: #00b873;
    --danger: #ff4d5e;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 20% 0%, rgba(0, 255, 157, 0.06), transparent 40%),
        radial-gradient(circle at 80% 40%, rgba(0, 255, 157, 0.04), transparent 50%);
    background-attachment: fixed;
}

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

/* ----- Header ----- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(5, 5, 5, 0.72);
    border-bottom: 1px solid var(--border);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 16px;
}

.logo-mark {
    color: var(--accent);
    font-size: 12px;
    animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.logo-text .dot {
    color: var(--text-dim);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    font-size: 14px;
    color: var(--text-dim);
}

.nav-links a {
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 2px 4px;
    transition: color 0.15s ease;
}

.lang-btn:hover {
    color: var(--text);
}

.lang-btn.active {
    color: var(--accent);
}

.lang-sep {
    color: var(--border);
    user-select: none;
}

@media (max-width: 540px) {
    .nav {
        padding: 14px 20px;
    }
}

/* ----- Hero ----- */
.hero {
    padding: 120px 32px 100px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    opacity: 0.35;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 820px;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 28px;
}

.accent {
    color: var(--text-dim);
}

.lead {
    font-size: 19px;
    color: var(--text-dim);
    max-width: 640px;
    margin-bottom: 40px;
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-family: var(--font-mono);
    letter-spacing: -0.01em;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: #05100c;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-1px);
}

.btn-ghost {
    color: var(--text);
    border-color: var(--border);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    font-family: var(--font-mono);
}

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

/* ----- Sections ----- */
.section {
    padding: 110px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-alt {
    background: var(--bg-alt);
    max-width: 100%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-alt > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-lead {
    color: var(--text-dim);
    font-size: 17px;
    max-width: 620px;
}

/* ----- Grids & Cards ----- */
.grid {
    display: grid;
    gap: 16px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--accent-dim);
    transform: translateY(-2px);
    background: var(--surface-2);
}

.card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover::after {
    opacity: 1;
}

.card-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.card p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.65;
}

/* ----- Stack list ----- */
.stack {
    display: grid;
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.stack-item {
    background: var(--surface);
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: start;
    gap: 40px;
    transition: background 0.2s;
}

.stack-item:hover {
    background: var(--surface-2);
}

.stack-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.15em;
    padding-top: 4px;
    grid-row: span 2;
}

.stack-item h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.stack-item p {
    color: var(--text-dim);
    font-size: 15px;
    max-width: 720px;
    grid-column: 2;
}

@media (max-width: 640px) {
    .stack-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px;
    }
    .stack-item p {
        grid-column: 1;
    }
}

/* ----- Mistakes ----- */
.mistake {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 2px solid var(--danger);
    border-radius: 8px;
    padding: 28px 32px;
    transition: all 0.2s;
}

.mistake:hover {
    border-left-color: var(--danger);
    background: var(--surface-2);
    transform: translateX(2px);
}

.mistake h3 {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.x {
    color: var(--danger);
    font-size: 14px;
    font-family: var(--font-mono);
}

.mistake p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
}

/* ----- Stufen (Levels) ----- */
.levels { display: grid; gap: 16px; }

.level-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--lc, var(--accent));
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease;
}
.level-card:hover { transform: translateY(-2px); }

.level-header {
    padding: 22px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}
.level-num {
    font-family: var(--font-mono);
    font-size: 30px;
    font-weight: 700;
    color: var(--lc, var(--accent));
    line-height: 1;
    min-width: 44px;
}
.level-header h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--lc, var(--accent));
    margin-bottom: 4px;
}
.level-tag { font-size: 13px; color: var(--text-dim); }

.level-effort {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--lc, var(--accent));
    padding: 4px 10px;
    border: 1px solid var(--lc, var(--accent));
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0.75;
    align-self: center;
}

.level-body {
    padding: 22px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.level-col-head {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 12px;
    display: block;
}

.level-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.level-list li { font-size: 14px; line-height: 1.5; padding-left: 20px; position: relative; color: var(--text); }
.level-list-good li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-family: var(--font-mono); font-size: 12px; font-weight: 700; }
.level-list-bad li::before { content: "!"; position: absolute; left: 0; color: var(--danger); font-family: var(--font-mono); font-size: 13px; font-weight: 900; }
.level-list-bad li { color: var(--text-dim); }

.level-tools {
    padding: 14px 28px;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-dim);
}
.level-tools span { color: var(--accent); font-family: var(--font-mono); margin-right: 6px; font-weight: 600; }

@media (max-width: 640px) {
    .level-body { grid-template-columns: 1fr; gap: 20px; }
    .level-header { flex-wrap: wrap; }
    .level-effort { margin-left: 0; }
}

/* ----- Fact cards ----- */
.fact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 30px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.fact-card:hover {
    border-color: var(--accent-dim);
    background: var(--surface-2);
    transform: translateY(-2px);
}
.fact-num {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.15;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.fact-card h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; }
.fact-card p { color: var(--text-dim); font-size: 15px; line-height: 1.65; }

/* ----- PGP ----- */
.pgp-hist {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    margin-bottom: 36px;
}
.pgp-year {
    font-family: var(--font-mono);
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
    min-width: 90px;
    line-height: 1;
}
.pgp-hist p { color: var(--text-dim); font-size: 15px; line-height: 1.7; }

.pgp-concept h3 { font-size: 20px; font-weight: 600; margin-bottom: 24px; letter-spacing: -0.02em; }

.pgp-keys {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}
.pgp-key {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
}
.pgp-pub { border-color: var(--accent-dim); }
.pgp-priv { border-color: rgba(255,77,94,0.35); }
.pgp-key-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.pgp-key strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.pgp-key p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.pgp-arrow {
    font-size: 26px;
    color: var(--text-dim);
    text-align: center;
    font-family: var(--font-mono);
    opacity: 0.5;
}

.pgp-use h3 { font-size: 20px; font-weight: 600; margin-bottom: 20px; letter-spacing: -0.02em; }
.pgp-use code {
    font-family: var(--font-mono);
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--accent);
    word-break: break-all;
}

@media (max-width: 680px) {
    .pgp-keys { grid-template-columns: 1fr; }
    .pgp-arrow { transform: rotate(90deg); }
    .pgp-hist { flex-direction: column; gap: 12px; }
    .pgp-year { font-size: 28px; }
}

/* ----- Steps (How-to) ----- */
.steps {
    display: grid;
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.step {
    background: var(--surface);
    padding: 22px 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: background 0.2s ease;
}
.step:hover { background: var(--surface-2); }
.step-num {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    min-width: 34px;
    padding-top: 4px;
    letter-spacing: 0.04em;
}
.step-body h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.step-body p { color: var(--text-dim); font-size: 15px; line-height: 1.65; }

/* ----- Compare (VPN good/bad) ----- */
.compare {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.compare-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px;
    position: relative;
    transition: all 0.2s ease;
}

.compare-item.good {
    border-top: 2px solid var(--accent);
}

.compare-item.bad {
    border-top: 2px solid var(--danger);
}

.compare-item:hover {
    background: var(--surface-2);
    transform: translateY(-2px);
}

.compare-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 18px;
    font-weight: 600;
}

.compare-item.good .compare-tag {
    color: var(--accent);
    background: rgba(0, 255, 157, 0.08);
}

.compare-item.bad .compare-tag {
    color: var(--danger);
    background: rgba(255, 77, 94, 0.1);
}

.compare-item h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.compare-item p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.compare-item p:last-child {
    margin-bottom: 0;
}

.src-note {
    font-family: var(--font-mono);
    font-size: 12px !important;
    color: var(--text-dim) !important;
    opacity: 0.7;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* ----- Info block (how to pick / rules / use instead) ----- */
.info-block {
    margin-top: 40px;
    padding: 28px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.info-block h3 {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    font-weight: 600;
}

.info-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.info-list li {
    padding-left: 22px;
    position: relative;
    color: var(--text);
    font-size: 15px;
    line-height: 1.55;
}

.info-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--accent);
    font-family: var(--font-mono);
    font-weight: 700;
}

/* ----- Law timeline ----- */
.law-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    margin-bottom: 40px;
    padding-left: 0;
    border-left: 2px solid var(--border);
    margin-left: 80px;
}

.law-entry {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0 32px;
    padding: 28px 28px 28px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: background 0.2s;
}

.law-entry:last-child {
    border-bottom: none;
}

.law-entry::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 36px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid var(--bg-alt);
    transition: background 0.2s;
}

.law-entry:hover::before {
    background: var(--accent);
}

.law-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    padding-right: 28px;
    padding-top: 4px;
}

.law-year {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dim);
}

.law-scope {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255,77,94,0.12);
    color: var(--danger);
    font-weight: 600;
}

.law-scope-good {
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent);
}

.law-body h3 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.law-body p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 10px;
}

.law-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .law-timeline {
        margin-left: 0;
        border-left: none;
    }
    .law-entry {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 0;
    }
    .law-entry::before { display: none; }
    .law-meta {
        flex-direction: row;
        align-items: center;
        padding-right: 0;
        padding-top: 0;
    }
}

/* ----- Law cards grid ----- */
.law-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.law-grid-wide {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.law-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    transition: all 0.2s ease;
}

.law-card:hover {
    background: var(--surface-2);
    transform: translateY(-2px);
}

.law-flag {
    font-size: 24px;
    display: block;
    margin-bottom: 14px;
}

.law-card h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.law-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 10px;
}

.law-card p:last-child { margin-bottom: 0; }

.law-card-warn {
    border-color: rgba(255, 77, 94, 0.3);
    border-top: 2px solid var(--danger);
}

.law-card-warn h3 {
    color: var(--text);
}

/* ----- Checklist ----- */
.checklist {
    list-style: none;
    counter-reset: step;
    max-width: 820px;
}

.checklist li {
    counter-increment: step;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    font-size: 17px;
    transition: padding 0.2s;
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent);
    min-width: 40px;
    padding-top: 4px;
    letter-spacing: 0.05em;
}

.checklist li:hover {
    padding-left: 8px;
}

.checklist li span {
    color: var(--text);
}

/* ----- CTA Section ----- */
.cta-section {
    padding: 120px 32px;
    text-align: center;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 157, 0.08), transparent 60%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.cta-inner h2 {
    margin-bottom: 20px;
}

.cta-inner p {
    color: var(--text-dim);
    font-size: 17px;
    margin-bottom: 36px;
}

/* ----- Footer ----- */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 48px 32px;
    background: var(--bg);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.footer-inner .logo-text {
    font-family: var(--font-mono);
    font-size: 15px;
    margin-left: 10px;
}

.disclaimer {
    color: var(--text-dim);
    font-size: 13px;
    max-width: 620px;
    line-height: 1.6;
}

.copy {
    color: var(--text-dim);
    font-size: 12px;
    font-family: var(--font-mono);
}

/* ----- Warum (Reason cards) ----- */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.reason-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 30px;
    transition: all 0.25s ease;
    position: relative;
}

.reason-card:hover {
    border-color: rgba(255, 77, 94, 0.35);
    background: var(--surface-2);
    transform: translateY(-2px);
}

.reason-num {
    font-family: var(--font-mono);
    font-size: 42px;
    font-weight: 900;
    color: var(--danger);
    opacity: 0.12;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.reason-card h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; }
.reason-card p { color: var(--text-dim); font-size: 15px; line-height: 1.65; }

/* ----- Case cards (Berühmte Enttarnungen) ----- */
.cases { display: grid; gap: 14px; }

.case-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 24px;
    transition: all 0.2s ease;
    align-items: start;
}

.case-card:hover {
    background: var(--surface-2);
    border-color: rgba(255, 77, 94, 0.3);
    transform: translateX(2px);
}

.case-num {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--danger);
    opacity: 0.3;
    line-height: 1;
    padding-top: 5px;
}

.case-body { display: flex; flex-direction: column; gap: 8px; }

.case-name { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }

.case-field {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--danger);
    opacity: 0.65;
    text-transform: uppercase;
}

.case-what { color: var(--text-dim); font-size: 15px; line-height: 1.65; }

.case-lesson {
    margin-top: 10px;
    padding: 10px 14px;
    background: rgba(0, 255, 157, 0.04);
    border-left: 2px solid var(--accent);
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-dim);
    font-family: var(--font-mono);
    line-height: 1.6;
}

.case-lesson::before { content: "→ "; color: var(--accent); font-weight: 700; }

@media (max-width: 580px) {
    .case-card { grid-template-columns: 1fr; gap: 10px; }
    .case-num { font-size: 20px; }
}

/* ----- World Surveillance Map ----- */
.map-container {
    position: relative;
    background: #08080f;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

#world-map { display: block; width: 100%; }

#map-tooltip {
    display: none;
    position: absolute;
    background: rgba(8, 8, 15, 0.96);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    max-width: 260px;
    pointer-events: none;
    backdrop-filter: blur(8px);
    z-index: 10;
}

#map-tooltip strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 6px; }
#map-tooltip p { font-size: 13px; color: var(--text-dim); line-height: 1.55; margin-top: 8px; }

.tt-score {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.score-1 { background: rgba(0, 204, 102, 0.15); color: #00cc66; }
.score-2 { background: rgba(136, 204, 0, 0.15); color: #88cc00; }
.score-3 { background: rgba(255, 170, 0, 0.15); color: #ffaa00; }
.score-4 { background: rgba(255, 85, 0, 0.15); color: #ff5500; }
.score-5 { background: rgba(204, 17, 51, 0.15); color: #cc1133; }

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,0.012);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-dim);
    font-family: var(--font-mono);
}

.legend-dot {
    width: 11px;
    height: 11px;
    border-radius: 2px;
    flex-shrink: 0;
}

.map-err {
    text-align: center;
    color: var(--text-dim);
    padding: 60px 20px;
    font-family: var(--font-mono);
    font-size: 14px;
}

/* ----- Fingerprint grid ----- */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}

.fp-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px 20px;
    transition: all 0.2s ease;
}

.fp-card:hover {
    border-color: var(--accent-dim);
    background: var(--surface-2);
}

.fp-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.fp-value {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 10px;
}

.fp-bar {
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.fp-fill {
    height: 100%;
    background: var(--accent-dim);
    border-radius: 2px;
}

/* ----- Fingerprint demo ----- */
.fp-demo { margin-bottom: 40px; }

.fp-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--accent-dim);
    border-radius: 8px;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.fp-demo-btn:hover {
    background: rgba(0, 255, 157, 0.08);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.fp-results {
    margin-top: 16px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.fp-result-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fp-result-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    text-transform: uppercase;
}

.fp-result-value {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    word-break: break-all;
    line-height: 1.5;
}

.fp-result-canvas { grid-column: 1 / -1; }

.fp-canvas-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.fp-canvas-img {
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 4px;
    image-rendering: pixelated;
}

/* ----- Quantum warning ----- */
.quantum-warn {
    background: rgba(255, 77, 94, 0.05);
    border: 1px solid rgba(255, 77, 94, 0.22);
    border-left: 3px solid var(--danger);
    border-radius: 10px;
    padding: 28px 32px;
    margin-bottom: 28px;
}

.quantum-warn h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.quantum-warn p { color: var(--text-dim); font-size: 15px; line-height: 1.65; }

/* ----- iOS vs Android Security ----- */
.secure-compare {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.secure-platform {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.secure-platform-header {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.secure-platform-name {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: var(--font-mono);
}

.secure-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-strong { background: rgba(0,255,157,0.1);  color: var(--accent); }
.badge-mixed  { background: rgba(255,170,0,0.1);  color: #ffaa00; }

.secure-platform-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.secure-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
}

.sec-icon {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    min-width: 14px;
    padding-top: 2px;
    flex-shrink: 0;
}

.sec-icon.ok   { color: var(--accent); }
.sec-icon.warn { color: var(--danger); }
.sec-icon.caut { color: #ffaa00; }

.secure-row p { color: var(--text-dim); margin: 0; }
.secure-row p strong { color: var(--text); }

.threat-table-wrap {
    overflow-x: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-top: 24px;
}

.threat-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.threat-table th {
    text-align: left;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.threat-table td {
    padding: 13px 18px;
    border-bottom: 1px solid rgba(34,34,42,0.5);
    vertical-align: top;
    line-height: 1.55;
}

.threat-table tr:last-child td  { border-bottom: none; }
.threat-table tr:hover td       { background: rgba(255,255,255,0.02); }
.threat-table td:first-child    { color: var(--danger); font-family: var(--font-mono); font-size: 12px; white-space: nowrap; width: 200px; }
@media (max-width: 600px) { .threat-table td:first-child { white-space: normal; width: auto; } }
.threat-table td:last-child     { color: var(--text-dim); }

/* ----- Ressourcen ----- */
.res-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.res-category-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.res-category-label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.res-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.res-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    min-width: 190px;
    flex: 1 1 190px;
    max-width: 280px;
    transition: all 0.2s ease;
    color: var(--text);
    text-decoration: none;
}

.res-link:hover {
    border-color: var(--accent-dim);
    background: var(--surface-2);
    transform: translateY(-2px);
    color: var(--text);
}

.res-link-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.res-link-icon { font-size: 15px; flex-shrink: 0; }
.res-link-name { font-size: 14px; font-weight: 600; flex: 1; letter-spacing: -0.01em; }
.res-link-ext  { color: var(--text-dim); font-size: 11px; opacity: 0.45; flex-shrink: 0; }

.res-link-domain {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.04em;
}

.res-link-desc {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.45;
}

/* ----- Passkeys & Biometrics ----- */
.pk-myth {
    background: rgba(0,255,157,0.02);
    border: 1px solid rgba(0,255,157,0.18);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 48px;
}

.pk-myth-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 20px;
    display: block;
}

.pk-myth-cols {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.pk-myth-col {
    background: var(--surface);
    border-radius: 8px;
    padding: 18px 20px;
    border: 1px solid var(--border);
}

.pk-myth-col.wrong { border-color: rgba(255,77,94,0.3); }
.pk-myth-col.right { border-color: rgba(0,255,157,0.25); }

.pk-myth-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.wrong .pk-myth-tag { color: var(--danger); }
.right .pk-myth-tag { color: var(--accent); }
.pk-myth-col p { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin: 0; }

.pk-myth-sep { font-family: var(--font-mono); font-size: 22px; color: var(--text-dim); opacity: 0.35; text-align: center; }

@media (max-width: 600px) {
    .pk-myth-cols { grid-template-columns: 1fr; }
    .pk-myth-sep { font-size: 18px; visibility: hidden; height: 0; margin: -8px 0; }
}

.pk-prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}

.pk-prop {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    padding: 22px 24px;
    transition: all 0.2s ease;
}

.pk-prop:hover { background: var(--surface-2); transform: translateX(2px); }
.pk-prop-icon { font-size: 20px; display: block; margin-bottom: 10px; }
.pk-prop h3 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.pk-prop p { font-size: 13px; color: var(--text-dim); line-height: 1.55; }

/* ----- SIM Swapping ----- */
.simswap-def {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--danger);
    border-radius: 10px;
    padding: 28px 32px;
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.simswap-def p { color: var(--text-dim); font-size: 15px; line-height: 1.7; }
.simswap-def h3 { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; color: var(--danger); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; }

@media (max-width: 640px) { .simswap-def { grid-template-columns: 1fr; gap: 20px; } }

/* 2FA ranking grid */
.twofa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}

.twofa-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--tc, var(--border));
    border-radius: 10px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.2s ease;
}

.twofa-card:hover { background: var(--surface-2); transform: translateY(-2px); }

.twofa-icon { font-size: 22px; }
.twofa-method { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }

.twofa-bar { height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; margin: 2px 0 4px; }
.twofa-fill { height: 100%; background: var(--tc, var(--accent)); border-radius: 2px; }

.twofa-card p { font-size: 13px; color: var(--text-dim); line-height: 1.5; flex: 1; }

.twofa-props {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.twofa-prop {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}

.twofa-prop .ok   { color: var(--accent); font-weight: 700; }
.twofa-prop .bad  { color: var(--danger); font-weight: 700; }
.twofa-prop .warn { color: #ffaa00; font-weight: 700; }

/* ----- Ortung: Tracking diagram ----- */
.tracking-diagram-section {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.tracking-diagram {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
    background: #07070e;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.t-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed;
    pointer-events: none;
}

.t-ring-1 { width:  68px; height:  68px; border-color: rgba(0, 204, 102, 0.7); }
.t-ring-2 { width: 124px; height: 124px; border-color: rgba(77, 187, 255, 0.5); }
.t-ring-3 { width: 188px; height: 188px; border-color: rgba(255, 170,   0, 0.4); }
.t-ring-4 { width: 256px; height: 256px; border-color: rgba(255,  77,  94, 0.3); }

.t-ring-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid rgba(0, 204, 102, 0.5);
    animation: tpulse 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes tpulse {
    0%   { transform: translate(-50%,-50%) scale(1);   opacity: 0.8; }
    100% { transform: translate(-50%,-50%) scale(2.4); opacity: 0; }
}

.t-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 50%;
    border: 2px solid rgba(0, 204, 102, 0.4);
    z-index: 2;
}

.tracking-legend { display: flex; flex-direction: column; gap: 20px; }

.tl-item { display: flex; gap: 14px; align-items: flex-start; }

.tl-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.tl-body   { display: flex; flex-direction: column; gap: 3px; }
.tl-name   { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.tl-acc    { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; }
.tl-desc   { font-size: 13px; color: var(--text-dim); line-height: 1.5; }

@media (max-width: 680px) {
    .tracking-diagram-section { grid-template-columns: 1fr; }
    .tracking-diagram { margin: 0 auto; }
}

/* Method cards */
.t-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}

.t-method-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--tc, var(--accent));
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.t-method-icon { font-size: 22px; }
.t-method-name { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.t-method-acc  { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--tc, var(--accent)); }

.t-acc-bar  { height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; margin: 4px 0 6px; }
.t-acc-fill { height: 100%; background: var(--tc, var(--accent)); border-radius: 2px; }

.t-method-card p { font-size: 13px; color: var(--text-dim); line-height: 1.5; flex: 1; }

.t-method-who {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

/* Process flow */
.t-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    gap: 1px;
}

.t-flow-step {
    background: var(--surface);
    padding: 20px 18px;
    transition: background 0.2s;
}

.t-flow-step:hover { background: var(--surface-2); }

.t-flow-num {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.t-flow-step h4 { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; line-height: 1.3; }
.t-flow-step p  { font-size: 12px; color: var(--text-dim); line-height: 1.5; }

@media (max-width: 780px) {
    .t-flow { grid-template-columns: 1fr; }
}

/* ----- Hamburger button ----- */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    padding: 0 12px;
    width: 44px;
    height: 44px;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

.hamburger:hover {
    border-color: var(--accent);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Nav overlay ----- */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.nav-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.nav-overlay-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 48px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 40px;
    min-height: 100vh;
    align-content: center;
}

.nav-overlay-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nav-overlay-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}

.nav-overlay-link {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    transition: color 0.15s ease, transform 0.15s ease;
    display: block;
    line-height: 1.2;
}

.nav-overlay-link:hover {
    color: var(--accent);
    transform: translateX(6px);
}

.nav-overlay-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 18px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}

.nav-overlay-close:hover {
    border-color: var(--accent);
    color: var(--accent);
}

@media (max-width: 840px) {
    .nav-overlay-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 90px 32px 60px;
        gap: 36px 32px;
    }
}

@media (max-width: 460px) {
    .nav-overlay-inner {
        grid-template-columns: 1fr 1fr;
        padding: 80px 24px 48px;
    }
    .nav-overlay-link { font-size: 18px; }
}

/* ----- Messaging comparison ----- */
.msg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.msg-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--tc, var(--border));
    border-radius: 12px;
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.msg-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.msg-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--tc, var(--border));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.msg-name {
    font-weight: 700;
    font-size: 15px;
}

.msg-tagline {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 1px;
}

.msg-verdict {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    width: fit-content;
}

.msg-verdict-empfohlen { background: rgba(0,255,157,.12); color: var(--accent); }
.msg-verdict-ok       { background: rgba(77,187,255,.12); color: #4dbbff; }
.msg-verdict-warnung  { background: rgba(255,170,0,.12);  color: #ffaa00; }
.msg-verdict-meiden   { background: rgba(255,77,94,.12);  color: var(--danger); }

.msg-rows {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.msg-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--border);
}
.msg-row:last-child { border-bottom: none; padding-bottom: 0; }

.msg-row-label {
    color: var(--text-dim);
    flex-shrink: 0;
}

.msg-row-val {
    text-align: right;
    font-family: var(--font-mono);
    font-size: 11px;
}

.msg-row-val.good   { color: var(--accent); }
.msg-row-val.ok     { color: #4dbbff; }
.msg-row-val.warn   { color: #ffaa00; }
.msg-row-val.bad    { color: var(--danger); }

.msg-note {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.5;
    padding-top: 4px;
    border-top: 1px dashed var(--border);
}

.msg-legend {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.msg-legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--text-dim);
}

.msg-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.msg-anon-box {
    margin-top: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.msg-anon-box h4 {
    grid-column: 1 / -1;
    font-size: 14px;
    letter-spacing: .04em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.msg-anon-col h5 {
    font-size: 13px;
    margin-bottom: 8px;
}

.msg-anon-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.msg-anon-col li {
    font-size: 12px;
    color: var(--text-dim);
    display: flex;
    gap: 8px;
}

.msg-anon-col li::before {
    content: "→";
    color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .msg-anon-box {
        grid-template-columns: 1fr;
    }
}

/* ----- Responsive ----- */
@media (max-width: 720px) {
    .nav-links {
        display: none;
    }
    .hero {
        padding: 80px 24px 60px;
    }
    .section {
        padding: 80px 24px;
    }
    .cta-section {
        padding: 80px 24px;
    }
}
