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

:root {
    --gold: #FFD700;
    --gold-dark: #D4AF37;
    --gold-light: #FFE87C;
    --black: #000000;
    --black-light: #0a0a0a;
    --black-lighter: #1a1a1a;
    --black-matte: #050505;
    --gray: #2a2a2a;
    --gray-light: #3a3a3a;
    --white: #ffffff;
    --text-gray: #cccccc;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

/* Custom Cursor */
#custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-width 0.2s ease, background 0.2s ease;
    mix-blend-mode: difference;
}

#custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

.cursor-default {
    width: 20px;
    height: 20px;
    border-width: 2px;
    background: transparent;
}

.cursor-hover {
    width: 50px;
    height: 50px;
    border-width: 2px;
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold-light);
}

.cursor-click {
    width: 15px;
    height: 15px;
    border-width: 3px;
    background: var(--gold);
}

.cursor-select {
    width: 4px;
    height: 20px;
    border-radius: 2px;
    border: none;
    background: var(--gold);
}

body.cursor-hidden #custom-cursor,
body.cursor-hidden #custom-cursor-dot {
    opacity: 0;
}

/* Fallback for devices without hover */
@media (hover: none) {
    body {
        cursor: auto;
    }
    
    #custom-cursor,
    #custom-cursor-dot {
        display: none;
    }

    /* Improve touch targets */
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Remove hover effects on touch devices */
    .money-card:hover,
    .about-panel:hover,
    .flow-step:hover,
    .social-card:hover {
        transform: none;
    }

    /* Better tap feedback */
    a:active,
    button:active,
    .btn:active,
    .social-card:active,
    .money-card:active {
        opacity: 0.7;
        transform: scale(0.98);
    }

    /* Prevent text selection issues on mobile */
    * {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }

    p, span, div, h1, h2, h3, h4, h5, h6 {
        -webkit-user-select: text;
        user-select: text;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    border-radius: 5px;
    border: 2px solid var(--black);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--black);
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    display: inline-block;
    vertical-align: -0.15em;
}

#cursor-glow {
    position: fixed;
    left: 0;
    top: 0;
    width: 520px;
    height: 520px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.14) 0%, rgba(255, 215, 0, 0.06) 25%, rgba(0, 0, 0, 0) 65%);
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
    filter: blur(2px);
    opacity: 0.9;
}

/* Music Toggle Button */
.music-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.music-toggle.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.music-toggle:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold-light);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
    transform: scale(1.1);
}

.music-toggle:active {
    transform: scale(0.95);
}

.music-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.music-icon-pause {
    display: none;
}

.music-toggle.playing .music-icon-play {
    display: none;
}

.music-toggle.playing .music-icon-pause {
    display: block;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-network {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-gray);
    letter-spacing: 1px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 215, 0, 0.16) 0%, rgba(0, 0, 0, 0) 55%),
        radial-gradient(circle at 80% 40%, rgba(255, 215, 0, 0.10) 0%, rgba(0, 0, 0, 0) 50%),
        linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0) 35%),
        repeating-linear-gradient(
            90deg,
            rgba(255, 215, 0, 0.05) 0,
            rgba(255, 215, 0, 0.05) 1px,
            rgba(0, 0, 0, 0) 1px,
            rgba(0, 0, 0, 0) 46px
        );
    z-index: 0;
}

.hero-background canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.65;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Amex Card */
.card-showcase {
    margin: 4rem 0;
    perspective: 1200px;
}

.amex-card {
    --rx: 0deg;
    --ry: 0deg;
    --mx: 50%;
    --my: 50%;
    width: 100%;
    max-width: 400px;
    height: 250px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--black-matte) 0%, #111 60%, #070707 100%);
    border: 1px solid rgba(255, 215, 0, 0.45);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.75),
        0 14px 40px rgba(255, 215, 0, 0.12);
    transform-style: preserve-3d;
    transform: rotateX(var(--rx)) rotateY(var(--ry));
    transition: transform 220ms ease, box-shadow 220ms ease;
    will-change: transform;
}

.amex-card::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.14);
    pointer-events: none;
}

.amex-card:hover {
    box-shadow:
        0 26px 90px rgba(0, 0, 0, 0.78),
        0 18px 55px rgba(255, 215, 0, 0.22);
}

.card-layer {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
}

.card-texture {
    background:
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(0, 0, 0, 0) 2px,
            rgba(0, 0, 0, 0) 8px
        ),
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.08) 0%, rgba(0, 0, 0, 0) 50%),
        radial-gradient(circle at 75% 70%, rgba(255, 215, 0, 0.06) 0%, rgba(0, 0, 0, 0) 55%);
    opacity: 0.95;
    filter: contrast(1.1);
}

.card-shine {
    background:
        radial-gradient(
            420px circle at var(--mx) var(--my),
            rgba(255, 215, 0, 0.20) 0%,
            rgba(255, 215, 0, 0.10) 22%,
            rgba(255, 215, 0, 0.00) 55%
        );
    opacity: 0.9;
    mix-blend-mode: screen;
    transition: opacity 220ms ease;
}

.amex-card:hover .card-shine {
    opacity: 1;
}

.card-top,
.card-mid,
.card-bottom {
    position: relative;
    z-index: 1;
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.75rem;
}

.card-mark {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.card-emblem {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 232, 124, 0.85) 0%, rgba(255, 215, 0, 0.35) 35%, rgba(0, 0, 0, 0) 65%),
        linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(212, 175, 55, 0.75) 50%, rgba(255, 232, 124, 0.85) 100%);
    box-shadow: 0 8px 22px rgba(255, 215, 0, 0.18);
    position: relative;
    overflow: hidden;
}

.card-emblem::after {
    content: '';
    position: absolute;
    inset: -30%;
    background: conic-gradient(from 180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(255, 255, 255, 0.28) 60%, rgba(0,0,0,0) 75%, rgba(0,0,0,0) 100%);
    animation: emblemSpin 4.2s linear infinite;
    opacity: 0.65;
}

@keyframes emblemSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-brand-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: rgba(255, 232, 124, 0.95);
    text-transform: uppercase;
}

.card-brand-sub {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: rgba(204, 204, 204, 0.8);
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.card-tier {
    font-size: 0.75rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 215, 0, 0.85);
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.22);
    background: rgba(0, 0, 0, 0.25);
}

.card-chip {
    width: 54px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(212, 175, 55, 0.85) 100%);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}

.card-chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 22px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px rgba(255, 232, 124, 0.22);
}

.card-mid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.card-number {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
}

.card-meta {
    text-align: left;
}

.meta-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(204, 204, 204, 0.75);
    margin-bottom: 0.35rem;
}

.meta-value {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 232, 124, 0.92);
    font-weight: 700;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    background: var(--black-light);
}

.about-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: stretch;
}

.about-panel {
    background: radial-gradient(circle at 0% 0%, rgba(255, 215, 0, 0.12) 0%, rgba(0,0,0,0) 50%), var(--black-lighter);
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 2rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-panel::after {
    content: '';
    position: absolute;
    width: 180%;
    height: 180%;
    left: -40%;
    top: -40%;
    background: radial-gradient(circle at 0% 0%, rgba(255, 232, 124, 0.18) 0%, rgba(0,0,0,0) 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.about-panel:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
}

.about-panel:hover::after {
    opacity: 1;
}

.about-panel-main {
    grid-row: span 2;
}

.lead {
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-panel-main p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.about-panel h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-panel p {
    color: var(--text-gray);
    font-size: 0.98rem;
}

.about-panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.about-pill {
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    background: rgba(0, 0, 0, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 232, 124, 0.92);
}

/* Liquidity Section */
.liquidity {
    background: var(--black);
}

.liquidity-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.liquidity-card {
    background: var(--black-lighter);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.liquidity-card h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

.liquidity-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

.flow-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    background: radial-gradient(circle at 0% 0%, rgba(255, 215, 0, 0.2) 0%, rgba(0,0,0,0) 55%), #050505;
    border: 1px solid rgba(255, 215, 0, 0.28);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.85);
    border-color: var(--gold);
}

.flow-step-number {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 232, 124, 0.9);
    padding-top: 0.25rem;
}

.flow-step-body h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.flow-step-body p {
    color: var(--text-gray);
    font-size: 0.98rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.check-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 800;
    font-size: 1.2rem;
}

.benefits-list li div strong {
    display: block;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefits-list li div p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background: var(--black-light);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background: var(--black-lighter);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    display: block;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.social-icon {
    color: var(--gold);
    margin-bottom: 1rem;
}

.social-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.footer-domain {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-note {
    font-size: 0.9rem;
    color: rgba(204, 204, 204, 0.7);
}

/* Money Ready Section */
.money-ready {
    background: radial-gradient(circle at 0% 0%, rgba(255, 215, 0, 0.15) 0%, rgba(0,0,0,0) 50%), var(--black);
    position: relative;
    overflow: hidden;
}

.money-ready::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 80% 0%, rgba(255, 215, 0, 0.12) 0%, rgba(0,0,0,0) 55%);
    opacity: 0.9;
    pointer-events: none;
}

.money-ready-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr);
    gap: 2.75rem;
    align-items: stretch;
}

.money-copy {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.money-title {
    font-size: clamp(2.4rem, 5vw, 3.3rem);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
}

.money-lead {
    font-size: 1.25rem;
    color: rgba(255, 232, 124, 0.95);
    font-weight: 500;
}

.money-body {
    font-size: 1.02rem;
    color: var(--text-gray);
}

.money-cta {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.money-btn {
    box-shadow: 0 14px 40px rgba(255, 215, 0, 0.4);
}

.money-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(204, 204, 204, 0.85);
}

.money-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-content: start;
}

.money-card {
    background: rgba(5, 5, 5, 0.95);
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 1.6rem 1.7rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.money-card::after {
    content: '';
    position: absolute;
    width: 160%;
    height: 160%;
    left: -30%;
    top: -50%;
    background: radial-gradient(circle at 0% 0%, rgba(255, 215, 0, 0.24) 0%, rgba(0,0,0,0) 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.money-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 1);
}

.money-card:hover::after {
    opacity: 1;
}

.money-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: rgba(204, 204, 204, 0.9);
}

.money-card h3 {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
    color: var(--gold);
    font-size: 1.15rem;
}

.money-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.money-pill-row {
    grid-column: span 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.money-pill {
    padding: 0.45rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    background: rgba(0, 0, 0, 0.75);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 232, 124, 0.98);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        border-left: 1px solid rgba(255, 215, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-brand {
        gap: 0.3rem;
    }

    .logo-text,
    .logo-network {
        font-size: 1.2rem;
    }

    .hero {
        padding-top: 80px;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .about-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }

    .about-panel-main {
        grid-row: auto;
    }

    .about-panel {
        padding: 1.5rem;
    }

    .liquidity-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }

    .liquidity-card {
        padding: 2rem 1.5rem;
    }

    .flow-step {
        padding: 1.5rem;
    }

    .money-ready-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }

    .money-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .money-pill-row {
        grid-column: span 1;
    }

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

    .social-links {
        grid-template-columns: 1fr;
    }

    .social-card {
        padding: 2rem;
        min-height: 48px;
    }

    .amex-card {
        max-width: 100%;
        height: 220px;
        padding: 1.5rem;
    }

    .card-number {
        font-size: 0.95rem;
    }

    .music-toggle {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 52px;
        height: 52px;
    }

    .money-btn {
        width: 100%;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 100%;
        right: -100%;
    }

    .logo-text,
    .logo-network {
        font-size: 0.95rem;
    }

    .hero {
        padding-top: 70px;
        min-height: 90vh;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 5vw, 1.5rem);
    }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    .amex-card {
        max-width: 100%;
        height: 200px;
        padding: 1.25rem;
    }

    .card-number {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }

    .card-brand-title {
        font-size: 0.85rem;
    }

    .card-brand-sub {
        font-size: 0.65rem;
    }

    .card-tier {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
    }

    .about-panel {
        padding: 1.25rem;
    }

    .lead {
        font-size: 1.25rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .liquidity-card {
        padding: 1.5rem 1.25rem;
    }

    .liquidity-card h3 {
        font-size: 1.5rem;
    }

    .benefits-list li {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .check-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .flow-step {
        padding: 1.25rem;
    }

    .flow-step-number {
        font-size: 2rem;
    }

    .money-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .money-lead {
        font-size: 1.1rem;
    }

    .money-body {
        font-size: 0.95rem;
    }

    .money-card {
        padding: 1.4rem 1.3rem;
    }

    .money-card h3 {
        font-size: 1.05rem;
    }

    .money-card p {
        font-size: 0.9rem;
    }

    .money-pill {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .contact-description {
        font-size: 1.1rem;
    }

    .music-toggle {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
    }

    .music-icon {
        width: 20px;
        height: 20px;
    }
}
