/* ==========
   Base setup
   ========== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #040414;
    --bg-alt: #07081f;
    --panel: #080a29;
    --panel-soft: #0b0e33;
    --accent: #ff6fd8;
    --accent-2: #36e4da;
    --accent-3: #8a7eff;
    --accent-soft: rgba(255, 111, 216, 0.18);
    --accent-2-soft: rgba(54, 228, 218, 0.18);
    --accent-3-soft: rgba(138, 126, 255, 0.18);
    --text-main: #f7f6ff;
    --text-muted: #a4a6d8;
    --border-subtle: rgba(255, 255, 255, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-pill: 999px;
    --shadow-soft: 0 26px 90px rgba(0, 0, 0, 0.9);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
            radial-gradient(circle at 0 0, #30146a 0, transparent 55%),
            radial-gradient(circle at 100% 0, #11255a 0, transparent 55%),
            radial-gradient(circle at 50% 100%, #190f3f 0, transparent 60%),
            var(--bg);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex: 1;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding-inline: 20px;
}

/* ==========
   Header
   ========== */

.header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: linear-gradient(
            to bottom,
            rgba(4, 4, 24, 0.44),
            rgba(4, 4, 24, 0.45)
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 12px;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-orb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background:
            conic-gradient(
                    from 200deg,
                    var(--accent),
                    var(--accent-2),
                    var(--accent-3),
                    var(--accent)
            );
    box-shadow: 0 0 26px rgba(255, 111, 216, 0.9);
    position: relative;
    overflow: hidden;
}

.logo-orb::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 0, rgba(255, 255, 255, 0.9), transparent 55%);
    mix-blend-mode: screen;
    opacity: 0.5;
}

.logo-title {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-main);
}

.logo-sub {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.7;
    color: var(--text-muted);
}

.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-muted);
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: color 0.16s ease, border-color 0.16s ease, opacity 0.16s ease;
    opacity: 0.85;
}

.nav-list a:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

/* ==========
   Breadcrumbs
   ========== */

.breadcrumbs {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(
            90deg,
            rgba(255, 111, 216, 0.08),
            rgba(54, 228, 218, 0.04),
            transparent
    );
}

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 7px 20px 9px;
    font-size: 11px;
    color: var(--text-muted);
}

.breadcrumbs-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.breadcrumbs-item + .breadcrumbs-item::before {
    content: "›";
    opacity: 0.6;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--text-main);
}

/* ==========
   Sections
   ========== */

.section {
    position: relative;
    padding-block: 80px;
}

.section-head {
    margin-bottom: 24px;
}

.section-head--center {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
}

.section-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-2);
    margin-bottom: 8px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 640px;
}

.section-head--center .section-subtitle {
    margin-inline: auto;
}

.section-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========
   Hero
   ========== */

.hero {
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
    pointer-events: none;
}

.hero-bg--primary {
    top: -140px;
    left: 400px;
    background: radial-gradient(circle, rgba(255, 111, 216, 0.85), transparent 70%);
}

.hero-bg--secondary {
    top: 60px;
    right: 400px;
    background: radial-gradient(circle, rgba(54, 228, 218, 0.85), transparent 70%);
}

.hero-grid {
    display: grid;
    gap: 40px;
    position: relative;
    padding: 120px 0;
}

.hero-main,
.hero-side {
    position: relative;
    z-index: 1;
}

.hero-main {
    padding: 26px 26px 26px 26px;
    border-radius: var(--radius-lg);
    background:
            linear-gradient(135deg, rgba(8, 10, 46, 0.96), rgba(7, 8, 32, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

.hero-side {
    display: grid;
    gap: 16px;
}

.hero-label-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.label-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    background: radial-gradient(circle at 0 0, rgba(255, 111, 216, 0.24), transparent 60%);
}

.label-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 16px var(--accent-2);
}

.label-chip {
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-2);
    background: rgba(4, 7, 28, 0.9);
}

.hero-title {
    margin-bottom: 12px;
}

.hero-title-main {
    display: block;
    font-size: 30px;
    line-height: 1.1;
    background: linear-gradient(120deg, var(--accent), var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title-sub {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 6px;
}

.hero-lead {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 14px;
    margin-bottom: 22px;
}

/* Buttons */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0 20px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #050416;
    box-shadow: 0 0 32px rgba(255, 111, 216, 0.9);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 42px rgba(54, 228, 218, 0.9);
}

.btn--outline {
    background: transparent;
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-2);
    transform: translateY(-1px);
}

/* Hero meta strip */

.hero-meta-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 2fr));
    gap: 670px;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.14);
    font-size: 11px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.meta-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.7;
    color: var(--text-muted);
}

.meta-value {
    color: var(--text-main);
    font-size: 16px;
}

.meta-value--ok {
    color: var(--accent-2);
}

/* Hero side cards */

.glass-card {
    border-radius: var(--radius-md);
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 55%),
            rgba(9, 10, 44, 0.9);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow-soft);
    font-size: 13px;
}

.glass-card--gradient {
    background:
            linear-gradient(140deg, rgba(54, 228, 218, 0.2), rgba(255, 111, 216, 0.18)),
            rgba(7, 8, 34, 0.95);
}

.glass-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.mini-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.glass-title {
    font-size: 15px;
}

.glass-body {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.glass-code {
    font-size: 12px;
    color: var(--text-muted);
}

.glass-code code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.55);
    padding: 2px 6px;
    border-radius: 6px;
}

.status-pill {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(54, 228, 218, 0.8);
    color: var(--accent-2);
}

.status-pill--online {
    background: rgba(3, 32, 28, 0.9);
}

/* ==========
   Links section
   ========== */

.section--links {
    padding-top: 72px;
}

.links-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 16px;
}

.matrix-card {
    border-radius: var(--radius-lg);
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
            radial-gradient(circle at 0 0, var(--accent-soft), transparent 60%),
            radial-gradient(circle at 100% 100%, var(--accent-2-soft), transparent 60%),
            var(--panel);
    box-shadow: var(--shadow-soft);
    font-size: 14px;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.matrix-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.98);
    border-color: rgba(255, 255, 255, 0.24);
}

.matrix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.matrix-title {
    font-size: 15px;
    font-weight: 600;
}

.badge {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.badge--primary {
    border-color: rgba(255, 111, 216, 0.9);
    color: var(--accent);
}

.badge--mirror {
    border-color: rgba(54, 228, 218, 0.9);
    color: var(--accent-2);
}

.badge--security {
    border-color: rgba(138, 126, 255, 0.9);
    color: var(--accent-3);
}

.matrix-body {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.matrix-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: grid;
    gap: 6px;
}

.matrix-row {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 6px;
}

.matrix-row dt {
    opacity: 0.9;
}

.matrix-row dd {
    opacity: 0.85;
}

/* ==========
   Safety
   ========== */

.section--security {
    padding-top: 72px;
}

.safety-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) minmax(0, 2.4fr) minmax(0, 1.8fr);
    gap: 20px;
    margin-top: 18px;
}

.safety-card {
    border-radius: var(--radius-md);
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
            linear-gradient(135deg, rgba(5, 6, 32, 0.98), rgba(10, 12, 44, 0.98));
    box-shadow: var(--shadow-soft);
}

.safety-card--accent {
    background:
            radial-gradient(circle at 0 0, var(--accent-2-soft), transparent 60%),
            radial-gradient(circle at 100% 100%, var(--accent-soft), transparent 60%),
            rgba(8, 9, 34, 0.98);
}

.card-title {
    font-size: 15px;
    margin-bottom: 10px;
}

.checklist,
.bullet-list {
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.checklist li,
.bullet-list li {
    position: relative;
    padding-left: 18px;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 11px;
    color: var(--accent-2);
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: var(--accent);
}

/* ==========
   Tor section
   ========== */

.section--tor {
    padding-top: 72px;
}

.tor-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.3fr) minmax(0, 2.7fr);
    gap: 26px;
    align-items: flex-start;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
            linear-gradient(130deg, rgba(138, 126, 255, 0.12), transparent 55%),
            rgba(8, 9, 38, 0.98);
    box-shadow: var(--shadow-soft);
    padding: 26px 26px 26px 26px;
}

.tor-column--intro .section-kicker {
    margin-bottom: 6px;
}

.tor-chip {
    margin-top: 16px;
    border-radius: var(--radius-md);
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
            radial-gradient(circle at 0 0, var(--accent-soft), transparent 60%),
            rgba(6, 8, 30, 0.98);
}

.tor-chip-title {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
    color: var(--accent-2);
}

.tor-chip-body {
    font-size: 13px;
    color: var(--text-muted);
}

/* Steps timeline */

.steps {
    list-style: none;
    display: grid;
    gap: 10px;
}

.steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    align-items: flex-start;
}

.step-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background:
            radial-gradient(circle at 0 0, var(--accent-soft), transparent 60%),
            rgba(4, 5, 25, 0.96);
}

.step-body {
    padding-bottom: 6px;
}

.step-title {
    font-size: 14px;
    margin-bottom: 4px;
}

.body-text {
    font-size: 14px;
    color: var(--text-muted);
}

.body-text--muted {
    font-size: 13px;
    opacity: 0.9;
}

/* ==========
   Updates / timeline
   ========== */

.section--updates {
    padding-top: 72px;
}

.timeline {
    margin-top: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 18px;
    display: grid;
    gap: 18px;
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -9px;
    top: 4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 22px rgba(255, 111, 216, 0.9);
}

.timeline-panel {
    border-radius: var(--radius-md);
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 60%),
            rgba(6, 7, 30, 0.98);
    box-shadow: var(--shadow-soft);
}

.timeline-title {
    font-size: 15px;
    margin-bottom: 6px;
}

/* ==========
   FAQ
   ========== */

.section--faq {
    padding-top: 72px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.faq-card {
    border-radius: var(--radius-md);
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 55%),
            rgba(5, 7, 28, 0.98);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    font-size: 14px;
    margin-bottom: 6px;
}

/* ==========
   Footer
   ========== */

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(
            to top,
            rgba(4, 4, 24, 0.98),
            rgba(4, 4, 24, 0.95),
            transparent
    );
    padding-block: 24px 32px;
}

.footer-inner {
    display: grid;
    gap: 6px;
}

.footer-text {
    font-size: 12px;
    color: var(--text-main);
}

.footer-text--muted {
    color: var(--text-muted);
}

/* ==========
   Responsive
   ========== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-main {
        order: 1;
    }

    .hero-side {
        order: 2;
    }

    .hero-meta-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .safety-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tor-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 820px) {
    .hero-grid{
        padding: 20px;
    }
    .nav-list {
        display: none;
    }

    .section {
        padding-block: 64px;
    }

    .section-title {
        font-size: 22px;
    }

    .hero-title-main {
        font-size: 26px;
    }

    .links-matrix {
        grid-template-columns: minmax(0, 1fr);
    }

    .safety-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-meta-strip {
        grid-template-columns: minmax(0, 1fr);
        word-wrap: break-word;
        gap: 20px;
    }
}

@media (max-width: 520px) {
    .hero-main {
        padding: 22px 18px;
    }

    .tor-layout {
        padding: 20px 18px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
