/* ===================================
   SAFE PER MOON - LANDING PAGE STYLES
   =================================== */

/* === CSS Variables === */
:root {
    /* Colors */
    --primary: #7B3FF2;
    --primary-dark: #5928d9;
    --gold: #FFD700;
    --gold-dark: #FFA500;
    --bg-dark: #0a0e27;
    --bg-darker: #060914;
    --bg-card: #141832;
    --bg-card-hover: #1a1f40;
    --text: #ffffff;
    --text-muted: #a0aec0;
    --text-dim: #718096;
    --success: #4CAF50;
    --danger: #EF4444;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #FFD700, #FFA500);
    --gradient-primary: linear-gradient(135deg, #7B3FF2, #5928d9);
    --gradient-space: linear-gradient(180deg, #0a0e27 0%, #1a1a2e 50%, #0f3460 100%);

    /* Shadows */
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
    --shadow-primary: 0 0 30px rgba(123, 63, 242, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Sizes */
    --header-height: 70px;
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Jura', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === Stars Background === */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='%23ffffff' fill-opacity='0.3'%3E%3Ccircle cx='400' cy='400' r='1'/%3E%3Ccircle cx='160' cy='680' r='0.8'/%3E%3Ccircle cx='700' cy='100' r='1.2'/%3E%3Ccircle cx='80' cy='200' r='0.6'/%3E%3Ccircle cx='600' cy='500' r='1'/%3E%3Ccircle cx='300' cy='150' r='0.8'/%3E%3Ccircle cx='500' cy='700' r='1.1'/%3E%3Ccircle cx='750' cy='350' r='0.7'/%3E%3Ccircle cx='200' cy='450' r='0.9'/%3E%3Ccircle cx='50' cy='600' r='1'/%3E%3C/g%3E%3C/svg%3E");
    animation: twinkle 4s ease-in-out infinite;
}

.stars2 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500' viewBox='0 0 800 800'%3E%3Cg fill='%23ffffff' fill-opacity='0.2'%3E%3Ccircle cx='200' cy='300' r='0.5'/%3E%3Ccircle cx='550' cy='150' r='0.7'/%3E%3Ccircle cx='100' cy='500' r='0.6'/%3E%3Ccircle cx='650' cy='400' r='0.8'/%3E%3Ccircle cx='350' cy='600' r='0.5'/%3E%3Ccircle cx='450' cy='50' r='0.7'/%3E%3C/g%3E%3C/svg%3E");
    animation: twinkle 6s ease-in-out infinite reverse;
}

.stars3 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 800 800'%3E%3Cg fill='%23FFD700' fill-opacity='0.15'%3E%3Ccircle cx='300' cy='200' r='0.4'/%3E%3Ccircle cx='600' cy='600' r='0.5'/%3E%3Ccircle cx='150' cy='700' r='0.6'/%3E%3C/g%3E%3C/svg%3E");
    animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* === Container === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 63, 242, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.docs-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.docs-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.docs-link svg {
    flex-shrink: 0;
}

.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: var(--radius-md);
}

.lang-btn {
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: white;
}

.lang-btn:hover:not(.active) {
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
}

.btn-gold {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(123, 63, 242, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(123, 63, 242, 0.5);
}

.btn-outline:hover {
    background: rgba(123, 63, 242, 0.1);
    border-color: var(--primary);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 22px 48px;
    font-size: 1.25rem;
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: var(--shadow-gold); }
    50% { box-shadow: 0 0 60px rgba(255, 215, 0, 0.6); }
}

/* === Section Styles === */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === HERO Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: var(--gradient-space);
}

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

/* Badges */
.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-top: 50px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.badge-gold {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: var(--gold);
}

.badge svg {
    flex-shrink: 0;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 30px;
}

.moon-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #FFD700 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero CTA */
.hero-cta {
    margin-bottom: 50px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 10px auto 0;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* === Problem/Solution Section === */
.problem-solution {
    background: var(--bg-darker);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

@media (max-width: 768px) {
    .section-grid {
        grid-template-columns: 1fr;
    }
    .arrow-connector {
        transform: rotate(90deg);
    }
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: rgba(123, 63, 242, 0.4);
}

.card-problem {
    border-color: rgba(239, 68, 68, 0.3);
}

.card-problem:hover {
    border-color: rgba(239, 68, 68, 0.5);
}

.card-solution {
    border-color: rgba(255, 215, 0, 0.3);
}

.card-solution:hover {
    border-color: rgba(255, 215, 0, 0.5);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--danger);
}

.card-icon.gold {
    color: var(--gold);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.card-title.gold {
    color: var(--gold);
}

.card-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-muted);
}

.card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.card-problem .card-list li::before {
    content: '✗';
    color: var(--danger);
}

.card-solution .card-list li::before {
    content: '✓';
    color: var(--gold);
}

.arrow-connector {
    color: var(--primary);
    opacity: 0.5;
}

/* === Triple Income Section === */
.triple-income {
    background: var(--gradient-space);
}

.income-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.income-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.income-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.income-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 63, 242, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary);
}

.income-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.income-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.income-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Calculator */
.calculator {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.calculator-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--gold);
}

.calculator-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-label {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.calc-value {
    font-size: 2rem;
    font-weight: 700;
}

.calc-note {
    font-size: 0.875rem;
    color: var(--text-dim);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.calc-period h4 {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 15px;
}

.calc-period ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.calc-total {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.calc-total .big {
    font-size: 1.75rem;
    font-weight: 700;
}

.roi {
    font-size: 0.875rem;
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.calculator-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* === Staking Types Section === */
.staking-types {
    background: var(--bg-darker);
}

.staking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.staking-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: var(--radius-xl);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.staking-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.staking-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.staking-icon {
    font-size: 2rem;
}

.staking-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.staking-header.lunar .staking-name { color: #9B59B6; }
.staking-header.star .staking-name { color: #F1C40F; }
.staking-header.marathon .staking-name { color: #3498DB; }

.staking-roi {
    margin-bottom: 20px;
}

.roi-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
}

.roi-value.gold {
    color: var(--gold);
}

.roi-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 5px;
}

.staking-desc {
    color: var(--text-muted);
    line-height: 1.7;
}

.staking-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
}

.staking-badge.best {
    background: var(--gradient-primary);
    color: white;
}

.staking-badge.max {
    background: var(--gradient-gold);
    color: black;
}

/* Unique Feature */
.unique-feature {
    background: linear-gradient(135deg, rgba(123, 63, 242, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-xl);
    padding: 50px;
    text-align: center;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.feature-desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.8;
}

/* === Verification + CTA Section === */
.verification-cta {
    background: var(--gradient-space);
}

.verification-block {
    margin-bottom: 80px;
}

.verification-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.verify-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition-normal);
}

.verify-item.clickable {
    cursor: pointer;
    text-decoration: none;
}

.verify-item.clickable:hover {
    background: rgba(123, 63, 242, 0.1);
    border-color: var(--primary);
}

a.verify-item {
    text-decoration: none;
    color: inherit;
}

/* GitHub button wrapper - centered */
.github-btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

.verify-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.verify-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.verify-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.contract-address {
    font-family: monospace;
}

.copy-hint {
    font-size: 0.75rem;
    color: var(--primary);
    display: block;
    margin-top: 4px;
}

/* Referral Block */
.referral-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    margin-bottom: 80px;
}

.referral-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.referral-levels {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

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

.ref-percent {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.ref-percent.gold {
    color: var(--gold);
}

.ref-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.ref-arrow {
    color: var(--text-dim);
    font-size: 1.25rem;
}

.referral-total {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Final CTA */
.final-cta {
    text-align: center;
}

.cta-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-buttons {
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: rgba(123, 63, 242, 0.1);
    border-color: var(--primary);
    color: var(--text);
}

/* === Footer === */
.footer {
    background: var(--bg-darker);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.footer-logo span {
    font-weight: 600;
    color: var(--gold);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.footer-link svg {
    flex-shrink: 0;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.footer-disclaimer {
    color: var(--text-dim);
    font-size: 0.75rem;
}

/* === Toast === */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--success);
    color: white;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* === Gold text utility === */
.gold {
    color: var(--gold) !important;
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Animation trigger class - elements start hidden, become visible on scroll */
.animate-on-scroll.animate-hidden {
    opacity: 0;
    transform: translateY(30px);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* === Responsive === */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .header-right {
        gap: 12px;
    }

    .docs-link span {
        display: none;
    }

    .docs-link {
        padding: 8px 12px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .calculator {
        padding: 25px;
    }

    .calculator-input {
        flex-direction: column;
    }

    .unique-feature {
        padding: 30px 20px;
    }

    .referral-levels {
        flex-direction: column;
        gap: 15px;
    }

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

    .btn-xl {
        padding: 18px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .moon-logo {
        width: 120px;
        height: 120px;
    }

    .badges {
        gap: 8px;
    }

    .badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .income-value {
        font-size: 2rem;
    }

    .roi-value {
        font-size: 2.5rem;
    }
}
