:root {
    --primary: #00F2FF;
    /* Electric Cyan */
    --secondary: #0077FF;
    /* Deep Blue */
    --tertiary: #7000FF;
    /* Cyber Purple */
    --accent: #FF00E5;
    /* Neon Pink for micro-details */
    --text: #F0F4F8;
    --text-dim: #94A3B8;
    --text-technical: rgba(0, 242, 255, 0.7);
    --bg-obsidian: #0A0F14;
    /* Deeper Obsidian */
    --glass: rgba(15, 23, 42, 0.6);
    --glass-hover: rgba(30, 41, 59, 0.8);
    --glass-border: rgba(0, 242, 255, 0.3);
    --glass-border-bright: rgba(0, 242, 255, 0.6);
    --modal-bg: rgba(10, 15, 20, 0.98);
    --font-main: 'Outfit', -apple-system, system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--bg-obsidian);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(112, 0, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 242, 255, 0.08) 0%, transparent 40%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.background-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s infinite alternate;
}

.blob:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: var(--primary);
    opacity: 0.15;
    animation-delay: 0s;
}

.blob:nth-child(2) {
    bottom: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: var(--secondary);
    opacity: 0.15;
    animation-delay: -2s;
}

.blob:nth-child(3) {
    bottom: 40%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: var(--tertiary);
    opacity: 0.1;
    animation-delay: -4s;
}

.blob:nth-child(4) {
    top: 50%;
    right: 25%;
    width: 350px;
    height: 350px;
    background: var(--primary);
    opacity: 0.1;
    animation-delay: -6s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

.container {
    max-width: 1200px;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.7),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    margin: 4rem auto;
    position: relative;
    overflow: hidden;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.logo-container img {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--glass-border);
}

.logo-container:hover img {
    transform: scale(1.05) rotate(2deg);
}

/* Scanning Line Effect */
.logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: scan 3s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

h1 {
    font-size: 4.5rem;
    font-weight: 950;
    margin: 0 0 0.5rem 0;
    letter-spacing: -3px;
    background: linear-gradient(to bottom, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

p.tagline {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-technical);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.9;
}

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

.feature-item {
    background: rgba(15, 23, 42, 0.3);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 242, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(30, 41, 59, 0.5);
    border-color: var(--glass-border-bright);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 242, 255, 0.1);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.3));
}

.feature-title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #fff;
    letter-spacing: -0.5px;
}

.feature-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.5;
    font-weight: 400;
}

/* FAQ Styles */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.faq-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-card h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    color: var(--secondary);
    font-weight: 600;
}

.faq-card p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    color: var(--text-technical);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    padding: 1.4rem 4rem;
    border-radius: 100px;
    font-size: 1.2rem;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 15px 35px rgba(0, 119, 255, 0.3);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 242, 255, 0.4);
    letter-spacing: 3px;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    transform: translate(-100%, -100%);
    transition: transform 0.6s ease;
}

.btn:hover::after {
    transform: translate(0, 0);
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.store-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.6rem;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    min-width: 200px;
    text-align: left;
}

.store-btn:hover {
    background: var(--glass-hover);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 242, 255, 0.15);
}

.store-btn svg {
    width: 32px;
    height: 32px;
    margin-right: 1rem;
    fill: currentColor;
}

.store-btn .btn-text {
    display: flex;
    flex-direction: column;
}

.store-btn .btn-text .small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.store-btn .btn-text .large {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Tooltip/Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 100;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: var(--modal-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 242, 255, 0.05);
}

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

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    color: #fff;
    transition: opacity 0.2s;
    background: none;
    border: none;
    padding: 0;
}

.close-modal:hover {
    opacity: 1;
}

.modal h2 {
    margin-top: 0;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: -1px;
}

.modal-content {
    line-height: 1.6;
    color: var(--text);
}

.modal-content ul {
    text-align: left;
    margin-left: 1rem;
}

.badge {
    display: inline-block;
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 242, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

footer {
    margin-top: 4rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

footer a {
    color: var(--text);
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .glass-card {
        padding: 2rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .features {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }
}
