/* ==========================================================================
   GBA Token Technology Company Ltd. - Custom Stylesheet (Vanilla CSS3)
   Aesthetic: Ultra-Premium Glassmorphism & Animated Gradient Mesh
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    /* Color Palette */
    --color-bg-dark: #02040a;          /* Ultimate obsidian dark */
    --color-text-pure: #ffffff;        /* Pure ice white */
    --color-text-dim: #94a3b8;         /* Silver slate */
    --color-text-muted: #64748b;       /* Cool grey */
    
    /* Neon Accents */
    --accent-cyan: #00f2fe;            /* Glowing Cyber Cyan */
    --accent-blue: #3b82f6;            /* Electric Royal Blue */
    --accent-violet: #8b5cf6;          /* Deep Violet */
    --accent-magenta: #ec4899;         /* Hot Magenta */
    
    /* Gradients */
    --gradient-cyan-blue: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    --gradient-violet-magenta: linear-gradient(135deg, var(--accent-violet), var(--accent-magenta));
    --gradient-brand-glow: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    --gradient-text-light: linear-gradient(135deg, #ffffff 30%, #cbd5e1 70%, #94a3b8 100%);
    
    /* Glassmorphism Settings */
    --glass-bg: rgba(10, 15, 30, 0.4);
    --glass-bg-hover: rgba(15, 23, 42, 0.55);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-border-hover: rgba(0, 242, 254, 0.25);
    --glass-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.8);
    --glass-glow: 0 0 50px rgba(0, 242, 254, 0.04);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, sans-serif;
    
    /* Animation Speeds */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-snappy: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Core Layout Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-dark);
    color: var(--color-text-pure);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   ANIMATED GRADIENT MESH ENGINE
   ========================================================================== */

.mesh-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #080f25 0%, var(--color-bg-dark) 100%);
}

/* Noise overlay for high-end film grain texture */
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0.045;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Glowing Blurred Mesh Orbs */
.mesh-orb {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: blur(120px);
    opacity: 0.45;
    transition: var(--transition-smooth);
    will-change: transform, left, top;
}

/* Orb 1: Radiant Magenta-Violet */
.orb-1 {
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, rgba(236, 72, 153, 0.1) 60%, transparent 100%);
    top: -10%;
    left: -10%;
    animation: floatOrb1 25s infinite alternate ease-in-out;
}

/* Orb 2: Ice Cyan */
.orb-2 {
    width: 50vw;
    height: 50vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.4) 0%, rgba(59, 130, 246, 0.08) 60%, transparent 100%);
    bottom: -5%;
    right: -5%;
    animation: floatOrb2 30s infinite alternate ease-in-out;
}

/* Orb 3: Deep Royal Blue */
.orb-3 {
    width: 45vw;
    height: 45vw;
    max-width: 450px;
    max-height: 450px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(139, 92, 246, 0.05) 70%, transparent 100%);
    top: 25%;
    right: 15%;
    animation: floatOrb3 22s infinite alternate ease-in-out;
}

/* Orb 4: Hot Pink / Purple */
.orb-4 {
    width: 40vw;
    height: 40vw;
    max-width: 400px;
    max-height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, rgba(2, 4, 10, 0) 70%, transparent 100%);
    bottom: 20%;
    left: 10%;
    animation: floatOrb4 28s infinite alternate ease-in-out;
}

/* GPU Optimized floating animations */
@keyframes floatOrb1 {
    0% { transform: translate3d(var(--drift-x, 0px), var(--drift-y, 0px), 0) rotate(0deg) scale(1); }
    50% { transform: translate3d(calc(var(--drift-x, 0px) + 15%), calc(var(--drift-y, 0px) + 10%), 0) rotate(180deg) scale(1.15); }
    100% { transform: translate3d(calc(var(--drift-x, 0px) - 5%), calc(var(--drift-y, 0px) + 5%), 0) rotate(360deg) scale(0.95); }
}

@keyframes floatOrb2 {
    0% { transform: translate3d(var(--drift-x, 0px), var(--drift-y, 0px), 0) scale(1.05); }
    50% { transform: translate3d(calc(var(--drift-x, 0px) - 10%), calc(var(--drift-y, 0px) - 15%), 0) scale(0.9); }
    100% { transform: translate3d(calc(var(--drift-x, 0px) + 5%), calc(var(--drift-y, 0px) + 5%), 0) scale(1.1); }
}

@keyframes floatOrb3 {
    0% { transform: translate3d(var(--drift-x, 0px), var(--drift-y, 0px), 0) rotate(0deg); }
    50% { transform: translate3d(calc(var(--drift-x, 0px) - 15%), calc(var(--drift-y, 0px) + 15%), 0) rotate(-120deg); }
    100% { transform: translate3d(calc(var(--drift-x, 0px) + 10%), calc(var(--drift-y, 0px) - 10%), 0) rotate(-240deg); }
}

@keyframes floatOrb4 {
    0% { transform: translate3d(var(--drift-x, 0px), var(--drift-y, 0px), 0) scale(0.95); }
    50% { transform: translate3d(calc(var(--drift-x, 0px) + 12%), calc(var(--drift-y, 0px) - 8%), 0) scale(1.1); }
    100% { transform: translate3d(calc(var(--drift-x, 0px) - 8%), calc(var(--drift-y, 0px) + 10%), 0) scale(1); }
}

/* Particle Background Canvas (Overlay style) */
#neural-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
}

/* ==========================================================================
   PAGE LAYOUT WRAPPER
   ========================================================================== */

.page-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    pointer-events: none; /* Let clicks pass through general page, but captures them in containers */
}

/* Enable pointer events on standard layout containers */
.site-header,
.main-content,
.site-footer,
.modal-overlay,
.mobile-drawer {
    pointer-events: auto;
}

/* ==========================================================================
   FLOATING GLASSMORPHIC HEADER
   ========================================================================== */

.site-header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 15, 30, 0.35);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.1rem 2rem;
    border-radius: 24px;
    margin-bottom: 2rem;
    position: relative;
    transition: var(--transition-smooth);
}

.site-header:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 242, 254, 0.03);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

/* Brand / Logo Styling */
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-snappy);
}

.logo-core {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-brand-glow);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
    transition: var(--transition-snappy);
}

.brand:hover .logo-mark {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.35);
    transform: rotate(45deg);
}

.brand:hover .logo-core {
    transform: scale(1.2);
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-snappy);
}

.brand:hover .brand-text {
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sleek Glass Search Bar */
.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: 0.35rem 0.5rem 0.35rem 1rem;
    width: 260px;
    position: relative;
    transition: var(--transition-smooth);
}

.search-container:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.search-container:focus-within {
    width: 310px;
    background: rgba(10, 15, 30, 0.6);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}

.search-icon {
    width: 15px;
    height: 15px;
    color: var(--color-text-dim);
    margin-right: 0.6rem;
    transition: var(--transition-snappy);
}

.search-container:focus-within .search-icon {
    color: var(--accent-cyan);
}

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

.search-container input::placeholder {
    color: var(--color-text-muted);
}

.search-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-pure);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-snappy);
}

.search-btn:hover {
    background: var(--accent-cyan);
    color: var(--color-bg-dark);
    border-color: var(--accent-cyan);
    transform: scale(1.05);
}

/* Header Right - Navigation Menu */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--color-text-dim);
    cursor: pointer;
    transition: var(--transition-snappy);
    position: relative;
    padding: 0.2rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-brand-glow);
    transition: var(--transition-snappy);
}

.nav-link:hover {
    color: var(--color-text-pure);
}

.nav-link:hover::after {
    width: 100%;
}

/* Sleek Nav CTA Button */
.btn-join {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-text-pure);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1.3rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-snappy);
}

.btn-join:hover {
    background: var(--color-text-pure);
    color: var(--color-bg-dark);
    border-color: var(--color-text-pure);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px -5px rgba(255, 255, 255, 0.15);
}

/* Mobile Hamburger Menu Icon */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-pure);
    border-radius: 2px;
    transition: var(--transition-snappy);
}

/* ==========================================================================
   HERO PRESENTATION SECTION
   ========================================================================== */

.main-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: auto 0;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* Premium Pulsing Status Badge */
.badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.15rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-dim);
    letter-spacing: 2px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    margin-right: 8px;
}

.badge-ping {
    position: absolute;
    left: 20px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    animation: badgePing 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes badgePing {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(2.8); opacity: 0; }
    100% { transform: scale(2.8); opacity: 0; }
}

/* Hero Typography: Large Spaced-out WELCOME */
.hero-text-block {
    margin-bottom: 3.2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 6.2rem;
    font-weight: 300;
    letter-spacing: 0.28em;
    margin-left: 0.28em; /* Shift title right slightly to perfectly balance letter-spacing padding */
    line-height: 1.05;
    margin-bottom: 1.8rem;
    background: var(--gradient-text-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    animation: welcomeFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes welcomeFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px) drop-shadow(0 0 0 transparent);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    }
}

.hero-desc {
    font-size: 0.98rem;
    font-weight: 400;
    color: var(--color-text-dim);
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto;
    letter-spacing: 0.5px;
    animation: descFadeIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes descFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Ultra-Premium Action Pill Button */
.action-wrapper {
    animation: descFadeIn 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.btn-pill {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    color: var(--color-text-pure);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    overflow: hidden;
}

/* Button backglow border glow */
.btn-pill::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 0;
}

.btn-pill span,
.btn-pill .arrow-icon {
    position: relative;
    z-index: 1;
}

.btn-pill .arrow-icon {
    transition: var(--transition-snappy);
    color: var(--accent-cyan);
}

.btn-pill:hover {
    border-color: rgba(0, 242, 254, 0.3);
    background: rgba(10, 15, 30, 0.6);
    box-shadow: 0 20px 40px -10px rgba(0, 242, 254, 0.1), 0 0 25px rgba(0, 242, 254, 0.08);
    transform: translateY(-2px);
}

.btn-pill:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-pill:hover .arrow-icon {
    transform: translateY(3px);
}

.btn-pill:active {
    transform: translateY(0);
}

/* ==========================================================================
   SUBTLE FOOTER
   ========================================================================== */

.site-footer {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-status .status-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981; /* Premium Active Green */
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: activePulse 2s infinite ease-in-out;
}

@keyframes activePulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.footer-status .status-text {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--color-text-muted);
}

.site-footer p.copyright {
    color: var(--color-text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   GLASSMORPHIC MODALS (Overlay System)
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 4, 10, 0.4);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Inner Glass Card Container */
.modal-card {
    background: rgba(10, 15, 30, 0.5);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), 0 0 50px rgba(139, 92, 246, 0.05);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: 28px;
    padding: 3.2rem 3rem;
    width: 100%;
    max-width: 580px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

/* Close Button Icon */
.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text-dim);
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-snappy);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close-btn:hover {
    color: var(--color-text-pure);
    background: rgba(255, 255, 255, 0.05);
}

/* Modal Typography */
.modal-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-violet {
    background: linear-gradient(135deg, #ffffff, var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-body {
    color: var(--color-text-dim);
    font-size: 0.92rem;
    line-height: 1.7;
}

.modal-body p {
    margin-bottom: 1.2rem;
}

.modal-body p strong {
    color: var(--color-text-pure);
}

/* Feature Cards inside Modals */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.8rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.2rem;
    transition: var(--transition-snappy);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 242, 254, 0.15);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-text-pure);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Contact Area Clipboard Styling inside Modal */
.text-center {
    text-align: center;
}

.inquiry-box {
    margin: 2.2rem 0;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.inquiry-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    margin-bottom: 0.9rem;
}

.copy-container {
    position: relative;
    display: inline-block;
}

.copy-email-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.65rem 1.2rem;
    color: var(--color-text-pure);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: var(--transition-snappy);
}

.copy-email-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.email-address {
    font-weight: 500;
}

.copy-icon {
    color: var(--color-text-dim);
    transition: var(--transition-snappy);
}

.copy-email-btn:hover .copy-icon {
    color: var(--accent-violet);
    transform: scale(1.08);
}

/* Clipboard Tooltip */
.copy-tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #080a10;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-snappy);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.copy-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #080a10 transparent transparent transparent;
}

.copy-container:hover .copy-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.info-links {
    margin-top: 1.5rem;
}

.portal-link {
    color: var(--accent-violet);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition-snappy);
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
}

.portal-link:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

/* FAQ Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 1.4rem;
    text-align: left;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-pure);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    font-size: 1.1rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 1.4rem;
}

.faq-answer p {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--color-text-dim);
    padding-bottom: 1.1rem;
    margin: 0;
}

/* Toggle Accordion State in JavaScript */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */

.toast {
    position: fixed;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: rgba(10, 12, 22, 0.9);
    border: 1px solid var(--accent-violet);
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 16px;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(139, 92, 246, 0.2);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast::before {
    content: '✓';
    color: var(--accent-violet);
    font-weight: 800;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 4, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    justify-content: flex-end;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-content {
    background: rgba(10, 15, 30, 0.55);
    border-left: 1px solid var(--glass-border);
    width: 80%;
    max-width: 320px;
    height: 100%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.drawer-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text-dim);
    font-size: 2.2rem;
    font-weight: 200;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.drawer-link-btn {
    background: none;
    border: none;
    color: var(--color-text-pure);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: left;
    cursor: pointer;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-snappy);
}

.drawer-link-btn:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.drawer-join {
    background: var(--gradient-brand-glow);
    border: none;
    color: var(--color-bg-dark) !important;
    text-align: center;
    border-radius: 30px;
    padding: 0.8rem 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.drawer-join:hover {
    padding-left: 0 !important;
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.3);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 4.8rem;
    }
    
    .page-wrapper {
        padding: 1.5rem 1.8rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    /* Layout Adaptations */
    .page-wrapper {
        padding: 1.25rem 1.25rem;
    }
    
    .site-header {
        padding: 1rem 1.5rem;
        border-radius: 18px;
        margin-bottom: 1rem;
    }
    
    /* Collapse Search Bar width */
    .search-container {
        width: 170px;
        padding-left: 0.6rem;
    }
    .search-container:focus-within {
        width: 180px;
    }
    
    /* Hide desktop nav */
    .header-right {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Adjust Hero Title */
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 0.22em;
        margin-left: 0.22em;
    }
    
    .hero-desc {
        font-size: 0.92rem;
    }
    
    /* Modal Grid collapse */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .site-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
        padding-top: 1rem;
    }
}

@media (max-width: 480px) {
    /* Hide Search Bar entirely on super small screens, show inside mobile drawer if needed or just logo */
    .search-container {
        display: none;
    }
    
    .hero-title {
        font-size: 2.7rem;
        letter-spacing: 0.16em;
        margin-left: 0.16em;
    }
    
    .btn-pill {
        width: 100%;
        justify-content: center;
    }
}
