/* ==========================================================================
   Letspeaky - PREMIUM DESIGN SYSTEM & STYLESHEET
   Highly Optimized, Fully Responsive, Modern Glassmorphism Aesthetic
   ========================================================================== */

/* ── 1. CUSTOM PROPERTIES & DESIGN TOKENS ── */
:root {
    /* Color Palette */
    --gold: #facc15;
    --gold-glow: rgba(250, 204, 21, 0.45);
    --gold-hover: #fde047;
    
    --primary: #818cf8;
    --primary-glow: rgba(129, 140, 248, 0.3);
    --primary-hover: #a5b4fc;
    
    --accent: #38bdf8;
    --accent-glow: rgba(56, 189, 248, 0.25);
    
    /* Backgrounds & Neutrals */
    --bg: #0b0f19;
    --bg-grad: radial-gradient(circle at 50% -20%, #1e264a 0%, #0b0f19 80%);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-hover: rgba(255, 255, 255, 0.07);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-border-active: rgba(129, 140, 248, 0.4);
    
    /* Typography Colors */
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-light: rgba(255, 255, 255, 0.4);
    
    /* Animations & Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ── 2. GLOBAL RESET & BASE STYLES ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', 'Noto Sans Thai', 'Noto Sans Lao', 'Noto Sans Arabic', sans-serif;
    background: var(--bg);
    background-image: var(--bg-grad);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

/* ── 3. VISUAL DECORATIONS & AMBIENT GLOWS ── */
.glow-bg {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 15%, rgba(129, 140, 248, 0.15) 0%, transparent 45%), 
        radial-gradient(circle at 85% 80%, rgba(250, 204, 21, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ── 4. STICKY GLASSMORPHIC NAVIGATION BAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition-smooth);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.nav-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    filter: drop-shadow(0 0 12px rgba(129, 140, 248, 0.5));
    transition: var(--transition-smooth);
}

.nav-logo:hover img {
    transform: rotate(10deg) scale(1.05);
}

.nav-links-desktop {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-link {
    color: var(--muted) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition-fast);
}

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

.nav-link:hover {
    color: var(--text) !important;
}

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

/* ── 5. MULTILINGUAL DROPDOWN SYSTEM ── */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 0.5rem 1rem;
    border-radius: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}

.dropdown-trigger p {
    margin: 0;
    line-height: 1;
}

.dropdown-trigger span {
    display: inline-flex;
    align-items: center;
}

.dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
}

.dropdown-trigger i {
    font-size: 0.65rem;
    color: var(--muted);
    transition: var(--transition-fast);
}

.dropdown.open .dropdown-trigger i {
    transform: rotate(180deg);
    color: var(--primary);
}

.flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    width: 240px;
    max-height: 380px;
    background: #131929;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition-smooth);
    z-index: 1000;
    padding: 0.6rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::-webkit-scrollbar {
    width: 4px;
}
.dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.65rem 0.9rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.dropdown-item.active {
    background: rgba(129, 140, 248, 0.15);
    color: var(--primary);
    font-weight: 700;
}

/* ── 6. HERO SECTION ── */
.first-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 7rem 1.5rem 3rem;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(129, 140, 248, 0.12);
    border: 1px solid rgba(129, 140, 248, 0.25);
    color: #c7d2fe;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.5rem 1.2rem;
    border-radius: 3rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.6); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(250, 204, 21, 0); }
}

h1 {
    font-size: clamp(2.4rem, 6.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

h1 span {
    background: linear-gradient(135deg, #facc15 10%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(250, 204, 21, 0.3));
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 500;
}

/* ── 7. PREMIUM CTA BUTTON ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--gold) 0%, #f97316 100%);
    color: #0b0f19;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 1.25rem 3.5rem;
    border-radius: 4rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.55);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* ── 8. METRICS / STATS SYSTEM ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    margin-top: 5rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.2rem 1.5rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: var(--card-hover);
    border-color: rgba(250, 204, 21, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.stat-num {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.4rem;
    filter: drop-shadow(0 0 12px var(--gold-glow));
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
}

/* ── 9. PRODUCT ECOSYSTEM & TRINITY ── */
.ecosystem {
    max-width: 1260px;
    margin: 0 auto;
    padding: 8rem 2rem 10rem;
    position: relative;
    z-index: 1;
}

.eco-header {
    text-align: center;
    margin-bottom: 5rem;
}

.eco-label {
    color: var(--primary);
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.25rem;
}

h2 {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.eco-desc {
    color: var(--muted);
    font-size: 1.2rem;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.trinity {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 2.5rem;
    padding: 4.5rem 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.card:hover {
    transform: translateY(-12px);
    background: var(--card-hover);
    border-color: var(--primary-glow);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(129, 140, 248, 0.05);
}

.card.active {
    border-color: var(--card-border-active);
    background: linear-gradient(145deg, rgba(129, 140, 248, 0.06) 0%, rgba(255,255,255,0.01) 100%);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.04);
    border-radius: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card.active .card-icon {
    background: rgba(129, 140, 248, 0.15);
    border: 1px solid rgba(129, 140, 248, 0.35);
    box-shadow: 0 10px 25px rgba(129, 140, 248, 0.2);
}

.card-badge {
    position: absolute;
    top: 2.5rem;
    right: 3rem;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 3rem;
    letter-spacing: 1.5px;
}

.badge-active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.badge-soon {
    background: rgba(255,255,255,0.06);
    color: var(--muted);
    border: 1px solid rgba(255,255,255,0.08);
}

h3 {
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.card-p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.features {
    list-style: none;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
}

.features li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.75rem;
    text-shadow: 0 0 8px var(--gold-glow);
}

.cta {
    display: block;
    width: 100%;
    padding: 1.25rem;
    text-align: center;
    border-radius: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.05rem;
}

.cta-active {
    background: var(--gold);
    color: #0b0f19;
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.25);
}

.cta-active:hover {
    transform: translateY(-3px);
    background: var(--gold-hover);
    box-shadow: 0 12px 35px rgba(250, 204, 21, 0.45);
}

.cta-soon {
    background: rgba(255,255,255,0.05);
    color: var(--muted-light);
    cursor: default;
    border: 1px solid rgba(255,255,255,0.05);
}

/* ── 10. DYNAMIC MULTI-COLUMN FOOTER ── */
footer {
    padding: 6rem 2rem 4rem;
    border-top: 1px solid var(--card-border);
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 4rem;
    text-align: left;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    font-size: 1.25rem;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.footer-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.footer-slogan {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 3px solid var(--primary);
    padding-left: 0.75rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-support {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
    margin-top: 0.5rem;
}

.footer-support span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.footer-support a.support-email {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-support a.support-email:hover {
    color: var(--gold-hover);
    text-shadow: 0 0 10px var(--gold-glow);
}

/* ── 11. PREMIUM COOKIE BANNER ── */
.cookie-banner-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    left: 1.5rem;
    z-index: 10000;
    max-width: 440px;
    background: rgba(20, 27, 45, 0.95); /* Slightly darker/more opaque for contrast */
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.18); /* Brighter border for crisp highlight */
    border-radius: 1.75rem;
    padding: 1.75rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 30px rgba(99, 102, 241, 0.25); /* Added glow matching active CTA theme */
    transition: var(--transition-smooth);
    transform: translateY(0);
    opacity: 1;
}

@media (min-width: 640px) {
    .cookie-banner-container {
        left: auto;
    }
}

.cookie-banner-container.hidden {
    transform: translateY(50px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    display: none !important;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.cookie-banner-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.cookie-banner-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-weight: 500;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.cookie-btn-primary {
    flex: 1.2;
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    color: #fff;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.cookie-btn-primary:active {
    transform: translateY(0);
}

.cookie-btn-secondary {
    flex: 0.8;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cookie-banner-link {
    text-align: left;
}

.cookie-banner-link a {
    font-size: 0.75rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.cookie-banner-link a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* ── 12. RESPONSIVE BREAKPOINTS ── */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
    }
    .footer-col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }
    .nav-links-desktop {
        display: none; /* Can add a mobile hamburger menu later if requested */
    }
    .first-screen {
        padding-top: 6.5rem;
        height: auto;
        min-height: 100vh;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 3rem;
    }
    .stat-card {
        padding: 1.5rem 1rem;
        min-height: 120px;
        border-radius: 1.5rem;
    }
    .stat-num {
        font-size: 2rem;
    }
    .ecosystem {
        padding: 6rem 1.5rem 6rem;
    }
    .trinity {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .card {
        padding: 3rem 2rem;
        border-radius: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-col:first-child {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    h1 {
        letter-spacing: -1px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .stat-card {
        padding: 1.25rem 1rem;
        min-height: 100px;
    }
    .cookie-banner-container {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        padding: 1.25rem;
        border-radius: 1.25rem;
    }
    .cookie-banner-actions {
        flex-direction: column;
    }
}

/* ── 13. LANDSCAPE MOBILE OPTIMIZATION ── */
@media (max-height: 500px) and (orientation: landscape) {
    .first-screen {
        padding-top: 5rem;
        padding-bottom: 2rem;
    }
    h1 {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }
    .hero-sub {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-badge {
        margin-bottom: 1rem;
        padding: 0.3rem 0.8rem;
    }
    .btn-primary {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
    }
    
    .stats-grid { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 0.5rem; 
        margin-top: 2rem; 
    }
    .stat-card {
        padding: 0.75rem 0.5rem;
        min-height: 80px;
        border-radius: 1rem;
    }
    .stat-num {
        font-size: 1.4rem;
    }
    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    
    .ecosystem {
        padding: 5rem 1.5rem;
    }
    .trinity { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 1.5rem; 
    }
    .card {
        padding: 2rem 1.5rem;
        border-radius: 2rem;
    }
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .card-badge {
        top: 1.5rem;
        right: 1.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }
    h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    .card-p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    .features {
        margin-bottom: 2rem;
        gap: 0.6rem;
    }
    .features li {
        font-size: 0.85rem;
    }
    .cta {
        padding: 1rem;
        font-size: 0.9rem;
    }
}
