/* ============================================
   XORA — THE XRP NEOBANK
   Metallic Chrome Design System v2
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    --bg: #050505;
    --bg-secondary: #0c0c0c;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.06);
    --white: #f5f5f5;
    --dim: #999;
    --dim-light: #bbb;
    --accent: #e0e0e0;
    --accent-mid: #c0c0c0;
    --accent-end: #a0a0a0;
    --accent-glow: rgba(255, 255, 255, 0.12);
    --accent-dim: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
    --card: rgba(255, 255, 255, 0.025);
    --card-hover: rgba(255, 255, 255, 0.04);
    --green: #00d68f;
    --green-dim: rgba(0, 214, 143, 0.12);
    --red: #ff5252;
    --font: 'Outfit', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --gradient-text: linear-gradient(135deg, #fff 0%, #ccc 50%, #999 100%);
    --gradient-accent: linear-gradient(135deg, #fff, #ccc, #999);
    --chrome-shine: linear-gradient(105deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 60%, rgba(255, 255, 255, 0) 100%);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--accent);
    color: #000;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

/* ===== AMBIENT BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(ellipse 800px 600px at 30% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 70%),
        radial-gradient(ellipse 600px 600px at 70% 70%, rgba(255, 255, 255, 0.015) 0%, transparent 70%);
    animation: ambientDrift 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(0, 0, 0, 0.8) 50%, var(--bg) 100%);
}

@keyframes ambientDrift {

    0%,
    100% {
        opacity: .5;
        transform: scale(1) rotate(0deg);
    }

    33% {
        opacity: .8;
        transform: scale(1.05) rotate(0.5deg);
    }

    66% {
        opacity: .6;
        transform: scale(1.08) rotate(-0.3deg);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 var(--accent-glow);
    }

    50% {
        opacity: .4;
        box-shadow: 0 0 0 8px transparent;
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.01% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes chromeSweep {
    from {
        left: -100%;
    }

    to {
        left: 200%;
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.08);
    }

    33% {
        border-color: rgba(255, 255, 255, 0.08);
    }

    66% {
        border-color: rgba(255, 255, 255, 0.06);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(1deg);
    }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
    transition-delay: var(--delay, 0s);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.025) 40%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity .3s;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

/* ===== TICKER ===== */
.ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--gradient-accent);
    background-size: 200% 100%;
    animation: gradientShift 8s ease-in-out infinite;
    overflow: hidden;
    height: 30px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
    font-family: var(--mono);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .25em;
    color: #000;
    padding: 0 18px;
}

.ticker-dot {
    color: rgba(0, 0, 0, .35);
    font-size: .7rem;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 60px;
    background: rgba(5, 5, 5, .9);
    backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    transition: border-color 0.5s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .2em;
}

.nav-logo-icon {
    width: 24px;
    height: 24px;
}

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

.nav-link {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--dim);
    position: relative;
    padding-bottom: 2px;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-accent);
    transition: width .3s;
}

.nav-link:hover {
    color: var(--white);
    opacity: 1;
}

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

.btn-nav {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    padding: .6rem 1.5rem;
    background: var(--gradient-accent);
    background-size: 200% 100%;
    color: #000;
    border: none;
    cursor: pointer;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.btn-nav:hover {
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    background-position: 100% 50%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: all .3s;
}

/* ===== BUTTONS ===== */
.btn-primary {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .85rem 2rem;
    background: var(--gradient-accent);
    background-size: 200% 100%;
    color: #000;
    border: none;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all .4s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 2px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
    animation: chromeSweep 3s ease-in-out infinite;
}

.btn-primary:hover {
    box-shadow: 0 0 40px var(--accent-glow), 0 4px 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    opacity: 1;
    background-position: 100% 50%;
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: .75rem;
}

.btn-ghost {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    padding: .85rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--accent);
    cursor: pointer;
    transition: all .4s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.btn-ghost:hover::before {
    opacity: 1;
}

.btn-ghost:hover {
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 30px var(--accent-glow);
    opacity: 1;
}

.btn-arrow {
    font-size: 1rem;
    transition: transform .3s;
}

.btn-primary:hover .btn-arrow,
.btn-ghost:hover .btn-arrow {
    transform: translateX(6px);
}

/* ===== UTILITY ===== */
.blink {
    animation: blink 1s step-end infinite;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-glow);
}

.tag {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10rem 5rem 4rem;
    position: relative;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    opacity: 0;
    animation: slideUp 1.2s .3s cubic-bezier(.16, 1, .3, 1) forwards;
    z-index: 2;
}

.hero-tag {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .35em;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Override for children that need their own color */
.hero-tag .pulse-dot {
    -webkit-text-fill-color: initial;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -.04em;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
}

.hero-title .accent {
    background: linear-gradient(135deg, #e8e8e8 0%, #ffffff 20%, #b0b0b0 40%, #ffffff 60%, #d0d0d0 80%, #ffffff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.25));
    animation: metallicShine 4s ease-in-out infinite;
    text-shadow: none;
    position: relative;
}

.hero-title .accent::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-text-fill-color: transparent;
    background: none;
    text-shadow:
        0 1px 0 rgba(180, 180, 180, 0.6),
        0 2px 0 rgba(160, 160, 160, 0.5),
        0 3px 0 rgba(140, 140, 140, 0.4),
        0 4px 0 rgba(120, 120, 120, 0.3),
        0 5px 0 rgba(100, 100, 100, 0.2),
        0 6px 0 rgba(80, 80, 80, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.6),
        0 12px 40px rgba(0, 0, 0, 0.4);
}

@keyframes metallicShine {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-sub {
    font-size: .95rem;
    color: var(--dim);
    line-height: 1.8;
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hero-stat-value {
    font-family: var(--mono);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.hero-stat-label {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .15em;
    color: var(--dim);
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ===== HERO 3D CANVAS ===== */
.hero-3d-container {
    flex: 0 0 480px;
    height: 480px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 2s .6s ease forwards;
}

.hero-3d-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: var(--gradient-accent);
    animation: scrollDown 2s ease-in-out infinite;
}

/* ===== FEATURES ===== */
.section-features {
    padding: 7rem 5rem;
    border-top: 1px solid var(--border);
}

.features-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: .9rem;
    color: var(--dim);
    line-height: 1.8;
    font-weight: 300;
}

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    transition: all .5s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--chrome-shine);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, .1);
    background: var(--card-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4), 0 0 30px rgba(255, 255, 255, 0.04);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.feature-title {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: .8rem;
}

.feature-desc {
    font-size: .85rem;
    color: var(--dim);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.feature-stat {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.feature-stat-value {
    font-family: var(--mono);
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-stat-label {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .15em;
    color: var(--dim);
    text-transform: uppercase;
}

/* ===== YIELD ===== */
.section-yield {
    padding: 7rem 5rem;
    border-top: 1px solid var(--border);
}

.yield-content {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.yield-left {
    flex: 0 0 360px;
    position: sticky;
    top: 120px;
}

.yield-left h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}

.yield-desc {
    font-size: .9rem;
    color: var(--dim);
    line-height: 1.8;
    font-weight: 300;
}

.yield-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.yield-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2rem 2.5rem;
    transition: all .5s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
}

.yield-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--chrome-shine);
    opacity: 0;
    transition: opacity 0.5s;
}

.yield-card:hover::before {
    opacity: 1;
}

.yield-card:hover {
    border-color: rgba(255, 255, 255, .08);
    background: var(--card-hover);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .3), 0 0 20px rgba(255, 255, 255, 0.03);
}

.yield-card-featured {
    border-color: rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .02);
    animation: borderGlow 6s ease-in-out infinite;
}

.yield-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.yield-tier-badge {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
    border: 1px solid;
    border-radius: 2px;
}

.tier-safe {
    color: var(--green);
    border-color: rgba(0, 214, 143, .3);
    background: rgba(0, 214, 143, .05);
}

.tier-moderate {
    color: #ffa726;
    border-color: rgba(255, 167, 38, .3);
    background: rgba(255, 167, 38, .05);
}

.tier-aggressive {
    color: var(--accent);
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .05);
}

.yield-card-name {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--dim);
}

.yield-card-apy {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.yield-apy-value {
    font-family: var(--mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.yield-apy-unit {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .15em;
    color: var(--dim);
}

.yield-card-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.yield-detail-label {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .15em;
    color: var(--dim);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.yield-detail-value {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--white);
    display: block;
}

/* ===== HOW / SECURITY ===== */
.section-how {
    padding: 7rem 5rem;
    border-top: 1px solid var(--border);
}

.how-content {
    display: flex;
    gap: 5rem;
}

.how-left {
    flex: 0 0 320px;
    position: sticky;
    top: 120px;
}

.how-left h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
}

.how-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.how-step {
    display: flex;
    gap: 2rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    transition: all 0.4s;
}

.how-step:hover {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.step-num {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .2em;
    flex-shrink: 0;
    padding-top: 4px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-title {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: .8rem;
}

.step-content p {
    font-size: .85rem;
    color: var(--dim);
    line-height: 1.8;
    font-weight: 300;
}

/* ===== ROADMAP ===== */
.section-roadmap {
    padding: 7rem 5rem;
    border-top: 1px solid var(--border);
}

.roadmap-header {
    margin-bottom: 4rem;
}

.roadmap-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
}

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

.roadmap-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    transition: all .5s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--chrome-shine);
    opacity: 0;
    transition: opacity 0.5s;
}

.roadmap-card:hover::before {
    opacity: 1;
}

.roadmap-card:hover {
    border-color: rgba(255, 255, 255, .08);
    background: var(--card-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4), 0 0 20px rgba(255, 255, 255, 0.03);
}

.roadmap-quarter {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-title {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.roadmap-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.roadmap-list li {
    font-size: .8rem;
    color: var(--dim);
    font-weight: 300;
    padding-left: 18px;
    position: relative;
}

.roadmap-list li::before {
    content: '\25CB';
    position: absolute;
    left: 0;
    color: var(--dim);
    font-size: .7rem;
    top: 3px;
}

.roadmap-done {
    color: var(--green) !important;
}

.roadmap-done::before {
    content: '\25CF' !important;
    color: var(--green) !important;
}

/* ===== DASHBOARD PREVIEW ===== */
.section-preview {
    padding: 7rem 5rem;
    border-top: 1px solid var(--border);
}

.preview-header {
    max-width: 600px;
    margin-bottom: 3rem;
}

.preview-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
}

.preview-mockup {
    max-width: 1000px;
    margin: 0 auto;
}

.mockup-window {
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(8, 8, 8, .9);
    box-shadow: 0 40px 120px rgba(0, 0, 0, .6), 0 0 60px rgba(255, 255, 255, .04);
}

.mockup-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .03);
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.mockup-dots span:first-child {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #febc2e;
}

.mockup-dots span:last-child {
    background: #28c840;
}

.mockup-url {
    font-family: var(--mono);
    font-size: .75rem;
    color: var(--dim);
    letter-spacing: .1em;
    background: rgba(255, 255, 255, .03);
    padding: 4px 16px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.mockup-body {
    display: flex;
    min-height: 380px;
}

.mockup-sidebar {
    width: 160px;
    border-right: 1px solid var(--border);
    padding: 16px 0;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .01);
}

.mockup-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .1em;
    color: var(--dim);
    cursor: default;
    transition: all .3s;
}

.mockup-sidebar-item.active {
    color: var(--white);
    background: rgba(255, 255, 255, .06);
    border-right: 2px solid var(--accent);
}

.mockup-sidebar-icon {
    font-size: .75rem;
}

.mockup-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-balance-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mockup-balance-card,
.mockup-yield-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    position: relative;
    overflow: hidden;
}

.mockup-balance-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, .03));
    pointer-events: none;
}

.mockup-balance-label {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .2em;
    color: var(--dim);
    margin-bottom: 8px;
}

.mockup-balance-value {
    font-family: var(--mono);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.mockup-xrp {
    font-size: .75rem;
    color: var(--dim);
    font-weight: 400;
}

.mockup-balance-usd {
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--dim);
}

.mockup-balance-change {
    font-family: var(--mono);
    font-size: .7rem;
    margin-top: 6px;
}

.mockup-balance-change.positive {
    color: var(--green);
}

.mockup-balance-change.negative {
    color: var(--red);
}

.mockup-yield-value {
    font-family: var(--mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 4px;
}

.mockup-yield-apy {
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--accent);
    margin-top: 6px;
}

.mockup-chart-area {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
}

.mockup-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mockup-chart-title {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .2em;
    color: var(--dim);
}

.mockup-chart-tabs {
    display: flex;
    gap: 8px;
}

.mockup-chart-tabs span {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .1em;
    color: var(--dim);
    padding: 3px 8px;
    border-radius: 3px;
    cursor: default;
}

.mockup-chart-tabs span.active {
    background: rgba(255, 255, 255, .08);
    color: var(--accent);
}

.mockup-chart-area canvas {
    width: 100% !important;
    height: 120px !important;
    display: block;
}

.mockup-transactions {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 20px;
}

.mockup-tx-header {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .2em;
    color: var(--dim);
    margin-bottom: 10px;
}

.mockup-tx-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, .03);
}

.mockup-tx-row:first-of-type {
    border-top: none;
}

.mockup-tx-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    flex-shrink: 0;
}

.mockup-tx-icon.deposit {
    background: rgba(0, 214, 143, .08);
    color: var(--green);
}

.mockup-tx-icon.yield {
    background: rgba(255, 255, 255, .06);
    color: var(--accent);
}

.mockup-tx-icon.send {
    background: rgba(255, 68, 68, .08);
    color: var(--red);
}

.mockup-tx-desc {
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--dim-light);
    flex: 1;
}

.mockup-tx-amount {
    font-family: var(--mono);
    font-size: .7rem;
    font-weight: 700;
}

.mockup-tx-amount.positive {
    color: var(--green);
}

.mockup-tx-amount.negative {
    color: var(--red);
}

/* ===== HOW IT WORKS ===== */
.section-howitworks {
    padding: 7rem 5rem;
    border-top: 1px solid var(--border);
}

.howitworks-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.howitworks-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
}

.howitworks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.howitworks-step {
    padding: 2.5rem;
    border: 1px solid var(--border);
    background: var(--card);
    position: relative;
    overflow: hidden;
    transition: all .5s cubic-bezier(.16, 1, .3, 1);
}

.howitworks-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--chrome-shine);
    opacity: 0;
    transition: opacity .5s;
}

.howitworks-step:hover::before {
    opacity: 1;
}

.howitworks-step:hover {
    border-color: rgba(255, 255, 255, .1);
    background: var(--card-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.howitworks-num {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .2em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.howitworks-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.howitworks-title {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: .8rem;
}

.howitworks-desc {
    font-size: .8rem;
    color: var(--dim);
    line-height: 1.8;
    font-weight: 300;
}

.howitworks-connector {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.howitworks-connector::after {
    content: '→';
    font-family: var(--mono);
    font-size: .8rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== PARTNERS ===== */
.section-partners {
    padding: 4rem 5rem;
    border-top: 1px solid var(--border);
}

.partners-content {
    text-align: center;
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: .5;
    transition: opacity .4s;
}

.partner-item:hover {
    opacity: 1;
}

.partner-logo {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, .02);
}

.partner-name {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .15em;
    color: var(--dim);
    text-transform: uppercase;
}

.partner-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== FAQ ===== */
.section-faq {
    padding: 7rem 5rem;
    border-top: 1px solid var(--border);
}

.faq-header {
    max-width: 600px;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-top: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .1em;
    font-weight: 600;
    text-align: left;
    transition: color .3s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-toggle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--dim);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), color .3s;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.16, 1, .3, 1), padding .5s;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: .85rem;
    color: var(--dim);
    line-height: 1.9;
    font-weight: 300;
    max-width: 700px;
}

/* ===== WAITLIST CTA ===== */
.section-cta {
    padding: 8rem 5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, .04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-sub {
    font-size: .9rem;
    color: var(--dim);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
}

.waitlist-form {
    margin-bottom: 1.5rem;
}

.waitlist-input-wrapper {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color .3s;
}

.waitlist-input-wrapper:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(255, 255, 255, .06);
}

.waitlist-input {
    flex: 1;
    background: rgba(255, 255, 255, .02);
    border: none;
    padding: .85rem 1.2rem;
    color: var(--white);
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .15em;
    outline: none;
}

.waitlist-input::placeholder {
    color: var(--dim);
}

.waitlist-btn {
    border-radius: 0;
    border: none;
    flex-shrink: 0;
}

.waitlist-status {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .1em;
    margin-top: .8rem;
    min-height: 1.2rem;
}

.waitlist-status.success {
    color: var(--green);
}

.waitlist-status.error {
    color: var(--red);
}

.waitlist-counter {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.waitlist-count {
    font-family: var(--mono);
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-label {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .15em;
    color: var(--dim);
}

.cta-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.cta-links a {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--dim);
    transition: color .3s;
}

.cta-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.dot {
    color: var(--dim);
    font-size: .7rem;
}

/* ===== ENHANCED FOOTER ===== */
.footer-enhanced {
    border-top: 1px solid var(--border);
    padding: 4rem 5rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-text {
    font-family: var(--mono);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .2em;
}

.footer-tagline {
    font-size: .8rem;
    color: var(--dim);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-social {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: .7rem;
    color: var(--dim);
    transition: all .3s;
    text-decoration: none;
}

.footer-social:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 255, 255, .04);
    opacity: 1;
}

.footer-col-title {
    font-family: var(--mono);
    font-size: .7rem;
    letter-spacing: .25em;
    color: var(--white);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-link {
    display: block;
    font-size: .75rem;
    color: var(--dim);
    padding: 4px 0;
    font-weight: 300;
    transition: color .3s;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--white);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
}

.footer-copy {
    font-family: var(--mono);
    font-size: .75rem;
    letter-spacing: .15em;
    color: var(--dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 10rem 1.5rem 3rem;
        text-align: center;
    }

    .hero-3d-container {
        flex: none;
        width: 100%;
        height: 320px;
        order: -1;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .yield-content,
    .how-content {
        flex-direction: column;
    }

    .yield-left,
    .how-left {
        position: static;
        flex: none;
    }

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

    .howitworks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .howitworks-connector {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 90px);
        background: rgba(3, 0, 20, .97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-left: 1px solid var(--border);
        transition: right .3s cubic-bezier(.16, 1, .3, 1);
    }

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

    .hamburger {
        display: flex;
    }

    .section-features,
    .section-yield,
    .section-how,
    .section-roadmap,
    .section-cta,
    .section-faq,
    .section-preview,
    .section-howitworks {
        padding: 4rem 1.5rem;
    }

    .section-partners {
        padding: 3rem 1.5rem;
    }

    .mockup-sidebar {
        display: none;
    }

    .mockup-balance-row {
        grid-template-columns: 1fr;
    }

    .footer-enhanced {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: none;
        grid-column: 1/-1;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.2rem;
    }

    .hero-stat-divider {
        width: 30px;
        height: 1px;
    }

    .yield-card-details {
        grid-template-columns: 1fr;
        gap: .5rem;
    }

    .cta-links {
        flex-direction: column;
        gap: .8rem;
    }

    .cta-links .dot {
        display: none;
    }

    .hero-3d-container {
        height: 260px;
    }

    .partner-divider {
        display: none;
    }

    .partners-grid {
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .waitlist-input-wrapper {
        flex-direction: column;
    }

    .waitlist-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== LUCIDE ICON SIZING ===== */
.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.howitworks-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.partner-logo svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}