/* ─────────── Variables & Reset */
:root {
    /* Cyber-Enigma Palette */
    --bg-deep: #050a10;       /* Almost Black */
    --bg-panel: #0f1621;      /* Dark Metal */
    --primary: #00e5ff;       /* Electric Cyan */
    --gold: #e2c044;          /* Brass/Gold (Rotor contacts) */
    --gold-dim: rgba(226, 192, 68, 0.15);
    --text-main: #e0f2fe;
    --text-muted: #64748b;
    --border: rgba(0, 229, 255, 0.15);
    --danger: #ff3333;

    --font-tech: 'Share Tech Mono', monospace;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; }
.wrapper { width: min(1200px, 90%); margin-inline: auto; }

/* ─────────── Typography */
h1, h2, h3, h4, .brand, .btn-outlined, .btn-solid {
    font-family: var(--font-tech);
    text-transform: uppercase;
}

.gold { color: var(--gold); }
.highlight { color: var(--primary); }
.red { color: var(--danger); }

/* ─────────── Header */
header {
    position: fixed;
    top: 0; width: 100%; z-index: 100;
    background: rgba(5, 10, 16, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

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

.brand {
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(0,229,255,0.4);
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    font-family: var(--font-tech);
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--primary); }

/* Buttons */
.btn-outlined {
    border: 1px solid var(--primary);
    padding: 0.5rem 1.2rem;
    color: var(--primary);
    transition: 0.3s;
    letter-spacing: 1px;
}
.btn-outlined:hover {
    background: var(--primary);
    color: var(--bg-deep);
    box-shadow: 0 0 15px var(--primary);
}

/* ─────────── Hero Section (The Machine) */
.hero-container {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at center, transparent 0%, #050a10 90%);
}

/* --- THE ROTOR ANIMATION REDESIGN --- */
.enigma-mechanism {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.25; /* Slightly increased for visibility of new details */
}

.rotor {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

/* Rotor 1 (Inner): The Wiring Core */
.rotor-1 {
    width: 300px; height: 300px;
    /* Simulating internal wiring with gradients */
    background:
            repeating-conic-gradient(
                    from 0deg,
                    transparent 0deg,
                    transparent 10deg,
                    rgba(0, 229, 255, 0.05) 10deg,
                    rgba(0, 229, 255, 0.05) 12deg
            );
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    animation: spin 60s linear infinite;
}
.rotor-1::after {
    content: "";
    position: absolute;
    width: 80%; height: 80%;
    border-radius: 50%;
    border: 1px dashed rgba(0, 229, 255, 0.3);
}

/* Rotor 2 (Middle): The Alphabet Ring */
.rotor-2 {
    width: 500px; height: 500px;
    /* Dashed border simulates the 26 positions */
    border: 2px dashed var(--gold);
    /* Conic gradient gives it a metallic sectioned look */
    background: repeating-conic-gradient(
            from 0deg,
            rgba(226, 192, 68, 0.05) 0deg,
            rgba(226, 192, 68, 0.05) 13.8deg,
            transparent 13.8deg,
            transparent 14deg
    );
    animation: spin 90s linear infinite reverse;
}
/* Inner gear teeth simulation */
.rotor-2::before {
    content: "";
    position: absolute;
    width: 95%; height: 95%;
    border-radius: 50%;
    border: 10px solid var(--bg-panel);
}

/* Rotor 3 (Outer): The Chassis/Stator */
.rotor-3 {
    width: 750px; height: 750px;
    border: 1px solid var(--text-muted);
    /* Mechanical tick marks */
    background: repeating-conic-gradient(
            transparent 0deg,
            transparent 89deg,
            rgba(255, 255, 255, 0.2) 89.5deg,
            transparent 90deg
    );
    animation: spin 120s linear infinite;
}
.rotor-3::after {
    content: "";
    position: absolute;
    width: 102%; height: 102%;
    border-radius: 50%;
    border: 1px dotted var(--text-muted);
    opacity: 0.3;
}

.crosshair {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 20px; height: 20px;
    border: 1px solid var(--primary);
}
.crosshair::after, .crosshair::before {
    content: ""; position: absolute; background: var(--primary);
}
.crosshair::before { width: 1px; height: 100vh; top: -50vh; left: 9px; }
.crosshair::after { height: 1px; width: 100vw; left: -50vw; top: 9px; }

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

/* --- Hero Content --- */
.hero-content { text-align: center; z-index: 2; padding-top: 60px;}

.status-line {
    font-family: var(--font-tech);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.blink { color: var(--gold); animation: blinker 1s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }

.mega-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
.hero-sub strong { color: var(--text-main); font-weight: 600; }

.cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-solid {
    background: var(--primary);
    color: var(--bg-deep);
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: transform 0.2s;
}
.btn-solid:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary);
}

.code-readout {
    font-family: var(--font-tech);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    background: var(--gold-dim);
}

/* Updated Bigger Store Buttons */
.store-badges { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.badge-box {
    border: 1px solid var(--text-muted);
    color: var(--text-main);
    padding: 1rem 2rem; /* INCREASED SIZE */
    font-family: var(--font-tech);
    font-size: 1.1rem; /* INCREASED FONT */
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.badge-box:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* ─────────── Coming Soon Block */
.coming-soon-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}
.coming-soon-label {
    font-family: var(--font-tech);
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ─────────── NEW: Models & Privacy Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left: Uplink Console */
.uplink-console {
    display: flex; flex-direction: column; gap: 1.5rem;
}
.console-header {
    font-family: var(--font-tech);
    font-size: 1.2rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.5rem;
}
.console-sub { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem; }
.console-sub strong { color: var(--text-main); }

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.model-unit {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 1.5rem;
    position: relative;
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, background 0.3s;
    opacity: 0; /* JS Fade */
    transform: translateY(20px);
    overflow: hidden;
}
.model-unit.visible { opacity: 1; transform: translateY(0); }
.model-unit:hover { border-color: var(--gold); background: rgba(226, 192, 68, 0.05); }

/* --- Updated Model Unit Internal Layout --- */
.model-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.model-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    /* Optional: Grayscale until hover for stealth look */
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.model-unit:hover .model-logo {
    filter: grayscale(0%);
}

.model-status {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    color: var(--text-muted);
}
.model-name {
    font-family: var(--font-tech);
    font-size: 1.5rem;
    color: var(--text-main);
    letter-spacing: 1px;
}
.model-provider { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }
.lock-icon {
    position: absolute; right: 1rem; bottom: 1rem;
    font-size: 1.2rem; opacity: 0.3;
}

/* Right: Privacy Monitor */
.monitor-screen {
    background: #020406;
    border: 1px solid var(--text-muted);
    padding: 1.5rem;
    font-family: var(--font-tech);
    position: relative;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    opacity: 0; /* JS Fade */
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.monitor-screen.visible { opacity: 1; transform: translateX(0); }
.monitor-screen::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: var(--danger);
    box-shadow: 0 0 10px var(--danger);
}

.screen-header {
    display: flex; justify-content: space-between;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.dot.red {
    width: 10px; height: 10px; background: var(--danger);
    border-radius: 50%; display: inline-block;
    box-shadow: 0 0 8px var(--danger);
    animation: blinker 2s infinite;
}

.protocol-row {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}
.protocol-icon {
    font-weight: bold; color: var(--gold);
    min-width: 50px;
}
.protocol-info h4 { color: var(--text-main); font-size: 1rem; margin-bottom: 0.2rem; }
.micro-text { font-size: 0.75rem; color: var(--text-muted); }
.status-badge {
    margin-left: auto;
    font-size: 0.7rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary);
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--primary);
}

.redaction-demo {
    background: #000; padding: 0.2rem 0.5rem;
    font-size: 0.8rem; color: var(--text-muted);
}
.typing-effect {
    border-right: 2px solid var(--primary);
    animation: blinker 0.5s step-end infinite alternate;
}

.warning-box {
    margin-top: 1rem;
    padding-top: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}
.warn-line { display: block; margin-bottom: 0.3rem; }

/* ─────────── NEW SECTION: Local Vault Styles */
.vault-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}
.vault-container.visible { opacity: 1; transform: translateY(0); }

/* Left Side: Visual */
.vault-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

/* Device Frame */
.device-frame {
    width: 220px;
    height: 400px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    background: #050a10;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
    z-index: 2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.device-notch {
    width: 100px; height: 15px;
    background: #000;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin: 0 auto;
}
.device-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(0,229,255,0.05) 0%, transparent 100%);
}

/* Lock Icon inside device */
.lock-mechanism {
    position: relative;
    width: 60px; height: 70px;
}
.lock-shackle {
    width: 40px; height: 30px;
    border: 4px solid var(--gold);
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    margin: 0 auto;
}
.lock-body {
    width: 60px; height: 45px;
    background: var(--gold);
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
}
.keyhole { width: 8px; height: 14px; background: #000; border-radius: 50% 50% 0 0; }

.data-file, .key-indicator {
    border: 1px solid var(--border);
    background: rgba(0,0,0,0.5);
    padding: 0.5rem;
    width: 100%;
    text-align: center;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    border-radius: 5px;
}
.data-file { border-color: var(--primary); color: var(--primary); }
.enc-badge { display: block; font-size: 0.6rem; color: var(--gold); margin-top: 2px; }

.key-indicator {
    border-color: var(--gold);
    color: var(--text-muted);
}
.key-indicator strong { color: var(--gold); display: block; }

/* Connection Line & Blocked Cloud */
.connection-block {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    position: relative;
}
.connection-line {
    width: 80px; height: 2px;
    background: repeating-linear-gradient(90deg, var(--text-muted) 0, var(--text-muted) 5px, transparent 5px, transparent 10px);
}
.blocked-sign {
    font-size: 2rem; color: var(--danger);
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 10px var(--danger);
}
.cloud-icon {
    border: 1px dashed var(--text-muted);
    padding: 1rem;
    color: var(--text-muted);
    font-family: var(--font-tech);
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.5;
    border-radius: 8px;
}

/* Right Side: Text */
.vault-text .lead-text {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}
.feature-list {
    margin-top: 2rem;
    display: flex; flex-direction: column; gap: 1.5rem;
}
.f-item { display: flex; gap: 1rem; align-items: flex-start; }
.f-icon { font-size: 1.5rem; min-width: 40px; }
.f-desc strong { color: var(--primary); font-family: var(--font-tech); font-size: 1.1rem; }
.f-desc p { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.3rem; }


/* ─────────── Features Section */
.section-pad { padding: 6rem 0; }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 2.5rem; color: var(--text-main); letter-spacing: 3px; }
.line { width: 50px; height: 4px; background: var(--gold); margin: 1rem auto; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, background 0.3s;
    opacity: 0;
    transform: translateY(20px);
}
.tech-card.visible { opacity: 1; transform: translateY(0); }

.tech-card::before {
    content: ""; position: absolute; top: 0; left: 0;
    width: 20px; height: 20px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}
.tech-card:hover { border-color: var(--primary); background: rgba(0, 229, 255, 0.05); }

/* Mouse spotlight */
.tech-card { --x: 0px; --y: 0px; }
.tech-card::after, .model-unit::after {
    content: "";
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(400px circle at var(--x) var(--y), rgba(255,255,255,0.05), transparent 40%);
    pointer-events: none;
}

.card-header {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}
.card-num { font-family: var(--font-tech); font-size: 2rem; color: var(--border); }
.tech-card h3 { color: var(--primary); font-size: 1.5rem; }
.tech-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ─────────── FAQ */
.faq-grid { max-width: 800px; margin: 0 auto; }

details {
    background: var(--bg-panel);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}
details.visible { opacity: 1; transform: translateX(0); }
details[open] { border-color: var(--gold); }

summary {
    padding: 1.5rem;
    cursor: pointer;
    font-family: var(--font-tech);
    font-size: 1.1rem;
    letter-spacing: 1px;
    list-style: none;
    position: relative;
}
summary:hover { color: var(--gold); }
summary::after {
    content: "[+]";
    position: absolute; right: 1.5rem;
    color: var(--text-muted);
}
details[open] summary::after { content: "[-]"; color: var(--gold); }

.answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
}

/* ─────────── Download CTA Section */
.download-cta-section {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-panel) 50%, var(--bg-deep) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.download-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.download-text strong {
    color: var(--text-main);
}

/* ─────────── Footer */
footer {
    border-top: 1px solid var(--border);
    background: #020406;
    padding: 3rem 0;
    text-align: center;
}
.footer-brand {
    font-family: var(--font-tech);
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    opacity: 0.5;
}
.copyright { color: var(--text-muted); font-size: 0.8rem; }

/* ─────────── Store Icons */
.store-icon {
    width: 18px;
    height: 18px;
}

/* ─────────── Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}
.footer-links a {
    font-family: var(--font-tech);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary); }

/* ─────────── Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 1.3rem;
    padding: 0.3rem 0.7rem;
    cursor: pointer;
    font-family: var(--font-tech);
}

/* ─────────── Privacy Page */
section.policy-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-inline: auto;
}
section.policy-wrapper .policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
}
section.policy-wrapper .policy-header h1 {
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    text-align: center;
}
section.policy-wrapper .policy-header .policy-subtitle {
    color: var(--primary);
    font-family: var(--font-tech);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-align: center;
}
section.policy-wrapper .policy-header .policy-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}
section.policy-wrapper .policy-intro {
    text-align: center;
    max-width: 620px;
    width: 100%;
    margin: 0 auto 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
section.policy-wrapper .policy-section {
    background: rgba(15, 22, 33, 1);
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 12px;
    padding: 1.8rem 2rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(0, 229, 255, 0.08);
}
section.policy-wrapper .policy-section h2 {
    font-family: var(--font-tech);
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
section.policy-wrapper .policy-section h2 .section-num {
    color: var(--gold);
    font-size: 0.85rem;
    opacity: 0.7;
}
section.policy-wrapper .policy-section p,
section.policy-wrapper .policy-section li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}
section.policy-wrapper .policy-section p:last-child,
section.policy-wrapper .policy-section li:last-child {
    margin-bottom: 0;
}
section.policy-wrapper .policy-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
section.policy-wrapper .policy-section ul:last-child {
    margin-bottom: 0;
}
section.policy-wrapper .policy-section a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
section.policy-wrapper .policy-section a:hover {
    color: var(--gold);
}
section.policy-wrapper .policy-section strong {
    color: var(--text-main);
}
section.policy-wrapper .policy-footer-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    width: 100%;
}

/* Responsive */
@media(max-width: 900px) {
    .split-layout, .vault-container { grid-template-columns: 1fr; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(5, 10, 16, 0.95);
        backdrop-filter: blur(10px);
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--border);
        gap: 0;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 0.8rem 5%;
        font-size: 1.1rem;
    }
    .hide-mobile { display: none; }
    .mobile-menu-btn { display: block; }

    .rotor-3 { display: none; }
    .rotor-2 { width: 300px; height: 300px; }
    .rotor-1 { width: 200px; height: 200px; }

    .connection-block {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    .vault-visual { flex-direction: column; }

    .grid-3 { grid-template-columns: 1fr; }
    .mega-title { font-size: clamp(2rem, 8vw, 3.5rem); }
    .policy-wrapper table { font-size: 0.75rem; }
    .policy-section { padding: 1.4rem 1.2rem; }
}