/* ============================================
   Immediate Pump — Light Minimal Editorial
   Warm Ivory / Sage / Clean Typography
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --bg-primary: #faf9f6;
    --bg-white: #ffffff;
    --bg-glass: rgba(250,249,246,0.88);
    --bg-hero: #faf9f6;
    --bg-section-alt: #f4f3ef;
    --bg-card: #ffffff;
    --bg-card-hover: #fdfcfa;
    --bg-dark-section: #1a1d1f;
    --bg-dark-card: #232629;
    --text-primary: #1a1d1f;
    --text-secondary: #5f6368;
    --text-muted: #9aa0a6;
    --text-white: #ffffff;
    --accent-primary: #2d6a4f;
    --accent-primary-light: #f0f7f4;
    --accent-secondary: #40916c;
    --accent-gradient: linear-gradient(135deg, #2d6a4f, #40916c);
    --accent-gradient-h: linear-gradient(135deg, #40916c, #2d6a4f);
    --accent-gold: #d4a574;
    --accent-gold-light: #fdf6ee;
    --green: #2d6a4f;
    --green-light: #e8f5e9;
    --red: #c62828;
    --border-light: #e8e6e1;
    --border-card: #e8e6e1;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.05);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.06);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.08);
    --shadow-glow: 0 4px 20px rgba(45,106,79,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 999px;
    --font-display: 'Sora', sans-serif;
    --font-body: 'Source Serif 4', Georgia, serif;
    --transition: 0.25s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: var(--accent-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-secondary); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ====== HEADER ====== */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-primary); }
.logo-icon {
    width: 36px; height: 36px;
    background: var(--accent-primary); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 600; font-size: 13px;
    font-family: var(--font-display);
}
.logo-text {
    font-family: var(--font-display); font-weight: 600; font-size: 17px;
    letter-spacing: -0.3px; color: var(--text-primary);
}
.logo-text span {
    display: none;
}

.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav a {
    color: var(--text-secondary); font-size: 13px; font-weight: 400;
    padding: 6px 14px; border-radius: var(--radius-full);
    transition: var(--transition); text-decoration: none;
    font-family: var(--font-display);
}
.header-nav a:hover, .header-nav a.active { color: var(--text-primary); background: var(--bg-section-alt); }
.nav-cta {
    background: var(--accent-primary) !important; color: white !important;
    padding: 8px 20px !important; border-radius: var(--radius-full) !important;
    font-weight: 500 !important; font-size: 13px !important;
}
.nav-cta:hover { background: var(--accent-secondary) !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 20px; height: 1.5px; background: var(--text-primary); margin: 4px 0; transition: var(--transition); }

/* ====== HERO ====== */
.hero {
    background: var(--bg-hero); padding: 80px 0 96px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0;
    width: 50%; background: linear-gradient(180deg, var(--accent-primary-light) 0%, transparent 60%);
    opacity: 0.5; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
    display: inline-block; padding: 6px 14px;
    background: var(--accent-primary-light); border: 1px solid rgba(45,106,79,0.12);
    border-radius: var(--radius-full); font-size: 12px; font-weight: 500;
    color: var(--accent-primary); margin-bottom: 24px;
    font-family: var(--font-display); letter-spacing: 0.02em;
}
.hero-content h1 {
    font-family: var(--font-display); font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 700; line-height: 1.15; margin-bottom: 20px;
    letter-spacing: -0.5px; color: var(--text-primary);
}
.gradient-text { color: var(--accent-primary); background: none; -webkit-text-fill-color: var(--accent-primary); }
.hero-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent-primary); color: white;
    padding: 13px 28px; border-radius: var(--radius-full);
    font-weight: 500; font-size: 14px; transition: var(--transition);
    text-decoration: none; font-family: var(--font-display);
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background: var(--accent-secondary); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(45,106,79,0.18); color: white; }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; color: var(--text-primary);
    padding: 13px 28px; border-radius: var(--radius-full);
    font-weight: 500; font-size: 14px;
    border: 1px solid var(--border-card);
    transition: var(--transition); text-decoration: none; font-family: var(--font-display);
}
.btn-secondary:hover { border-color: var(--accent-primary); color: var(--accent-primary); }
.social-proof { display: flex; align-items: center; gap: 12px; }
.avatar-stack { display: flex; align-items: center; }
.proof-text { font-size: 13px; color: var(--text-secondary); font-family: var(--font-display); }
.proof-text .stars { color: var(--accent-gold); font-size: 13px; margin-bottom: 1px; }
.proof-text strong { color: var(--text-primary); }

.hero-visual { position: relative; }
.hero-card-main {
    background: var(--bg-white); border: 1px solid var(--border-card);
    border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow-lg);
}
.hero-card-main h3 {
    text-align: center; font-family: var(--font-display); font-size: 18px;
    font-weight: 600; margin-bottom: 24px; color: var(--text-primary);
}
.form-group { margin-bottom: 12px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--border-light); border-radius: var(--radius-sm);
    font-size: 14px; font-family: var(--font-display); font-weight: 400;
    background: var(--bg-primary); color: var(--text-primary); transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.08); background: white;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); font-weight: 400; }
.form-group textarea { min-height: 120px; resize: vertical; }
.submit-btn {
    width: 100%; padding: 14px;
    background: var(--accent-primary); color: white; border: none;
    border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
    font-family: var(--font-display); cursor: pointer; transition: var(--transition);
}
.submit-btn:hover { background: var(--accent-secondary); }

.hero-card-float {
    position: absolute; background: var(--bg-white);
    border: 1px solid var(--border-light); border-radius: var(--radius-md);
    padding: 12px 16px; box-shadow: var(--shadow-md); z-index: 2;
    animation: float 5s ease-in-out infinite;
}
.hero-card-float.top-left { top: -8px; left: -24px; }
.hero-card-float.bottom-right { bottom: -8px; right: -24px; animation-delay: -2.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.float-icon { font-size: 20px; margin-bottom: 2px; }
.float-label { font-size: 10px; color: var(--text-muted); font-weight: 500; font-family: var(--font-display); letter-spacing: 0.03em; }
.float-value { font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.float-value.green { color: var(--green); }

/* ====== STATS ====== */
.stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--bg-white); border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); padding: 32px 20px;
    margin: -36px auto 0; position: relative; z-index: 10; box-shadow: var(--shadow-md);
}
.stat-item { text-align: center; }
.stat-item + .stat-item { border-left: 1px solid var(--border-light); }
.stat-number { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--text-primary); }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; font-family: var(--font-display); font-weight: 400; }

/* ====== TICKER ====== */
.crypto-ticker {
    overflow: hidden; background: var(--bg-white);
    border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
    padding: 12px 0; margin-top: 56px;
}
.ticker-track { display: flex; gap: 48px; animation: ticker 30s linear infinite; width: max-content; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 13px; font-family: var(--font-display); }
.ticker-item .symbol { font-weight: 600; color: var(--text-primary); }
.ticker-item .price { color: var(--text-secondary); }
.ticker-item .change { color: var(--green); font-weight: 500; }

/* ====== SECTIONS ====== */
.features-section, .testimonials-section, .cta-section, #faq-preview { padding: 88px 0; }
.section-center { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.section-label { font-size: 12px; color: var(--accent-primary); font-weight: 500; letter-spacing: 0.08em; margin-bottom: 10px; font-family: var(--font-display); }
.section-title { font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 34px); font-weight: 600; line-height: 1.25; margin-bottom: 14px; color: var(--text-primary); letter-spacing: -0.3px; }
.section-desc { color: var(--text-secondary); font-size: 16px; line-height: 1.7; }

/* ====== FEATURES ====== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
    background: var(--bg-white); border: 1px solid var(--border-light);
    border-radius: var(--radius-md); padding: 32px 24px;
    transition: var(--transition);
}
.feature-card:hover { border-color: var(--accent-primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon {
    width: 44px; height: 44px; background: var(--accent-primary-light);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; font-size: 20px; margin-bottom: 16px;
}
.feature-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.feature-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.65; }

/* ====== CRYPTO SECTION ====== */
.crypto-section { background: var(--bg-dark-section); padding: 88px 0; }
.crypto-section .section-label { color: var(--accent-gold); }
.crypto-section .section-title { color: var(--text-white); }
.crypto-section .section-desc { color: rgba(255,255,255,0.55); }
.crypto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.crypto-card { background: var(--bg-dark-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 24px; transition: var(--transition); }
.crypto-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }
.crypto-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.crypto-card-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.06); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--accent-gold); }
.crypto-card-name { font-weight: 500; color: var(--text-white); font-family: var(--font-display); font-size: 14px; }
.crypto-card-symbol { font-size: 11px; color: rgba(255,255,255,0.4); font-family: var(--font-display); }
.crypto-card-price { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text-white); margin-bottom: 4px; }
.crypto-card-change { font-size: 13px; font-weight: 500; color: #4ade80; margin-bottom: 14px; font-family: var(--font-display); }
.crypto-card-chart { height: 50px; opacity: 0.6; }

/* ====== TESTIMONIALS ====== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 28px; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--accent-gold); font-size: 14px; margin-bottom: 14px; }
.testimonial-text { color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: var(--radius-full); background: var(--accent-primary-light); display: flex; align-items: center; justify-content: center; color: var(--accent-primary); font-weight: 600; font-size: 13px; font-family: var(--font-display); }
.testimonial-name { font-weight: 600; color: var(--text-primary); font-family: var(--font-display); font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--text-muted); font-family: var(--font-display); }

/* ====== CTA ====== */
.cta-banner {
    background: var(--accent-primary-light); border: 1px solid rgba(45,106,79,0.1);
    border-radius: var(--radius-lg); padding: 56px; text-align: center;
}
.cta-banner h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; margin-bottom: 10px; color: var(--text-primary); letter-spacing: -0.3px; }
.cta-banner p { color: var(--text-secondary); margin-bottom: 24px; font-size: 15px; }
.btn-white {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent-primary); color: white;
    padding: 14px 32px; border-radius: var(--radius-full);
    font-weight: 500; font-size: 14px; transition: var(--transition);
    text-decoration: none; font-family: var(--font-display);
}
.btn-white:hover { background: var(--accent-secondary); color: white; transform: translateY(-1px); }

/* ====== FAQ ====== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; background: none; border: none; cursor: pointer;
    font-size: 15px; font-weight: 500; color: var(--text-primary); text-align: left;
    font-family: var(--font-display);
}
.faq-chevron { transition: var(--transition); color: var(--text-muted); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent-primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 20px; color: var(--text-secondary); line-height: 1.7; font-size: 14px; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ====== PAGE HERO ====== */
.page-hero {
    background: var(--bg-primary); padding: 100px 0 48px;
    text-align: center; border-bottom: 1px solid var(--border-light);
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 40px); font-weight: 600; margin-bottom: 12px; color: var(--text-primary); letter-spacing: -0.3px; }
.page-hero p { color: var(--text-secondary); font-size: 16px; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ====== ABOUT ====== */
.about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.about-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 32px; transition: var(--transition); }
.about-card:hover { border-color: var(--accent-primary); }
.about-card .icon { font-size: 28px; margin-bottom: 14px; }
.about-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.about-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

/* ====== TEAM ====== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 32px; text-align: center; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar { width: 56px; height: 56px; border-radius: var(--radius-full); background: var(--accent-primary-light); display: flex; align-items: center; justify-content: center; color: var(--accent-primary); font-weight: 600; font-size: 18px; font-family: var(--font-display); margin: 0 auto 14px; }
.team-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 2px; color: var(--text-primary); }
.team-card .role { font-size: 12px; color: var(--accent-primary); font-weight: 500; margin-bottom: 10px; font-family: var(--font-display); }
.team-card p { color: var(--text-secondary); font-size: 13px; line-height: 1.6; }

/* ====== CONTACT ====== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-info-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 24px; margin-bottom: 12px; }
.contact-info-card h3 { font-family: var(--font-display); font-size: 15px; margin-bottom: 6px; color: var(--text-primary); }
.contact-info-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.contact-form-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 32px; }
.contact-form-card h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 20px; color: var(--text-primary); }

/* ====== CONTENT PAGES ====== */
.content-section { padding: 56px 0 72px; }
.content-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 44px; max-width: 800px; margin: 0 auto; }
.content-card h2 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin: 28px 0 10px; color: var(--accent-primary); }
.content-card h2:first-of-type { margin-top: 12px; }
.content-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin: 18px 0 6px; color: var(--text-primary); }
.content-card p { color: var(--text-secondary); margin-bottom: 10px; font-size: 14px; line-height: 1.7; }
.content-card ul { margin: 10px 0 18px 0; }
.content-card li { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 6px; padding-left: 18px; position: relative; list-style: none; }
.content-card li::before { content: '—'; position: absolute; left: 0; color: var(--accent-primary); font-weight: 500; }
.content-card li strong { color: var(--text-primary); }
.last-updated { font-size: 12px; color: var(--text-muted); padding-bottom: 14px; border-bottom: 1px solid var(--border-light); margin-bottom: 8px; font-family: var(--font-display); }

/* ====== FOOTER ====== */
.site-footer { background: var(--bg-dark-section); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-icon { background: rgba(255,255,255,0.1); }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 13px; line-height: 1.6; margin-top: 14px; }
.footer-col h4 { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.4); font-size: 13px; margin-bottom: 8px; text-decoration: none; transition: var(--transition); font-family: var(--font-display); }
.footer-col a:hover { color: white; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; font-size: 11px; color: rgba(255,255,255,0.3); line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06); font-size: 12px; color: rgba(255,255,255,0.3); font-family: var(--font-display); }

/* ====== COOKIE ====== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--bg-white); border-top: 1px solid var(--border-light);
    padding: 16px 28px; display: flex; justify-content: space-between;
    align-items: center; z-index: 9998; box-shadow: 0 -2px 20px rgba(0,0,0,0.06);
    transform: translateY(100%); transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 13px; color: var(--text-secondary); font-family: var(--font-display); }
.cookie-btns { display: flex; gap: 8px; }
.cookie-accept { padding: 8px 20px; background: var(--accent-primary); color: white; border: none; border-radius: var(--radius-full); font-weight: 500; font-size: 12px; cursor: pointer; font-family: var(--font-display); }
.cookie-decline { padding: 8px 20px; background: none; color: var(--text-muted); border: 1px solid var(--border-light); border-radius: var(--radius-full); font-size: 12px; cursor: pointer; font-family: var(--font-display); }

/* ====== ANIMATIONS ====== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .features-grid, .crypto-grid, .testimonials-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item + .stat-item { border-left: none; }
}
@media (max-width: 768px) {
    .header-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--bg-primary); flex-direction: column; align-items: center; justify-content: center; gap: 6px; z-index: 999; }
    .header-nav.open { display: flex; }
    .mobile-toggle { display: block; }
    .features-grid, .crypto-grid, .testimonials-grid, .team-grid { grid-template-columns: 1fr; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .cta-banner { padding: 36px 20px; }
    .content-card { padding: 24px 18px; }
    .hero { padding: 56px 0 72px; }
    .hero-card-float { display: none; }
    .cookie-banner { flex-direction: column; gap: 10px; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
