/* -----------------------------
   Identity 7.0: Institutional Intelligence
----------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Institutional Dark Palette (Onyx & Silver) */
    --bg-base: #020408; /* Deep Midnight */
    --bg-card: #0a0c12; /* Dark Obsidian */
    --accent-primary: #ffffff; /* Pure Institutional White */
    --accent-blue: #1a56db; /* Intense Institutional Blue */
    --accent-elite: #06b6d4; /* Pro Cyan */
    --text-primary: #ffffff; 
    --text-secondary: #94a3b8; /* Steel Slate for Hierarchy */
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Materials */
    --glass-bg: rgba(255, 255, 255, 0.03); /* Subtle Dark Glass */
    --glass-blur: blur(16px);
    --transition-premium: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-y: scroll; /* Force scrollbar presence to prevent jump and ensure scrollability */
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

#bg-grid {
    display: none;
}

/* Logo Visibility & Contrast */
.logo-contrast {
    filter: drop-shadow(0 0 10px rgba(26, 86, 219, 0.2)) !important; /* Subtle branding glow */
    opacity: 1 !important;
    display: block !important;
    transition: all 0.3s ease;
}

.logo-white {
    filter: brightness(0) invert(1) !important; /* Force white for dark backgrounds */
}

@keyframes scanLogo {
    0%, 100% { top: 0%; opacity: 0.1; }
    50% { top: 100%; opacity: 0.3; }
}

#bg-glow {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(226, 232, 240, 0.03) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}


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

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-up {
    animation: slideUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Ventures Detail Animations */
.venture-drilldown {
    animation: drillDown 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.venture-exit {
    animation: drillExit 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes drillDown {
    from { opacity: 0; transform: scale(1.02) translateY(10px); filter: blur(4px); }
    to { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

@keyframes drillExit {
    from { opacity: 1; transform: scale(1) translateY(0); }
    to { opacity: 0; transform: scale(0.98) translateY(-10px); }
}

.pillar-card {
    cursor: pointer;
    transition: var(--transition-premium);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 25px 45px rgba(26, 86, 219, 0.12);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -----------------------------
   Scientific Grid Background
----------------------------- */
.background-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #080b12 0%, #000000 100%);
}

/* HIGH-IMPACT BACKGROUND WATERMARK: PRECISE HH GEOMETRY */
.background-mesh::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vh;
    height: 70vh;
    background: url('assets/logo_definitivo.png') no-repeat center;
    background-size: contain;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
    will-change: transform; /* Hint for parallax smoother */
}

.background-mesh::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: drift 25s infinite alternate cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 1;
}

.orb-1 {
    top: -5%;
    left: -5%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(148, 163, 184, 0.08) 0%, rgba(0,0,0,0) 70%);
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, rgba(0,0,0,0) 70%);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 35%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 116, 139, 0.05) 0%, rgba(0,0,0,0) 70%);
    animation-delay: -12s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 90px) scale(1.15); }
}

/* -----------------------------
   Precise Navigation Bar
----------------------------- */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-premium);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur); /* Set to 12px natively */
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-premium);
    will-change: transform, opacity; /* Hardware acceleration hint */
}

/* Actual navbar class used in index.html */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 4, 8, 0.8) !important; /* Premium Dark Glass */
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    padding: 0;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#main-logo {
    height: 32px;
    width: auto;
    transition: height 0.3s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    font-family: var(--font-serif);
    color: #ffffff;
    font-weight: 900;
}

.brand-sub {
    font-size: 0.55rem;
    letter-spacing: 0.5em;
    color: var(--accent-blue);
    margin-top: 0.3rem;
    font-weight: 800;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8rem;
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--accent-elite);
    box-shadow: 0 0 5px var(--accent-elite);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: #1a56db;
}

.nav-link.active {
    color: var(--accent-blue) !important;
    background: rgba(26, 86, 219, 0.06) !important;
    padding: 0.25rem 0.6rem !important;
    border-radius: 4px;
}

/* Ensure the top-left logo link NEVER gets the active pill highlight */
.logo-link.active, .logo-container.active {
    background: transparent !important;
    color: inherit !important;
    padding: 0 !important;
    outline: none !important;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
    background-color: #1a56db;
    box-shadow: 0 0 8px rgba(26, 86, 219, 0.4);
}

/* Desktop Menu & Lang */
.desktop-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.desktop-menu .nav-link {
    color: #ffffff;
    font-weight: 700;
}

.desktop-lang {
    display: flex;
    gap: 0.8rem;
    margin-left: 1.5rem;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 1.2rem;
    align-items: center;
}

.desktop-lang ion-icon {
    font-size: 1.1rem;
    color: #1a56db;
}

.desktop-lang span {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
}

.flag {
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.85;
    transition: var(--transition-smooth);
    filter: grayscale(0%);
}

.flag:hover, .flag.active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.2);
}

/* -----------------------------
   Main Content Layout
----------------------------- */
.content-container {
    flex: 1;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem 2rem;
    position: relative;
    z-index: 10;
}

/* View Transition Classes */
.view-section {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
}

.view-section.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -----------------------------
   Sharp Scientific Cards
----------------------------- */
.section-title {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 4rem;
    font-weight: 400;
}



.nav-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.4s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

/* DASHBOARD CARDS HYPE */
.glass-card {
    background: rgba(10, 12, 18, 0.95); /* Sovereign Dark Glass */
    backdrop-filter: blur(12px) saturate(120%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    pointer-events: none;
}

.glass-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.card-title {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.7;
}

/* -----------------------------
   PREMIUM & ELITE TIERS
----------------------------- */
.plans-container {
    opacity: 1;
    margin-top: 1rem;
}

.tier-card {
    position: relative;
    overflow: hidden;
}

.tier-premium {
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 245, 230, 0.9) 100%);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.05);
}
.tier-premium:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.1);
}
.tier-premium::before {
    content: 'EXECUTIVE';
    position: absolute;
    top: 0; right: 0;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.65rem;
    font-family: var(--font-sans);
    font-weight: 700;
    padding: 0.3rem 1.2rem;
    border-bottom-left-radius: 4px;
    letter-spacing: 0.2em;
}

.tier-elite {
    border: 1px solid rgba(0, 188, 212, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 250, 255, 0.9) 100%);
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.08);
}
.tier-elite:hover {
    border-color: rgba(0, 188, 212, 0.8);
    box-shadow: 0 15px 50px rgba(0, 188, 212, 0.15);
    transform: translateY(-5px) scale(1.02);
}
.tier-elite::before {
    content: 'STRUCTURAL PRO';
    position: absolute;
    top: 0; right: 0;
    background: var(--accent-elite);
    color: #000;
    font-size: 0.65rem;
    font-family: var(--font-sans);
    font-weight: 700;
    padding: 0.35rem 1.4rem;
    border-bottom-left-radius: 4px;
    letter-spacing: 0.2em;
    box-shadow: 0 0 15px var(--accent-elite);
}

/* -----------------------------
   Buttons
-----------------------------/* Institutional Functional Buttons */
.btn-green {
    background: #10b981;
    color: #000 !important;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-smooth);
}
.btn-green:hover {
    background: #059669;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-red {
    background: #ef4444;
    color: #000 !important;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-smooth);
}
.btn-red:hover {
    background: #dc2626;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

/* Base Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-premium);
    text-decoration: none;
    width: fit-content;
}

.btn-primary:hover {
    background: var(--accent-blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 86, 219, 0.2);
}

#form-submit-btn {
    background: #000000;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    transition: var(--transition-premium);
}

#form-submit-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 86, 219, 0.3);
}

.btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-premium);
    text-decoration: none;
}

.btn-green:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-premium);
    text-decoration: none;
}

.btn-red:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.2);
}

.stripe-btn {
    transition: all 0.3s ease;
}

.stripe-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.btn-glow {
    border-color: var(--accent-sci);
    color: var(--accent-sci);
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.15);
}
.btn-glow:hover {
    background: var(--accent-sci);
    color: #fff;
    box-shadow: 0 0 25px rgba(74, 144, 226, 0.4);
}

.btn-elite {
    border-color: var(--accent-elite);
    color: var(--accent-elite);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.btn-elite:hover {
    background: var(--accent-elite);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

/* -----------------------------
   Mobile Dropdowns
----------------------------- */
.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(2, 4, 8, 0.98); /* Deep Sovereign Dark */
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.mobile-dropdown.open {
    display: block;
    animation: slideDownNav 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDownNav {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.mobile-nav-links .nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.2em;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* -----------------------------
   Footer
----------------------------- */
.glass-footer {
    background: rgba(2, 4, 8, 0.98); /* Sovereign Dark Footer */
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem 2rem;
    margin-top: auto;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.04);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-family: var(--font-sans);
}

/* -----------------------------
   Responsive Architecture
----------------------------- */
@media screen and (max-width: 950px) {
    .nav-links.desktop-menu, .desktop-lang {
        display: none !important;
    }
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    .grid-2, .grid-3 {
        grid-template-columns: 1fr !important; /* Force stack on mobile */
        gap: 1.5rem;
    }
    .lang-selector {
        border-left: none;
        padding-left: 0;
        margin-top: 1rem;
        justify-content: flex-start;
    }
    .content-container {
        padding: 6.5rem 1.2rem 3rem 1.2rem;
    }
    .glass-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    #main-logo {
        height: 24px;
    }
    .brand-main {
        font-size: 0.9rem;
    }
    .brand-sub {
        font-size: 0.45rem;
    }
    .logo-link {
        gap: 0.6rem;
    }
}

/* -----------------------------
   3D Structural Book Module
----------------------------- */
.book-container {
    perspective: 2000px;
    width: 220px;
    height: 330px;
    position: relative;
    margin: 0 auto;
}

.book-3d {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: rotateY(-25deg) rotateX(10deg);
    cursor: pointer;
}

.book-container:hover .book-3d {
    transform: rotateY(-10deg) rotateX(0deg) scale(1.05);
}

.book-front, .book-back, .book-spine, .book-pages, .book-top, .book-bottom {
    position: absolute;
}

.book-front { 
    transform: translateZ(15px); 
    width: 220px; 
    height: 330px; 
    background-size: cover;
    background-position: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset -4px 0 15px rgba(0,0,0,0.3), inset 2px 0 5px rgba(255,255,255,0.2);
    border-radius: 2px 4px 4px 2px;
    z-index: 5;
}

.book-back { 
    transform: translateZ(-15px) rotateY(180deg); 
    width: 220px; 
    height: 330px; 
    background: #e8e8e8;
    border: 1px solid rgba(0,0,0,0.1);
}

.book-spine { 
    width: 30px; 
    height: 330px;
    left: 0; 
    transform-origin: left; 
    transform: rotateY(-90deg) translateZ(15px); 
    background: #f4f4f4;
    border-right: 1px solid rgba(0,0,0,0.1);
}

.book-pages { 
    width: 30px; 
    height: 326px;
    top: 2px;
    right: 0; 
    transform-origin: right; 
    transform: rotateY(90deg) translateZ(15px); 
    background: repeating-linear-gradient(to right, #ccc 0, #fff 1px, #eee 3px);
}

.book-top { 
    height: 30px; 
    width: 216px;
    left: 2px;
    top: 0; 
    transform-origin: top; 
    transform: rotateX(90deg) translateZ(15px); 
    background: #eee;
}

.book-bottom { 
    height: 30px; 
    width: 216px;
    left: 2px;
    bottom: 0; 
    transform-origin: bottom; 
    transform: rotateX(-90deg) translateZ(15px); 
    background: #eee;
}

/* Amazon Integration & Reviews */
.amazon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #ff9900;
    color: #111 !important;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: var(--transition-premium);
    margin-bottom: 3rem;
    box-shadow: 0 10px 20px rgba(255, 153, 0, 0.2);
}

.amazon-btn:hover {
    transform: translateY(-3px);
    background: #ffac33;
    box-shadow: 0 15px 30px rgba(255, 153, 0, 0.3);
}

.amazon-reviews-container {
    width: 100%;
    margin-top: 2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.reviews-header {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-stars {
    color: #ff9900;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* -----------------------------
   SVG Branding & Pricing UX
----------------------------- */
.hero-logo-svg {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.pipe-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.1));
    transition: var(--transition-premium);
    animation: pipeFloat 6s infinite ease-in-out;
}

@keyframes pipeFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(10deg); }
}

.home-pricing-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    animation: fadeIn 1s ease-out 0.8s both;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.price-item span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--text-secondary);
}

.price-item strong {
    font-size: 1.4rem;
    color: var(--accent-gold);
    font-family: var(--font-serif);
}

.price-sep {
    width: 1px;
    height: 30px;
    background: var(--glass-border);
}

/* Swipable Background Branding */
.swipable-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    z-index: -1;
    opacity: 0.03;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* -----------------------------
   High-Fidelity Pricing Cards (As per prices.png)
----------------------------- */
.pricing-grid-final {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card-final {
    position: relative;
    background: #050609;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: var(--transition-premium);
}

.tier-card-final:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
}

/* EXECUTIVE TIER */
.tier-executive {
    border-color: rgba(212, 175, 55, 0.3);
}

.executive-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

/* STRUCTURAL PRO TIER */
.tier-structural-pro {
    border-color: var(--accent-elite);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.05);
}

.pro-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-elite);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.tier-title-final {
    font-size: 1.8rem;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tier-icon-final {
    font-size: 2rem;
    color: #fff;
}

.tier-executive .tier-icon-final { color: var(--accent-gold); }
.tier-structural-pro .tier-icon-final { color: var(--accent-elite); }

.tier-desc-final {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    min-height: 3em;
}

.tier-list-final {
    list-style: none;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tier-list-final li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tier-list-final ion-icon {
    font-size: 1.2rem;
}

.tier-price-container {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.tier-price-final {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: var(--font-sans);
    line-height: 1;
}

.tier-structural-pro .tier-price-final { color: var(--accent-elite); }
.tier-executive .tier-price-final { color: var(--accent-gold); }

.tier-price-suffix {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-left: 0.5rem;
}

.tier-btn-final {
    padding: 0.8rem 1.8rem;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.tier-executive .tier-btn-final { border-color: var(--accent-gold); color: var(--accent-gold); }
.tier-structural-pro .tier-btn-final { border-color: var(--accent-elite); color: var(--accent-elite); }

/* -----------------------------
   Executive Home Page Revamp
----------------------------- */
/* AGE GATE OVERLAY */
.age-gate-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s ease;
}

.age-gate-overlay.verified {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);
}

.age-gate-card {
    max-width: 500px;
    width: 100%;
    text-align: center;
    padding: 4rem 3rem;
    border: 1px solid rgba(255,215,0,0.1);
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 0 50px rgba(0,0,0,1);
}

.hero-perspective {
    perspective: 1000px;
    padding-top: 5vh;
}

.hero-main {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    animation: heroEntrance 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes heroEntrance {
    from { opacity: 0; transform: translateY(40px) rotateX(10deg); }
    to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

.hero-scanner {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    animation: scanPulse 4s infinite ease-in-out;
}

@keyframes scanPulse {
    0%, 100% { width: 0; opacity: 0; }
    50% { width: 300px; opacity: 0.5; }
}

.hero-title {
    font-size: 5rem;
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.hero-accent {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    font-size: 3.5rem;
    letter-spacing: 0.2em;
}

.hero-statement {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-sub {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Executive Grid */
.executive-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.exec-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}/* -----------------------------
   Logo Everywhere & Search
----------------------------- */
#premium-loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-deep);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

#premium-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.2));
    animation: loaderPulse 2s infinite ease-in-out;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.4)); }
}

.loader-line {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.loader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    animation: loaderProgress 1.5s infinite linear;
}

@keyframes loaderProgress {
    0% { left: -100%; }
    100% { left: 100%; }
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.search-bar-premium {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    transition: var(--transition-premium);
    width: 200px;
}

.search-bar-premium:focus-within {
    width: 280px;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.search-icon-img {
    height: 18px;
    width: auto;
    opacity: 0.5;
    transition: var(--transition-premium);
}

.search-bar-premium:focus-within .search-icon-img {
    opacity: 1;
    filter: drop-shadow(0 0 5px var(--accent-gold));
}

.search-input {
    background: none;
    border: none;
    color: #fff;
    font-size: 0.85rem;
    font-family: var(--font-sans);
    outline: none;
    width: 100%;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.05em;
}

@media (max-width: 1100px) {
    .search-bar-premium { display: none; }
}

.exec-card {
    position: relative;
    padding: 3rem;
    overflow: hidden;
    transition: var(--transition-premium);
    cursor: pointer;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exec-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.5);
}

.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.exec-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    transition: var(--transition-premium);
}

.exec-card:hover .exec-icon {
    transform: scale(1.1) rotate(-5deg);
    color: var(--accent-gold);
}

.exec-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.exec-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.exec-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;
    opacity: 0.6;
    transition: var(--transition-premium);
}

.exec-card:hover .exec-btn {
    opacity: 1;
    color: var(--accent-gold);
}

.lit-focus { border-left: 3px solid var(--accent-gold); }
.cons-focus { border-left: 3px solid var(--accent-sci); }
.proj-focus { border-left: 3px solid var(--accent-elite); }

/* -----------------------------
   Responsive Architecture
----------------------------- */
.grid-3, .grid-2 {
    display: grid;
    gap: 2rem;
    width: 100%;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}



/* Legacy Tray Removed for Direct Purchase Model */

/* Sovereign Auth Modal */
.glass-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    z-index: 3000;
    padding: 2rem;
    align-items: center;
    justify-content: center;
}

.glass-modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card); /* Dark Institutional Background */
    color: var(--text-primary);
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    animation: modalSlideUp 0.5s ease;
    backdrop-filter: blur(25px);
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}



@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

    .desktop-menu {
        display: none !important;
    }
    .mobile-menu-btn {
        display: block !important;
    }
    .grid-3, .grid-2 {
        grid-template-columns: 1fr !important;
    }
    
    .desktop-menu {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: block; /* Revealed on mobile */
    }
    
    .brand-main {
        font-size: 0.9rem;
    }
    
    .view-section h2 {
        font-size: 1.8rem !important;
    }
    
    .visual-container {
        height: 240px !important;
    }
    
    .hero-view h1 {
        font-size: 2.2rem !important;
    }
}

/* View Container — clears fixed navbar + ensures full scroll */
#view-container {
    padding-top: 80px; 
    height: auto !important;
    min-height: auto !important; 
}

.view-section.active {
    padding-bottom: 6rem;
}

.navbar .logo-sub {
    color: #1a56db !important;
}

/* -----------------------------
   Brand Authority Section
----------------------------- */
.brand-authority-section {
    padding: 6rem 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 4rem 0;
}

.brand-authority-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.brand-authority-section .section-badge {
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.handshake-icon {
    width: 54px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 12px rgba(26, 86, 219, 0.3));
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-authority-section:hover .handshake-icon {
    transform: scale(1.12) translateY(-5px);
}

.brand-authority-section .section-badge span {
    font-size: 0.9rem; /* Significantly larger for "TOP TOP TOP" impact */
    letter-spacing: 0.4em;
    color: var(--accent-blue);
    font-weight: 800;
    text-transform: uppercase;
    display: block;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 3.5rem 3rem; /* Slightly tighter vertical gap for larger logos */
    align-items: center;
    justify-items: center;
    max-width: 1150px; /* Widened slightly to accommodate larger logos */
    margin: 0 auto;
}

.partner-item {
    width: 100%;
    max-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
    opacity: 0.9;
}

.partner-item:hover {
    opacity: 1;
    transform: scale(1.08);
}

.partner-item img {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
    opacity: 0.95;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-item.horizontal img {
    max-height: 50px;
}

.partner-item.square img {
    max-height: 78px;
}

.partner-item.freehand img {
    max-height: 65px;
}

/* Specific boost for Bluelab to match visual weight */
.partner-item.horizontal img[src*="bluelab"] {
    max-height: 62px;
}

.partner-item:hover img {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(26, 86, 219, 0.4));
}

@media (max-width: 900px) {
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .partner-item {
        max-width: 100px;
    }
}
/* -----------------------------
   Footer Extension (Social & Legal)
----------------------------- */
.footer-links-orchestration {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.2rem;
}

.social-gateways {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-gateways a {
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
    transition: var(--transition-premium);
    display: flex;
    align-items: center;
}

.social-gateways a:hover {
    color: var(--accent-blue);
    transform: translateY(-3px) scale(1.1);
}

.institutional-gateways {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.institutional-gateways a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 2px;
    transition: var(--transition-premium);
}

.institutional-gateways a:hover {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
}

.legal-notice-btn {
    border-bottom-color: rgba(26, 86, 219, 0.3) !important;
}

@media (max-width: 768px) {
    .footer-content > div {
        flex-direction: column !important;
        text-align: center;
        gap: 2.5rem !important;
    }
    
    .footer-links-orchestration {
        align-items: center;
    }
    
    .institutional-gateways {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* -----------------------------
   Premium Contact Form Subsystem
----------------------------- */
.premium-input {
    width: 100%;
    padding: 1.2rem;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}
.premium-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.05);
}
.premium-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.premium-label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.premium-select option {
    background-color: #0b0e14;
    color: var(--text-primary);
}
.faq-accordion.open .faq-content {
    max-height: 500px !important;
}
.faq-accordion.open .faq-icon {
    transform: rotate(180deg);
}

.token-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
}
.token-btn {
    padding: 0.8rem 1.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}
.token-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}
.token-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(26, 86, 219, 0.2);
}

/* Responsive Form Media Overrides */
.glass-card-form {
    padding: 4rem;
    background: #020408 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.contact-hero-text {
    font-size: 3.5rem;
}

@media (max-width: 768px) {
    .glass-card-form {
        padding: 2.5rem;
    }
    .contact-hero-text {
        font-size: 2.8rem;
    }
    .token-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .glass-card-form {
        padding: 1.5rem;
    }
    .contact-hero-text {
        font-size: 2rem;
    }
    .token-group {
        justify-content: flex-start;
    }
}
