/* =====================================
   COINSET PAGE — DARK PREMIUM THEME
===================================== */
:root {
    --csp: #6c3ce1;
    --cspl: #a855f7;
    --csa: #06b6d4;
    --dark: #05050f;
    --dark2: #0a0a1a;
    --card-bg: rgba(255,255,255,0.03);
    --border: rgba(255,255,255,0.07);
    --text: rgba(255,255,255,0.85);
    --muted: rgba(255,255,255,0.4);
}

/* ---- Base ---- */
.cs-hero, .cs-ticker-bar, .cs-stats-sec,
.cs-feats-sec, .cs-sys-sec, .cs-chart-sec {
    font-family: 'DM Sans', sans-serif;
    color: #fff;
}

/* Gradient text */
.cs-grad-text {
    background: linear-gradient(135deg, #a78bfa, #6c3ce1, #06b6d4, #a78bfa);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: csGradAnim 4s ease infinite;
}
@keyframes csGradAnim { 0%,100%{background-position:0%} 50%{background-position:100%} }

/* Section labels */
.cs-sec-label {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(108,60,225,0.12);
    border: 1px solid rgba(108,60,225,0.28);
    border-radius: 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: 14px;
}

/* ===== HERO ===== */
.cs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
    padding: 80px 24px 100px;
}

/* Grid background */
.cs-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(108,60,225,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108,60,225,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Scan line */
.cs-scan {
    position: absolute; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(108,60,225,0.5), transparent);
    animation: csScan 8s linear infinite;
    pointer-events: none; z-index: 2;
}
@keyframes csScan { from{top:-2px} to{top:100%} }

/* Orbs */
.cs-orb {
    position: absolute; border-radius: 50%;
    pointer-events: none; animation: csOrbPulse 10s ease-in-out infinite alternate;
}
.cs-orb1 { width:600px;height:600px;top:-200px;left:-200px;background:radial-gradient(circle,rgba(108,60,225,0.18),transparent 70%);animation-duration:12s; }
.cs-orb2 { width:500px;height:500px;bottom:-150px;right:-150px;background:radial-gradient(circle,rgba(168,85,247,0.12),transparent 70%);animation-duration:9s;animation-delay:-4s; }
.cs-orb3 { width:350px;height:350px;top:40%;left:55%;background:radial-gradient(circle,rgba(6,182,212,0.08),transparent 70%);animation-duration:14s;animation-delay:-7s; }
@keyframes csOrbPulse { from{transform:scale(1) translate(0,0)} to{transform:scale(1.15) translate(30px,20px)} }

/* Floating coins */
.cs-fc {
    position: absolute;
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(108,60,225,0.2);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(108,60,225,0.15);
    animation: csFcFloat 6s ease-in-out infinite;
    z-index: 1;
}
@keyframes csFcFloat {
    0%,100%{transform:translateY(0) rotate(0deg)}
    50%{transform:translateY(-18px) rotate(8deg)}
}

/* Hero inner */
.cs-hero-inner {
    max-width: 1200px; width: 100%;
    position: relative; z-index: 3;
}

.cs-breadcrumb {
    font-size: 13px; color: rgba(255,255,255,0.35);
    margin-bottom: 32px;
}
.cs-breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.cs-breadcrumb a:hover { color: #a78bfa; }
.cs-bc-sep { margin: 0 8px; color: rgba(108,60,225,0.5); }

.cs-hero-body { text-align: center; }

/* Live badge */
.cs-live-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 20px;
    background: rgba(108,60,225,0.1);
    border: 1px solid rgba(108,60,225,0.25);
    border-radius: 24px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: #a78bfa;
    margin-bottom: 36px;
    backdrop-filter: blur(8px);
}
.cs-live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e;
    animation: csPulse 1.5s ease-in-out infinite;
}
@keyframes csPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

/* Hero visual */
.cs-hero-visual {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    width: 220px; height: 220px;
}
.cs-ring {
    position: absolute; border-radius: 50%;
    border-style: dashed;
    animation: csRingRot 20s linear infinite;
    pointer-events: none;
}
.cs-ring1 { inset:-24px; border: 1px dashed rgba(108,60,225,0.3); animation-duration:20s; }
.cs-ring2 { inset:-48px; border: 1px dashed rgba(168,85,247,0.15); animation-direction:reverse; animation-duration:30s; }
@keyframes csRingRot { from{transform:rotate(0)} to{transform:rotate(360deg)} }

.cs-hero-box {
    width: 220px; height: 220px;
    border-radius: 36px;
    background: linear-gradient(135deg,rgba(108,60,225,0.2),rgba(168,85,247,0.1));
    border: 1px solid rgba(108,60,225,0.3);
    backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 80px rgba(108,60,225,0.3), inset 0 0 40px rgba(168,85,247,0.05);
    animation: csBobble 5s ease-in-out infinite;
    overflow: hidden;
}
.cs-hero-img { width: 100%; height: 100%; object-fit: contain; }
.cs-hero-emoji-fallback { font-size: 5rem; }
@keyframes csBobble { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-14px) scale(1.02)} }

/* Orbit coins */
.cs-orbit-coin {
    position: absolute;
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    background: rgba(108,60,225,0.15);
    border: 1px solid rgba(108,60,225,0.3);
    box-shadow: 0 0 12px rgba(108,60,225,0.2);
    transform: translate(-50%,-50%);
    transition: left 0.05s linear, top 0.05s linear;
    pointer-events: none;
}

.cs-hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900; letter-spacing: -2px; line-height: 1.1;
    margin-bottom: 18px; color: #fff;
}
.cs-hero-sub {
    font-size: 1rem; color: rgba(255,255,255,0.45);
    line-height: 1.8; margin-bottom: 40px;
}
.cs-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn-cs-primary {
    display: inline-block;
    padding: 15px 36px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed, #a855f7);
    background-size: 200%;
    color: #fff; text-decoration: none;
    border-radius: 14px; font-size: 0.95rem; font-weight: 700;
    box-shadow: 0 8px 32px rgba(108,60,225,0.5);
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
    animation: csBorderGlow 3s ease infinite;
}
.btn-cs-primary::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn-cs-primary:hover::before { left: 100%; }
.btn-cs-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(108,60,225,0.6); }

.btn-cs-ghost {
    display: inline-block;
    padding: 15px 28px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8); text-decoration: none;
    border-radius: 14px; font-size: 0.9rem; font-weight: 600;
    transition: all 0.3s;
}
.btn-cs-ghost:hover {
    background: rgba(108,60,225,0.1);
    border-color: rgba(108,60,225,0.4);
    transform: translateY(-2px);
}

@keyframes csBorderGlow {
    0%,100%{box-shadow:0 8px 32px rgba(108,60,225,0.5)}
    50%{box-shadow:0 8px 48px rgba(168,85,247,0.7),0 0 80px rgba(108,60,225,0.2)}
}

/* ===== TICKER ===== */
.cs-ticker-bar {
    background: rgba(108,60,225,0.08);
    border-top: 1px solid rgba(108,60,225,0.18);
    border-bottom: 1px solid rgba(108,60,225,0.18);
    padding: 11px 0;
    overflow: hidden; white-space: nowrap;
    position: relative; z-index: 5;
}
.cs-ticker-track {
    display: inline-flex; gap: 0;
    animation: csTicker 25s linear infinite;
}
@keyframes csTicker { from{transform:translateX(0)} to{transform:translateX(-33.33%)} }
.cs-tick-item {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0 28px; font-size: 13px; font-weight: 600;
}
.cs-tick-sym { color: rgba(255,255,255,0.45); }
.cs-up { color: #4ade80; }
.cs-down { color: #f87171; }

/* ===== STATS ===== */
.cs-stats-sec {
    padding: 60px 40px;
    background: var(--dark);
}
.cs-stats-card {
    max-width: 900px; margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(108,60,225,0.2);
    border-radius: 24px;
    position: relative; overflow: hidden;
    box-shadow: 0 0 60px rgba(108,60,225,0.08);
}
.cs-stats-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--csp), var(--cspl), var(--csa));
    background-size: 200%;
    animation: csShimmer 3s linear infinite;
}
@keyframes csShimmer { 0%{background-position:-200%} 100%{background-position:200%} }
.cs-stats-shine {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(108,60,225,0.06), transparent 60%);
    pointer-events: none;
}
.cs-stats-inner {
    display: flex; align-items: center; justify-content: center;
    padding: 44px 24px;
}
.cs-stat-item { flex: 1; text-align: center; }
.cs-stat-emoji { font-size: 1.8rem; margin-bottom: 8px; }
.cs-stat-num {
    font-size: 2.8rem; font-weight: 900;
    letter-spacing: -2.5px; line-height: 1;
    background: linear-gradient(135deg, #a78bfa, #6c3ce1, #06b6d4);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 6px;
}
.cs-stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.35); font-weight: 500; }
.cs-stat-sep {
    width: 1px; height: 70px; flex-shrink: 0;
    background: linear-gradient(to bottom, transparent, rgba(108,60,225,0.25), transparent);
}

/* ===== FEATURES ===== */
.cs-feats-sec {
    padding: 80px 40px;
    background: #06060f;
}
.cs-feats-inner { max-width: 1200px; margin: 0 auto; }
.cs-sec-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900; letter-spacing: -1px; line-height: 1.2;
    margin-bottom: 40px; color: #fff;
}

/* Bento grid */
.cs-bento {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 16px;
}
.cs-bento-col { display: flex; flex-direction: column; gap: 16px; }

.cs-feat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 26px 22px 0;
    display: flex; flex-direction: column;
    min-height: 260px;
    position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
    cursor: default;
    flex: 1;
}
.cs-feat-card:hover {
    border-color: rgba(var(--cc-rgb,108,60,225), 0.35);
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.05);
}

/* Color top bar per card */
.cs-feat-top-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--cc, #7c3aed), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.cs-feat-card:hover .cs-feat-top-bar { opacity: 1; }

/* Glow on hover */
.cs-feat-card::after {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cc, #7c3aed), transparent 70%);
    opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.cs-feat-card:hover::after { opacity: 0.08; }

.cs-feat-icon { font-size: 1.8rem; margin-bottom: 14px; }
.cs-feat-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 9px; line-height: 1.4; }
.cs-feat-desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; }

.cs-feat-img-wrap {
    flex: 1; display: flex; align-items: flex-end; justify-content: center;
    padding-top: 12px; overflow: hidden;
}
.cs-feat-img {
    max-height: 160px; width: auto; object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(108,60,225,0.2));
}
.cs-feat-card:hover .cs-feat-img { transform: scale(1.06) translateY(-8px); }

/* Center card */
.cs-feat-center {
    min-height: 560px;
    background: linear-gradient(160deg, rgba(108,60,225,0.14), rgba(79,70,229,0.06));
    border-color: rgba(108,60,225,0.22);
    box-shadow: 0 0 80px rgba(108,60,225,0.1), inset 0 0 40px rgba(108,60,225,0.03);
    animation: csBorderGlow 4s ease infinite;
}
.cs-center-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(108,60,225,0.2);
    border: 1px solid rgba(108,60,225,0.3);
    border-radius: 14px;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    color: #a78bfa; text-transform: uppercase;
    margin-bottom: 14px;
}
.cs-mini-table { display: flex; flex-direction: column; gap: 6px; margin: 14px 0 16px; }
.cs-mini-row {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.04); border-radius: 8px;
    padding: 8px 12px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7);
}
.cs-phone-mock { flex: 1; display: flex; align-items: flex-end; justify-content: center; padding-top: 10px; }
.cs-phone-img { max-width: 90%; max-height: 310px; object-fit: contain; transition: transform 0.4s ease; }
.cs-feat-center:hover .cs-phone-img { transform: scale(1.03) translateY(-8px); }

/* ===== SYSTEMATIC ===== */
.cs-sys-sec {
    padding: 90px 40px;
    background: var(--dark);
    border-top: 1px solid rgba(108,60,225,0.1);
    position: relative; overflow: hidden;
}
.cs-sys-bg-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(108,60,225,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.cs-sys-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.7fr;
    gap: 80px; align-items: start;
    position: relative;
}
.cs-sys-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; letter-spacing: -2px; line-height: 1.1; margin-bottom: 28px;
}
.cs-mantra {
    display: flex; flex-wrap: wrap; gap: 6px 4px;
    font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.55);
}
.cs-mantra-dot { color: var(--csp); font-size: 1.2rem; }

.cs-sys-highlight {
    display: flex; align-items: center; gap: 24px;
    background: linear-gradient(135deg, rgba(108,60,225,0.12), rgba(79,70,229,0.06));
    border: 1px solid rgba(108,60,225,0.2);
    border-radius: 20px; padding: 28px; margin-bottom: 24px;
}
.cs-big-pct {
    font-size: 3.5rem; font-weight: 900; letter-spacing: -4px; line-height: 1; flex-shrink: 0;
    background: linear-gradient(135deg, #a78bfa, #6c3ce1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cs-sys-highlight p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.cs-sys-divider { height:1px; background:linear-gradient(90deg,transparent,rgba(108,60,225,0.2),transparent); margin:22px 0; }
.cs-sys-para { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.85; margin-bottom: 16px; }
.cs-ps-box {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px; padding: 20px 22px; margin-top: 20px;
}
.cs-ps-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.cs-ps-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: #a78bfa; text-transform: uppercase; }
.cs-ps-box p { font-size: 0.84rem; color: rgba(255,255,255,0.4); line-height: 1.75; }

/* ===== CHART ===== */
.cs-chart-sec {
    padding: 80px 40px 100px;
    background: #06060f;
    border-top: 1px solid rgba(108,60,225,0.1);
}
.cs-chart-inner { max-width: 1100px; margin: 0 auto; }
.cs-chart-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    flex-wrap: wrap; gap: 16px; margin-bottom: 24px;
}
.cs-chart-title { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; margin-top: 8px; }
.cs-time-btns { display: flex; gap: 4px; background: rgba(255,255,255,0.04); border-radius: 12px; padding: 4px; }
.cs-tbtn {
    padding: 9px 22px; border: none; border-radius: 9px;
    font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit;
    background: transparent; color: rgba(255,255,255,0.35);
    transition: all 0.25s;
}
.cs-tbtn.active {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    box-shadow: 0 4px 14px rgba(108,60,225,0.4);
}
.cs-tbtn:hover:not(.active) { color: #a78bfa; }

.cs-chart-legends {
    display: flex; align-items: center; gap: 14px;
    flex-wrap: wrap; margin-bottom: 18px;
}
.cs-legend {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75);
}
.cs-leg-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cs-cselect {
    border: none; background: none;
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75);
    cursor: pointer; outline: none; font-family: inherit;
}
.cs-cselect option { background: #1a1a2e; color: #fff; }
.cs-explore-btn {
    margin-left: auto;
    display: inline-block; padding: 10px 22px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff; text-decoration: none; border-radius: 24px;
    font-size: 13px; font-weight: 700;
    box-shadow: 0 4px 14px rgba(108,60,225,0.35);
    transition: all 0.3s;
}
.cs-explore-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(108,60,225,0.5); }

.cs-chart-wrap {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(108,60,225,0.14);
    border-radius: 22px; padding: 28px;
    box-shadow: 0 8px 40px rgba(108,60,225,0.07);
}
.cs-perf-stats {
    display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: center;
    margin-top: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(108,60,225,0.1);
    border-radius: 16px;
}
.cs-pstat { padding: 18px 24px; text-align: center; }
.cs-pstat-sep { background: linear-gradient(to bottom, transparent, rgba(108,60,225,0.2), transparent); height: 40px; }
.cs-pstat-lbl { font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 500; margin-bottom: 6px; letter-spacing: 0.5px; }
.cs-pstat-val { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.5px; }

/* ===== SCROLL REVEAL ===== */
.cs-reveal {
    opacity: 0; transform: translateY(36px);
    transition: all 0.8s cubic-bezier(0.22,1,0.36,1);
}
.cs-reveal.cs-show { opacity: 1; transform: translateY(0); }
.cs-reveal-left {
    opacity: 0; transform: translateX(-36px);
    transition: all 0.8s cubic-bezier(0.22,1,0.36,1);
}
.cs-reveal-left.cs-show { opacity: 1; transform: translateX(0); }
.cs-reveal-right {
    opacity: 0; transform: translateX(36px);
    transition: all 0.8s 0.15s cubic-bezier(0.22,1,0.36,1);
}
.cs-reveal-right.cs-show { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cs-bento { grid-template-columns: 1fr 1fr; }
    .cs-feat-center { grid-column: 1/-1; min-height: 360px; }
    .cs-sys-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .cs-hero { padding: 60px 16px 80px; }
    .cs-fc { display: none; }
    .cs-stats-sec { padding: 40px 16px; }
    .cs-feats-sec { padding: 60px 16px; }
    .cs-bento { grid-template-columns: 1fr; }
    .cs-feat-center { grid-column: auto; min-height: 320px; }
    .cs-sys-sec { padding: 60px 16px; }
    .cs-chart-sec { padding: 60px 16px; }
    .cs-chart-header { flex-direction: column; align-items: flex-start; }
    .cs-explore-btn { margin-left: 0; }
    .cs-stat-num { font-size: 2rem; }
    .cs-perf-stats { grid-template-columns: 1fr; }
    .cs-pstat-sep { display: none; }
}

/* =====================================
   COINSET BOTTOM — DARK PREMIUM THEME
===================================== */

.csb-notall-sec, .csb-how-sec, .csb-security-sec {
    font-family: 'DM Sans', sans-serif;
}

.csb-sec-label {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(108,60,225,0.12);
    border: 1px solid rgba(108,60,225,0.28);
    border-radius: 24px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: #a78bfa; margin-bottom: 14px;
}

/* ===== AND THAT'S NOT ALL ===== */
.csb-notall-sec {
    background: #06060f;
    padding: 90px 40px;
    border-top: 1px solid rgba(108,60,225,0.1);
}

.csb-notall-inner { max-width: 1100px; margin: 0 auto; }

.csb-notall-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900; color: #fff;
    letter-spacing: -1.5px; margin-bottom: 10px;
}

.csb-notall-sub {
    font-size: 0.95rem; color: rgba(255,255,255,0.4);
    line-height: 1.7; margin-bottom: 44px;
}

/* Bento grid */
.csb-bento {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

/* Base card */
.csb-card {
    position: relative; overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    display: flex; flex-direction: column;
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
    opacity: 0; transform: translateY(28px);
}
.csb-card.csb-show { opacity: 1; transform: translateY(0); }

.csb-card:hover {
    transform: translateY(-7px) scale(1.015);
    border-color: rgba(var(--accent-rgb,108,60,225), 0.3);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* Accent top bar */
.csb-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent, #6c3ce1), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.csb-card:hover::before { opacity: 1; }

/* card sizes */
.csb-card--tall { min-height: 300px; }
.csb-card--center { min-height: 620px; grid-row: 1 / 3; }
.csb-card--sm { min-height: 180px; }
.csb-card--wide { grid-column: 2 / 3; min-height: 220px; }

.csb-right-col { display: flex; flex-direction: column; gap: 16px; }

/* Card content */
.csb-card-content {
    padding: 24px 22px 16px;
    position: relative; z-index: 2;
}

.csb-card-icon {
    font-size: 1.6rem;
    display: block; margin-bottom: 12px;
}

.csb-card-title {
    font-size: 0.97rem; font-weight: 700;
    color: #fff; margin-bottom: 8px; line-height: 1.4;
}

.csb-card-desc {
    font-size: 0.82rem; color: rgba(255,255,255,0.42);
    line-height: 1.7;
}

/* Image placement */
.csb-card-img-wrap {
    flex: 1; display: flex;
    align-items: flex-end; justify-content: center;
    overflow: hidden; position: relative;
}

.csb-card-bg-img {
    width: 100%; max-height: 200px;
    object-fit: cover; object-position: top;
    opacity: 0.55;
    transition: transform 0.4s ease, opacity 0.3s;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.9) 40%, transparent);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.9) 40%, transparent);
}
.csb-card:hover .csb-card-bg-img { transform: scale(1.05); opacity: 0.7; }

/* Center card */
.csb-card--center {
    background: linear-gradient(160deg, rgba(108,60,225,0.15), rgba(79,70,229,0.06));
    border-color: rgba(108,60,225,0.22);
    box-shadow: 0 0 80px rgba(108,60,225,0.1), inset 0 0 40px rgba(108,60,225,0.04);
}
.csb-center-img-wrap { padding: 0 12px 0; }
.csb-center-img {
    max-width: 85%; max-height: 380px;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 8px 24px rgba(108,60,225,0.3));
}
.csb-card--center:hover .csb-center-img { transform: scale(1.04) translateY(-6px); }

/* Small cards */
.csb-sm-img-wrap { padding: 0 16px 4px; justify-content: flex-end; }
.csb-sm-img {
    max-width: 70%; max-height: 100px;
    object-fit: contain; opacity: 0.8;
    transition: transform 0.4s, opacity 0.3s;
    filter: drop-shadow(0 4px 12px rgba(108,60,225,0.2));
}
.csb-card:hover .csb-sm-img { transform: scale(1.06) translateY(-4px); opacity: 1; }

/* Portfolio img */
.csb-portfolio-img {
    border-radius: 16px 16px 0 0;
    opacity: 0.6;
}

/* Wide card */
.csb-wide-img-wrap { padding: 0 20px 0; }
.csb-wide-img {
    max-width: 60%; max-height: 130px;
    object-fit: contain; opacity: 0.85;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 16px rgba(225,29,72,0.25));
}
.csb-card:hover .csb-wide-img { transform: scale(1.05) translateY(-4px); }

/* ===== HOW TO INVEST ===== */
.csb-how-sec {
    background: #05050f;
    padding: 90px 40px;
    border-top: 1px solid rgba(108,60,225,0.1);
}

.csb-how-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}

.csb-how-title {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 900; color: #fff;
    letter-spacing: -1px; line-height: 1.2; margin-bottom: 10px;
}

.csb-how-sub {
    font-size: 0.9rem; color: rgba(255,255,255,0.38);
    margin-bottom: 44px; line-height: 1.6;
}

/* Steps */
.csb-steps { display: flex; flex-direction: column; gap: 0; }

.csb-step {
    display: flex; gap: 20px;
    position: relative;
}

.csb-step-line {
    display: flex; flex-direction: column;
    align-items: center; flex-shrink: 0;
    width: 40px;
}

.csb-step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800; letter-spacing: 0.5px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    transition: all 0.3s;
    flex-shrink: 0;
}

.csb-step--active .csb-step-num {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(108,60,225,0.5);
}

.csb-step-connector {
    width: 1px; flex: 1; min-height: 40px;
    background: linear-gradient(to bottom, rgba(108,60,225,0.3), rgba(108,60,225,0.08));
    margin: 4px 0;
}

.csb-step-body { padding: 4px 0 28px; }

.csb-step-title {
    font-size: 0.95rem; font-weight: 700;
    color: rgba(255,255,255,0.55); margin-bottom: 6px;
    transition: color 0.3s;
}
.csb-step--active .csb-step-title { color: #fff; }

.csb-step-desc {
    font-size: 0.82rem; color: rgba(255,255,255,0.32);
    line-height: 1.7;
}

.csb-get-started-btn {
    display: inline-block; margin-top: 14px;
    padding: 11px 24px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff; text-decoration: none;
    border-radius: 10px; font-size: 0.85rem; font-weight: 700;
    box-shadow: 0 4px 16px rgba(108,60,225,0.4);
    transition: all 0.3s;
}
.csb-get-started-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,60,225,0.5); }

/* Phone mockup */
.csb-phone-frame {
    position: relative;
    width: 280px; margin: 0 auto;
    animation: csbPhoneFloat 5s ease-in-out infinite;
}
@keyframes csbPhoneFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.csb-phone-glow {
    position: absolute; bottom: -40px; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 60px;
    background: radial-gradient(ellipse, rgba(108,60,225,0.4), transparent 70%);
    pointer-events: none;
}

.csb-phone-screen {
    background: #0a0a1a;
    border-radius: 36px;
    border: 8px solid #1a1a2e;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(108,60,225,0.3),
        0 40px 80px rgba(0,0,0,0.6),
        0 0 60px rgba(108,60,225,0.15);
    min-height: 480px;
}

.csb-phone-notch {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 100px; height: 22px;
    background: #0a0a1a;
    border-radius: 0 0 14px 14px;
    z-index: 10;
}

.csb-phone-screen-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.15;
}

.csb-phone-overlay {
    position: relative; z-index: 2;
    padding: 32px 14px 14px;
}

.csb-phone-top-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 4px 0 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 12px;
}
.csb-phone-title { font-size: 13px; font-weight: 700; color: #fff; }
.csb-phone-icons { font-size: 11px; color: rgba(255,255,255,0.4); }

.csb-phone-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6px; margin-bottom: 16px;
}
.csb-phone-tab {
    background: rgba(108,60,225,0.1);
    border: 1px solid rgba(108,60,225,0.15);
    border-radius: 8px; padding: 6px 8px;
    font-size: 9px; color: rgba(255,255,255,0.5); text-align: center;
}

.csb-phone-label {
    font-size: 10px; font-weight: 700;
    color: rgba(255,255,255,0.4); margin-bottom: 8px;
    letter-spacing: 0.5px; text-transform: uppercase;
}

.csb-phone-row {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px; padding: 8px 10px;
    margin-bottom: 6px;
}
.csb-phone-coin-name { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7); }

/* ===== SECURITY ===== */
.csb-security-sec {
    background: #06060f;
    padding: 90px 40px 100px;
    border-top: 1px solid rgba(108,60,225,0.1);
    text-align: center;
}

.csb-security-inner { max-width: 1000px; margin: 0 auto; }

.csb-security-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900; color: #fff;
    letter-spacing: -1.5px; margin-bottom: 48px;
}

.csb-security-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-bottom: 48px;
}

.csb-sec-card {
    position: relative; overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(108,60,225,0.15);
    background: rgba(255,255,255,0.03);
    padding: 0;
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
    opacity: 0; transform: translateY(28px);
    cursor: default;
    min-height: 260px;
    display: flex; flex-direction: column;
}
.csb-sec-card.csb-show { opacity: 1; transform: translateY(0); }

.csb-sec-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108,60,225,0.3);
    box-shadow: 0 24px 60px rgba(108,60,225,0.15);
}

/* Image fills top/bg of card */
.csb-sec-card-bg {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 28px 20px 16px;
    position: relative;
    background: linear-gradient(160deg, rgba(108,60,225,0.1), rgba(79,70,229,0.04));
    min-height: 160px;
    overflow: hidden;
}

/* Radial glow behind image */
.csb-sec-card-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(108,60,225,0.18), transparent 70%);
}

.csb-sec-bg-img {
    max-width: 100px; max-height: 110px;
    object-fit: contain;
    position: relative; z-index: 1;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 8px 20px rgba(108,60,225,0.35));
}
.csb-sec-card:hover .csb-sec-bg-img { transform: scale(1.1) translateY(-6px); }

.csb-sec-card-body {
    padding: 20px 22px 24px;
    border-top: 1px solid rgba(108,60,225,0.1);
    text-align: center;
}

.csb-sec-card-title {
    font-size: 0.95rem; font-weight: 700;
    color: #fff; margin-bottom: 6px;
}

.csb-sec-card-desc {
    font-size: 0.82rem; color: rgba(255,255,255,0.38);
    line-height: 1.6;
}

/* CTA */
.csb-security-cta { margin-top: 8px; }
.csb-cta-btn {
    display: inline-block; padding: 15px 40px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed, #a855f7);
    color: #fff; text-decoration: none;
    border-radius: 14px; font-size: 0.95rem; font-weight: 700;
    box-shadow: 0 8px 32px rgba(108,60,225,0.45);
    transition: all 0.3s;
    position: relative; overflow: hidden;
}
.csb-cta-btn::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.csb-cta-btn:hover::before { left: 100%; }
.csb-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(108,60,225,0.6); }

/* ===== SCROLL REVEAL ===== */
.csb-reveal {
    opacity: 0; transform: translateY(32px);
    transition: all 0.8s cubic-bezier(0.22,1,0.36,1);
}
.csb-reveal.csb-show { opacity: 1; transform: translateY(0); }
.csb-reveal-left {
    opacity: 0; transform: translateX(-32px);
    transition: all 0.8s cubic-bezier(0.22,1,0.36,1);
}
.csb-reveal-left.csb-show { opacity: 1; transform: translateX(0); }
.csb-reveal-right {
    opacity: 0; transform: translateX(32px);
    transition: all 0.8s 0.15s cubic-bezier(0.22,1,0.36,1);
}
.csb-reveal-right.csb-show { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .csb-bento { grid-template-columns: 1fr 1fr; }
    .csb-card--center { grid-column: 1/-1; grid-row: auto; min-height: 400px; }
    .csb-card--wide { grid-column: 1/-1; }
    .csb-right-col { grid-column: 1/-1; flex-direction: row; }
    .csb-right-col .csb-card { flex: 1; }
    .csb-how-inner { grid-template-columns: 1fr; gap: 48px; }
    .csb-security-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
    .csb-notall-sec, .csb-how-sec, .csb-security-sec { padding: 60px 16px; }
    .csb-bento { grid-template-columns: 1fr; }
    .csb-card--center { min-height: 320px; }
    .csb-right-col { flex-direction: column; }
    .csb-security-grid { grid-template-columns: 1fr; }
    .csb-phone-frame { width: 240px; }
}