/* ===================== DESIGN TOKENS ===================== */
:root {
    --bg:       #07070f;
    --surface:  #0f0f1a;
    --card:     rgba(255,255,255,0.04);
    --border:   rgba(255,255,255,0.08);

    --blue:     #00e5ff;
    --blue-dim: rgba(0,229,255,0.15);
    --blue-glow:rgba(0,229,255,0.4);

    --pink:     #ff3366;
    --pink-dim: rgba(255,51,102,0.15);
    --pink-glow:rgba(255,51,102,0.4);

    --gold:     #f59e0b;
    --gold-dim: rgba(245,158,11,0.15);
    --gold-glow:rgba(245,158,11,0.4);

    --text:     #e8e8f0;
    --muted:    #6b7280;
    --white:    #ffffff;

    --radius:   18px;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4 { line-height: 1.15; font-weight: 700; }

/* ===================== GRADIENTS (text) ===================== */
.grad-blue { background: linear-gradient(90deg,#00e5ff,#6366f1); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.grad-pink { background: linear-gradient(90deg,#ff3366,#f59e0b); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.grad-gold { background: linear-gradient(90deg,#f59e0b,#ff3366); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 5%;
    background: rgba(7,7,15,0.7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.navbar.scrolled { background: rgba(7,7,15,0.95); }
.nav-logo { display: flex; align-items: center; gap: .5rem; }
.logo-icon { font-size: 1.6rem; }
.logo-text {
    font-size: 1.5rem; font-weight: 800; letter-spacing: .5px;
    background: linear-gradient(90deg, var(--blue), var(--pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { font-weight: 500; font-size: .95rem; color: var(--muted); transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.hamburger { display: none; background: none; border: 1px solid var(--border); color: var(--text); padding: .4rem .8rem; border-radius: 8px; cursor: pointer; font-size: 1.2rem; }

/* ===================== HERO ===================== */
.hero {
    position: relative; min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 3rem;
    padding: 8rem 5% 4rem;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.grid-overlay {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .35; animation: float 12s infinite alternate; }
.orb-1 { width: 600px; height: 600px; background: var(--pink); top: -20%; right: -10%; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: var(--blue); bottom: -10%; left: -5%; animation-delay: -4s; }
.orb-3 { width: 300px; height: 300px; background: var(--gold); top: 50%; left: 35%; animation-delay: -8s; opacity: .2; }

.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block; padding: .4rem 1rem;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px; font-size: .85rem; color: var(--text); margin-bottom: 1.5rem;
    animation: fadeUp .8s ease-out;
}
.hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; color: var(--white); margin-bottom: 1.2rem; animation: fadeUp 1s ease-out; }
.hero-desc { font-size: 1.1rem; color: var(--muted); max-width: 520px; margin-bottom: 2.5rem; animation: fadeUp 1.2s ease-out; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; animation: fadeUp 1.4s ease-out; }
.btn-primary {
    padding: .9rem 2rem; background: linear-gradient(135deg, var(--pink), #6366f1);
    color: var(--white); border-radius: 50px; font-weight: 700; font-size: 1rem;
    box-shadow: 0 10px 30px rgba(255,51,102,0.35); transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(255,51,102,0.5); }
.btn-ghost {
    padding: .9rem 2rem; border: 1px solid var(--border);
    color: var(--text); border-radius: 50px; font-weight: 600; font-size: 1rem;
    transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); }

.hero-stats { display: flex; align-items: center; gap: 2rem; animation: fadeUp 1.6s ease-out; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-image-wrap { position: relative; z-index: 2; display: flex; justify-content: center; animation: fadeUp 1s ease-out; }
.hero-img { width: 100%; max-width: 600px; border-radius: 24px; filter: drop-shadow(0 30px 60px rgba(0,229,255,0.2)); }

/* ===================== SECTION HEADER ===================== */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-eyebrow { font-size: .85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: .75rem; }
.section-title { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--muted); }

/* ===================== APPS OVERVIEW ===================== */
.apps-overview { padding: 7rem 5%; background: var(--surface); }
.apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }

.app-overview-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2.5rem 2rem;
    position: relative; transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}
.app-overview-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.card-blue::before { background: linear-gradient(90deg, var(--blue), #6366f1); }
.card-pink::before { background: linear-gradient(90deg, var(--pink), #f59e0b); }
.card-gold::before { background: linear-gradient(90deg, var(--gold), var(--pink)); }

.app-overview-card:hover { transform: translateY(-8px); }
.card-blue:hover { box-shadow: 0 20px 50px var(--blue-glow); }
.card-pink:hover { box-shadow: 0 20px 50px var(--pink-glow); }
.card-gold:hover { box-shadow: 0 20px 50px var(--gold-glow); }

.featured-card { border-color: rgba(255,51,102,0.3); }
.featured-badge {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: linear-gradient(135deg, var(--pink), var(--gold));
    color: var(--white); font-size: .72rem; font-weight: 700;
    padding: .3rem .7rem; border-radius: 50px;
}
.aoc-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.aoc-icon { font-size: 2rem; width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.blue-bg { background: var(--blue-dim); }
.pink-bg { background: var(--pink-dim); }
.gold-bg { background: var(--gold-dim); }
.aoc-top h3 { font-size: 1.25rem; color: var(--white); }
.aoc-role { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.aoc-desc { font-size: .95rem; color: var(--muted); margin-bottom: 1.5rem; }
.aoc-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.tag { font-size: .75rem; font-weight: 600; padding: .3rem .75rem; border-radius: 50px; }
.tag-blue { background: var(--blue-dim); color: var(--blue); border: 1px solid rgba(0,229,255,0.2); }
.tag-pink { background: var(--pink-dim); color: var(--pink); border: 1px solid rgba(255,51,102,0.2); }
.tag-gold { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(245,158,11,0.2); }
.aoc-link { font-weight: 700; font-size: .95rem; }
.blue-link { color: var(--blue); }
.pink-link { color: var(--pink); }
.gold-link { color: var(--gold); }

/* ===================== APP DETAIL SECTIONS ===================== */
.app-detail { padding: 7rem 5%; }
.detail-blue { background: var(--bg); }
.detail-pink { background: var(--surface); }
.detail-gold { background: var(--bg); }

.detail-container {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 5rem;
    max-width: 1200px; margin: 0 auto;
}
.detail-container.reverse .detail-image { order: 2; }
.detail-container.reverse .detail-content { order: 1; }

/* Phone frame */
.detail-image { position: relative; display: flex; justify-content: center; }
.phone-frame {
    border-radius: 36px; overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    max-width: 320px; width: 100%;
    border: 2px solid var(--border);
    transition: transform var(--transition);
}
.phone-frame:hover { transform: scale(1.02) rotate(-1deg); }
.blue-frame { box-shadow: 0 40px 80px rgba(0,229,255,0.2), 0 0 0 1px rgba(0,229,255,0.2); }
.pink-frame { box-shadow: 0 40px 80px rgba(255,51,102,0.2), 0 0 0 1px rgba(255,51,102,0.2); }
.gold-frame { box-shadow: 0 40px 80px rgba(245,158,11,0.2), 0 0 0 1px rgba(245,158,11,0.2); }
.phone-frame img { width: 100%; height: auto; }

/* Floating badges */
.floating-badge {
    position: absolute; padding: .5rem 1rem;
    border-radius: 50px; font-size: .82rem; font-weight: 700;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    animation: floatBadge 3s ease-in-out infinite alternate;
    white-space: nowrap;
}
.badge-blue { background: var(--blue-dim); color: var(--blue); border: 1px solid rgba(0,229,255,0.3); }
.badge-pink { background: var(--pink-dim); color: var(--pink); border: 1px solid rgba(255,51,102,0.3); }
.badge-gold { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(245,158,11,0.3); }
.b1 { top: 10%; right: -5%; animation-delay: 0s; }
.b2 { bottom: 25%; right: -8%; animation-delay: .8s; }
.b3 { bottom: 10%; left: -5%; animation-delay: 1.4s; }
.b4 { top: 10%; left: -5%; animation-delay: 0s; }
.b5 { bottom: 25%; left: -8%; animation-delay: .8s; }
.b6 { bottom: 10%; right: -5%; animation-delay: 1.4s; }
.b7 { top: 10%; right: -5%; animation-delay: 0s; }
.b8 { bottom: 25%; right: -8%; animation-delay: .8s; }
.b9 { bottom: 10%; left: -5%; animation-delay: 1.4s; }

/* Detail content */
.detail-eyebrow { font-size: .85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.blue-eyebrow { color: var(--blue); }
.pink-eyebrow { color: var(--pink); }
.gold-eyebrow { color: var(--gold); }
.detail-title { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--white); margin-bottom: 1.2rem; }
.detail-desc { font-size: 1rem; color: var(--muted); margin-bottom: 2rem; }

.feature-rows { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.feat-row { display: flex; gap: 1.2rem; align-items: flex-start; }
.feat-icon {
    min-width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.blue-icon { background: var(--blue-dim); }
.pink-icon { background: var(--pink-dim); }
.gold-icon { background: var(--gold-dim); }
.feat-row h4 { font-size: 1rem; color: var(--white); margin-bottom: .3rem; }
.feat-row p { font-size: .9rem; color: var(--muted); }

/* Download buttons — also works as <a> links */
.download-btn-large {
    display: inline-flex; align-items: center; gap: .75rem;
    padding: 1rem 2.5rem; border: none; cursor: pointer;
    border-radius: 50px; font-family: 'Outfit', sans-serif;
    font-size: 1.1rem; font-weight: 700; color: #07070f;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none; /* for <a> tags */
}
.download-btn-large:hover { transform: translateY(-3px); }
.btn-blue-large { background: var(--blue); box-shadow: 0 10px 30px var(--blue-glow); }
.btn-blue-large:hover { box-shadow: 0 15px 40px rgba(0,229,255,0.6); }
.btn-pink-large { background: linear-gradient(135deg, var(--pink), #f59e0b); box-shadow: 0 10px 30px var(--pink-glow); color: var(--white); }
.btn-pink-large:hover { box-shadow: 0 15px 40px rgba(255,51,102,0.6); }
.btn-gold-large { background: var(--gold); box-shadow: 0 10px 30px var(--gold-glow); }
.btn-gold-large:hover { box-shadow: 0 15px 40px rgba(245,158,11,0.6); }

/* Earning card */
.earning-card {
    display: flex; align-items: center; justify-content: space-around;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
    margin-bottom: 2rem;
}
.ec-item { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.ec-val { font-size: 1.8rem; font-weight: 800; }
.ec-lbl { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.pink-val { color: var(--pink); }
.ec-div { width: 1px; height: 50px; background: var(--border); }

/* Broker steps */
.how-steps { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.step { flex: 1; min-width: 120px; display: flex; flex-direction: column; align-items: center; gap: .75rem; text-align: center; }
.step-num {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800;
}
.gold-step { background: var(--gold-dim); color: var(--gold); border: 2px solid rgba(245,158,11,0.4); }
.step p { font-size: .85rem; color: var(--muted); }
.step-arrow { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; }

/* ===================== HOW IT WORKS ===================== */
.how-it-works { padding: 7rem 5%; background: var(--surface); }
.flow-container {
    display: flex; align-items: center; gap: 3rem;
    max-width: 1000px; margin: 0 auto;
    flex-wrap: wrap; justify-content: center;
}
.flow-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem; text-align: center;
    min-width: 200px;
}
.flow-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.flow-card h4 { color: var(--white); margin-bottom: .75rem; }
.flow-card p { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.flow-amount { font-size: 1.2rem; font-weight: 800; color: var(--blue); }
.flow-arrow { font-size: 2rem; color: var(--muted); }
.flow-blue { border-color: rgba(0,229,255,0.2); }

.flow-split {
    flex: 1; min-width: 300px; background: var(--card);
    border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
}
.split-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; text-align: center; }
.split-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.split-label { min-width: 160px; font-size: .88rem; font-weight: 600; }
.pink-label { color: var(--pink); }
.gold-label { color: var(--gold); }
.admin-label { color: var(--muted); }
.split-bar { flex: 1; background: rgba(255,255,255,0.06); border-radius: 50px; height: 8px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 50px; }
.bar-pink { background: var(--pink); width: 40%; }
.bar-gold { background: var(--gold); width: 5%; }
.bar-admin { background: var(--muted); width: 55%; }
.split-pct { font-weight: 800; font-size: 1rem; min-width: 40px; text-align: right; }
.pink-pct { color: var(--pink); }
.gold-pct { color: var(--gold); }
.admin-pct { color: var(--muted); }

/* ===================== DOWNLOAD CTA ===================== */
.download-cta {
    position: relative; padding: 7rem 5%; overflow: hidden; text-align: center;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.orb-cta-1 { position: absolute; width: 400px; height: 400px; background: var(--pink); filter: blur(120px); opacity: .25; top: -10%; left: -5%; border-radius: 50%; }
.orb-cta-2 { position: absolute; width: 400px; height: 400px; background: var(--blue); filter: blur(120px); opacity: .25; bottom: -10%; right: -5%; border-radius: 50%; }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 1rem; }
.cta-content p { font-size: 1.1rem; color: var(--muted); margin-bottom: 3rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-btn {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.2rem 2rem; border-radius: 20px; border: 1px solid var(--border);
    background: var(--card); cursor: pointer; font-family: 'Outfit', sans-serif;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    text-align: left; color: var(--text); text-decoration: none;
}
.cta-btn:hover { transform: translateY(-5px); }
.cta-blue:hover { border-color: var(--blue); box-shadow: 0 20px 50px var(--blue-glow); }
.cta-pink:hover { border-color: var(--pink); box-shadow: 0 20px 50px var(--pink-glow); }
.cta-gold:hover { border-color: var(--gold); box-shadow: 0 20px 50px var(--gold-glow); }
.cta-btn-icon { font-size: 2rem; }
.cta-btn-sub { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.cta-btn-main { font-size: 1.05rem; font-weight: 700; color: var(--white); }

/* ===================== FOOTER ===================== */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 4rem 5% 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto 3rem; }
.footer-brand .logo-icon { font-size: 1.8rem; margin-bottom: .3rem; display: block; }
.footer-brand .logo-text { font-size: 1.5rem; font-weight: 800; margin-bottom: .75rem; display: block;
    background: linear-gradient(90deg, var(--blue), var(--pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-brand p { font-size: .9rem; color: var(--muted); }
.footer-links h5 { color: var(--white); font-size: 1rem; margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: .75rem; }
.footer-links a { font-size: .9rem; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { text-align: center; color: var(--muted); font-size: .85rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* ===================== SCREENSHOT GALLERY ===================== */
.screenshot-gallery {
    max-width: 1200px; margin: 5rem auto 0; padding: 0 0;
}
.gallery-title {
    font-size: 1.4rem; color: var(--white); margin-bottom: 2rem;
    text-align: center; font-weight: 700;
}
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.gallery-item {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); background: var(--card);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.gallery-item img { width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; }
.gallery-caption {
    padding: .75rem 1rem; font-size: .82rem;
    color: var(--muted); text-align: center; font-weight: 500;
}

/* ===================== FEATURE SPOTLIGHT ===================== */
.feature-spotlight { padding: 7rem 5%; background: var(--surface); }
.spotlight-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 5rem;
    max-width: 1200px; margin: 0 auto;
}
.spotlight-img {
    width: 100%; border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,229,255,0.2);
    border: 1px solid rgba(0,229,255,0.15);
}
.left-title { text-align: left; }
.tech-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.tech-item { display: flex; align-items: flex-start; gap: 1rem; }
.tech-dot {
    min-width: 12px; height: 12px; border-radius: 50%; margin-top: 6px;
}
.blue-dot { background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.tech-item h4 { font-size: .95rem; color: var(--white); margin-bottom: .3rem; }
.tech-item p { font-size: .88rem; color: var(--muted); }

/* ===================== SPLIT NOTE ===================== */
.split-note { font-size: .78rem; color: var(--muted); margin-top: 1rem; text-align: center; font-style: italic; }

/* ===================== SAFETY SECTION ===================== */
.safety-section { padding: 7rem 5%; background: var(--bg); }
.safety-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 5rem;
    max-width: 1200px; margin: 0 auto;
}
.safety-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-top: 2.5rem;
}
.safety-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
    transition: transform var(--transition), border-color var(--transition);
}
.safety-card:hover { transform: translateY(-4px); border-color: rgba(16,185,129,0.3); box-shadow: 0 10px 30px rgba(16,185,129,0.1); }
.safety-icon { font-size: 1.8rem; margin-bottom: .75rem; }
.safety-card h4 { font-size: .95rem; color: var(--white); margin-bottom: .4rem; }
.safety-card p { font-size: .85rem; color: var(--muted); }
.safety-img {
    width: 100%; border-radius: 24px;
    box-shadow: 0 30px 80px rgba(16,185,129,0.2);
    border: 1px solid rgba(16,185,129,0.15);
}

/* ===================== WALLET SECTION ===================== */
.wallet-section { padding: 7rem 5%; background: var(--surface); }
.wallet-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 5rem;
    max-width: 1200px; margin: 0 auto;
}
.wallet-img {
    width: 100%; border-radius: 24px;
    box-shadow: 0 30px 80px rgba(245,158,11,0.2);
    border: 1px solid rgba(245,158,11,0.15);
}
.wallet-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.wf-item { display: flex; align-items: flex-start; gap: 1rem; }
.wf-icon {
    min-width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.wf-item h4 { font-size: .95rem; color: var(--white); margin-bottom: .3rem; }
.wf-item p { font-size: .88rem; color: var(--muted); }

/* ===================== TESTIMONIALS ===================== */
.testimonials { padding: 7rem 5%; background: var(--bg); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.testi-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative; overflow: hidden;
}
.testi-card::before {
    content: '"'; position: absolute; top: -1rem; right: 1.5rem;
    font-size: 6rem; font-weight: 900; opacity: 0.06; color: var(--white);
    line-height: 1;
}
.testi-card:hover { transform: translateY(-6px); }
.tcard-blue:hover { box-shadow: 0 20px 50px var(--blue-glow); border-color: rgba(0,229,255,0.2); }
.tcard-pink:hover { box-shadow: 0 20px 50px var(--pink-glow); border-color: rgba(255,51,102,0.2); }
.tcard-gold:hover { box-shadow: 0 20px 50px var(--gold-glow); border-color: rgba(245,158,11,0.2); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text { font-size: .95rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem; color: var(--bg); flex-shrink: 0;
}
.blue-avatar { background: var(--blue); }
.pink-avatar { background: var(--pink); color: var(--white); }
.gold-avatar { background: var(--gold); }
.testi-name { font-weight: 700; color: var(--white); font-size: .95rem; }
.testi-role { font-size: .78rem; color: var(--muted); }

/* ===================== FAQ ===================== */
.faq-section { padding: 7rem 5%; background: var(--surface); }
.faq-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; max-width: 1100px; margin: 0 auto;
}
.faq-item {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden; margin-bottom: 1rem;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(255,255,255,0.15); }
.faq-q {
    padding: 1.2rem 1.5rem; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--white); font-weight: 600; font-size: .95rem;
    user-select: none; gap: 1rem;
}
.faq-arrow { color: var(--muted); font-size: .8rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
    padding: 0 1.5rem; max-height: 0; overflow: hidden;
    font-size: .9rem; color: var(--muted); line-height: 1.7;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.2rem; }

/* ===================== PLATFORM NOTE & CTA EXTRA ===================== */
.platform-note { font-size: .85rem; color: var(--muted); margin-top: 2rem; margin-bottom: 0; }
.footer-contact { font-size: .9rem; color: var(--muted); margin-top: .5rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 60px) scale(1.08); }
}
@keyframes floatBadge {
    0%   { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; }
    .hero-image-wrap { display: none; }
    .apps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .detail-container { grid-template-columns: 1fr; gap: 3rem; }
    .detail-container.reverse .detail-image { order: 0; }
    .detail-container.reverse .detail-content { order: 0; }
    .detail-image { display: none; }
    .how-steps { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .spotlight-inner { grid-template-columns: 1fr; }
    .safety-inner { grid-template-columns: 1fr; }
    .wallet-inner { grid-template-columns: 1fr; }
    .safety-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--surface); padding: 1.5rem 5%; border-bottom: 1px solid var(--border); gap: 1rem; z-index: 999; }
    .nav-links.open { display: flex; }
    .hamburger { display: block; }
    .flow-container { flex-direction: column; }
    .flow-arrow { transform: rotate(90deg); }
    .cta-buttons { flex-direction: column; align-items: center; }
    .earning-card { flex-direction: column; gap: 1rem; }
    .ec-div { width: 80%; height: 1px; }
    .floating-badge { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .safety-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .testi-card::before { display: none; }
}

