/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid #1a1a1a;
    background: #0a0a0a;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
}
.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}
.nav-menu a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: #ffd700;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================
   HERO VIDEO BACKGROUND
   ============================================ */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero-overlay h1 {
    font-size: 4rem;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}
.hero-overlay .tagline {
    font-size: 1.5rem;
    color: #ccc;
    margin: 1rem 0;
}

/* ============================================
   GOLD CTA BUTTON
   ============================================ */
.cta-button-gold {
    display: inline-block;
    background: #ffd700;
    color: #1a1a1a;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    border: 2px solid #ffd700;
    margin-top: 10px;
}

.cta-button-gold:hover {
    background: #e6c200;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    color: #1a1a1a;
}

/* ============================================
   STATS SECTION — 4 ON ONE LINE
   ============================================ */
.stats-section {
    padding: 2rem 0;
    background: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.stat-item {
    background: #1a1a1a;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    transition: 0.3s;
}
.stat-item:hover {
    border-color: #ffd700;
    transform: translateY(-2px);
}
.stat-item .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
}
.stat-item .label {
    font-size: 0.85rem;
    color: #888;
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */
.about-section {
    padding: 3rem 0;
    background: #0a0a0a;
}
.about-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}
.about-section p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 1rem;
    text-align: center;
    line-height: 1.8;
}
.about-cta {
    text-align: center;
    margin-top: 1.5rem;
}
.btn-proof-secondary {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: #ffd700;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 60px;
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}
.btn-proof-secondary:hover {
    background: #ffd700;
    color: #000;
    transform: scale(1.03);
}
.btn-proof {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: #ffd700;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}
.btn-proof:hover {
    background: #fff;
    transform: scale(1.03);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 3rem 0;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}
.features-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    text-align: center;
    transition: 0.3s;
}
.feature-card:hover {
    border-color: #ffd700;
    transform: translateY(-4px);
}
.feature-card h3 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.feature-card p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 3rem 0;
    background: #1a1a2a;
    text-align: center;
    border-top: 1px solid #ffd700;
}
.cta-section h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}
.cta-section p {
    color: #aaa;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   DISCLAIMER
   ============================================ */
.disclaimer-box {
    background: #1a0a0a;
    border: 1px solid #ffd700;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0 2rem;
    text-align: center;
}
.disclaimer-box .title {
    color: #ffd700;
    font-weight: 700;
    font-size: 0.9rem;
}
.disclaimer-box .text {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}
.disclaimer-box .text strong {
    color: #fff;
}

/* ============================================
   LIVE DEMO
   ============================================ */
.section.live-demo {
    padding: 2.5rem 0;
    border-bottom: 1px solid #1a1a1a;
}
.section.live-demo h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}
.section.live-demo .badge {
    font-size: 0.7rem;
    background: #2a2a2a;
    color: #aaa;
    padding: 0.2rem 0.8rem;
    border-radius: 60px;
    font-weight: 400;
    margin-left: 0.5rem;
}
.section.live-demo .section-desc {
    color: #aaa;
    margin-bottom: 1.5rem;
}
.demo-input-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.demo-input-group input {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem 1.2rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 60px;
    color: #fff;
    font-size: 1rem;
}
.demo-input-group input:focus {
    border-color: #ffd700;
    outline: none;
}
.demo-input-group button {
    padding: 0.8rem 2rem;
    background: #ffd700;
    border: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
}
.demo-input-group button:hover {
    background: #00cc88;
    transform: scale(1.02);
}

/* ============================================
   CHARTS
   ============================================ */
.charts-container,
.csv-charts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
    justify-content: center;
}
.chart-card {
    flex: 1;
    min-width: 260px;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 1.2rem;
    border: 1px solid #2a2a2a;
}
.chart-card h3 {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}
.chart-card canvas {
    max-height: 240px;
    width: 100%;
}

/* ============================================
   CSV DASHBOARD
   ============================================ */
.section.csv-dashboard {
    padding: 2.5rem 0;
    border-bottom: 1px solid #1a1a1a;
}
.section.csv-dashboard h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}
.section.csv-dashboard .badge {
    font-size: 0.7rem;
    background: #2a2a2a;
    color: #aaa;
    padding: 0.2rem 0.8rem;
    border-radius: 60px;
    font-weight: 400;
    margin-left: 0.5rem;
}
.section.csv-dashboard .section-desc {
    color: #aaa;
    margin-bottom: 1.5rem;
}
.csv-upload-area {
    border: 2px dashed #2a2a2a;
    padding: 2rem;
    text-align: center;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.2s;
}
.csv-upload-area:hover {
    border-color: #ffd700;
}
.csv-upload-area input[type="file"] {
    display: none;
}
.csv-format {
    color: #555;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}
.grand-total-box {
    background: #1a1a2a;
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #ffd700;
    text-align: center;
}
.grand-total-box .label {
    color: #888;
    font-size: 0.9rem;
}
.grand-total-box #overallTotalDisplay {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

/* ============================================
   WALLET LIST
   ============================================ */
#walletListContainer {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 0.3rem;
}
.wallet-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #1a1a1a;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.2s;
}
.wallet-row:hover {
    background: #1f1a00;
}
.wallet-row .email { color: #fff; }
.wallet-row .address { font-family: monospace; color: #aaa; font-size: 0.85rem; }
.wallet-row .total { color: #ffd700; font-weight: 700; }
.wallet-row .click-hint { color: #666; font-size: 0.75rem; }

/* ============================================
   TICKER
   ============================================ */
.ticker-container {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-top: 1rem;
    font-family: monospace;
}
.ticker-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00cc88;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* ============================================
   CHAIN ITEMS & GRAND TOTAL
   ============================================ */
.chain-item {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid #1a1a1a;
}
.chain-name {
    color: #ffd700;
}
.balance {
    font-weight: bold;
}
.grand-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #ffd700;
    font-size: 1.2rem;
    text-align: center;
    color: #ffd700;
}
.loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ffd700;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.placeholder {
    color: #666;
    text-align: center;
}
.deep-dive-item {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid #1a1a1a;
}
.deep-dive-total {
    margin-top: 1rem;
    font-weight: 700;
    color: #ffd700;
    text-align: right;
}

/* ============================================
   PRICING / CONSULTANCY PAGE
   ============================================ */
.pricing-hero {
    padding: 3rem 0 1.5rem;
    text-align: center;
    background: #0a0a0a;
}
.pricing-hero h1 {
    font-size: 2.5rem;
    color: #ffd700;
}
.pricing-hero .subtitle {
    color: #aaa;
    font-size: 1.2rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    justify-content: center;
}
.pricing-card {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    text-align: center;
    transition: 0.3s;
}
.pricing-card:hover {
    border-color: #ffd700;
    transform: translateY(-6px);
}
.pricing-card .name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
}
.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0.3rem 0;
}
.pricing-card .calls {
    color: #aaa;
    font-size: 0.9rem;
}
.pricing-card .badge {
    display: inline-block;
    background: #ffd700;
    color: #000;
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    border-radius: 60px;
    font-weight: 700;
    margin: 0.5rem 0;
}
.btn-pay {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 0.7rem 1.5rem;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}
.btn-pay:hover {
    background: #fff;
    transform: scale(1.03);
}
.enterprise-card {
    background: #1a1a2a;
    border-color: #ffd700;
}

/* ============================================
   FOOTER — GOLD BOX + CENTERED
   ============================================ */
footer {
    background: #1a1500;
    border: 2px solid #ffd700;
    border-radius: 16px;
    margin: 2rem 1.5rem 1.5rem;
    padding: 2rem 1.5rem 1rem;
    color: #aaa;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.08);
    text-align: center;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-brand {
    flex: 0 0 auto;
    text-align: center;
}

.footer-brand .footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
}

.footer-brand .footer-tagline {
    color: #888;
    font-size: 0.85rem;
    margin: 0.2rem 0;
}

.footer-brand .footer-copy {
    color: #555;
    font-size: 0.75rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.2rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #2a2a00;
    padding-top: 1rem;
    color: #666;
    font-size: 0.8rem;
}

/* ============================================
   FOOTER — RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    footer {
        margin: 1.5rem 1rem;
        padding: 1.5rem 1rem 1rem;
    }
    .footer-grid {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer {
        margin: 1rem 0.5rem;
        padding: 1rem 0.5rem 0.8rem;
    }
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    .footer-links a {
        white-space: normal;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        border-top: 1px solid #1a1a1a;
        margin-top: 0.8rem;
    }
    .nav-menu.open {
        display: flex;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-overlay h1 {
        font-size: 2.5rem;
    }
    .hero-overlay .tagline {
        font-size: 1.2rem;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    .demo-input-group input {
        min-width: 150px;
    }
    .charts-container,
    .csv-charts-container {
        flex-direction: column;
    }
    .chart-card {
        min-width: 100%;
    }
    .wallet-row {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    .wallet-row .email { flex: 1 1 100%; }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .demo-input-group button {
        width: 100%;
    }
    .hero-overlay h1 {
        font-size: 2rem;
    }
}
/* ============================================
   BLOG PAGE
   ============================================ */
.blog-hero {
    padding: 3rem 0 1.5rem;
    text-align: center;
    background: #0a0a0a;
}
.blog-hero h1 {
    font-size: 2.5rem;
    color: #ffd700;
}
.blog-hero .subtitle {
    color: #aaa;
    font-size: 1.2rem;
}

.blog-hero .back-to-blog {
    display: inline-block;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.blog-hero .back-to-blog:hover {
    color: #e6c200;
}

.blog-hero .post-meta {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.blog-posts {
    padding: 2rem 0 3rem;
    background: #0a0a0a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: #ffd700;
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.05);
}

.blog-card .blog-date {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.blog-card .blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card .blog-excerpt {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card .blog-readmore {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.blog-card .blog-readmore:hover {
    color: #e6c200;
}

/* ============================================
   BLOG POST — SINGLE
   ============================================ */
.blog-post-content {
    padding: 2rem 0 3rem;
    background: #0a0a0a;
}

.post-body {
    max-width: 750px;
    margin: 0 auto;
}

.post-body p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.post-body h2 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.post-body blockquote {
    background: #1a1a1a;
    border-left: 4px solid #ffd700;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    font-style: italic;
    color: #aaa;
    font-size: 1.1rem;
}

/* ============================================
   BLOG — RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-hero h1 {
        font-size: 2rem;
    }
    .post-body p {
        font-size: 1rem;
    }
}