:root {
    --aura-primary: #df72aa;
    --aura-primary-hover: #c95a92;
    --aura-primary-light: #fce4ec;
    --aura-bg: #fcfcfd;
    --aura-surface: #ffffff;
    --aura-text-main: #1d1d1f;
    --aura-text-muted: #86868b;
    --aura-radius: 12px;
    --aura-radius-lg: 24px;
    --aura-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    --aura-transition: 0.25s ease;
}

/* Base & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--aura-bg);
    color: var(--aura-text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Typography Rules */
h1, h2, h3, h4, h5, h6 {
    white-space: normal;
    color: var(--aura-text-main);
}

p {
    word-break: keep-all;
}

/* Flexbox Safety Rules */
.flex-safe {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
}

/* Header - Reused Structure Styles */
.apex {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(252, 252, 253, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.sigil {
    display: flex;
    align-items: center;
    min-width: 0;
}

.sigil img {
    height: 28px;
    width: auto;
    display: block;
}

.path {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
}

.wire {
    text-decoration: none;
    color: var(--aura-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--aura-transition);
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

/* Main Layout */
.mesh {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

/* Hero Section (Portal) */
.portal {
    width: 100%;
    padding: 6rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(223, 114, 170, 0.12), transparent 60%);
    flex-wrap: wrap;
    min-width: 0;
}

.crest {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.portal .cipher {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--aura-text-muted);
    max-width: 650px;
    line-height: 1.6;
}

/* Pricing Grid (Pool & Vault) */
.pool {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

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

.vault:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.vault-featured {
    border: 2px solid var(--aura-primary);
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(223, 114, 170, 0.15);
}

.vault-featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.veil-seal {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aura-primary);
    color: var(--aura-surface);
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.vault-crest {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--aura-text-main);
    margin-bottom: 0.5rem;
}

.vault-price {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 1rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.vault-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--aura-text-muted);
}

.vault-cipher {
    color: var(--aura-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    min-height: 48px;
}

.warp-spark {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--aura-transition);
    margin-bottom: 2rem;
    cursor: pointer;
    border: none;
    width: 100%;
}

.warp-primary {
    background: var(--aura-primary);
    color: var(--aura-surface);
    box-shadow: 0 4px 15px rgba(223, 114, 170, 0.3);
}

.warp-primary:hover {
    background: var(--aura-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 114, 170, 0.4);
}

.warp-secondary {
    background: var(--aura-primary-light);
    color: var(--aura-primary-hover);
}

.warp-secondary:hover {
    background: #f8d0df;
    transform: translateY(-2px);
}

.step-pool {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    min-width: 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--aura-text-main);
    min-width: 0;
}

.glyph-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--aura-primary);
    margin-top: 2px;
}

/* Info Section (Armor) */
.armor {
    width: 100%;
    max-width: 1100px;
    margin: 4rem auto 6rem;
    padding: 3rem;
    background: var(--aura-surface);
    border-radius: var(--aura-radius-lg);
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: row;
    gap: 4rem;
    flex-wrap: wrap;
    border: 1px solid rgba(0,0,0,0.03);
}

.armor-segment {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.armor-crest {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.armor-glyph {
    width: 28px;
    height: 28px;
    color: var(--aura-primary);
    background: var(--aura-primary-light);
    padding: 6px;
    border-radius: 8px;
}

.armor-cipher {
    color: var(--aura-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.payment-pool {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.payment-glyph {
    height: 32px;
    width: auto;
    opacity: 0.6;
    transition: opacity var(--aura-transition);
}

.payment-glyph:hover {
    opacity: 1;
}

/* Footer (Root) */
.root {
    background-color: var(--aura-surface);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4rem 2rem 2rem;
    margin-top: auto;
}

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

.crypt-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aura-text-main);
    letter-spacing: -0.02em;
}

.crypt-pool {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.anchor {
    color: var(--aura-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--aura-transition);
}

.anchor:hover {
    color: var(--aura-primary);
}

.crypt-cipher {
    font-size: 0.85rem;
    color: #a1a1a6;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .radar {
        padding: 1rem;
    }
    .path {
        display: none; /* In a real scenario, JS would handle mobile menu toggle */
    }
    .portal {
        padding: 4rem 1rem 2rem;
    }
    .pool {
        padding: 1rem;
        gap: 1.5rem;
    }
    .vault-featured {
        transform: none;
    }
    .vault-featured:hover {
        transform: translateY(-4px);
    }
    .armor {
        padding: 2rem;
        gap: 2.5rem;
        margin: 2rem 1rem 4rem;
    }
}

.route-apex {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--aura-text-main);
}
.route-apex,
.route-apex *,
.route-apex *::before,
.route-apex *::after {
    box-sizing: border-box;
}

.route-apex [role="navigation"],
.route-apex div,
.route-apex section,
.route-apex article,
.route-apex aside,
.route-apex p,
.route-apex h1,
.route-apex h2,
.route-apex h3,
.route-apex h4,
.route-apex h5,
.route-apex h6,
.route-apex a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.route-apex a.route-wire {
    --aisite-shell-nav-padding: 0.5rem 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-apex a.route-wire,
.route-apex a.route-wire:hover,
.route-apex a.route-wire:focus,
.route-apex a.route-wire:active,
.route-apex a.route-wire.active,
.route-apex 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-apex{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

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

.route-apex .route-sigil{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.route-apex .route-sigil img{
            height: 32px;
            width: auto;
            display: block;
        }

.route-apex .route-path{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            min-width: 0;
        }

.route-apex .route-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #1d1d1f;
            position: relative;
            padding: 0.5rem 0;
            min-width: 0;
        }

.route-apex .route-wire:hover{
            color: #df72aa;
        }

.route-apex .route-wire.active{
            color: #df72aa;
        }

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

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

.route-apex .route-path{
                justify-content: center;
                gap: 1rem;
            }}

.route-apex {
    background: rgb(255, 255, 255);
    background-image: none;
}

.crypt-root {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--aura-text-main);
}
.crypt-root,
.crypt-root *,
.crypt-root *::before,
.crypt-root *::after {
    box-sizing: border-box;
}

.crypt-root [role="navigation"],
.crypt-root div,
.crypt-root section,
.crypt-root article,
.crypt-root aside,
.crypt-root p,
.crypt-root h1,
.crypt-root h2,
.crypt-root h3,
.crypt-root h4,
.crypt-root h5,
.crypt-root h6,
.crypt-root a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.crypt-root .crypt-path{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            min-width: 0;
        }

.crypt-root .crypt-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #1d1d1f;
            position: relative;
            padding: 0.5rem 0;
            min-width: 0;
        }

.crypt-root .crypt-wire:hover{
            color: #df72aa;
        }

.crypt-root .crypt-wire.active{
            color: #df72aa;
        }

.crypt-root .crypt-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #df72aa;
            border-radius: 2px;
        }

.crypt-root{
            background-color: #ffffff;
            padding: 4rem 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

.crypt-root .crypt-crypt{
            max-width: 1280px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            min-width: 0;
        }

.crypt-root .crypt-anchor{
            font-size: 1.25rem;
            font-weight: 700;
            color: #1d1d1f;
            letter-spacing: -0.02em;
        }

.crypt-root .crypt-cipher{
            font-size: 0.875rem;
            margin: 0;
        }

.crypt-root .crypt-path{
            gap: 1.5rem;
        }

.crypt-root .crypt-wire{
            font-size: 0.875rem;
            color: #86868b;
        }

@media (max-width: 768px){.crypt-root .crypt-path{
                justify-content: center;
                gap: 1rem;
            }

.crypt-root .crypt-crypt{
                flex-direction: column;
                text-align: center;
            }}