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

body {
    background-color: #1b232b;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-image: radial-gradient(circle at 30% 40%, #2a3845 0%, #0f171f 100%);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.vault {
    max-width: 1320px;
    width: 100%;
    background: #2e3d4a;
    border-radius: 48px 48px 36px 36px;
    box-shadow: 0 20px 35px -8px #0b131c, inset 0 1px 2px #ffffff40, inset 0 -6px 0 #1d2b35;
    padding: 28px 24px 24px 24px;
    border: 1px solid #ffffff2e;
    transition: box-shadow 0.2s;
}

.vault__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px 12px;
}

.vault__logo {
    width: 165px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(4px 6px 0 #17242f);
    border-radius: 20px 4px 20px 4px;
    background: #25323e;
    padding: 6px 12px;
    border: 2px solid #ffffff4d;
    transition: filter 0.15s;
}

.vault__stamp {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stamp-year {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 3px 3px 0 #3cbef2, 5px 5px 0 #10232e;
    letter-spacing: 1.5px;
    line-height: 1;
}

.stamp-verified {
    background: #3cbef2;
    color: #0b1f2b;
    font-weight: 700;
    font-size: 14px;
    padding: 5px 16px 5px 16px;
    border-radius: 30px 0 30px 0;
    border: 2px solid white;
    box-shadow: 6px 6px 0 #1b2c38;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vault__panel {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 22px;
    margin-bottom: 36px;
}

@media (max-width: 720px) {
    .vault__panel {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.panel__segment {
    background: #2a3745;
    border-radius: 32px 32px 28px 28px;
    border: 2px solid #ffffff26;
    box-shadow: inset 0 0 0 1px #ffffff1a, 12px 12px 0 #0f1d29;
    padding: 24px 18px 18px 18px;
    position: relative;
    transition: box-shadow 0.15s;
}

.segment__label {
    position: absolute;
    top: -15px;
    left: 22px;
    background: #303f4d;
    padding: 6px 20px 6px 16px;
    border-radius: 40px 8px 40px 8px;
    border: 2px solid #ffffff;
    box-shadow: 5px 5px 0 #14232f;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.4px;
    backdrop-filter: blur(2px);
}

.label__icon {
    font-size: 22px;
    filter: drop-shadow(2px 2px 0 #3cbef2);
}

.card-deck {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
}

.mirror-card {
    background: #1e2e3b;
    border-radius: 20px 6px 20px 6px;
    border: 2px solid #ffffff33;
    box-shadow: 6px 6px 0 #11212d, inset 0 1px 3px #ffffff4d;
    transition: all 0.18s cubic-bezier(0.2, 0.9, 0.3, 1);
    animation: cardAppear 0.4s ease-out backwards;
}

@keyframes cardAppear {
    0% { opacity: 0; transform: translateY(12px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.card__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px 12px 14px;
    flex-wrap: wrap;
}

.link-index {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-weight: 600;
    color: #3cbef2;
    background: #10222f;
    padding: 4px 10px;
    border-radius: 28px;
    font-size: 13px;
    border: 1px solid #3cbef2;
    box-shadow: inset 0 1px 2px #a0d0ff;
}

.link-url {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    word-break: break-all;
    cursor: pointer;
    padding: 5px 4px;
    border-bottom: 2px dotted #3cbef2;
    transition: border 0.1s, color 0.1s;
    line-height: 1.4;
}

.link-url:hover {
    color: #ddf0ff;
    border-bottom-style: solid;
}

.link-latency {
    font-size: 13px;
    background: #1a2c39;
    color: #c6e2ff;
    padding: 5px 12px;
    border-radius: 30px;
    white-space: nowrap;
    border: 1px solid #3e6b88;
    box-shadow: inset 0 1px 2px #3b6e91;
    font-weight: 500;
}

.copy-btn {
    width: 38px;
    height: 38px;
    background: #314452;
    border: 2px solid white;
    border-radius: 26px 4px 26px 4px;
    box-shadow: 4px 4px 0 #12222f;
    cursor: pointer;
    position: relative;
    transition: all 0.05s linear;
    flex-shrink: 0;
}

.copy-btn::after {
    content: "📋";
    font-size: 18px;
    position: absolute;
    top: 6px;
    left: 8px;
    filter: drop-shadow(1px 1px 0 black);
}

.copy-btn:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

.card__perf {
    height: 5px;
    background: linear-gradient(90deg, #3cbef2, #3cbef2 70%, #265571 70%);
    border-radius: 0 0 12px 12px;
    max-width: 100%;
}

.segment__footer {
    text-align: right;
    font-size: 13px;
    color: #b0d4ec;
    margin-top: 18px;
    border-top: 1px dashed #3f6a85;
    padding-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.validator__body {
    margin-top: 24px;
}

.validator__illustration {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1c2d3a;
    border-radius: 60px 12px 60px 12px;
    padding: 14px 28px 14px 28px;
    margin-bottom: 28px;
    border: 2px solid #ffffff2e;
    box-shadow: inset 0 0 0 2px #0f202c, 6px 6px 0 #0f202c;
}

.scope-window {
    width: 85px;
    height: 44px;
    background: #203946;
    border-radius: 40px;
    border: 3px solid #8fb7cf;
    box-shadow: inset 0 0 0 2px #1b3645, 0 0 0 2px white;
    background-image: radial-gradient(circle at 30% 50%, #3cbef2 2px, transparent 2px), 
                      radial-gradient(circle at 60% 50%, #3cbef2 2px, transparent 2px);
    background-size: 22px 22px;
}

.gears {
    display: flex;
    gap: 8px;
}

.gear {
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 3px 3px 0 #0f2a36, inset -2px -2px 0 #1d5975;
}

.gear--main {
    width: 44px;
    height: 44px;
    background: conic-gradient(#3cbef2 0deg 130deg, #2780a8 130deg 250deg, #3cbef2 250deg 360deg);
}

.gear--small {
    width: 30px;
    height: 30px;
    background: conic-gradient(#e8f4ff 0deg 90deg, #3cbef2 90deg 270deg, #e8f4ff 270deg 360deg);
}

.validator__input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.validator__field {
    flex: 1 1 220px;
    background: #1c2d3b;
    border: 3px solid #ffffff33;
    border-radius: 48px 8px 48px 8px;
    padding: 16px 22px;
    font-size: 16px;
    color: white;
    font-weight: 500;
    box-shadow: inset 5px 5px 0 #0c1f2b, 4px 4px 0 #132734;
    outline: none;
    transition: border 0.1s, box-shadow 0.1s;
}

.validator__field:focus {
    border-color: #3cbef2;
    box-shadow: inset 5px 5px 0 #0c1f2b, 4px 4px 0 #1e4f6b;
}

.validator__field::placeholder {
    color: #6e95af;
    font-style: italic;
    opacity: 0.8;
}

.validator__button {
    background: #3cbef2;
    border: 2px solid white;
    border-radius: 34px 4px 34px 4px;
    padding: 0 34px;
    font-weight: 700;
    font-size: 19px;
    color: #0c212e;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 6px 6px 0 #152b39;
    cursor: pointer;
    transition: all 0.05s linear;
    white-space: nowrap;
}

.validator__button:active {
    transform: translate(5px, 5px);
    box-shadow: none;
}

.validator__result {
    min-height: 64px;
    background: #1f323f;
    border-radius: 24px 4px 24px 4px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #3f6982;
    box-shadow: inset 3px 3px 0 #10232f, 4px 4px 0 #0c1f2b;
    margin: 18px 0 22px 0;
    display: flex;
    align-items: center;
    word-break: break-word;
    line-height: 1.4;
    transition: background 0.15s, border 0.15s;
}

.validator__result.success {
    background: #1f4035;
    border-color: #3cbef2;
    color: #d4ffe6;
    box-shadow: inset 3px 3px 0 #1b4e33, 4px 4px 0 #0e2d1d;
}

.validator__result.error {
    background: #4f2f2f;
    border-color: #ff8a8a;
    color: #ffe6e6;
    box-shadow: inset 3px 3px 0 #632e2e, 4px 4px 0 #2e1313;
}

.validator__footnote {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #c4e2fa;
    background: #253947;
    padding: 12px 20px;
    border-radius: 32px;
    border: 1px solid #3f6d8a;
    box-shadow: inset 0 1px 2px #8ab3cf;
}

.footnote-led {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #3cbef2;
    border-radius: 50%;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #112d3b;
    animation: pulse 1.4s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.vault__review {
    margin-top: 42px;
    background: #283845;
    border-radius: 36px 36px 32px 32px;
    border: 2px solid #ffffff29;
    box-shadow: inset 0 0 0 1px #ffffff1a, 12px 12px 0 #10212e;
    padding: 30px 28px 34px 28px;
}

.review__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 3px dotted #3f6a85;
}

.review__icon {
    font-size: 40px;
    background: #20333f;
    padding: 8px 20px;
    border-radius: 60px 6px 60px 6px;
    border: 2px solid white;
    box-shadow: 7px 7px 0 #112330;
    line-height: 1;
}

.review__title {
    font-size: clamp(24px, 5vw, 34px);
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 0 #3cbef2, 5px 5px 0 #122b38;
    letter-spacing: -0.02em;
    margin: 0;
}

.review__badge {
    background: #2f5268;
    color: white;
    padding: 8px 22px;
    border-radius: 34px 4px 34px 4px;
    border: 2px solid white;
    font-weight: 600;
    font-size: 16px;
    margin-left: auto;
    white-space: nowrap;
}

.review__disclaimer {
    background: #302a22;
    border: 2px solid #c9a56e;
    border-radius: 28px 4px 28px 4px;
    padding: 20px 26px;
    margin-bottom: 34px;
    color: #ffefd3;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: inset 3px 3px 0 #4f4130, 7px 7px 0 #0f222f;
}

.review__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 34px;
}

@media (max-width: 800px) {
    .review__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.review__main {
    color: #e5f0fa;
    font-size: 16px;
    line-height: 1.7;
}

.review__lead {
    font-size: 18px;
    font-weight: 500;
    background: #1f3342;
    padding: 24px 28px;
    border-radius: 34px 8px 34px 8px;
    border-left: 8px solid #3cbef2;
    margin-bottom: 34px;
    box-shadow: inset 0 0 0 1px #3f6780, 6px 6px 0 #122634;
}

.review__subhead {
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin: 40px 0 18px 0;
    padding-left: 18px;
    border-left: 8px solid #3cbef2;
    text-shadow: 2px 2px 0 #10323f;
}

.review__keylist {
    list-style: none;
    background: #20323f;
    border-radius: 32px 8px 32px 8px;
    padding: 24px 28px;
    border: 2px solid #346886;
    box-shadow: inset 0 0 0 1px #5d88a5, 8px 8px 0 #102431;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px 24px;
}

.review__keylist li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.key {
    color: #3cbef2;
    font-weight: 600;
    min-width: 140px;
}

.account-types {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 28px 0;
}

.account-card {
    flex: 1 1 170px;
    background: #1f303e;
    border: 2px solid #397494;
    border-radius: 28px 6px 28px 6px;
    padding: 22px 18px;
    box-shadow: 6px 6px 0 #0d2332;
    transition: transform 0.1s;
}

.account-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 #0d2332;
}

.account-name {
    font-size: 22px;
    font-weight: 700;
    color: #3cbef2;
    margin-bottom: 8px;
}

.account-price {
    background: #2e4f67;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 34px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid white;
    font-size: 15px;
}

.account-features {
    list-style: none;
}

.account-features li {
    padding: 5px 0;
    font-size: 14px;
    position: relative;
    padding-left: 22px;
}

.account-features li::before {
    content: "▹";
    color: #3cbef2;
    position: absolute;
    left: 0;
    font-size: 16px;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 28px 0;
}

.pros, .cons {
    background: #1f313f;
    border-radius: 26px 6px 26px 6px;
    padding: 20px 24px;
    border: 2px solid;
    transition: box-shadow 0.1s;
}

.pros {
    border-color: #3cbef2;
    box-shadow: 6px 6px 0 #0d2e3f;
}

.cons {
    border-color: #f27a7a;
    box-shadow: 6px 6px 0 #3d2626;
}

.pros h3, .cons h3 {
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 700;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 15px;
}

.pros li::before {
    content: "✓";
    color: #6ef29a;
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 18px;
}

.cons li::before {
    content: "✗";
    color: #f27a7a;
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 18px;
}

.review__final {
    font-size: 18px;
    font-style: italic;
    background: #1e303d;
    padding: 26px 30px;
    border-radius: 48px 6px 48px 6px;
    border-top: 6px solid #3cbef2;
    margin-top: 36px;
    box-shadow: inset 0 1px 3px #bedaff, 6px 6px 0 #112633;
    line-height: 1.7;
}

.review__sidebar {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.sidebar__block {
    background: #1f323f;
    border-radius: 32px 8px 32px 8px;
    border: 2px solid #346d8c;
    padding: 24px 22px;
    box-shadow: 8px 8px 0 #0d2433;
}

.sidebar__title {
    font-size: 24px;
    font-weight: 700;
    color: #3cbef2;
    margin-bottom: 20px;
    border-bottom: 2px dashed #3d728f;
    padding-bottom: 10px;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat {
    background: #152c3a;
    border-radius: 22px 4px 22px 4px;
    padding: 14px 8px;
    text-align: center;
    border: 1px solid #3e7fa2;
    box-shadow: inset 0 1px 2px #6fa6c7;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: #b3dcff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    text-shadow: 2px 2px 0 #1c485f;
}

.sidebar__links {
    list-style: none;
}

.sidebar__links li {
    font-family: 'SF Mono', 'Fira Code', monospace;
    background: #122937;
    margin: 10px 0;
    padding: 12px 16px;
    border-radius: 48px 4px 48px 4px;
    border: 1px solid #3cbef2;
    word-break: break-all;
    font-size: 14px;
    box-shadow: inset 0 1px 2px #6ba9cc;
}

.onion-fragment {
    color: #c2e3ff;
    font-weight: 500;
}

.sidebar__note {
    font-size: 13px;
    color: #a1c9e7;
    margin-top: 16px;
    text-align: right;
    font-style: italic;
}

.vault__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 18px;
    border-top: 3px dotted #3a617a;
}

.footer__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
}

.sig {
    font-size: 15px;
    font-weight: 500;
    color: #d0eaff;
    background: #203442;
    padding: 6px 18px;
    border-radius: 30px 4px 30px 4px;
    border: 1px solid #3d789b;
    box-shadow: inset 0 0 0 1px #2b5068, 3px 3px 0 #102734;
    transition: all 0.1s;
}

.sig:hover {
    background: #264c61;
    color: white;
}

.footer__pager .page-indicator {
    background: #00000033;
    color: #cde5fc;
    font-weight: 400;
    padding: 8px 22px;
    border-radius: 34px;
    border: 2px solid #2c607d;
    font-size: 14px;
    backdrop-filter: blur(2px);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #1f3342;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 6px 6px 0 #0f2533;
}

th {
    background: #2b4355;
    padding: 12px;
    text-align: left;
    color: white;
    font-weight: 600;
}

td {
    padding: 10px;
    color: #e5f0fa;
}

tr:nth-child(even) {
    background: #1a2e3c;
}

@media (max-width: 480px) {
    .vault {
        padding: 20px 16px 20px 16px;
    }
    
    .review__header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review__badge {
        margin-left: 0;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .validator__button {
        width: 100%;
        padding: 16px 0;
    }
    
    table {
        font-size: 14px;
    }
    
    th, td {
        padding: 8px 6px;
    }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #3cbef2;
    color: #0a1f2b;
    padding: 14px 28px;
    border-radius: 40px 8px 40px 8px;
    z-index: 10000;
    transform: translateX(150%);
    transition: transform 0.35s cubic-bezier(0.2, 1, 0.3, 1);
    font-weight: 600;
    border: 2px solid white;
    box-shadow: 8px 8px 0 #0e202b;
    word-break: break-word;
    max-width: 280px;
}

.notification.show {
    transform: translateX(0);
}