/* ========================================
   A-Plus Pay Landing Page — Premium CSS
   Brand: Burgundy (#4A0E2E) + Rose Gold Gradient
   ======================================== */

:root {
    /* Brand Colors */
    --brand-dark: #4A0E2E;
    --brand-mid: #6B2345;
    --brand-rose: #C47A7A;
    --brand-rose-light: #E8B4B4;
    --brand-gold: #F5E6C8;
    --brand-gradient: linear-gradient(135deg, #E8B4B4 0%, #D4857A 40%, #C47A7A 60%, #F5E6C8 100%);
    --brand-gradient-dark: linear-gradient(135deg, #4A0E2E 0%, #6B2345 50%, #8B3A5A 100%);
    --text-gradient: linear-gradient(135deg, #4A0E2E 0%, #C47A7A 50%, #D4857A 100%);

    /* Layout Colors */
    --bg: #FDFBF9;
    --bg-alt: #F8F4F0;
    --bg-card: #FFFFFF;
    --text-primary: #1A0A14;
    --text-secondary: #6B5A63;
    --text-muted: #9D8F96;
    --border: rgba(74, 14, 46, 0.08);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(74, 14, 46, 0.04);
    --shadow-md: 0 8px 30px rgba(74, 14, 46, 0.06);
    --shadow-lg: 0 20px 60px rgba(74, 14, 46, 0.08);
    --shadow-xl: 0 30px 80px rgba(74, 14, 46, 0.12);

    /* Misc */
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.03em; }
.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-rose);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-title-left {
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.25;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background: var(--brand-gradient-dark);
    color: #fff;
    box-shadow: 0 4px 20px rgba(74, 14, 46, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 14, 46, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--brand-dark);
    border: 1.5px solid rgba(74, 14, 46, 0.2);
}
.btn-ghost:hover {
    background: rgba(74, 14, 46, 0.05);
    border-color: var(--brand-dark);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--brand-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(253, 251, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gradient);
    border-radius: 2px;
    transition: var(--transition-fast);
}
.nav-links a:hover { color: var(--brand-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 99px;
    border: 1.5px solid var(--border);
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    font-family: inherit;
}
.lang-toggle:hover {
    border-color: var(--brand-rose);
    color: var(--brand-dark);
}

.nav-cta { font-size: 14px !important; padding: 10px 20px !important; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 251, 249, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    padding: 160px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 180, 180, 0.6), transparent);
    top: -100px;
    left: -150px;
    animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 230, 200, 0.5), transparent);
    top: 200px;
    right: -100px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196, 122, 122, 0.3), transparent);
    bottom: 0;
    left: 40%;
    animation: orbFloat 14s ease-in-out infinite 2s;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(74, 14, 46, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 14, 46, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content { flex: 1; max-width: 600px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(74, 14, 46, 0.06);
    border: 1px solid rgba(74, 14, 46, 0.1);
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-mid);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-num, .stat-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
}
.stat-plus {
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-rose);
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Phone Mockup */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 580px;
}

.hero-phone {
    width: 300px;
    background: #fff;
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(74,14,46,0.05);
    position: relative;
    z-index: 2;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.phone-screen {
    background: var(--bg);
    border-radius: 26px;
    padding: 24px 20px;
    min-height: 480px;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.phone-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.phone-header span {
    font-weight: 700;
    font-size: 16px;
    color: var(--brand-dark);
}

.phone-balance { margin-bottom: 24px; }
.phone-balance small {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}
.balance-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.02em;
}
.balance-amount span { font-size: 22px; color: var(--text-secondary); }

.phone-actions-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}
.phone-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.action-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.phone-action-btn span {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

.phone-assets { display: flex; flex-direction: column; gap: 12px; }
.asset-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}
.asset-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.asset-info { flex: 1; }
.asset-info strong { font-size: 14px; display: block; line-height: 1.2; }
.asset-info small { font-size: 11px; color: var(--text-muted); }
.asset-value { text-align: right; }
.asset-value strong { font-size: 14px; display: block; line-height: 1.2; }
.asset-value small { font-size: 11px; }
.positive { color: #22c55e; }

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(74,14,46,0.08);
    border-radius: 20px;
    padding: 12px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}
.float-icon { width: 36px; height: 36px; object-fit: contain; }
.floating-badge span { font-weight: 600; font-size: 14px; color: var(--brand-dark); white-space: nowrap; }
.badge-1 {
    top: 80px;
    right: -10px;
    animation: floatBadge 5s ease-in-out infinite;
}
.badge-2 {
    bottom: 100px;
    left: -20px;
    animation: floatBadge 7s ease-in-out infinite 1s;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* ========== MARQUEE ========== */
.marquee-section {
    padding: 20px 0;
    background: var(--brand-dark);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    width: max-content;
}
.marquee-content {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}
.marquee-content span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.marquee-dot { color: var(--brand-rose) !important; font-size: 8px !important; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== FEATURES ========== */
.features {
    padding: 120px 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    transition: var(--transition);
    text-align: left;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.feature-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.feature-card-inner { padding: 36px 30px; }

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card.in-view:hover {
    transform: translateY(-6px);
}

.feature-card-large {
    grid-column: span 1;
    background: var(--bg-alt);
    border: 1px solid rgba(74,14,46,0.06);
}

.feature-card-accent {
    background: var(--brand-gradient-dark);
    border: none;
    color: #fff;
}
.feature-card-accent .feature-icon-wrap { background: rgba(255,255,255,0.15); color: #fff; }
.feature-card-accent p { color: rgba(255,255,255,0.8); }

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(74,14,46,0.06);
    color: var(--brand-dark);
    overflow: hidden;
}
.feature-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.feature-icon-wrap svg { width: 28px; height: 28px; }

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}
.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
    transition: var(--transition-fast);
}
.feature-link:hover { color: var(--brand-rose); gap: 4px; }

/* ========== ECONOMICS ========== */
.economics {
    padding: 120px 0;
    background: var(--bg-alt);
}

.economics-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.economics-desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.economics-points { display: flex; flex-direction: column; gap: 28px; }
.eco-point {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
}
.eco-point.in-view { opacity: 1; transform: translateY(0); }
.eco-point-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.eco-point-icon svg { width: 22px; height: 22px; color: #fff; }
.eco-point strong { display: block; font-size: 17px; margin-bottom: 4px; }
.eco-point p { font-size: 15px; color: var(--text-secondary); margin: 0; }

/* Architecture Diagram */
.arch-diagram {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}
.arch-diagram.in-view { opacity: 1; transform: translateY(0); }

.arch-header {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.arch-layer {
    padding: 20px 24px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--bg);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}
.arch-layer span { display: block; }
.arch-layer small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.arch-layer-3 {
    background: var(--brand-gradient-dark);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.arch-layer-3 small { color: rgba(255,255,255,0.6); }
.arch-logo { width: 28px; height: 28px; object-fit: contain; }

.arch-connector {
    display: flex;
    justify-content: center;
    height: 40px;
}
.arch-connector svg { width: 24px; height: 40px; }

/* ========== TOKEN ========== */
.token { padding: 120px 0; }

.token-card {
    position: relative;
    background: var(--brand-gradient-dark);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    overflow: hidden;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
}
.token-card.in-view { opacity: 1; transform: translateY(0); }

.token-card-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,122,122,0.3), transparent);
    right: -100px;
    top: -100px;
}

.token-info { position: relative; z-index: 1; flex: 1; }
.token-title {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.token-badge {
    display: inline-flex;
    padding: 6px 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 99px;
    font-size: 14px;
    font-weight: 700;
}
.token-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.8;
}
.token-details { display: flex; gap: 40px; margin-bottom: 36px; flex-wrap: wrap; }
.td-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}
.td-value { font-size: 16px; font-weight: 600; }

.token-visual {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.token-coin {
    width: 200px;
    height: 200px;
    animation: coinSpin 8s ease-in-out infinite;
}
.token-coin-img { width: 100%; height: 100%; object-fit: contain; }
@keyframes coinSpin {
    0%, 100% { transform: rotateY(0deg) scale(1); }
    50% { transform: rotateY(15deg) scale(1.05); }
}

/* ========== ROADMAP ========== */
.roadmap {
    padding: 120px 0;
    background: var(--bg-alt);
    text-align: center;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    text-align: left;
}
.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--brand-rose-light), var(--brand-dark));
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateX(-20px);
}
.timeline-item.in-view { opacity: 1; transform: translateX(0); }
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-gradient);
    border: 3px solid var(--bg-alt);
    box-shadow: 0 0 0 3px rgba(196,122,122,0.3);
}

.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.timeline-card:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }

.timeline-phase {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(74,14,46,0.06);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-mid);
    margin-bottom: 12px;
}
.timeline-card h3 { font-size: 20px; margin-bottom: 8px; }
.timeline-card p { font-size: 15px; color: var(--text-secondary); }

/* ========== CTA ========== */
.cta-section { padding: 120px 0; }
.cta-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(30px);
}
.cta-card.in-view { opacity: 1; transform: translateY(0); }

.cta-bg-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,180,180,0.2), transparent);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}
.cta-card h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
    position: relative;
}
.cta-card p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    position: relative;
}
.cta-actions { position: relative; }

/* ========== FOOTER ========== */
.footer {
    padding: 80px 0 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 60px;
}
.footer-brand { max-width: 320px; }
.footer-logo { height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

.footer-links-grid { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col a {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: var(--transition-fast);
}
.footer-col a:hover { color: var(--brand-dark); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); transition: var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--brand-dark); }

/* ========== SCROLL ANIMATIONS ========== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered feature cards */
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.15s; }
.feature-card:nth-child(5) { transition-delay: 0.25s; }
.feature-card:nth-child(6) { transition-delay: 0.3s; }

.timeline-item:nth-child(2) { transition-delay: 0.15s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.eco-point:nth-child(2) { transition-delay: 0.15s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { min-height: 500px; width: 100%; }

    .economics-layout { grid-template-columns: 1fr; gap: 60px; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card-large { grid-column: span 1; }
}

@media (max-width: 768px) {
    .nav-links, .nav-right { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero { padding: 140px 0 60px; min-height: auto; }
    .hero-title { font-size: 36px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }

    .features-grid { grid-template-columns: 1fr; }

    .token-card { flex-direction: column; padding: 48px 28px; text-align: center; }
    .token-title { justify-content: center; }
    .token-details { justify-content: center; }
    .token-visual { order: -1; }
    .token-coin { width: 140px; height: 140px; }

    .footer-top { flex-direction: column; gap: 40px; }
    .footer-links-grid { gap: 40px; flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    .badge-1, .badge-2 { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-phone { width: 260px; }
    .phone-screen { padding: 20px 16px; }
    .balance-amount { font-size: 26px; }
    .action-icon { width: 38px; height: 38px; }
}
