/*! HF_Glass_v2 — main.css (rebuilt) */
:root {
            --dark-bg: #0f172a;
            --darker-bg: #020617;
            --primary: #06b6d4;
            --primary-light: #67e8f9;
            --text: #e2e8f0;
            --text-light: #f8fafc;
            --glass: rgba(15, 23, 42, 0.6);
            --neon-glow: 0 0 10px rgba(6, 182, 212, 0.7);
        }

        [data-theme="light"] {
            --dark-bg: #f1f5f9;
            --darker-bg: #e2e8f0;
            --primary: #0e7490;
            --primary-light: #06b6d4;
            --text: #1e293b;
            --text-light: #0f172a;
            --glass: rgba(241, 245, 249, 0.6);
            --neon-glow: 0 0 10px rgba(14, 116, 144, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Glassmorphism effect */
        .glass {
            background: var(--glass);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(6, 182, 212, 0.1);
            box-shadow: var(--neon-glow);
        }

        /* Utility classes */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .flex {
            display: flex;
        }

        .flex-col {
            flex-direction: column;
        }

        .items-center {
            align-items: center;
        }

        .justify-between {
            justify-content: space-between;
        }

        .gap-4 {
            gap: 1rem;
        }

        .gap-8 {
            gap: 2rem;
        }

        .text-center {
            text-align: center;
        }

        .text-primary {
            color: var(--primary);
        }

        .text-xl {
            font-size: 1.25rem;
        }

        .text-2xl {
            font-size: 1.5rem;
        }

        .text-3xl {
            font-size: 1.875rem;
        }

        .text-4xl {
            font-size: 2.25rem;
        }

        .text-5xl {
            font-size: 3rem;
        }

        .font-bold {
            font-weight: 700;
        }

        .py-8 {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }

        .py-12 {
            padding-top: 3rem;
            padding-bottom: 3rem;
        }

        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .px-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .rounded-lg {
            border-radius: 0.5rem;
        }

        .rounded-xl {
            border-radius: 0.75rem;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            border: 2px solid var(--primary);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--primary);
            box-shadow: 0 0 15px var(--primary);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 0 15px var(--primary);
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 0;
            background-color: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(6, 182, 212, 0.1);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .logo span {
            color: var(--text-light);
        }

        nav ul {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }

        nav a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--primary);
        }

        .theme-toggle {
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.25rem;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .theme-toggle:hover {
            transform: rotate(30deg);
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
            padding: 5rem 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
            animation: gradientRotate 15s infinite linear;
            z-index: -1;
        }

        @keyframes gradientRotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, var(--primary-light), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
        }

        .hero-text p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: var(--text-light);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .ticker {
            display: flex;
            gap: 2rem;
            padding: 0.75rem 1.5rem;
            margin-bottom: 1.5rem;
            overflow-x: auto;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .ticker-symbol {
            color: var(--primary);
            font-weight: 700;
        }

        .ticker-price {
            font-weight: 600;
        }

        .ticker-change {
            font-size: 0.875rem;
        }

        .ticker-change.positive {
            color: #10b981;
        }

        .ticker-change.negative {
            color: #ef4444;
        }

        .chart-container {
            height: 300px;
            border-radius: 0.75rem;
            overflow: hidden;
        }

        /* Features Section */
        .features {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .feature-card {
            padding: 2rem;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

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

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        /* Apps Section */
        .apps {
            padding: 5rem 0;
            background-color: var(--darker-bg);
        }

        .apps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .app-card {
            padding: 1.5rem;
            transition: all 0.3s;
        }

        .app-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(6, 182, 212, 0.1);
        }

        .app-logo {
            width: 60px;
            height: 60px;
            margin-bottom: 1rem;
            object-fit: contain;
        }

        .app-card h3 {
            margin-bottom: 0.5rem;
        }

        .app-card p {
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .app-link {
            display: inline-block;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.875rem;
        }

        .app-link i {
            margin-left: 0.25rem;
            transition: transform 0.3s;
        }

        .app-link:hover i {
            transform: translateX(3px);
        }

        /* Market Section */
        .market {
            padding: 5rem 0;
        }

        .market-table {
            width: 100%;
            border-collapse: collapse;
        }

        .market-table th {
            text-align: left;
            padding: 1rem;
            color: var(--primary);
            border-bottom: 1px solid rgba(6, 182, 212, 0.2);
        }

        .market-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(6, 182, 212, 0.1);
        }

        .market-table tr:last-child td {
            border-bottom: none;
        }

        .market-table tr:hover {
            background-color: rgba(6, 182, 212, 0.05);
        }

        .coin {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .coin-icon {
            width: 24px;
            height: 24px;
        }

        .positive {
            color: #10b981;
        }

        .negative {
            color: #ef4444;
        }

        .sparkline {
            width: 100px;
            height: 30px;
            background-color: rgba(6, 182, 212, 0.1);
            border-radius: 4px;
        }

        /* Download Section */
        .download {
            padding: 5rem 0;
            background-color: var(--darker-bg);
        }

        .download-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .download-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .download-text p {
            margin-bottom: 2rem;
            color: var(--text-light);
        }

        .download-badges {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .badge {
            height: 50px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .badge:hover {
            transform: scale(1.05);
        }

        .download-image {
            text-align: center;
        }

        .download-image img {
            max-width: 100%;
            height: auto;
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 0;
        }

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

        .testimonial-card {
            padding: 2rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 0.25rem;
        }

        .author-info p {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .rating {
            color: #f59e0b;
            margin-top: 0.25rem;
        }

        /* Pricing */
        .pricing {
            padding: 5rem 0;
            background-color: var(--darker-bg);
        }

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

        .pricing-card {
            padding: 2rem;
            transition: transform 0.3s;
        }

        .pricing-card.popular {
            border: 2px solid var(--primary);
            position: relative;
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background-color: var(--primary);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
        }

        .pricing-header {
            margin-bottom: 1.5rem;
        }

        .pricing-name {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pricing-period {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .pricing-features {
            margin-bottom: 2rem;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .pricing-feature i {
            color: var(--primary);
        }

        /* FAQ */
        .faq {
            padding: 5rem 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(6, 182, 212, 0.1);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            cursor: pointer;
            font-weight: 600;
        }

        .faq-question i {
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-bottom: 1.5rem;
        }

        /* Footer */
        footer {
            padding: 3rem 0;
            background-color: var(--darker-bg);
        }

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

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-about p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(6, 182, 212, 0.1);
            color: var(--text);
            transition: all 0.3s;
        }

        .social-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .footer-links h3 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-newsletter p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .newsletter-form {
            display: flex;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 1px solid rgba(6, 182, 212, 0.2);
            background-color: rgba(6, 182, 212, 0.05);
            color: var(--text);
            border-radius: 0.5rem 0 0 0.5rem;
            outline: none;
        }

        .newsletter-input:focus {
            border-color: var(--primary);
        }

        .newsletter-btn {
            padding: 0 1.5rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 0 0.5rem 0.5rem 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .newsletter-btn:hover {
            background-color: #0891b2;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(6, 182, 212, 0.1);
            text-align: center;
            color: var(--text-light);
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content, .download-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-text, .download-text {
                text-align: center;
            }

            .hero-buttons, .download-badges {
                justify-content: center;
            }

            .chart-container, .download-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .text-5xl {
                font-size: 2.5rem;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            nav ul {
                display: none;
            }
        }
.section { padding: 5rem 0; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }