:root {
    --brand: #d4ff00;
    --brand-2: #e5ff4d;
    --brand-glow: rgba(212, 255, 0, 0.15);
    --bg: #09090b;
    --surface: #121214;
    --surface-hover: #1c1c1f;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
}

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-brand {
    color: var(--brand) !important;
}

.text-gradient {
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-section h1 .text-gradient {
    background: linear-gradient(135deg, var(--brand), #a3e635);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cw-navbar {
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-dark .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.navbar-dark .nav-link:hover {
    color: var(--text-primary);
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--brand);
    font-weight: 700;
    color: #000;
    box-shadow: 0 2px 10px var(--brand-glow);
}

.logo-mark.small {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    border-radius: 8px;
}

.btn-brand {
    background: var(--brand);
    color: #000;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 14px var(--brand-glow);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-brand:hover {
    background: var(--brand-2);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 255, 0, 0.25);
}

.btn-outline-light {
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-store {
    background: var(--surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 16px;
    font-weight: 500;
    padding: 0.85rem 1.6rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-store:hover {
    background: var(--surface-hover);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.hero-section {
    padding-top: 130px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.badge-live {
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.badge-live .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.badge-network {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.wallet-card {
    width: 100%;
    max-width: 380px;
    background: rgba(18, 18, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.wallet-btn {
    padding: 0.8rem 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.wallet-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

.wallet-row {
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 0.5rem;
}

.trust-bar {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
}

.section-py {
    padding: 7rem 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.feature-card {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: var(--surface);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 255, 0, 0.2);
    background: var(--surface-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.check-dot {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--brand-glow);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.security-panel {
    border-radius: 32px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.security-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), #a3e635);
}

.screenshot-card {
    border-radius: 24px;
    background: var(--surface);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.screenshot-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.screenshot-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.screenshot-card:hover img {
    opacity: 1;
}

.cta-box {
    border-radius: 32px;
    background: var(--surface);
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem !important;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.accordion-item {
    background: var(--surface) !important;
    border: 1px solid var(--border-color) !important;
    margin-bottom: 1rem;
    border-radius: 20px !important;
    overflow: hidden;
}

.accordion-button {
    background: transparent !important;
    color: var(--text-primary) !important;
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.02) !important;
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1);
    opacity: 0.7;
}

.accordion-body {
    background: transparent;
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--text-primary);
}