*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

#pinOverlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
#pinOverlay.hidden { display: none; }
.pin-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 320px;
    width: 100%;
    padding: 20px;
}
.pin-logo {
    width: 72px; height: 72px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,140,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pin-logo img { width: 80%; height: 80%; object-fit: contain; border-radius: 14px; }
.pin-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-muted);
}
.pin-sub { font-size: 14px; color: var(--text-muted); text-align: center; }
.pin-dots { display: flex; gap: 14px; margin: 8px 0; }
.pin-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
}
.pin-dot.filled { background: var(--primary); border-color: var(--primary); }
.pin-dot.error { border-color: var(--danger); background: var(--danger); animation: pinShake 0.4s; }
@keyframes pinShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}
.pin-error {
    font-size: 13px;
    color: var(--danger);
    min-height: 20px;
    font-weight: 500;
}
.pin-pad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 260px;
}
.pin-key {
    height: 56px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.15s;
    font-family: 'Space Grotesk', sans-serif;
    user-select: none;
}
.pin-key:hover { border-color: rgba(255,140,0,0.3); color: var(--primary); }
.pin-key:active { transform: scale(0.93); background: rgba(255,140,0,0.06); }
.pin-key[data-val=""] { border: none; cursor: default; }
.pin-key[data-val=""]:hover { border: none; color: var(--text); }
.pin-key.del { font-size: 18px; color: var(--text-muted); }

:root {
    --primary: #FF8C00;
    --primary-dark: #E67E00;
    --cyan: #06b6d4;
    --purple: #8B5CF6;
    --bg: #0a0a0a;
    --text: #e8e8e8;
    --text-secondary: #999;
    --text-muted: #555;
    --success: #22c55e;
    --danger: #ef4444;
    --gold: #d4af37;
    --border: rgba(255,255,255,0.08);
    --card: rgba(255,255,255,0.02);
}

html, body {
    width: 100%; height: 100%;
    overflow: hidden;
    background: var(--bg);
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { image-rendering: auto; }

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    padding: 70px 80px;
    overflow-y: auto;
    overflow-x: hidden;
    background: transparent;
}
.slide.active { visibility: visible; }

#particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(200px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}
.glow-1 { top: -300px; left: -200px; width: 800px; height: 800px; background: rgba(255,140,0,0.04); }
.glow-2 { bottom: -400px; right: -200px; width: 700px; height: 700px; background: rgba(139,92,246,0.03); }

#transitionOverlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg);
    opacity: 0;
    z-index: 50;
    pointer-events: none;
}

.progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: var(--primary);
    z-index: 200;
    width: 0%;
    transition: width 0.5s ease;
}

.slide-counter {
    position: fixed;
    top: 28px; right: 36px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    z-index: 200;
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
}

.watermark {
    position: fixed;
    bottom: 16px; left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.06);
    letter-spacing: 3px;
    z-index: 200;
}

.nav-arrows {
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 200;
}
.nav-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 16px;
    transition: all 0.25s ease;
}
.nav-btn:hover { color: var(--primary); border-color: rgba(255,140,0,0.3); }
.nav-btn:active { transform: scale(0.92); }

.slide-dots {
    position: fixed;
    bottom: 50px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 200;
}
.dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active { background: var(--primary); transform: scale(1.5); }
.dot:hover { background: rgba(255,140,0,0.4); }

.slide-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    opacity: 0.8;
}
.slide-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--text);
}
.slide-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
}

.accent { color: var(--primary); -webkit-text-fill-color: var(--primary); }
.purple-accent { color: var(--purple); -webkit-text-fill-color: var(--purple); }
.green-accent { color: var(--success); -webkit-text-fill-color: var(--success); }
.accent-line { width: 60px; height: 2px; background: var(--primary); opacity: 0.6; }

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-box {
    text-align: center;
    padding: 18px 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: transparent;
}
.stat-box .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}
.stat-box .lbl {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.cover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.logo-ring {
    width: 120px; height: 120px;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(255,140,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-ring img { width: 80%; height: 80%; object-fit: contain; border-radius: 20px; }
.cover-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 80px;
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 1;
}
.cover-tagline { font-size: 22px; color: var(--text-secondary); font-weight: 300; }
.cover-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.cover-meta { font-size: 13px; color: var(--text-muted); letter-spacing: 1px; font-weight: 400; }

.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; }
.problem-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: transparent;
    transition: border-color 0.25s;
}
.problem-card:hover { border-color: rgba(255,255,255,0.15); }
.p-num {
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(239,68,68,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--danger);
    flex-shrink: 0;
}
.problem-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.problem-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.market-stats { display: flex; gap: 16px; width: 100%; margin-top: 28px; }
.market-stat {
    flex: 1;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    background: transparent;
    transition: border-color 0.25s;
}
.market-stat:hover { border-color: rgba(255,255,255,0.15); }
.market-stat .ms-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.market-stat .ms-label { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.market-stat .ms-sub { font-size: 12px; color: var(--text-muted); }
.market-bottom {
    margin-top: 20px;
    padding: 18px 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
    background: transparent;
}

.solution-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; width: 100%; }
.solution-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: transparent;
    transition: border-color 0.25s;
}
.solution-card:hover { border-color: rgba(255,255,255,0.15); }
.s-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}
.s-icon.orange { background: rgba(255,140,0,0.08); color: var(--primary); }
.s-icon.green { background: rgba(34,197,94,0.08); color: var(--success); }
.s-icon.purple { background: rgba(139,92,246,0.08); color: var(--purple); }
.s-icon.blue { background: rgba(59,130,246,0.08); color: #3b82f6; }
.s-icon.gold { background: rgba(212,175,55,0.08); color: var(--gold); }
.s-icon.pink { background: rgba(236,72,153,0.08); color: #ec4899; }
.solution-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.solution-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.phone-mockup {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.phone-mockup img { width: 100%; height: 100%; object-fit: cover; }

.feat-layout {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.feat-header { text-align: center; flex-shrink: 0; }
.feat-header .slide-title { font-size: 42px; }
.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    flex: 1;
    min-height: 0;
}
.feat-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s;
    min-height: 0;
}
.feat-item:hover { border-color: rgba(255,255,255,0.15); }
.feat-img {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}
.feat-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.feat-info {
    padding: 10px 12px;
    flex-shrink: 0;
    border-top: 1px solid var(--border);
}
.feat-info h4 { font-size: 12px; font-weight: 600; margin-bottom: 2px; }
.feat-info p { font-size: 10px; color: var(--text-muted); line-height: 1.4; }

.token-info { max-width: 460px; }
.token-feat-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.token-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
}
.token-feat i { font-size: 16px; color: var(--primary); width: 20px; text-align: center; }
.token-feat .val { margin-left: auto; color: var(--primary); font-weight: 600; font-size: 13px; }

.token-card {
    width: 100%;
    border: 1px solid rgba(255,140,0,0.12);
    border-radius: 20px;
    padding: 28px;
    background: transparent;
}
.token-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.token-logo { width: 42px; height: 42px; border-radius: 12px; overflow: hidden; }
.token-logo img { width: 100%; height: 100%; }
.token-name { font-size: 16px; font-weight: 600; }
.token-symbol { font-size: 13px; color: var(--primary); font-weight: 600; }
.live-badge {
    margin-left: auto;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    border: 1px solid rgba(34,197,94,0.3);
    color: var(--success);
    letter-spacing: 1px;
}
.token-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.ts-item { padding: 12px; border: 1px solid var(--border); border-radius: 10px; }
.ts-label { font-size: 11px; color: var(--text-muted); margin-bottom: 3px; font-weight: 500; }
.ts-value { font-size: 14px; font-weight: 600; }
.ts-value.highlight { color: var(--primary); }
.token-contract-box { padding: 12px; border: 1px solid var(--border); border-radius: 10px; }
.ca-label { font-size: 10px; color: var(--text-muted); margin-bottom: 3px; font-weight: 500; }
.ca-value { font-size: 11px; font-weight: 500; word-break: break-all; color: var(--primary); font-family: monospace; }

.lp-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.lp-card {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    background: transparent;
}
.lp-card .lp-icon { font-size: 20px; margin-bottom: 6px; }
.lp-card .lp-name { font-size: 13px; font-weight: 600; }
.lp-card .lp-detail { font-size: 11px; color: var(--text-muted); }

.mm-info { max-width: 500px; }
.mm-features { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.mm-feat {
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: transparent;
}
.mm-feat-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,140,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}
.mm-feat-text { display: flex; flex-direction: column; gap: 2px; }
.mm-feat-text strong { font-size: 14px; }
.mm-feat-text span { font-size: 12px; color: var(--text-muted); }

.revenue-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 14px; width: 100%; }
.revenue-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: transparent;
    transition: border-color 0.25s;
}
.revenue-card:hover { border-color: rgba(255,255,255,0.15); }
.r-num { font-size: 32px; font-weight: 800; color: rgba(255,140,0,0.12); }
.revenue-card h4 { font-size: 16px; font-weight: 600; margin-top: 4px; }
.r-sub { font-size: 13px; color: var(--primary); font-weight: 500; margin: 4px 0 8px; }
.revenue-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.benchmark-row { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 14px; width: 100%; }
.bench-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: transparent;
    transition: border-color 0.25s;
}
.bench-card:hover { border-color: rgba(255,255,255,0.15); }
.bench-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.b-users { font-size: 12px; font-weight: 600; color: var(--success); margin-right: 8px; }
.b-val { font-size: 12px; font-weight: 600; color: var(--primary); }
.bench-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-top: 8px; }
.satu-advantage {
    margin-top: 16px;
    padding: 22px;
    border: 1px solid rgba(255,140,0,0.1);
    border-radius: 14px;
    width: 100%;
    background: transparent;
}
.satu-advantage h4 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.adv-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.adv-list li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}
.adv-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.wallet-card {
    width: 380px; height: 230px;
    border-radius: 18px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.wallet-card.classic {
    background: linear-gradient(135deg, #111 0%, #1a1a2e 50%, #0f1a30 100%);
    border: 1px solid rgba(255,140,0,0.1);
}
.wallet-card.gold {
    background: linear-gradient(135deg, #1a1505 0%, #2a2008 50%, #3a2f0a 100%);
    border: 1px solid rgba(212,175,55,0.15);
}
.card-shine {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.03), transparent 60%);
    pointer-events: none;
}
.wc-inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.wc-brand { display: flex; align-items: center; gap: 10px; }
.wc-brand img { width: 32px; height: 32px; border-radius: 8px; }
.wc-brand-name { font-size: 13px; font-weight: 700; letter-spacing: 2px; }
.wc-brand-sub { font-size: 9px; color: var(--text-muted); letter-spacing: 1px; }
.wc-chip {
    width: 38px; height: 28px;
    border-radius: 5px;
    background: linear-gradient(135deg, #c0a030, #e0c060, #c0a030);
    border: 1px solid rgba(255,255,255,0.1);
}
.wc-chip.gold-chip { background: linear-gradient(135deg, #d4af37, #f0d060, #d4af37); }
.wc-bottom { display: flex; align-items: center; justify-content: space-between; }
.wc-networks { display: flex; gap: 5px; }
.wc-net-icon {
    width: 22px; height: 22px;
    border-radius: 5px;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: rgba(255,255,255,0.4);
}
.cc-features { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.cc-feat {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: transparent;
}
.cc-feat-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,140,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 15px;
    flex-shrink: 0;
}
.cc-feat-text { display: flex; flex-direction: column; gap: 1px; }
.cc-feat-text strong { font-size: 14px; font-weight: 600; }
.cc-feat-text span { font-size: 12px; color: var(--text-muted); }
.cc-editions { display: flex; gap: 8px; margin-top: 14px; }
.cc-ed {
    padding: 7px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}
.cc-ed-classic { border: 1px solid var(--border); }
.cc-ed-gold { border: 1px solid rgba(212,175,55,0.2); color: var(--gold); }
.cc-ed-meme { border: 1px solid rgba(236,72,153,0.2); color: #ec4899; }

#slide21 { flex-direction: column; gap: 14px; }
.invest-packages { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; width: 100%; }
.invest-card {
    padding: 18px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    background: transparent;
    transition: border-color 0.25s;
}
.invest-card:hover { border-color: rgba(255,255,255,0.15); }
.invest-card.featured {
    border-color: rgba(255,140,0,0.2);
    position: relative;
}
.invest-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 8px;
    font-weight: 700;
    background: var(--primary);
    color: white;
    letter-spacing: 1px;
}
.tier-name { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--text-muted); }
.amount { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; margin: 4px 0 2px; }
.amount-sub { font-size: 11px; color: var(--text-muted); }
.pct { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700; color: var(--success); margin: 8px 0 2px; }
.pct-label { font-size: 11px; color: var(--text-secondary); }
.invest-sep { height: 1px; background: var(--border); margin: 8px 0; }
.after-roi { font-size: 16px; font-weight: 600; color: var(--purple); }
.after-label { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.invest-exit {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: transparent;
}
.invest-exit h4 { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.exit-rules { list-style: none; display: flex; flex-wrap: wrap; gap: 3px 16px; }
.exit-rules li {
    font-size: 11px;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}
.exit-rules li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 2px;
    font-size: 10px;
    color: var(--success);
}

.admin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; width: 100%; }
.admin-img-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    transition: border-color 0.25s;
}
.admin-img-card:hover { border-color: rgba(255,255,255,0.15); }
.admin-img-card img { width: 100%; height: 260px; object-fit: cover; object-position: top; display: block; }
.admin-img-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.ops-layout { display: flex; gap: 28px; width: 100%; }
.ops-main { flex: 1; }
.ops-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 14px;
    background: transparent;
}
.ops-highlight { display: flex; align-items: center; gap: 24px; margin-bottom: 18px; }
.ops-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--success);
}
.ops-price-label { font-size: 15px; color: var(--text-secondary); }
.ops-price-sub { font-size: 12px; color: var(--text-muted); }
.ops-side { width: 360px; flex-shrink: 0; }
.ops-scale-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.ops-scale-table th {
    background: rgba(255,140,0,0.05);
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
}
.ops-scale-table td {
    padding: 9px 14px;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}
.ops-scale-table tr:last-child td { border-bottom: none; }

.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; width: 100%; }
.community-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s;
}
.community-card:hover { border-color: rgba(255,255,255,0.15); }
.community-card img { width: 100%; height: 260px; object-fit: cover; object-position: top; display: block; }
.community-card-info {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.community-card-info i { font-size: 20px; color: var(--primary); }
.cc-name { font-size: 15px; font-weight: 600; }
.cc-handle { font-size: 12px; color: var(--text-muted); }

.team-layout { display: flex; gap: 36px; align-items: flex-start; width: 100%; }
.founder-card {
    width: 360px;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    flex-shrink: 0;
    background: transparent;
}
.founder-avatar-img {
    width: 100px; height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,140,0,0.2);
    margin: 0 auto 14px;
}
.founder-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 3px;
}
.founder-role { font-size: 14px; color: var(--primary); font-weight: 500; margin-bottom: 10px; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; margin-bottom: 14px; }
.founder-tag {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,140,0,0.15);
    color: var(--primary);
}
.founder-bio { font-size: 13px; color: var(--text-secondary); line-height: 1.7; text-align: left; }
.team-right { flex: 1; }
.team-cards { display: flex; flex-direction: column; gap: 10px; }
.team-member {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: transparent;
    transition: border-color 0.25s;
}
.team-member:hover { border-color: rgba(255,255,255,0.15); }
.team-member-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(255,140,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}
.team-member h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.team-member p { font-size: 12px; color: var(--text-muted); }

#slide17 { flex-direction: column; gap: 24px; }
.alloc-rows { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.alloc-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: transparent;
    transition: border-color 0.25s;
}
.alloc-row:hover { border-color: rgba(255,255,255,0.15); }
.alloc-pct {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    width: 65px;
    text-align: center;
    flex-shrink: 0;
}
.alloc-info { flex: 1; }
.alloc-info h4 { font-size: 16px; font-weight: 600; margin-bottom: 3px; }
.alloc-info p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.alloc-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
}

#slide18 { flex-direction: column; gap: 28px; }
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; width: 100%; }
.rm-card {
    padding: 22px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: transparent;
    transition: border-color 0.25s;
}
.rm-card:hover { border-color: rgba(255,255,255,0.15); }
.rm-card.current { border-color: rgba(255,140,0,0.2); }
.rm-q-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 10px;
}
.rm-q-badge.active { border: 1px solid rgba(34,197,94,0.25); color: var(--success); }
.rm-q-badge.upcoming { border: 1px solid rgba(255,140,0,0.2); color: var(--primary); }
.rm-q-badge.planned { border: 1px solid rgba(139,92,246,0.2); color: var(--purple); }
.rm-card-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.rm-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 12px;
}
.rm-status.active { border: 1px solid rgba(34,197,94,0.2); color: var(--success); }
.rm-status.upcoming { border: 1px solid rgba(255,140,0,0.15); color: var(--primary); }
.rm-status.planned { border: 1px solid rgba(139,92,246,0.15); color: var(--purple); }
.rm-items { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.rm-items li {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}
.rm-items li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--text-muted);
}
.rm-card.current .rm-items li::before { background: var(--primary); }

#slide19 { gap: 36px; }
.security-col, .legal-col { flex: 1; }
.sec-item {
    display: flex;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    background: transparent;
}
.sec-num {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.sec-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.sec-item p { font-size: 13px; color: var(--text-secondary); }
.legal-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    background: transparent;
}
.legal-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.legal-card .company {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.legal-docs { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.legal-docs li {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}
.legal-docs li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 2px;
    font-size: 10px;
    color: var(--success);
}

#slide20 { gap: 48px; }
.video-wrap {
    width: 300px; height: 620px;
    border-radius: 18px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: #111;
    flex-shrink: 0;
}
.video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.video-info { max-width: 460px; }
.video-steps { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.v-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: transparent;
}
.v-step-num {
    width: 32px; height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255,140,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}
.v-step-title { font-size: 14px; font-weight: 500; }

#slide22 { flex-direction: column; gap: 18px; }
.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -2px;
    line-height: 1.1;
}
.cta-website {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}
.cta-buttons { display: flex; gap: 12px; }
.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}
.cta-btn:hover { transform: translateY(-2px); }
.cta-btn.primary-btn {
    background: var(--primary);
    color: white;
}
.cta-btn.secondary-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}
.cta-socials { display: flex; gap: 10px; }
.cta-social {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.25s;
}
.cta-social:hover { color: var(--primary); border-color: rgba(255,140,0,0.2); }

.traction-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; width: 100%; }
.traction-stat {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    background: transparent;
    transition: border-color 0.25s;
}
.traction-stat:hover { border-color: rgba(255,255,255,0.15); }
.tr-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.tr-label { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.tr-sub { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.traction-highlights { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.tr-highlight {
    display: flex;
    gap: 16px;
    padding: 18px 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: transparent;
    transition: border-color 0.25s;
}
.tr-highlight:hover { border-color: rgba(255,255,255,0.15); }
.trh-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,140,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}
.trh-content h4 { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.trh-content p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.token-distro {
    padding: 14px 16px;
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 12px;
    background: rgba(139,92,246,0.03);
}
.distro-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.distro-row:last-child { margin-bottom: 0; }
.distro-label { font-size: 12px; color: var(--text-secondary); width: 200px; flex-shrink: 0; }
.distro-pct { font-size: 13px; font-weight: 700; color: var(--text); width: 36px; text-align: right; flex-shrink: 0; }
.distro-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.distro-fill { height: 100%; border-radius: 3px; }

.r-projection {
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255,140,0,0.04);
    border: 1px solid rgba(255,140,0,0.1);
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.6;
}
.revenue-total {
    width: 100%;
    padding: 20px 24px;
    border: 1px solid rgba(34,197,94,0.15);
    border-radius: 14px;
    background: rgba(34,197,94,0.03);
}

.roi-timeline {
    margin-top: 6px;
    padding: 5px 8px;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
}
.roi-timeline.featured { border-color: rgba(255,140,0,0.2); background: rgba(255,140,0,0.04); }
.roi-label { font-size: 9px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.roi-value { font-size: 14px; font-weight: 700; color: var(--success); font-family: 'Space Grotesk', sans-serif; }

.invest-scenario {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 12px;
    background: rgba(139,92,246,0.03);
}
.invest-scenario h4 { font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.scenario-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.scenario-case {
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
}
.scenario-case.base { border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.04); }
.sc-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.sc-detail { font-size: 11px; color: var(--text-muted); margin-bottom: 3px; }
.sc-result { font-size: 12px; font-weight: 600; color: var(--text); }

.cofounder-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(255,140,0,0.12));
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold);
    letter-spacing: 0.5px;
}
.cofounder-perks { display: flex; flex-direction: column; gap: 2px; margin-top: 6px; text-align: left; width: 100%; }
.cf-perk {
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}
.cf-perk i { font-size: 8px; color: var(--gold); flex-shrink: 0; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .slide { padding: 24px 20px !important; }
    .slide-title { font-size: 28px !important; letter-spacing: -1px !important; }
    .slide-label { font-size: 10px !important; letter-spacing: 3px !important; }
    .slide-subtitle { font-size: 15px !important; }
    .cover-title { font-size: 44px !important; }
    .cover-tagline { font-size: 16px !important; }
    .cover-badges { flex-wrap: wrap; justify-content: center; }
    .badge-pill { font-size: 11px !important; padding: 5px 12px !important; }
    .problem-grid { grid-template-columns: 1fr !important; }
    .market-stats { flex-direction: column !important; }
    .market-stat .ms-num { font-size: 32px !important; }
    .solution-grid { grid-template-columns: 1fr !important; }
    #slide5 { flex-direction: column !important; gap: 20px !important; }
    .phone-mockup { width: 140px !important; height: 290px !important; }
    .feat-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 6px !important; }
    .feat-header .slide-title { font-size: 24px !important; }
    .feat-info h4 { font-size: 11px !important; }
    .feat-info p { display: none; }
    #slide8 { flex-direction: column !important; gap: 18px !important; }
    .token-card { width: 100% !important; }
    #slide9 { flex-direction: column !important; gap: 20px !important; }
    .revenue-grid { grid-template-columns: 1fr 1fr !important; }
    .benchmark-row { grid-template-columns: 1fr 1fr !important; }
    .wallet-card { width: 260px !important; height: 160px !important; }
    .invest-packages { grid-template-columns: 1fr !important; }
    .amount { font-size: 32px !important; }
    .pct { font-size: 36px !important; }
    .admin-grid { grid-template-columns: 1fr !important; }
    .community-grid { grid-template-columns: 1fr !important; }
    .team-layout { flex-direction: column !important; }
    .founder-card { width: 100% !important; }
    .ops-layout { flex-direction: column !important; }
    .ops-side { width: 100% !important; }
    .ops-price { font-size: 36px !important; }
    .roadmap-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    #slide19 { flex-direction: column !important; gap: 20px !important; }
    #slide20 { flex-direction: column !important; gap: 20px !important; }
    .video-wrap { width: 180px !important; height: 370px !important; }
    .cta-title { font-size: 32px !important; }
    .cta-buttons { flex-direction: column; }
    .nav-arrows { bottom: 18px; }
    .nav-btn { width: 42px; height: 42px; }
    .slide-dots { display: none; }
    .slide-counter { top: 10px; right: 14px; font-size: 12px; }
    .watermark { font-size: 8px; }
    .stat-box .num { font-size: 26px !important; }
    .alloc-row { flex-wrap: wrap; padding: 14px !important; }
    .alloc-pct { font-size: 20px !important; }
    .adv-list { grid-template-columns: 1fr !important; }
    .satu-advantage { padding: 14px !important; }
    .traction-stats { grid-template-columns: 1fr 1fr !important; }
    .tr-num { font-size: 28px !important; }
    .scenario-grid { grid-template-columns: 1fr !important; }
    .distro-label { width: 140px !important; font-size: 11px !important; }
    .revenue-total div[style*="display:flex"] { flex-direction: column !important; }
}

@media (hover: none) and (pointer: coarse) {
    .nav-btn { width: 54px; height: 54px; font-size: 18px; }
    .nav-arrows { bottom: 28px; gap: 12px; }
}
