/* Base Variables & Reset */
:root {
    --primary: #eb3968;
    --primary-glow: rgba(235, 57, 104, 0.3);
    --primary-hover: #f94c79;
    --bg-dark: #0b1121;
    --surface: #151e32;
    --surface-light: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --radius: 18px;
    --radius-lg: 23px;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --transition: all 0.15s ease;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Typography */
.hash-xl {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hash-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: normal;
    word-break: break-word;
}

.hash-md {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
}

.echo {
    font-size: 1.125rem;
    color: var(--text-muted);
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Header & Nav (Reused strictly as requested) */
.crown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 17, 33, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.radar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
}

.seal img {
    height: 32px;
    width: auto;
    display: block;
}

.chain {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    min-width: 0;
}

.wire {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.wire:hover,
.wire.active {
    color: var(--text-main);
}

.wire.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Layout Core */
.core-mesh {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.tunnel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Hero Article (Pricing Header - Split Diagonal Seed) */
.nexus {
    position: relative;
    padding: 120px 0 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-width: 0;
    overflow: hidden;
}

/* The Diagonal Split Effect */
.nexus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, var(--bg-dark) 45%, var(--surface) 45.1%);
    z-index: -1;
    pointer-events: none;
}

.nexus-mesh {
    flex: 1 1 500px;
    min-width: 0;
    padding-right: 4rem;
    z-index: 1;
}

.nexus-visual {
    flex: 1 1 400px;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

.nexus .hash-xl {
    background: linear-gradient(to right, #fff, #fca5a5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

/* Abstract Geometry for Hero (Visual Focus) */
.geometry-batch {
    position: relative;
    width: 300px;
    height: 300px;
}

.geometry-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(235, 57, 104, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 6s infinite linear;
}

.geometry-ring:nth-child(1) { width: 100%; height: 100%; animation-delay: 0s; border-style: dashed; }
.geometry-ring:nth-child(2) { width: 70%; height: 70%; animation-delay: -2s; border-color: rgba(235, 57, 104, 0.4); }
.geometry-ring:nth-child(3) { width: 40%; height: 40%; animation-delay: -4s; background: var(--primary-glow); backdrop-filter: blur(5px); }

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Pricing Comparison Article */
.prism {
    padding: 80px 0;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prism-crown {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
}

.batch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
}

.vault {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    transition: var(--transition);
}

.vault:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.vault-prime {
    background: linear-gradient(180deg, var(--surface-light) 0%, var(--surface) 100%);
    border-color: rgba(235, 57, 104, 0.5);
    box-shadow: 0 10px 40px var(--primary-glow);
    transform: scale(1.02);
}

.vault-prime:hover {
    transform: scale(1.02) translateY(-5px);
    border-color: var(--primary);
}

.vault-pip {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.vault-hash {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-core {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    min-width: 0;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
    margin: 0 4px;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-total {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 2rem;
    min-height: 1.5em; /* alignment fix */
}

.feature-belt {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.feature-ring {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-size: 0.95rem;
    flex-wrap: wrap;
    min-width: 0;
}

.feature-ring .glyph {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* Buttons */
.pulse-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    width: 100%;
}

.pulse-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.pulse-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    width: 100%;
}

.pulse-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Guarantee Section */
.apex {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.cloak {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    border: 1px solid rgba(235, 57, 104, 0.15);
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    min-width: 0;
}

.cloak::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.1;
    pointer-events: none;
}

.cloak-glyph {
    flex-shrink: 0;
}

.cloak-glyph svg {
    width: 80px;
    height: 80px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.5;
}

.cloak-mesh {
    flex: 1 1 400px;
    min-width: 0;
}

.cloak-mesh .hash-md {
    margin-bottom: 1rem;
    color: #fff;
}

/* FAQ Aside */
.depth {
    padding: 80px 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.depth-crown {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-batch {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-pod {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-pod summary {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-pod summary::-webkit-details-marker {
    display: none;
}

.faq-pod summary:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-pod summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-pod[open] summary::after {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-echo {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

/* Footer */
.sole {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.root {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand-echo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.sole-chain {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0;
}

.sole-wire {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sole-wire:hover {
    color: var(--primary);
}

.echo-echo {
    color: rgba(148, 163, 184, 0.5);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .nexus-mesh {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    .nexus::before {
        background: linear-gradient(180deg, var(--bg-dark) 45%, var(--surface) 100%);
    }
    .cloak {
        padding: 3rem 2rem;
        gap: 2rem;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .chain {
        display: none; /* Mobile menu hidden for pure HTML structure, typically handled by JS */
    }
    .radar {
        justify-content: center;
    }
    .vault-prime {
        transform: none;
    }
    .vault-prime:hover {
        transform: translateY(-5px);
    }
    .hash-xl {
        font-size: 2.2rem;
    }
    .price-amount {
        font-size: 2.8rem;
    }
}

.route-crown {
    font-family: var(--font-sans);
    line-height: 1.6;
    word-break: break-word;
    color: var(--light-text);
}
.route-crown,
.route-crown *,
.route-crown *::before,
.route-crown *::after {
    box-sizing: border-box;
}

.route-crown nav,
.route-crown div,
.route-crown section,
.route-crown article,
.route-crown aside,
.route-crown p,
.route-crown h1,
.route-crown h2,
.route-crown h3,
.route-crown h4,
.route-crown h5,
.route-crown h6,
.route-crown a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.route-crown p,
.route-crown h1,
.route-crown h2,
.route-crown h3,
.route-crown h4,
.route-crown h5,
.route-crown h6 {
    text-decoration: none;
}

.route-crown img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.route-crown {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.route-crown a.route-wire {
    --aisite-shell-nav-padding: 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.route-crown a.route-wire,
.route-crown a.route-wire:hover,
.route-crown a.route-wire:focus,
.route-crown a.route-wire:active,
.route-crown a.route-wire.active,
.route-crown a.route-wire[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.route-crown{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(11, 17, 33, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

.route-crown .route-radar{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5vw;
            max-width: 1400px;
            margin: 0 auto;
        }

.route-crown .route-radar > *{ min-width: 0; }

.route-crown .route-seal img{
            height: 32px;
            width: auto;
            display: block;
        }

.route-crown .route-chain{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.route-crown .route-chain > *{ min-width: 0; }

.route-crown .route-wire{
            color: #f8fafc;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.15s ease;
            position: relative;
        }

.route-crown .route-wire:hover, .route-crown .route-wire.active{
            color: #eb3968;
        }

.route-crown .route-wire.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #eb3968;
            border-radius: 2px;
        }

@media (max-width: 768px){.route-crown .route-radar{
                flex-direction: column;
                gap: 1rem;
            }

.route-crown .route-chain{
                gap: 1rem;
                justify-content: center;
            }}

.route-crown {
    background: rgb(11, 17, 33);
    background-image: none;
}

.root-sole {
    font-family: var(--font-sans);
    line-height: 1.6;
    word-break: break-word;
    color: var(--light-text);
}
.root-sole,
.root-sole *,
.root-sole *::before,
.root-sole *::after {
    box-sizing: border-box;
}

.root-sole nav,
.root-sole div,
.root-sole section,
.root-sole article,
.root-sole aside,
.root-sole p,
.root-sole h1,
.root-sole h2,
.root-sole h3,
.root-sole h4,
.root-sole h5,
.root-sole h6,
.root-sole a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.root-sole p,
.root-sole h1,
.root-sole h2,
.root-sole h3,
.root-sole h4,
.root-sole h5,
.root-sole h6 {
    text-decoration: none;
}

.root-sole img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.root-sole {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.root-sole a,
.root-sole a:hover,
.root-sole a:focus,
.root-sole a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.root-sole .root-echo-base{ font-size: 1rem; color: #94a3b8; }

.root-sole .root-mesh-center{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.root-sole{
            background: #1e293b;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.root-sole .root-sole-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

.root-sole .root-sole-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #f8fafc;
            margin-bottom: 1rem;
            display: block;
        }

.root-sole .root-sole-hash{
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #fff;
        }

.root-sole .root-sole-batch{
            list-style: none;
        }

.root-sole .root-sole-batch li{ margin-bottom: 0.8rem; }

.root-sole .root-sole-wire{
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.15s ease;
        }

.root-sole .root-sole-wire:hover{
            color: #eb3968;
        }

.root-sole .root-sole-depth{
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: #94a3b8;
            font-size: 0.9rem;
        }