/* DogeSwap Landing Page Styles - Vanilla CSS */

:root {
    /* Doge Gold Palette */
    --gold-50: #fffbeb;
    --gold-100: #fef3c7;
    --gold-200: #fde68a;
    --gold-300: #fcd34d;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --gold-700: #b45309;

    /* Dark Theme */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: rgba(26, 26, 37, 0.7);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Accents */
    --accent-green: #22c55e;
    --accent-red: #ef4444;
    --accent-blue: #3b82f6;

    /* Effects */
    --glow-gold: 0 0 60px rgba(251, 191, 36, 0.3);
    --glow-gold-intense: 0 0 100px rgba(251, 191, 36, 0.5);

    /* Fonts */
    --font-display: 'Dela Gothic One', cursive;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Animated Background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(251, 191, 36, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15), transparent 70%);
}

.bg-glow-2 {
    bottom: 20%;
    left: -300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1), transparent 70%);
}

/* Floating Doge Coins */
.floating-coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.doge-coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow:
        0 4px 15px rgba(251, 191, 36, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: float 20s infinite linear;
    opacity: 0.6;
}

.doge-coin::before {
    content: 'Ð';
    font-family: var(--font-display);
    color: var(--bg-primary);
}

.doge-coin:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
.doge-coin:nth-child(2) { left: 20%; animation-delay: -5s; animation-duration: 20s; width: 30px; height: 30px; font-size: 16px; }
.doge-coin:nth-child(3) { left: 35%; animation-delay: -10s; animation-duration: 28s; }
.doge-coin:nth-child(4) { left: 50%; animation-delay: -15s; animation-duration: 22s; width: 25px; height: 25px; font-size: 14px; }
.doge-coin:nth-child(5) { left: 65%; animation-delay: -7s; animation-duration: 30s; }
.doge-coin:nth-child(6) { left: 80%; animation-delay: -12s; animation-duration: 24s; width: 35px; height: 35px; font-size: 18px; }
.doge-coin:nth-child(7) { left: 90%; animation-delay: -3s; animation-duration: 26s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* Navigation */
nav, .landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled, .landing-nav.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(10, 10, 15, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--bg-primary);
    box-shadow: var(--glow-gold);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(251, 191, 36, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(251, 191, 36, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 16px;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* Main Content */
main, .landing-main {
    position: relative;
    z-index: 10;
}

section {
    padding: 6rem 2rem;
}

.container, .section-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Landing Page Layout */
.landing-page {
    min-height: 100vh;
    position: relative;
}

.landing-main {
    padding-top: 80px;
}

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

.hero-content, .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--gold-400);
    margin-bottom: 1.5rem;
}

/* Also support green variant */
.hero-badge.green {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--accent-green);
}

.hero-badge .pulse, .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1, .hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 .gold, .hero-title .gold, .gold {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-400);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual - Swap Card Preview */
.hero-visual {
    position: relative;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.swap-preview {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 24px;
    padding: 1.5rem;
    max-width: 420px;
    margin-left: auto;
    box-shadow:
        var(--glow-gold),
        0 20px 60px rgba(0, 0, 0, 0.4);
}

.swap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.swap-title {
    font-weight: 600;
    font-size: 1.125rem;
}

.swap-settings {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swap-settings:hover {
    background: rgba(251, 191, 36, 0.1);
}

.swap-settings svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.token-input {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.token-input-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.token-input-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.token-amount {
    flex: 1;
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 600;
    background: transparent;
    border: none;
    color: var(--text-primary);
    outline: none;
}

.token-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.token-selector:hover {
    background: rgba(255, 255, 255, 0.1);
}

.token-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

.token-icon.wdoge, .token-icon-doge {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--bg-primary);
}

.token-icon.usdc, .token-icon-usdc {
    background: linear-gradient(135deg, #2775CA, #1A5BB5);
    color: white;
}

.token-icon-usdt {
    background: linear-gradient(135deg, #26A17B, #1F8A6C);
    color: white;
}

.token-icon-eth {
    background: linear-gradient(135deg, #627EEA, #4A6CD4);
    color: white;
}

.token-icon-btc {
    background: linear-gradient(135deg, #F7931A, #E68A17);
    color: white;
}

.token-icon-default {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
}

.token-icon.offset {
    margin-left: -12px;
    border: 3px solid var(--bg-card);
}

.token-symbol {
    font-weight: 600;
}

.swap-arrow-container {
    display: flex;
    justify-content: center;
    margin: -0.75rem 0;
    position: relative;
    z-index: 1;
}

.swap-arrow {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 4px solid var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swap-arrow:hover {
    background: var(--gold-500);
    transform: rotate(180deg);
}

.swap-arrow:hover svg {
    color: var(--bg-primary);
}

.swap-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--gold-400);
    transition: color 0.3s ease;
}

.swap-info {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(251, 191, 36, 0.05);
    border-radius: 12px;
    margin: 1rem 0;
    font-size: 0.875rem;
}

.swap-info-label {
    color: var(--text-muted);
}

.swap-info-value {
    color: var(--gold-400);
    font-weight: 500;
}

.swap-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border: none;
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bg-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.swap-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
}

/* Live Stats Bar */
.stats-bar {
    padding: 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(251, 191, 36, 0.1);
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-value .prefix {
    color: var(--gold-400);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title .gold {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    background: var(--bg-primary);
    padding: 6rem 2rem;
}

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

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 191, 36, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold-400);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.375rem 0.75rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--gold-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* How It Works */
.how-it-works-section {
    background: var(--bg-secondary);
    padding: 6rem 2rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--gold-400) 20%,
        var(--gold-400) 80%,
        transparent);
    opacity: 0.3;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--bg-primary);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--glow-gold);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold-400);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-connector {
    display: none;
}

/* Pools Section */
.pools-section {
    background: var(--bg-primary);
    padding: 6rem 2rem;
}

.pools-table {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
}

.pools-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 120px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pool-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 120px;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    align-items: center;
    transition: background 0.3s ease;
}

.pool-row:hover {
    background: rgba(251, 191, 36, 0.03);
}

.pool-row:last-child {
    border-bottom: none;
}

.col-pool {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pool-tokens {
    display: flex;
}

.pool-tokens .token-icon {
    width: 36px;
    height: 36px;
    border: 3px solid var(--bg-card);
}

.pool-tokens .token-icon:last-child {
    margin-left: -12px;
}

.pool-info {
    display: flex;
    flex-direction: column;
}

.pool-pair {
    font-weight: 600;
}

.pool-fee {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 0.25rem;
}

.col-tvl, .col-volume {
    font-family: var(--font-mono);
    font-weight: 500;
}

.col-apr {
    font-family: var(--font-mono);
    font-weight: 500;
}

.apr-value {
    color: var(--accent-green);
}

.col-action {
    text-align: right;
}

/* Launchpad Section */
.launchpad-section {
    background: var(--bg-secondary);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.launchpad-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.05), transparent 70%);
    pointer-events: none;
}

.launchpad-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.launchpad-visual {
    position: relative;
}

.graduation-diagram {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 24px;
    padding: 2rem;
}

.diagram-title {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--gold-400);
}

.diagram-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.diagram-step {
    flex: 1;
    text-align: center;
}

.diagram-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.05));
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.diagram-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.diagram-arrow {
    color: var(--gold-400);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.launchpad-text {
    position: relative;
}

.launchpad-text .section-description {
    text-align: left;
    margin-left: 0;
}

.launchpad-features {
    margin: 2rem 0;
    list-style: none;
}

.launchpad-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.launchpad-features svg {
    width: 20px;
    height: 20px;
    color: var(--gold-400);
    flex-shrink: 0;
}

/* Ecosystem Section */
.ecosystem-section {
    background: var(--bg-primary);
    padding: 6rem 2rem;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ecosystem-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.ecosystem-card:hover {
    border-color: rgba(251, 191, 36, 0.2);
    transform: translateY(-4px);
}

.ecosystem-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--bg-primary);
}

.ecosystem-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ecosystem-type {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background: var(--bg-secondary);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before, .cta-glow {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1), transparent 60%);
    pointer-events: none;
}

.cta-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

/* Footer */
.landing-footer {
    background: var(--bg-primary);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--gold-500);
    color: var(--bg-primary);
}

.footer-socials svg {
    width: 20px;
    height: 20px;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold-400);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--gold-400);
}

.footer-disclaimer {
    color: var(--text-muted);
}

/* Animations on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Counter animation */
.counter {
    display: inline-block;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content, .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .swap-preview {
        margin: 0 auto;
    }

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

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

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

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

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

    .steps-container::before {
        display: none;
    }

    .launchpad-container {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .hero h1, .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .steps-container {
        grid-template-columns: 1fr;
    }

    .pools-table-header,
    .pool-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .pools-table-header > *:nth-child(n+3),
    .pool-row > *:nth-child(n+3):not(.col-action) {
        display: none;
    }

    .col-action {
        grid-column: span 2;
        text-align: center;
        margin-top: 0.5rem;
    }

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

    .cta-title {
        font-size: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .diagram-flow {
        flex-direction: column;
    }

    .diagram-arrow {
        transform: rotate(90deg);
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================
   Wallet Connection Styles
   ========================================== */

/* Warning button for wrong network */
.btn-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(245, 158, 11, 0.4);
}

/* Loading state */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid var(--bg-primary);
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Wallet indicator (connected dot) */
.wallet-indicator {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px var(--accent-green);
}

/* Button disabled state */
.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Danger button */
.btn-danger {
    background: linear-gradient(135deg, var(--accent-red), #dc2626);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(239, 68, 68, 0.4);
}

/* Secondary button */
.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
}

/* Badge styles for network status */
.badge-success {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-green);
}

/* App header styles for non-landing pages */
.glass {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.z-50 {
    z-index: 50;
}

/* Utility classes for header */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.w-8 {
    width: 2rem;
}

.h-16 {
    height: 4rem;
}

.min-h-screen {
    min-height: 100vh;
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.p-2 {
    padding: 0.5rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-sm {
    font-size: 0.875rem;
}

.font-mono {
    font-family: var(--font-mono);
}

.font-display {
    font-family: var(--font-display);
}

.text-gold-400 {
    color: var(--gold-400);
}

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

.transition-colors {
    transition: color 0.3s ease;
}

.hover\:text-white:hover {
    color: var(--text-primary);
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ==========================================
   Not Found Page
   ========================================== */
.min-h-\[60vh\] {
    min-height: 60vh;
}

.text-6xl {
    font-size: 3.75rem;
}

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

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* ==========================================
   Preview Badge for Demo UI
   ========================================== */
.swap-preview {
    position: relative;
}

.swap-preview-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gold-500);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    z-index: 10;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}
