/*==================================================
=            VARIABLES GLOBALES / TEMA            =
==================================================*/
:root {
    --bg-main: #050816;
    --bg-card: rgba(15, 23, 42, 0.65);
    --primary: #7b2cff;
    --secondary: #00d4ff;
    --success: #22c55e;
    --text: #ffffff;
    --text-secondary: #94a3b8;
    --border: rgba(123, 44, 255, 0.20);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --radius: 24px;
    --radius-sm: 14px;
    --max-width: 1120px;
}

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

body {
    background:
        radial-gradient(circle at top left, #7b2cff25, transparent 30%),
        radial-gradient(circle at bottom right, #00d4ff20, transparent 30%),
        var(--bg-main);
    color: var(--text);
    font-family: 'Inter', Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0d1117; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary), var(--secondary)); border-radius: 20px; }

/*==================================================
=                    HEADER                        =
==================================================*/
.header {
    position: sticky; top: 0; z-index: 1000;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    background: rgba(5, 8, 22, 0.80);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header .container { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; padding-bottom: 16px; }

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-name { font-size: 22px; font-weight: 800; letter-spacing: 1px; color: var(--text); white-space: nowrap; }
.hexagon {
    width: 44px; height: 44px; min-width: 44px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
    display: flex; justify-content: center; align-items: center;
    font-size: 20px; font-weight: bold; color: white;
    box-shadow: 0 0 25px rgba(123, 44, 255, 0.5);
}
.brand-logo { height: 44px; width: auto; min-width: 44px; object-fit: contain; border-radius: 10px; }
.mobile-brand-logo { height: 36px; width: auto; min-width: 36px; object-fit: contain; border-radius: 8px; }
.brand-fallback { display: none; }

.desktop-menu { display: flex; gap: 24px; align-items: center; }
.desktop-menu a { color: var(--text-secondary); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.3s; white-space: nowrap; }
.desktop-menu a:hover { color: var(--secondary); }
.theme-btn {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
    color: white; width: 42px; height: 42px; border-radius: 12px; cursor: pointer;
    font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background 0.3s;
}
.theme-btn:hover { background: rgba(255,255,255,0.14); }

.mobile-toggle {
    display: none; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
    color: white; width: 46px; height: 46px; border-radius: 12px; font-size: 24px;
    cursor: pointer; align-items: center; justify-content: center;
}
.mobile-menu {
    display: none; position: fixed; top: 80px; right: 20px;
    width: 300px; max-width: calc(100% - 40px); padding: 28px 24px;
    border-radius: var(--radius); background: rgba(8, 15, 35, 0.97);
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,0.65);
    z-index: 9999; flex-direction: column; gap: 4px;
    opacity: 0; transform: translateY(-10px) scale(0.97); pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-menu.active { display: flex; opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.mobile-menu .mobile-brand { display: flex; justify-content: center; align-items: center; gap: 12px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu .mobile-brand .hexagon { width: 36px; height: 36px; min-width: 36px; font-size: 16px; }
.mobile-menu .mobile-brand .brand-name { font-size: 18px; }
.mobile-menu a { color: var(--text); text-decoration: none; text-align: center; padding: 14px 16px; border-radius: 12px; font-size: 16px; font-weight: 500; transition: background 0.2s; }
.mobile-menu a:hover { background: rgba(255,255,255,0.06); }
.mobile-theme-btn { margin-top: 8px; border: none; border-radius: var(--radius-sm); padding: 14px; cursor: pointer; background: rgba(255,255,255,0.08); color: white; font-size: 15px; font-weight: 600; font-family: inherit; transition: background 0.2s; }
.mobile-theme-btn:hover { background: rgba(255,255,255,0.14); }
.mobile-close { margin-top: 12px; border: none; border-radius: var(--radius-sm); padding: 14px; cursor: pointer; background: linear-gradient(135deg, #ef4444, #dc2626); color: white; font-size: 15px; font-weight: 600; }

/*==================================================
=                     HERO                         =
==================================================*/
.hero { text-align: center; padding: 80px 20px 40px; }
.hero h1 {
    font-size: clamp(28px, 5vw, 52px); margin-bottom: 20px; line-height: 1.2;
    background: linear-gradient(90deg, white, var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { max-width: 700px; margin: 0 auto; color: var(--text-secondary); font-size: clamp(15px, 2vw, 18px); line-height: 1.8; }

/*==================================================
=                  BUSCADOR                        =
==================================================*/
.search-box { display: flex; gap: 12px; max-width: 700px; margin: 40px auto; padding: 0 20px; }
#search {
    flex: 1; min-width: 0; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); color: white;
    padding: 16px 20px; border-radius: 16px; font-size: 15px; font-family: inherit;
    backdrop-filter: blur(10px); transition: border-color 0.3s, box-shadow 0.3s;
}
#search::placeholder { color: rgba(255,255,255,0.35); }
#search:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 20px rgba(0,212,255,0.2); }
#search-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none; color: white; padding: 16px 32px; border-radius: 16px;
    cursor: pointer; font-weight: 700; font-size: 15px; font-family: inherit;
    white-space: nowrap; transition: transform 0.25s, box-shadow 0.25s;
}
#search-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(123,44,255,0.35); }

/*==================================================
=              ENTITY CARD LAYOUT                  =
==================================================*/
#entity-card { display: grid; grid-template-columns: 360px 1fr; gap: 24px; margin-top: 24px; }

.card, .codex-card {
    background: linear-gradient(180deg, rgba(15,23,42,0.95), rgba(10,15,30,0.85));
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.45); padding: 32px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.card:hover, .codex-card:hover { border-color: rgba(0,212,255,0.3); box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 30px rgba(0,212,255,0.08); }

/*==================================================
=         SCORE CARD — HEADER LOGO + TITULO       =
==================================================*/
.score-header { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 4px; }
.score-header img { height: 26px; width: auto; }
.score-header span { font-size: 14px; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1.5px; }
.score-subtitle { font-size: 12px; color: var(--text-secondary); text-align: center; margin-bottom: 2px; opacity: 0.8; }

.codex-score {
    font-size: clamp(52px, 9vw, 80px); font-weight: 800; text-align: center;
    color: var(--success); text-shadow: 0 0 15px #22c55e, 0 0 50px rgba(34,197,94,0.35);
    line-height: 1; margin: 6px 0 8px;
}
.stars { text-align: center; font-size: 20px; color: #facc15; letter-spacing: 2px; margin-bottom: 4px; }
.fraud-risk { text-align: center; font-size: 12px; color: var(--text-secondary); margin-bottom: 20px; }

/*==================================================
=         PREMIUM BADGES (REP + AUTH)             =
==================================================*/
.premium-badges { display: flex; justify-content: center; gap: 24px; margin-bottom: 6px; }
.premium-badge-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.premium-badge-img { height: 52px; width: auto; object-fit: contain; filter: drop-shadow(0 0 12px rgba(123,44,255,0.4)); }
.premium-badge-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: var(--text-secondary); text-align: center; line-height: 1.35; max-width: 100px; }

/*==================================================
=              SECTION LABEL                       =
==================================================*/
.rep-section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-secondary); text-align: center; margin-bottom: 14px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); }

/*==================================================
=                   METRICAS                       =
==================================================*/
.metric { display: flex; align-items: center; gap: 10px; margin-top: 10px; text-align: left; }
.metric-name { width: 110px; min-width: 110px; font-size: 11px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.3px; }
.bar-track { flex: 1; height: 8px; border-radius: 50px; background: rgba(255,255,255,0.06); overflow: hidden; }
.bar { height: 100%; border-radius: 50px; background: linear-gradient(90deg, #7b2cff, #2563eb, #00d4ff); box-shadow: 0 0 10px rgba(0,212,255,0.25); transition: width 0.6s ease; }
.metric-value { width: 30px; min-width: 30px; text-align: right; font-size: 13px; font-weight: 800; color: var(--text); }

/*==================================================
=             VERIFIED SEAL + BADGE                =
==================================================*/
.seal-wrap { display: flex; flex-direction: column; align-items: center; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.seal-img { height: 64px; width: auto; object-fit: contain; filter: drop-shadow(0 0 18px rgba(123,44,255,0.5)); margin-bottom: 8px; }
.authentic-badge { display: inline-block; padding: 8px 22px; border-radius: var(--radius-sm); background: linear-gradient(135deg, #16a34a, #22c55e); font-weight: 700; font-size: 13px; letter-spacing: 0.5px; }

/*==================================================
=        PROFILE CARD — INFO HEADER                =
==================================================*/
.info-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.info-profile-img { width: 64px; height: 64px; min-width: 64px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(123,44,255,0.3); box-shadow: 0 0 20px rgba(123,44,255,0.2); }
.info-profile-fallback { width: 64px; height: 64px; min-width: 64px; border-radius: 50%; background: linear-gradient(135deg, rgba(123,44,255,0.2), rgba(0,212,255,0.2)); border: 2px solid rgba(123,44,255,0.25); display: flex; align-items: center; justify-content: center; }
.info-profile-fallback svg { width: 28px; height: 28px; color: var(--secondary); }
.info-header-text h2 { font-size: 20px; font-weight: 700; line-height: 1.3; }
.info-header-text .profile-label { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

/*==================================================
=              INFO ROWS                           =
==================================================*/
.section { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.section h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; color: var(--secondary); }
.info-rows { display: flex; flex-direction: column; gap: 8px; }
.info-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); }
.info-row-icon { width: 34px; height: 34px; min-width: 34px; border-radius: 9px; background: rgba(123,44,255,0.12); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.info-row-icon svg { width: 16px; height: 16px; color: var(--secondary); }
.info-row-text { display: flex; flex-direction: column; }
.info-row-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-secondary); }
.info-row-value { font-size: 14px; font-weight: 600; color: var(--text); margin-top: 2px; line-height: 1.5; }

/*==================================================
=            SOCIAL BUTTONS                        =
==================================================*/
.social-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.social-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px; border-radius: 10px; font-size: 13px; font-weight: 600;
    text-decoration: none; color: white; border: 1px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s; cursor: pointer;
}
.social-btn:hover { transform: translateY(-2px); }
.social-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-btn.facebook { background: rgba(24,119,242,0.2); border-color: rgba(24,119,242,0.3); }
.social-btn.facebook:hover { box-shadow: 0 4px 15px rgba(24,119,242,0.3); }
.social-btn.instagram { background: linear-gradient(135deg, rgba(131,58,180,0.2), rgba(253,29,29,0.2)); border-color: rgba(131,58,180,0.3); }
.social-btn.instagram:hover { box-shadow: 0 4px 15px rgba(131,58,180,0.3); }
.social-btn.linkedin { background: rgba(10,102,194,0.2); border-color: rgba(10,102,194,0.3); }
.social-btn.linkedin:hover { box-shadow: 0 4px 15px rgba(10,102,194,0.3); }
.social-btn.youtube { background: rgba(255,0,0,0.15); border-color: rgba(255,0,0,0.25); }
.social-btn.youtube:hover { box-shadow: 0 4px 15px rgba(255,0,0,0.25); }
.social-btn.website { background: rgba(0,212,255,0.12); border-color: rgba(0,212,255,0.25); }
.social-btn.website:hover { box-shadow: 0 4px 15px rgba(0,212,255,0.25); }
.social-btn.default { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }

/*==================================================
=              ACTUALIZACIONES                     =
==================================================*/
.update { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 14px 16px; margin-top: 10px; }
.update strong { display: block; margin-bottom: 4px; font-size: 14px; }
.update p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/*==================================================
=           RANKING SLIDER                         =
==================================================*/
.ranking-section { margin: 60px auto; max-width: 100%; padding: 0 0 10px; }
.ranking-section > h2 { text-align: center; margin-bottom: 28px; font-size: clamp(20px, 3vw, 28px); padding: 0 20px; }

.ranking-slider {
    display: flex; gap: 18px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 20px 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}
.ranking-slider::-webkit-scrollbar { height: 5px; }
.ranking-slider::-webkit-scrollbar-track { background: transparent; }
.ranking-slider::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 20px; }

.ranking-slider-card {
    flex: 0 0 230px; scroll-snap-align: start;
    padding: 22px 18px; border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(18,25,45,0.95), rgba(10,15,30,0.9));
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    cursor: pointer; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.ranking-slider-card:hover { transform: translateY(-5px); border-color: rgba(0,212,255,0.25); box-shadow: 0 18px 45px rgba(0,0,0,0.45), 0 0 15px rgba(0,212,255,0.08); }

.rank-position { font-size: 26px; color: var(--secondary); font-weight: 800; line-height: 1; margin-bottom: 14px; align-self: flex-start; }
.rank-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(123,44,255,0.3); margin-bottom: 10px; }
.rank-img-fallback { width: 60px; height: 60px; border-radius: 50%; background: rgba(123,44,255,0.15); border: 2px solid rgba(123,44,255,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.rank-img-fallback svg { width: 26px; height: 26px; color: var(--primary); opacity: 0.6; }
.rank-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; line-height: 1.3; }
.rank-category { font-size: 11px; color: var(--text-secondary); margin-bottom: 14px; }
.rank-score-line { display: flex; align-items: center; gap: 6px; margin-top: auto; }
.rank-score-line img { height: 16px; width: auto; }
.rank-score-label { font-size: 10px; color: var(--text-secondary); font-weight: 600; text-transform: uppercase; }
.rank-score-value { font-size: 18px; font-weight: 800; color: #facc15; }
.rank-seal { height: 38px; width: auto; object-fit: contain; margin-top: 10px; filter: drop-shadow(0 0 10px rgba(123,44,255,0.4)); }
.rank-level-badge { height: 28px; width: auto; object-fit: contain; margin-top: 10px; opacity: 0.8; }
.rank-level-text { font-size: 10px; font-weight: 700; color: var(--primary); margin-top: 10px; text-transform: uppercase; letter-spacing: 0.5px; }

/*==================================================
=                   FOOTER                         =
==================================================*/
footer { margin-top: 60px; padding: 32px 20px; text-align: center; color: var(--text-secondary); font-size: 14px; border-top: 1px solid rgba(255,255,255,0.06); }

/*==================================================
=                LOADING                           =
==================================================*/
.loading { text-align: center; padding: 60px 20px; color: var(--text-secondary); font-size: 16px; grid-column: 1/-1; }
.loading::after { content: ''; display: block; width: 40px; height: 40px; margin: 20px auto 0; border: 3px solid rgba(255,255,255,0.1); border-top-color: var(--secondary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/*==================================================
=                   LIGHT MODE                     =
==================================================*/
.light-mode { background: #eef2ff; color: #111827; }
.light-mode .header { background: rgba(238,242,255,0.85); border-bottom-color: rgba(0,0,0,0.06); }
.light-mode .card, .light-mode .codex-card, .light-mode .ranking-slider-card, .light-mode .mobile-menu { background: white; color: #111827; border-color: rgba(0,0,0,0.08); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.light-mode .card:hover, .light-mode .codex-card:hover, .light-mode .ranking-slider-card:hover { border-color: rgba(123,44,255,0.25); }
.light-mode .desktop-menu a, .light-mode .mobile-menu a { color: #374151; }
.light-mode .desktop-menu a:hover, .light-mode .mobile-menu a:hover { color: var(--primary); }
.light-mode .brand-name { color: #111827; }
.light-mode .theme-btn, .light-mode .mobile-toggle { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.1); color: #374151; }
.light-mode #search { background: white; color: #111827; border-color: #d1d5db; }
.light-mode #search::placeholder { color: #9ca3af; }
.light-mode #search:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(123,44,255,0.12); }
.light-mode .update { background: #f8fafc; border-color: rgba(0,0,0,0.06); }
.light-mode .hero p { color: #64748b; }
.light-mode .metric-name, .light-mode .premium-badge-label, .light-mode .score-subtitle, .light-mode .fraud-risk, .light-mode .rep-section-label, .light-mode .info-row-label, .light-mode .info-header-text .profile-label { color: #64748b; }
.light-mode .bar-track { background: rgba(0,0,0,0.06); }
.light-mode .section, .light-mode .rep-section-label { border-top-color: rgba(0,0,0,0.06); }
.light-mode .info-header { border-bottom-color: rgba(0,0,0,0.06); }
.light-mode .info-row { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.06); }
.light-mode .info-row-icon { background: rgba(123,44,255,0.08); }
.light-mode .info-row-value, .light-mode .info-header-text h2, .light-mode .metric-value { color: #111827; }
.light-mode .mobile-theme-btn { background: rgba(0,0,0,0.06); color: #374151; }
.light-mode footer { border-top-color: rgba(0,0,0,0.06); }
.light-mode .social-btn { color: #374151; }

/*==================================================
=                   RESPONSIVE                     =
==================================================*/
@media (max-width: 900px) {
    #entity-card { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .desktop-menu { display: none; }
    .mobile-toggle { display: flex; }
    .hero { padding: 50px 20px 30px; }
    .search-box { flex-direction: column; padding: 0 20px; }
    #search-btn { width: 100%; padding: 16px; }
    .card, .codex-card { padding: 24px 18px; }
    .metric { flex-wrap: wrap; }
    .metric-name { width: 100%; min-width: 100%; margin-bottom: 2px; }
    .premium-badges { gap: 14px; }
    .premium-badge-img { height: 42px; }
    .seal-img { height: 52px; }
    .info-header { flex-direction: column; text-align: center; }
    .info-row { padding: 10px 12px; }
    .ranking-slider-card { flex: 0 0 195px; padding: 18px 14px; }
    .rank-position { font-size: 22px; }
    .rank-img, .rank-img-fallback { width: 50px; height: 50px; }
    .rank-name { font-size: 13px; }
}
@media (max-width: 480px) {
    .brand-name { font-size: 17px; }
    .hexagon { width: 38px; height: 38px; min-width: 38px; font-size: 17px; }
    .brand-logo { height: 38px; min-width: 38px; }
    .codex-score { font-size: 52px; }
    .ranking-slider { gap: 12px; padding: 8px 16px 16px; }
    .ranking-slider-card { flex: 0 0 170px; padding: 16px 12px; }
    .social-buttons { gap: 6px; }
    .social-btn { padding: 8px 12px; font-size: 12px; }
}












Pega esto al final de tu style.css.

/* =====================================================
   FUTURE SECTION
===================================================== */

.future-section{

margin:80px 0;

text-align:center;

}

.future-text{

max-width:800px;

margin:auto;

opacity:.8;

line-height:1.8;

}

.future-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:25px;

margin-top:45px;

}

.future-card{

background:rgba(255,255,255,.05);

padding:30px;

border-radius:20px;

transition:.3s;

border:1px solid rgba(255,255,255,.08);

}

.future-card:hover{

transform:translateY(-8px);

box-shadow:0 0 35px rgba(124,58,237,.35);

}

.future-icon{

font-size:45px;

margin-bottom:15px;

}

/* =====================================================
ROADMAP
===================================================== */

.roadmap{

margin:100px 0;

text-align:center;

}

.timeline{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

margin-top:40px;

}

.timeline-item{

background:#111827;

padding:25px;

border-radius:20px;

border:1px solid #374151;

}

.timeline-item.active{

border:1px solid #22c55e;

box-shadow:0 0 25px rgba(34,197,94,.4);

}

> Elna .Ai:
/* =====================================================
BUSINESS MODEL
===================================================== */

.business-model{

margin:90px 0;

text-align:center;

}

.business-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:25px;

margin-top:35px;

}

.business-card{

padding:35px;

border-radius:20px;

background:#111827;

border:1px solid #374151;

transition:.3s;

}

.business-card:hover{

transform:translateY(-8px);

}

/* =====================================================
STATS
===================================================== */

.stats{

margin:90px 0;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

gap:25px;

text-align:center;

}

.stats div{

background:#111827;

padding:30px;

border-radius:20px;

}

.stats h2{

font-size:42px;

color:#22c55e;

margin:0;

}






