/* Striker International Landing Page - High-End Tech Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@1,500;1,600&display=swap');

:root {
    --lp-bg: #010409;
    --lp-bg-canvas: #040815;
    --lp-card-bg: rgba(6, 10, 24, 0.75);
    --lp-card-border: rgba(255, 255, 255, 0.05);
    
    /* Neon Theme Colors from Striker Business Plan */
    --lp-primary: #00f0ff;      /* Cyber Bull Cyan */
    --lp-secondary: #0052ff;    /* Royal Blue */
    --lp-pink: #ff007f;         /* Cyber Bear Pink */
    --lp-purple: #8b5cf6;       /* Violet */
    --lp-gold: #ffd700;         /* Striker Medallion Gold */
    --lp-gold-glow: rgba(255, 215, 0, 0.3);
    
    --lp-text-primary: #f8fafc;  /* Ice White */
    --lp-text-secondary: #94a3b8;/* Slate Muted */
    --lp-text-muted: #475569;    /* Dark Muted */
    
    --lp-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --lp-font-title: 'Outfit', sans-serif;
    --lp-font-body: 'Plus Jakarta Sans', sans-serif;
    --lp-font-script: 'Playfair Display', serif; /* Elegant handwritten style tagline */
}

/* Global Styles for Landing Page */
.lp-body {
    background-color: var(--lp-bg);
    color: var(--lp-text-primary);
    font-family: var(--lp-font-body);
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.lp-body .gradient-text {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lp-logo .gradient-text {
    background: linear-gradient(90deg, #ffd700 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button Overrides for Striker Landing Page */
.lp-body .btn {
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 10px;
    font-family: var(--lp-font-title);
    letter-spacing: 0.03em;
    transition: var(--lp-transition);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    outline: none;
    cursor: pointer;
}
.lp-body .btn-primary {
    background: linear-gradient(135deg, var(--lp-gold) 0%, #cc9900 100%);
    color: #020617;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
}
.lp-body .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.45), 0 0 15px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #020617;
}
.lp-body .btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--lp-text-primary);
}
.lp-body .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.1);
}
.lp-body .btn-sm {
    padding: 8px 18px;
    font-size: 12.5px;
    border-radius: 8px;
}
.lp-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Badge utility components */
.lp-body .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid transparent;
    font-family: var(--lp-font-title);
}
.lp-body .badge-active {
    background: rgba(0, 82, 255, 0.15);
    border-color: rgba(0, 82, 255, 0.3);
    color: #85b0ff;
    box-shadow: 0 0 10px rgba(0, 82, 255, 0.1);
}

/* Mobile Backdrop Overlay */
.lp-nav-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--lp-transition);
}
.lp-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Cyber Space Grid & Glow Effects */
.lp-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    pointer-events: none;
    z-index: 1;
}

/* Dual Glowing Orbs */
.lp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 2;
}
.lp-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--lp-primary);
    top: -100px;
    left: -100px;
    animation: lpFloat 20s infinite alternate ease-in-out;
}
.lp-orb-2 {
    width: 600px;
    height: 600px;
    background: var(--lp-pink);
    bottom: 10%;
    right: -100px;
    animation: lpFloat 24s infinite alternate-reverse ease-in-out;
}
.lp-orb-3 {
    width: 500px;
    height: 500px;
    background: var(--lp-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    animation: lpFloat 30s infinite alternate ease-in-out;
}

@keyframes lpFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -70px) scale(1.1); }
    100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Spot light */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, rgba(255, 0, 127, 0.02) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 3;
    mix-blend-mode: screen;
}

/* Scroll Reveal Animations */
.lp-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Header */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 22px 0;
    z-index: 1000;
    background: rgba(1, 4, 9, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--lp-transition);
}
.lp-nav.scrolled {
    padding: 14px 0;
    background: rgba(1, 4, 9, 0.85);
    border-bottom-color: rgba(0, 240, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

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

.lp-logo {
    font-family: var(--lp-font-title);
    font-weight: 900;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
}
.lp-logo-box {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--lp-gold) 0%, #cc9900 100%);
    border-radius: 50%;
    color: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 0 20px var(--lp-gold-glow);
    border: 2px solid #fff;
}

.lp-status-badge {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: var(--lp-primary);
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.lp-nav .menu-badge {
    display: none;
}
.lp-pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--lp-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
    animation: lpPulse 1.8s infinite;
}
@keyframes lpPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 240, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

/* Desktop Nav Links & Actions styling */
.lp-nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 24px;
}
.lp-nav-link {
    color: var(--lp-text-secondary);
    font-family: var(--lp-font-title);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--lp-transition);
    position: relative;
    padding: 6px 0;
}
.lp-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-primary), var(--lp-secondary));
    transition: var(--lp-transition);
    border-radius: 2px;
}
.lp-nav-link:hover {
    color: var(--lp-text-primary);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}
.lp-nav-link:hover::after {
    width: 100%;
}
.lp-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.lp-nav-actions-desktop {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Menu Links & Drawer Components */
.lp-mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}
.lp-mobile-nav-link {
    color: var(--lp-text-primary);
    font-family: var(--lp-font-title);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--lp-transition);
    text-align: center;
}
.lp-mobile-nav-link:hover {
    color: var(--lp-primary);
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}
.lp-drawer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 15px 0 25px 0;
}
.lp-mobile-nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Metallic gradient texts */
/* Metallic gradient texts */
.lp-striker-title {
    font-size: clamp(14px, 2vw, 18px);
    font-family: var(--lp-font-title);
    font-weight: 700;
    letter-spacing: 0.25em;
    line-height: 1;
    margin-bottom: 6px;
    color: #94a3b8; /* high-tech slate grey */
    text-transform: uppercase;
}

.lp-intl-title {
    font-size: clamp(46px, 8vw, 84px);
    font-family: var(--lp-font-title);
    font-weight: 950; /* extremely bold and premium */
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 10%, #ffd700 50%, #f59e0b 100%); /* Gorgeous white to bright gold to deep amber gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(245, 158, 11, 0.35); /* golden premium glow */
}

.lp-script-tagline {
    font-family: var(--lp-font-script);
    font-style: italic;
    font-size: 26px;
    color: #e2e8f0;
    margin: 5px 0 20px 0;
    background: linear-gradient(90deg, #ffffff, #ffe39a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-hero {
    padding: 10px 0 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
}
.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.lp-hero-tag {
    font-family: var(--lp-font-title);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid transparent;
    width: fit-content;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lp-btn-glow {
    position: relative;
}
.lp-btn-glow::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-secondary), var(--lp-pink));
    background-size: 400%;
    z-index: -1;
    filter: blur(8px);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    animation: lp-glow-shift 20s linear infinite;
}
.lp-btn-glow:hover::after {
    opacity: 0.6;
}
@keyframes lp-glow-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Columns */
.lp-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lp-hero-desc {
    font-size: 16.5px;
    color: var(--lp-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 550px;
}

/* Staking graphics with Bull and Bear */
.lp-hero-graphics-container {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3D Rotating Striker Medallion */
.lp-medallion-3d-scene {
    perspective: 1200px;
    width: 250px;
    height: 250px;
    z-index: 10;
}
.lp-medallion-coin {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCoin3D 15s linear infinite;
}
@keyframes rotateCoin3D {
    0% { transform: rotateY(0deg) rotateX(10deg); }
    100% { transform: rotateY(360deg) rotateX(10deg); }
}

.lp-coin-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.25),
        inset 0 0 30px rgba(0, 0, 0, 0.9);
}

.lp-coin-front {
    background: radial-gradient(circle, #ffe766 0%, #ffd700 40%, #b38600 80%, #664d00 100%);
    border: 8px double #ffffff;
    transform: rotateY(0deg);
}

.lp-coin-back {
    background: radial-gradient(circle, #ffe766 0%, #ffd700 40%, #b38600 80%, #664d00 100%);
    border: 8px double #ffffff;
    transform: rotateY(180deg);
}

/* Golden Inner Emblem Graphics */
.lp-coin-inner {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.lp-coin-inner i {
    font-size: 65px;
    color: #664d00;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.6);
}
.lp-coin-inner span {
    font-family: var(--lp-font-title);
    font-weight: 900;
    font-size: 11px;
    color: #4c3900;
    letter-spacing: 0.1em;
    margin-top: 8px;
    text-align: center;
    text-transform: uppercase;
}
.lp-coin-stars {
    display: flex;
    gap: 4px;
    position: absolute;
    bottom: 22px;
}
.lp-coin-stars i {
    font-size: 8px;
    color: #4c3900;
}

/* Glowing outlines of Bull & Bear */
.lp-hero-bull, .lp-hero-bear {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 20px;
    background: rgba(6, 10, 24, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--lp-transition);
}
.lp-hero-bull {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.08);
}
.lp-hero-bear {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-color: rgba(255, 0, 127, 0.2);
    box-shadow: 0 0 35px rgba(255, 0, 127, 0.08);
}
.lp-hero-bull:hover {
    transform: translateY(-50%) translateY(-5px) scale(1.05);
    border-color: var(--lp-primary);
    box-shadow: 0 0 45px rgba(0, 240, 255, 0.25);
}
.lp-hero-bear:hover {
    transform: translateY(-50%) translateY(-5px) scale(1.05);
    border-color: var(--lp-pink);
    box-shadow: 0 0 45px rgba(255, 0, 127, 0.25);
}

.lp-hero-animal-title {
    font-family: var(--lp-font-title);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 14px;
}
.lp-hero-animal-desc {
    font-size: 11px;
    color: var(--lp-text-secondary);
    text-align: center;
    margin-top: 4px;
    max-width: 170px;
}

/* Floating boxes inside the graphic overlay */
.lp-graphic-decor {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--lp-secondary), var(--lp-purple));
    border-radius: 4px;
    opacity: 0.3;
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.3);
}
.lp-gd-1 { top: 15%; left: 35%; animation: lpFloat 10s infinite alternate ease-in-out; }
.lp-gd-2 { bottom: 15%; right: 35%; animation: lpFloat 12s infinite alternate-reverse ease-in-out; }
.lp-gd-3 { top: 40%; right: 15%; width: 15px; height: 15px; background: var(--lp-pink); }
.lp-gd-4 { bottom: 30%; left: 15%; width: 15px; height: 15px; background: var(--lp-primary); }

/* Section Header Styles */
.lp-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    position: relative;
    z-index: 10;
}
.lp-section-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--lp-primary);
    font-weight: 800;
    margin-bottom: 16px;
    display: inline-block;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 6px 18px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.05);
}
.lp-section-title {
    font-family: var(--lp-font-title);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.lp-section-desc {
    font-size: 16px;
    color: var(--lp-text-secondary);
    line-height: 1.7;
}
.lp-padding {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Strategic Core Capabilities Grid (Page 2 & 3) */
.lp-core-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
@media (max-width: 768px) {
    .lp-core-grid {
        grid-template-columns: 1fr;
    }
}
.lp-core-card {
    padding: 40px;
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-card-border);
    border-radius: 20px;
    transition: var(--lp-transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.lp-core-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}
.lp-core-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.02);
}
.lp-core-card h4 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--lp-text-primary);
}
.lp-core-card p {
    font-size: 14px;
    color: var(--lp-text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}
.lp-core-meta {
    font-family: var(--lp-font-title);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--lp-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
}

/* Ecosystem Yield Stream Cards Overhaul (Page 6) */
.lp-streams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 991px) {
    .lp-streams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .lp-streams-grid {
        grid-template-columns: 1fr;
    }
}
.lp-stream-card {
    padding: 35px;
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-card-border);
    border-radius: 20px;
    transition: var(--lp-transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.lp-stream-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}
.lp-stream-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.02);
}
.lp-stream-card-tag {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    margin-bottom: 12px;
    display: inline-block;
}
.lp-stream-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--lp-text-primary);
}
.lp-stream-card p {
    font-size: 13.5px;
    color: var(--lp-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}
.lp-stream-card-meta {
    font-family: var(--lp-font-title);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 14px;
    margin-top: auto;
}

/* Types of Income (Slide 6 Cards) */
.lp-stream-card.sc-1 { border-left-color: #10b981; } /* Free Sponsor (Green) */
.lp-stream-card.sc-2 { border-left-color: #0052ff; } /* Daily Trade (Blue) */
.lp-stream-card.sc-3 { border-left-color: #8b5cf6; } /* Rank Bonus (Purple) */
.lp-stream-card.sc-4 { border-left-color: #ffd700; } /* Salary Bonus (Orange/Gold) */
.lp-stream-card.sc-5 { border-left-color: #00f0ff; } /* Compounding Bonus (Cyan) */
.lp-stream-card.sc-6 { border-left-color: #ff007f; } /* Reward (Pink) */

/* Interactive Free Sponsor tree (Page 7) */
.lp-tree-container {
    max-width: 850px;
    margin: 40px auto 0 auto;
    padding: 30px;
    background: rgba(1, 4, 9, 0.55);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.lp-tree-root {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.lp-tree-node {
    background: rgba(16, 185, 129, 0.08);
    border: 1.5px solid rgba(16, 185, 129, 0.4);
    padding: 12px 24px;
    border-radius: 12px;
    color: var(--lp-text-primary);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
    z-index: 10;
    transition: var(--lp-transition);
}
.lp-tree-node:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.35);
    transform: translateY(-2px);
}
.lp-tree-connector-v {
    width: 2px;
    height: 35px;
    background: rgba(16, 185, 129, 0.3);
}
.lp-tree-connector-h {
    width: 80%;
    height: 2px;
    background: rgba(16, 185, 129, 0.3);
}
.lp-tree-children {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none; /* Hide scrollbar for layout */
}
.lp-tree-child-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 60px;
}
.lp-tree-child-node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #4ade80;
    transition: var(--lp-transition);
}
.lp-tree-child-node:hover {
    transform: scale(1.1);
    background: rgba(16, 185, 129, 0.25);
    border-color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.lp-tree-result-bar {
    width: 100%;
    margin-top: 30px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.15) 50%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
}

/* Pre-Launch Offers Products display (Page 8) */
.lp-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}
@media (max-width: 991px) {
    .lp-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 575px) {
    .lp-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lp-product-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 0, 127, 0.15);
    background: rgba(6, 10, 24, 0.45);
    border-radius: 16px;
    transition: var(--lp-transition);
}
.lp-product-card:hover {
    transform: translateY(-4px);
    border-color: var(--lp-pink);
    box-shadow: 0 8px 24px rgba(255, 0, 127, 0.15);
    background: rgba(6, 10, 24, 0.85);
}

.lp-product-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 0, 127, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-pink);
    font-size: 20px;
    margin-bottom: 14px;
}
.lp-product-name {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--lp-text-primary);
    min-height: 38px;
    display: flex;
    align-items: center;
}
.lp-product-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    color: var(--lp-text-secondary);
}

/* Yield & Compounding Calculator Widget styling (Page 10) */
.lp-calc-card {
    max-width: 850px;
    margin: 40px auto;
    padding: 40px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    background: linear-gradient(135deg, rgba(8, 12, 26, 0.8) 0%, rgba(3, 7, 18, 0.9) 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-radius: 20px;
}
.lp-calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}
@media (max-width: 991px) {
    .lp-calc-card {
        padding: 30px 20px;
    }
    .lp-calc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.lp-calc-slider-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lp-calc-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--lp-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}
.lp-calc-amount {
    font-family: var(--lp-font-title);
    font-size: 32px;
    font-weight: 900;
    color: var(--lp-primary);
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lp-calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.3s;
}
.lp-calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--lp-primary);
    cursor: pointer;
    box-shadow: 0 0 15px var(--lp-primary);
    border: 3px solid #020617;
    transition: var(--lp-transition);
}
.lp-calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px var(--lp-primary), 0 0 10px var(--lp-secondary);
}
.lp-calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--lp-primary);
    cursor: pointer;
    box-shadow: 0 0 15px var(--lp-primary);
    border: 3px solid #020617;
    transition: var(--lp-transition);
}
.lp-calc-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px var(--lp-primary), 0 0 10px var(--lp-secondary);
}
.lp-calc-presets {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.lp-calc-preset-btn, .lp-comp-preset-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--lp-text-secondary);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lp-transition);
}
.lp-calc-preset-btn:hover, .lp-calc-preset-btn.active,
.lp-comp-preset-btn:hover, .lp-comp-preset-btn.active {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--lp-primary);
    color: var(--lp-text-primary);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}
.lp-calc-outputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(3, 7, 18, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px;
    border-radius: 16px;
}
.lp-calc-out-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}
.lp-calc-out-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.lp-calc-out-lbl {
    font-size: 13px;
    color: var(--lp-text-secondary);
}
.lp-calc-out-val {
    font-family: var(--lp-font-title);
    font-weight: 800;
    font-size: 18px;
}
.lp-calc-out-val.cyan { color: var(--lp-primary); }
.lp-calc-out-val.green { color: #10b981; }
.lp-calc-out-val.gold { color: var(--lp-gold); }

/* Compounding Matrix styling (Page 10) */
.lp-comp-matrix-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 30px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 16px;
    background: rgba(1, 4, 9, 0.4);
}
.lp-comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    text-align: left;
}
.lp-comp-table th {
    background: rgba(8, 12, 26, 0.9);
    padding: 16px 20px;
    font-family: var(--lp-font-title);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-primary);
    border-bottom: 1.5px solid rgba(0, 240, 255, 0.15);
}
.lp-comp-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 13.5px;
}
.lp-comp-table tr {
    transition: var(--lp-transition);
}
.lp-comp-table tr:hover td {
    background: rgba(0, 240, 255, 0.03);
    color: var(--lp-text-primary);
}

/* Rank matrix table styles (Page 9) */
.lp-matrix-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 40px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    background: rgba(6, 10, 24, 0.5);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.lp-matrix-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    text-align: left;
}
.lp-matrix-table th {
    background: rgba(139, 92, 246, 0.08);
    color: var(--lp-purple);
    padding: 16px 20px;
    font-family: var(--lp-font-title);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid rgba(139, 92, 246, 0.2);
}
.lp-matrix-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 13.5px;
    font-weight: 500;
}
.lp-matrix-table tr {
    transition: var(--lp-transition);
}
.lp-matrix-table tr:hover td {
    background: rgba(139, 92, 246, 0.04);
}
.lp-matrix-badge {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #a78bfa;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--lp-font-title);
}

/* Rewards milestone visual deck (Page 11) */
.lp-rewards-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 991px) {
    .lp-rewards-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .lp-rewards-showcase {
        grid-template-columns: 1fr;
    }
}
.lp-reward-pedestal {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: linear-gradient(180deg, rgba(8, 12, 26, 0.7) 0%, rgba(3, 7, 18, 0.9) 100%);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.lp-reward-pedestal:hover {
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}
.lp-reward-img-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.05);
    border: 1.5px solid rgba(255, 215, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-gold);
    font-size: 26px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.08);
}
.lp-reward-pedestal h5 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--lp-text-primary);
}
.lp-reward-pedestal span {
    font-size: 11px;
    color: var(--lp-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Growth Partners & Global Integrations styling */
.lp-marquee-group {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-marquee-group-title {
    font-size: 11px;
    font-family: var(--lp-font-title);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-text-secondary);
    padding-left: 4px;
}
.lp-marquee-fade {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}
.lp-marquee-fade::before,
.lp-marquee-fade::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.lp-marquee-fade::before {
    left: 0;
    background: linear-gradient(to right, var(--lp-bg) 0%, transparent 100%);
}
.lp-marquee-fade::after {
    right: 0;
    background: linear-gradient(to left, var(--lp-bg) 0%, transparent 100%);
}
.lp-marquee-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: marquee-scroll 25s linear infinite;
}
.lp-marquee-track.reverse {
    animation: marquee-scroll-reverse 25s linear infinite;
}
.lp-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-card-border);
    border-radius: 12px;
    color: var(--lp-text-primary);
    font-family: var(--lp-font-title);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: var(--lp-transition);
}
.lp-partner-badge i {
    font-size: 18px;
}
.lp-partner-badge:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
    background: rgba(8, 12, 26, 0.95);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Ecosystem Roadmap (2026-2029) styling */
.lp-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 45px;
    position: relative;
}
@media (max-width: 991px) {
    .lp-roadmap-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.lp-roadmap-card {
    padding: 35px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid var(--lp-card-border);
    background: var(--lp-card-bg);
    transition: var(--lp-transition);
    position: relative;
    overflow: hidden;
}
.lp-roadmap-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
}
.lp-roadmap-card.rc-1::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}
.lp-roadmap-card.rc-2::before {
    background: linear-gradient(90deg, var(--lp-primary), var(--lp-secondary));
}
.lp-roadmap-card.rc-3::before {
    background: linear-gradient(90deg, var(--lp-pink), var(--lp-purple));
}
.lp-roadmap-card:hover {
    transform: translateY(-5px);
    background: rgba(8, 12, 26, 0.9);
}
.lp-roadmap-card.rc-1:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.08), 0 0 20px rgba(16, 185, 129, 0.05);
}
.lp-roadmap-card.rc-2:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.08), 0 0 20px rgba(0, 240, 255, 0.05);
}
.lp-roadmap-card.rc-3:hover {
    border-color: rgba(255, 0, 127, 0.3);
    box-shadow: 0 15px 30px rgba(255, 0, 127, 0.08), 0 0 20px rgba(255, 0, 127, 0.05);
}

.lp-roadmap-year {
    font-family: var(--lp-font-title);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 30px;
    width: fit-content;
    margin-bottom: 20px;
    display: inline-block;
}
.rc-1 .lp-roadmap-year {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #34d399;
}
.rc-2 .lp-roadmap-year {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: var(--lp-primary);
}
.rc-3 .lp-roadmap-year {
    background: rgba(255, 0, 127, 0.1);
    border: 1px solid rgba(255, 0, 127, 0.25);
    color: var(--lp-pink);
}

.lp-roadmap-phase {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: var(--lp-text-primary);
}
.lp-roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lp-roadmap-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: var(--lp-text-secondary);
    line-height: 1.5;
}
.lp-roadmap-list li i {
    margin-top: 3px;
    font-size: 14px;
}
.rc-1 .lp-roadmap-list li i {
    color: #10b981;
}
.rc-2 .lp-roadmap-list li i {
    color: var(--lp-primary);
}
.rc-3 .lp-roadmap-list li i {
    color: var(--lp-purple);
}

/* FAQ Accordion styling */
.lp-faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lp-faq-item {
    border-radius: 16px;
    border: 1px solid var(--lp-card-border);
    background: var(--lp-card-bg);
    transition: var(--lp-transition);
    overflow: hidden;
}
.lp-faq-item:hover {
    border-color: rgba(0, 240, 255, 0.15);
    background: rgba(8, 12, 26, 0.85);
}
.lp-faq-item.active {
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(8, 12, 26, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.lp-faq-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}
.lp-faq-question {
    font-family: var(--lp-font-title);
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-text-primary);
    transition: var(--lp-transition);
}
.lp-faq-item:hover .lp-faq-question {
    color: #fff;
}
.lp-faq-item.active .lp-faq-question {
    color: var(--lp-primary);
}
.lp-faq-icon {
    font-size: 14px;
    color: var(--lp-text-secondary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
}
.lp-faq-item.active .lp-faq-icon {
    transform: rotate(180deg);
    color: var(--lp-primary);
}
.lp-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-faq-answer {
    padding: 0 24px 24px 24px;
    font-size: 14px;
    color: var(--lp-text-secondary);
    line-height: 1.65;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 16px;
}

/* Transparent Terms & Rules styling */
.lp-terms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 45px;
}
@media (max-width: 991px) {
    .lp-terms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .lp-terms-grid {
        grid-template-columns: 1fr;
    }
}
.lp-term-card {
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid var(--lp-card-border);
    background: var(--lp-card-bg);
    border-radius: 20px;
    transition: var(--lp-transition);
}
.lp-term-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.25);
    background: rgba(8, 12, 26, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.05);
}
.lp-term-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.08);
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    color: var(--lp-gold);
    font-family: var(--lp-font-title);
    font-weight: 900;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.05);
}
.lp-term-title {
    font-family: var(--lp-font-title);
    font-size: 15px;
    font-weight: 800;
    color: var(--lp-text-primary);
    margin-bottom: 6px;
    display: block;
}
.lp-term-desc {
    font-size: 13px;
    color: var(--lp-text-secondary);
    line-height: 1.5;
    margin: 0;
}
@media (min-width: 992px) {
    .lp-terms-grid .lp-term-card:last-child {
        grid-column: span 3;
    }
}
@media (min-width: 769px) and (max-width: 991px) {
    .lp-terms-grid .lp-term-card:last-child {
        grid-column: span 2;
    }
}

/* Footer styling */
.lp-footer {
    background: #02050d;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 80px 0 40px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .lp-footer .lp-logo {
        justify-content: center;
    }
}
.lp-footer-col {
    display: flex;
    flex-direction: column;
}
.lp-footer-col h5 {
    font-family: var(--lp-font-title);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-text-primary);
    margin: 0 0 20px 0;
}
.lp-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-footer-list a {
    color: var(--lp-text-secondary);
    text-decoration: none;
    font-size: 13.5px;
    transition: var(--lp-transition);
}
.lp-footer-list a:hover {
    color: var(--lp-primary);
    padding-left: 4px;
}
@media (max-width: 768px) {
    .lp-footer-list a:hover {
        padding-left: 0;
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    }
}
.lp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}
@media (max-width: 768px) {
    .lp-footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}
.lp-footer-copy {
    font-size: 12.5px;
    color: var(--lp-text-secondary);
    text-decoration: none;
}
.lp-footer-bottom a.lp-footer-copy:hover {
    color: var(--lp-primary);
    transform: translateY(-2px);
}
.lp-footer-warning {
    font-size: 11px;
    color: var(--lp-text-muted);
    line-height: 1.6;
    text-align: center;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 24px;
}

/* Responsive side nav drawer */
.lp-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    z-index: 1001;
}
.lp-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--lp-text-primary);
    transition: var(--lp-transition);
}

.lp-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.lp-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.lp-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Prelaunch Split Summary Card */
.lp-split-card {
    max-width: 700px;
    margin: 0 auto 30px auto;
    padding: 24px;
    border-color: rgba(255, 0, 127, 0.2);
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.05) 0%, rgba(6, 10, 24, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.lp-split-item {
    text-align: center;
}
.lp-split-label {
    font-size: 11px;
    color: var(--lp-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.lp-split-value {
    font-family: var(--lp-font-title);
    font-size: 26px;
    font-weight: 900;
}
.lp-split-value.cyan {
    color: var(--lp-primary);
}
.lp-split-value.pink {
    color: var(--lp-pink);
}
.lp-split-value.gold {
    color: var(--lp-gold);
}
.lp-split-operator {
    font-size: 24px;
    color: var(--lp-text-muted);
}

/* Horizontal Table Swipe Hint */
.lp-table-scroll-hint {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--lp-text-secondary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.lp-nav-menu {
    display: none;
}

@media (max-width: 1199px) {
    .lp-nav-links-desktop {
        gap: 16px;
    }
    .lp-nav-link {
        font-size: 13px;
    }
    .lp-nav .header-badge {
        display: none; /* Hide uptime badge on smaller desktop screen sizes to make room */
    }
}

@media (max-width: 991px) {
    .lp-nav-links-desktop {
        display: none;
    }
    .lp-nav-actions-desktop {
        display: none;
    }
    .lp-nav {
        padding: 14px 0;
    }
    .lp-logo {
        white-space: nowrap;
        font-size: 18px;
        gap: 8px;
    }
    .lp-logo-box {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .lp-nav .header-badge {
        display: none;
    }
    .lp-nav .menu-badge {
        display: flex;
        align-self: center;
    }
    .lp-nav-toggle {
        display: flex;
    }
    .lp-nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: rgba(1, 4, 9, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        padding: 100px 30px 40px 30px;
        flex-direction: column;
        justify-content: flex-start;
        gap: 24px;
        align-items: stretch;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
        z-index: 999;
    }
    .lp-nav-menu.open {
        transform: translateX(0);
        visibility: visible;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }
    .lp-table-scroll-hint {
        display: flex;
    }
    .lp-hero {
        padding: 10px 0 40px 0;
    }
    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .lp-hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .lp-hero-tag {
        margin: 0 auto 24px auto;
    }
    .lp-hero-btns {
        justify-content: center;
        width: 100%;
    }
    .lp-hero-graphics-container {
        height: 380px;
    }
    .lp-medallion-3d-scene {
        width: 180px;
        height: 180px;
    }
    .lp-hero-bull, .lp-hero-bear {
        width: 140px;
        height: 140px;
    }
    .lp-hero-bull { left: 0; }
    .lp-hero-bear { right: 0; }
    .lp-hero-animal-desc { display: none; }
    
    .lp-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .lp-status-badge {
        margin: 0 auto;
        width: fit-content;
    }
    .lp-padding {
        padding: 60px 0;
    }
    .lp-section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .lp-hero-graphics-container {
        height: 220px !important;
    }
    .lp-hero-bull, .lp-hero-bear {
        display: none !important;
    }
    .lp-split-card {
        flex-direction: column;
        gap: 16px;
        padding: 20px 16px;
    }
    .lp-split-operator {
        transform: rotate(90deg);
        font-size: 18px !important;
        margin: 4px 0;
    }
    .lp-split-value {
        font-size: 22px !important;
    }
    .lp-core-card {
        padding: 24px 16px !important;
    }
    .lp-stream-card {
        padding: 24px 16px !important;
    }
    .lp-roadmap-card {
        padding: 24px 16px !important;
    }
    .lp-faq-header {
        padding: 16px !important;
    }
    .lp-faq-answer {
        padding: 0 16px 16px 16px !important;
    }
    .lp-tree-container {
        padding: 20px 14px !important;
    }
    .lp-tree-children {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 14px !important;
    }
    .lp-tree-child-wrapper {
        min-width: 70px !important;
        flex: none !important;
    }
    .lp-tree-connector-h {
        display: none !important;
    }
    .lp-tree-connector-v {
        height: 20px !important;
    }
    .lp-partner-badge {
        padding: 10px 18px !important;
        font-size: 12px !important;
    }
    .lp-partner-badge i {
        font-size: 15px !important;
    }
    .lp-comp-table th, .lp-comp-table td {
        padding: 10px 8px !important;
        font-size: 11px !important;
    }
    .lp-matrix-table th, .lp-matrix-table td {
        padding: 10px 8px !important;
        font-size: 11px !important;
    }
    .lp-footer .lp-logo {
        white-space: normal !important;
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px !important;
    }
    .lp-striker-title {
        font-size: 13px !important;
        letter-spacing: 0.2em !important;
    }
    .lp-intl-title {
        font-size: clamp(32px, 9vw, 46px) !important;
    }
    .lp-hero-desc {
        font-size: 14.5px;
    }
    .lp-hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .lp-hero-btns {
        justify-content: center;
        width: 100%;
    }
    .lp-hero-btns .btn {
        width: 100%;
    }
    .lp-tree-children {
        gap: 4px !important;
    }
    .lp-tree-child-node {
        width: 38px;
        height: 38px;
        font-size: 9px;
    }
    .lp-tree-result-bar {
        font-size: 12px !important;
        padding: 12px 8px !important;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .lp-calc-out-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        text-align: left;
    }
    .lp-calc-out-val {
        font-size: 16px !important;
    }
    .lp-calc-presets {
        justify-content: center;
    }
    .lp-product-card {
        padding: 12px 8px !important;
    }
    .lp-product-name {
        font-size: 12px !important;
        min-height: 28px !important;
    }
}
